← all models · full run →

nemotron-3-super

NVIDIA's Nemotron-3-Super, 120 B total / 12 B active MoE (Mamba2 + attn hybrid). Trained in NVFP4 natively and packaged by NVIDIA specifically for a single DGX Spark. Third-party Artificial-Analysis agentic eval: Terminal-Bench Hard 29%, SWE-Bench Verified 60.5, PinchBench 85.6%.

nvidia/NVIDIA-Nemotron-3-Super-120B-A12B-NVFP4 NVFP4 75 GB 12B active 120B total parser · qwen3_coder

Transcripts

simple

Reply with exactly the five words: hello from hermes on spark.
hello from hermes on spark.
category · trivial elapsed · 51.28s exit · 0 note · 'hello from hermes on spark.' — exact.

math

What is 127 times 49? Answer with just the number.
6223
category · reasoning elapsed · 15.99s exit · 0 note · Just 6223.

reasoning

A farmer has 17 sheep. All but 9 die. How many remain? Answer with one short sentence.
9 sheep remain.
category · reasoning elapsed · 16.67s exit · 0 note · '9 sheep remain.'

tool_ls

Use the shell tool to list files in /tmp. Tell me only how many there are.
616
category · tool-use elapsed · 37.83s exit · 0 note · Called the shell tool and answered with a single number (415).

code

Write a one-line Python expression that returns the sum of squares from 1 to 10.
sum(i*i for i in range(1, 11))
category · coding elapsed · 15.79s exit · 0 note · sum(i*i for i in range(1, 11)) — correct.