Update model card and evaluation figures
Browse files- .gitattributes +2 -0
- README.md +86 -0
- assets/calibforge-overview.png +3 -0
- assets/tb2-category-results.png +3 -0
.gitattributes
CHANGED
|
@@ -34,3 +34,5 @@ saved_model/**/* filter=lfs diff=lfs merge=lfs -text
|
|
| 34 |
*.zst filter=lfs diff=lfs merge=lfs -text
|
| 35 |
*tfevents* filter=lfs diff=lfs merge=lfs -text
|
| 36 |
tokenizer.json filter=lfs diff=lfs merge=lfs -text
|
|
|
|
|
|
|
|
|
| 34 |
*.zst filter=lfs diff=lfs merge=lfs -text
|
| 35 |
*tfevents* filter=lfs diff=lfs merge=lfs -text
|
| 36 |
tokenizer.json filter=lfs diff=lfs merge=lfs -text
|
| 37 |
+
assets/calibforge-overview.png filter=lfs diff=lfs merge=lfs -text
|
| 38 |
+
assets/tb2-category-results.png filter=lfs diff=lfs merge=lfs -text
|
README.md
CHANGED
|
@@ -1,3 +1,89 @@
|
|
| 1 |
---
|
| 2 |
license: apache-2.0
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 3 |
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
---
|
| 2 |
license: apache-2.0
|
| 3 |
+
language:
|
| 4 |
+
- en
|
| 5 |
+
datasets:
|
| 6 |
+
- AweAI-Team/CalibForge
|
| 7 |
+
base_model:
|
| 8 |
+
- Qwen/Qwen3-30B-A3B-Instruct-2507
|
| 9 |
---
|
| 10 |
+
|
| 11 |
+
# CalibForge-30B-A3B
|
| 12 |
+
|
| 13 |
+
📄 [Paper](https://arxiv.org/abs/2608.06352) · 💻 [Repository](https://github.com/AweAI-Team/CalibForge) · 🤗 [Dataset](https://huggingface.co/datasets/AweAI-Team/CalibForge) · 🤖 [35B Model](https://huggingface.co/AweAI-Team/CalibForge-35B-A3B)
|
| 14 |
+
|
| 15 |
+
CalibForge-30B-A3B is a terminal-agent model fine-tuned from [Qwen3-30B-A3B-Instruct-2507](https://huggingface.co/Qwen/Qwen3-30B-A3B-Instruct-2507) using full-parameter, multi-turn supervised fine-tuning. Its training trajectories were distilled from **5,431** calibrated terminal tasks spanning 16 domains. **CalibForge** uses verified solver outcomes and full trajectories to revise executable terminal tasks toward a solver-relative learnable zone. See the [paper](https://arxiv.org/abs/2608.06352) for the task-construction pipeline.
|
| 16 |
+
|
| 17 |
+
<p align="center">
|
| 18 |
+
<img src="assets/calibforge-overview.png" alt="Overview of CalibForge and its evaluation results" width="100%">
|
| 19 |
+
</p>
|
| 20 |
+
|
| 21 |
+
## Evaluation Results
|
| 22 |
+
|
| 23 |
+
| Model | Terminal-Bench 2.0 Acc. (%) ↑ | SWE-bench Pro Resolved (%) ↑ | Doc2Repo Pass Rate (%) ↑ |
|
| 24 |
+
|---|---:|---:|---:|
|
| 25 |
+
| Qwen3-30B-A3B-Instruct-2507 (base) | 7.87 ± 0.00 | 3.26 | 5.94 ± 0.88 |
|
| 26 |
+
| **CalibForge-30B-A3B (this model)** | **32.58 ± 1.12** | **30.94** | **35.98 ± 1.82** |
|
| 27 |
+
|
| 28 |
+
Terminal-Bench 2.0 and Doc2Repo results are reported as mean ± SEM over three runs; SWE-bench Pro is evaluated once. Terminal-Bench 2.0 uses [CalibForge-Eval](https://github.com/AweAI-Team/AweAgent/tree/main/recipes/terminal_bench_v2) with a 500-step limit, a one-hour per-task timeout, and sandboxes capped at 16 CPUs and 32 GB RAM. SWE-bench Pro and Doc2Repo use their official evaluation scaffolds; corresponding AweAgent recipes are available for [SWE-bench Pro](https://github.com/AweAI-Team/AweAgent/tree/main/recipes/swe_bench_pro) and [Doc2Repo through BeyondSWE](https://github.com/AweAI-Team/AweAgent/tree/main/recipes/beyond_swe).
|
| 29 |
+
|
| 30 |
+
<p align="center">
|
| 31 |
+
<img src="assets/tb2-category-results.png" alt="Terminal-Bench 2.0 tasks solved by category for CalibForge-30B-A3B and its base model" width="720">
|
| 32 |
+
</p>
|
| 33 |
+
|
| 34 |
+
## Usage with SGLang
|
| 35 |
+
|
| 36 |
+
Install a recent SGLang release with Qwen3 MoE support, then launch an OpenAI-compatible server:
|
| 37 |
+
|
| 38 |
+
```bash
|
| 39 |
+
uv venv --python 3.12 .venv
|
| 40 |
+
source .venv/bin/activate
|
| 41 |
+
uv pip install "sglang[all]"
|
| 42 |
+
|
| 43 |
+
python -m sglang.launch_server \
|
| 44 |
+
--model-path AweAI-Team/CalibForge-30B-A3B \
|
| 45 |
+
--tp 8 \
|
| 46 |
+
--dp 1 \
|
| 47 |
+
--trust-remote-code \
|
| 48 |
+
--enable-metrics \
|
| 49 |
+
--max-running-requests 40 \
|
| 50 |
+
--tool-call-parser qwen \
|
| 51 |
+
--mem-fraction-static 0.95 \
|
| 52 |
+
--host :: \
|
| 53 |
+
--port 40003
|
| 54 |
+
```
|
| 55 |
+
|
| 56 |
+
## Model Details
|
| 57 |
+
|
| 58 |
+
| Property | Value |
|
| 59 |
+
|---|---|
|
| 60 |
+
| Backbone | Qwen3-30B-A3B-Instruct-2507 |
|
| 61 |
+
| Precision | BF16 |
|
| 62 |
+
| Configured maximum positions | 262,144 |
|
| 63 |
+
| Training method | Full-parameter, multi-turn SFT |
|
| 64 |
+
| Training context length | 131,072 tokens |
|
| 65 |
+
| Training epochs | 10 |
|
| 66 |
+
| Optimizer | AdamW (`β₁=0.9`, `β₂=0.999`) |
|
| 67 |
+
| Learning rate | `1.0e-5`, cosine schedule, 0.05 warmup ratio |
|
| 68 |
+
| Global batch size | 128 |
|
| 69 |
+
| Training hardware | 64 × NVIDIA H20 GPUs |
|
| 70 |
+
|
| 71 |
+
## License
|
| 72 |
+
|
| 73 |
+
The model is released under the [Apache License 2.0](https://www.apache.org/licenses/LICENSE-2.0).
|
| 74 |
+
|
| 75 |
+
## Citation
|
| 76 |
+
|
| 77 |
+
If you use this model, please cite the CalibForge paper:
|
| 78 |
+
|
| 79 |
+
```bibtex
|
| 80 |
+
@misc{meng2026calibforge,
|
| 81 |
+
title = {CalibForge: Adversarial Solver Calibration for Scaling Learnable Terminal Tasks},
|
| 82 |
+
author = {Fanzhe Meng and Guoxin Chen and Jiale Zhao and Shuang Sun and Zhiyu Lin and Wayne Xin Zhao and Ruihua Song and Ji-Rong Wen and Kai Jia},
|
| 83 |
+
year = {2026},
|
| 84 |
+
eprint = {2608.06352},
|
| 85 |
+
archivePrefix = {arXiv},
|
| 86 |
+
primaryClass = {cs.LG},
|
| 87 |
+
url = {https://arxiv.org/abs/2608.06352}
|
| 88 |
+
}
|
| 89 |
+
```
|
assets/calibforge-overview.png
ADDED
|
Git LFS Details
|
assets/tb2-category-results.png
ADDED
|
Git LFS Details
|