Views
No views yet
nvidia/Nemotron-3-Nano-Omni-30B-A3B-Reasoning-BF16.
Sized to fit a single ≥ 24 GB consumer / workstation GPU.| Property | Value |
|---|---|
| Base model | nvidia/Nemotron-3-Nano-Omni-30B-A3B-Reasoning-BF16 |
| Active parameters / token | ~3B (of 31B total) |
| Modality | text + image + audio + video → text |
| Quantization | INT4 weight-only |
| Approx. on-disk size | ~22 GB |
| Context length | up to 256k tokens |
| Languages | English |
nemotron_v3 /
NanoNemotronVL path). Round-trip correctness: bit-exact within INT4
quantization step (per-layer dequantize MAE ≈ 1e-5).needle-1M-bench-mvp 50K| Metric | Score |
|---|---|
| Overall recall | 90.0 % |
| Paper-anchored recall | 80.0 % |
| Synthetic-codes recall | 100.0 % |
| Haystack tokens | 50,566 |
| Max output tokens | 2048 |
| Scorer | strip_think_includes (centralized) |
drawais/needle-1M-bench-mvp.
Per-row YAML:
.eval_results/nemotron-omni-30b-a3b-w4a16-50k.yaml.1from vllm import LLM, SamplingParams
2
3llm = LLM(
4 model="drawais/Nemotron-3-Nano-Omni-30B-A3B-W4A16",
5 trust_remote_code=True,
6 max_model_len=65536,
7)
8params = SamplingParams(temperature=0.6, top_p=0.95, max_tokens=4096)
9print(llm.generate(["Hello, world!"], params)[0].outputs[0].text)1vllm serve drawais/Nemotron-3-Nano-Omni-30B-A3B-W4A16 \
2 --trust-remote-code \
3 --max-model-len 65536 \
4 --gpu-memory-utilization 0.941from openai import OpenAI
2client = OpenAI(base_url="http://127.0.0.1:8000/v1", api_key="dummy")
3print(client.chat.completions.create(
4 model="drawais/Nemotron-3-Nano-Omni-30B-A3B-W4A16",
5 messages=[{"role": "user", "content": "Hello"}],
6 max_tokens=64,
7).choices[0].message.content)--reasoning-parser nemotron_v3, tool-calling flags, and
per-modality serving recommendations, follow the upstream
Nemotron-3-Nano-Omni model card.
If audio inputs are used: pip install vllm[audio].--max-model-len and text-only usagetrust_remote_code=True is required.LICENSE and NOTICE for full text and
required attribution.LICENSE. The
attribution notice required by Section 3(c) is in NOTICE:Licensed by NVIDIA Corporation under the NVIDIA Open Model Agreement.