majentik commited on
Commit
4b6ca70
·
verified ·
1 Parent(s): 041a4c7

docs: Tier 1 polish — frontmatter + quickstart + KV-root rewrite

Browse files
Files changed (1) hide show
  1. README.md +34 -1
README.md CHANGED
@@ -3,7 +3,13 @@ license: other
3
  license_name: nvidia-open-model-license
4
  license_link: https://developer.download.nvidia.com/licenses/nvidia-open-model-license-agreement-june-2024.pdf
5
  base_model: nvidia/Nemotron-3-Nano-Omni-30B-A3B-Reasoning-BF16
6
- tags: [nemotron, multimodal, mamba2, moe, quantized, rotorquant, gguf]
 
 
 
 
 
 
7
  ---
8
 
9
  # Nemotron-3-Nano-Omni-30B-A3B-Reasoning - RotorQuant GGUF Q3_K_M
@@ -19,6 +25,33 @@ see [`majentik/Nemotron-3-Nano-Omni-30B-A3B-Reasoning-RotorQuant-GGUF-Q3_K_M-RQ-
19
  For the runtime KV-cache modifier itself (weight-agnostic), see
20
  [`majentik/Nemotron-3-Nano-Omni-30B-A3B-Reasoning-RotorQuant`](https://huggingface.co/majentik/Nemotron-3-Nano-Omni-30B-A3B-Reasoning-RotorQuant).
21
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
22
  ## Modality matrix
23
 
24
  | Modality | Encoder | Quantization in this variant |
 
3
  license_name: nvidia-open-model-license
4
  license_link: https://developer.download.nvidia.com/licenses/nvidia-open-model-license-agreement-june-2024.pdf
5
  base_model: nvidia/Nemotron-3-Nano-Omni-30B-A3B-Reasoning-BF16
6
+ tags: [nemotron, multimodal, mamba2, moe, quantized, rotorquant, gguf, llama.cpp,
7
+ llama-mtmd, multimodal-via-mmproj]
8
+ library_name: gguf
9
+ pipeline_tag: image-text-to-text
10
+ language: [en]
11
+ datasets: [nvidia/Nemotron-Image-Training-v3]
12
+ inference: false
13
  ---
14
 
15
  # Nemotron-3-Nano-Omni-30B-A3B-Reasoning - RotorQuant GGUF Q3_K_M
 
25
  For the runtime KV-cache modifier itself (weight-agnostic), see
26
  [`majentik/Nemotron-3-Nano-Omni-30B-A3B-Reasoning-RotorQuant`](https://huggingface.co/majentik/Nemotron-3-Nano-Omni-30B-A3B-Reasoning-RotorQuant).
27
 
28
+ ## Quickstart
29
+
30
+ ```bash
31
+ # 1. Download the GGUF + the multimodal projector
32
+ huggingface-cli download majentik/Nemotron-3-Nano-Omni-30B-A3B-Reasoning-RotorQuant-GGUF-Q3_K_M Q3_K_M.gguf --local-dir ./model
33
+ huggingface-cli download majentik/Nemotron-3-Nano-Omni-30B-A3B-Reasoning-mmproj-F16 mmproj-F16.gguf --local-dir ./mmproj
34
+
35
+ # 2. Multimodal inference (text + image + audio + video)
36
+ llama-mtmd-cli \
37
+ -m ./model/Q3_K_M.gguf \
38
+ --mmproj ./mmproj/mmproj-F16.gguf \
39
+ --image cat.jpg \
40
+ -p "Describe this image in detail" \
41
+ --temp 0.6 --top-p 0.95 -n 512
42
+
43
+ # 3. Text-only inference (no mmproj needed)
44
+ llama-cli \
45
+ -m ./model/Q3_K_M.gguf \
46
+ -p "What is the capital of France?" \
47
+ --temp 0.6 --top-p 0.95 -n 256
48
+
49
+ # Disable extended reasoning (default is on):
50
+ # add `--chat-template-kwargs '{"enable_thinking": false}'`
51
+ ```
52
+
53
+ > ⚠️ Do NOT use llama.cpp built against CUDA 13.2 — produces gibberish. Pin CUDA 12.x or use Metal/CPU.
54
+
55
  ## Modality matrix
56
 
57
  | Modality | Encoder | Quantization in this variant |