Update README.md
Browse files
README.md
CHANGED
|
@@ -1,3 +1,59 @@
|
|
| 1 |
-
---
|
| 2 |
-
|
| 3 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
library_name: transformers
|
| 3 |
+
license: other
|
| 4 |
+
license_name: nvidia-open-model-license
|
| 5 |
+
license_link: >-
|
| 6 |
+
https://www.nvidia.com/en-us/agreements/enterprise-software/nvidia-open-model-license/
|
| 7 |
+
pipeline_tag: text-generation
|
| 8 |
+
language:
|
| 9 |
+
- en
|
| 10 |
+
tags:
|
| 11 |
+
- nvidia
|
| 12 |
+
- nemotron-terminal
|
| 13 |
+
- terminal
|
| 14 |
+
- code-agent
|
| 15 |
+
- SFT
|
| 16 |
+
- pytorch
|
| 17 |
+
---
|
| 18 |
+
|
| 19 |
+
# Nemotron-Terminal Model Family
|
| 20 |
+
|
| 21 |
+
**Nemotron-Terminal** is a family of models specialized for autonomous terminal interaction, fine-tuned from the Qwen3 base (8B, 14B, and 32B). Developed by NVIDIA, these models utilize [Terminal-Corpus](https://huggingface.co/datasets/nvidia/Terminal-Corpus), a large-scale open-source dataset for terminal tasks, to achieve performance that rivals frontier models many times their size.
|
| 22 |
+
|
| 23 |
+
[Image of Terminal-Task-Gen pipeline architecture]
|
| 24 |
+
|
| 25 |
+
## Model Variants
|
| 26 |
+
We release the following variants of the Nemotron-Terminal family:
|
| 27 |
+
|
| 28 |
+
- Nemotron-Terminal-8B
|
| 29 |
+
- Nemotron-Terminal-14B
|
| 30 |
+
- Nemotron-Terminal-32B
|
| 31 |
+
|
| 32 |
+
|
| 33 |
+
## Performance on Terminal-Bench 2.0
|
| 34 |
+
The Nemotron-Terminal family demonstrates profound leaps in capability compared to the Qwen3 baselines across multiple specialized categories.
|
| 35 |
+
|
| 36 |
+
| Model | Size | Base Accuracy | **Nemotron-Terminal Accuracy** |
|
| 37 |
+
| :--- | :---: | :---: | :---: |
|
| 38 |
+
| Nemotron-Terminal-8B | 8B | 2.47% | **13.0%** |
|
| 39 |
+
| Nemotron-Terminal-14B | 14B | 4.04% | **20.2%** |
|
| 40 |
+
| **Nemotron-Terminal-32B** | 32B | 3.37% | **27.4%** |
|
| 41 |
+
|
| 42 |
+
## Usage
|
| 43 |
+
The models are trained using the **Terminus 2** scaffolding and output a structured JSON format.
|
| 44 |
+
|
| 45 |
+
### Expected Output Format
|
| 46 |
+
```json
|
| 47 |
+
{
|
| 48 |
+
"analysis": "Analysis of the current terminal state...",
|
| 49 |
+
"plan": "Step-by-step plan for the next command...",
|
| 50 |
+
"commands": [
|
| 51 |
+
{
|
| 52 |
+
"keystrokes": "ls -la\n",
|
| 53 |
+
"duration": 0.1
|
| 54 |
+
}
|
| 55 |
+
],
|
| 56 |
+
"task_complete": false
|
| 57 |
+
}
|
| 58 |
+
|
| 59 |
+
|