Views
No views yet
Beta Release - This is a beta release. A v2 is expected with more training data and improved training methodology. As of now, this model is fine-tuned exclusively on the nohurry/Opus-4.6-Reasoning-3000x-filtered dataset (2,326 reasoning traces from Claude Opus 4.6).
| Property | Value |
|---|---|
| Base Model | nvidia/NVIDIA-Nemotron-3-Super-120B-A12B-BF16 |
| Architecture | Nemotron-H (Mamba-2 SSM + MoE + Attention hybrid) |
| Parameters | 120B total / 12B active (MoE) |
| Precision | FP8 (NVIDIA ModelOpt) |
| Fine-tuning Method | LoRA (r=32, alpha=64) merged into base weights |
| Training Data | nohurry/Opus-4.6-Reasoning-3000x-filtered |
| Epochs | 3 |
| Final Training Loss | 0.42 |
<think> tags before answering, similar to o1/reasoning-style models.1from vllm import LLM, SamplingParams
2
3llm = LLM(
4 model="blobbybob/Nemotron-3-Super-120B-A12B-FP8-Claude-4.6-Opus-Reasoning-Distilled",
5 dtype="auto",
6 tensor_parallel_size=2,
7 max_model_len=4096,
8 trust_remote_code=True,
9)
10
11sampling = SamplingParams(temperature=1.0, top_p=0.955, max_tokens=2048)
12
13messages = [
14 {"role": "system", "content": "You are a helpful reasoning assistant. Think step by step before answering."},
15 {"role": "user", "content": "What is the sum of all prime numbers less than 20?"},
16]
17
18tokenizer = llm.get_tokenizer()
19prompt = tokenizer.apply_chat_template(messages, tokenize=False, add_generation_prompt=True)
20outputs = llm.generate([prompt], sampling)
21print(outputs[0].outputs[0].text)hf_quant_config.json.mamba-ssm installed