File size: 3,265 Bytes
c8e15ba
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
---
license: apache-2.0
language:
- en
tags:
- qwen3
- qwen
- causal-lm
- transformers
- instruction-tuning
- sft
- agents
- code
library_name: transformers
pipeline_tag: text-generation
base_model: Qwen/Qwen3-32B
model_name: Qwen3-32B-ABC
---

<div align="center">
<h1 style="font-size: 40px; line-height: 1.1; margin: 0;">
  Qwen3-32B-ABC
</h1>
</div>

<br>

<div align="center">
💻 <a href="https://github.com/OpenMOSS/ABC-Bench"><b>Code</b></a>&nbsp&nbsp | &nbsp&nbsp
📑 <a href="https://arxiv.org/abs/2601.11077"><b>Paper</b></a>&nbsp&nbsp | &nbsp&nbsp
📝 <a href="https://dawning-road.github.io/blog/abc-bench"><b>Blog</b></a>&nbsp&nbsp | &nbsp&nbsp
🤗 <a href="https://huggingface.co/datasets/nex-agi/agent-sft"><b>Data</b></a>
</div>

**Qwen3-32B-ABC** is a supervised fine-tuned (SFT) variant of **Qwen/Qwen3-32B**, trained for **agentic backend coding** and **tool-using / instruction-following** behaviors.

## Model Details

- **Model name**: `Qwen3-32B-ABC`
- **Base model**: `Qwen/Qwen3-32B`
- **Model type**: Causal Language Model (decoder-only)
- **Training method**: Agentic Supervised Fine-Tuning (SFT)

## Training Data

This model was fine-tuned on [nex-agi/agent-sft](https://huggingface.co/datasets/nex-agi/agent-sft).

Please refer to the dataset card for detailed documentation, licensing, and usage constraints.

## Performance on ABC-Bench

Following the ABC-Bench paper’s evaluation protocol:

| Model | Setting | Average Pass@1 (%, 3 attempts) |
|---|---|:---:|
| Qwen3-32B-ABC | w/ SFT | **33.8%** |
| Qwen3-32B | w/o SFT | **8.9%** |

## Intended Use

Qwen3-32B-ABC is intended for:
- Agent-style instruction following for backend development tasks
- Code editing / patch generation in real repositories
- Command-line oriented debugging and step-by-step problem solving
- Research on automated software engineering and agent evaluation

## Usage

### Transformers (Python)

```python
from transformers import AutoTokenizer, AutoModelForCausalLM
import torch

model_id = "OpenMOSS-Team/Qwen3-32B-ABC"

tokenizer = AutoTokenizer.from_pretrained(model_id, trust_remote_code=True)
model = AutoModelForCausalLM.from_pretrained(
    model_id,
    torch_dtype=torch.bfloat16,
    device_map="auto",
    trust_remote_code=True,
)

prompt = "Write a FastAPI endpoint that returns health status as JSON."
inputs = tokenizer(prompt, return_tensors="pt").to(model.device)

with torch.no_grad():
    output = model.generate(
        **inputs,
        max_new_tokens=256,
        do_sample=True,
        temperature=0.7,
        top_p=0.9,
    )

print(tokenizer.decode(output[0], skip_special_tokens=True))
```

## Citation

```bibtex
@misc{yang2026abcbenchbenchmarkingagenticbackend,
      title={ABC-Bench: Benchmarking Agentic Backend Coding in Real-World Development}, 
      author={Jie Yang and Honglin Guo and Li Ji and Jiazheng Zhou and Rui Zheng and Zhikai Lei and Shuo Zhang and Zhiheng Xi and Shichun Liu and Yuxin Wang and Bo Wang and Yining Zheng and Tao Gui and Xipeng Qiu},
      year={2026},
      eprint={2601.11077},
      archivePrefix={arXiv},
      primaryClass={cs.SE},
      url={https://arxiv.org/abs/2601.11077}, 
}
```

## Acknowledgements

- Base model: `Qwen/Qwen3-32B`
- Training dataset: `nex-agi/agent-sft`