Model details
Table with columns: Item, Value| Item | Value |
|---|
| Base model | Qwen/Qwen3.5-2B |
| Parameters | 1,881,825,088 |
| Fine-tuning | Full parameter supervised fine-tuning |
| Domains | Math, code, instruction following |
| Precision | bfloat16 |
| Context length used for SFT | 1,024 tokens |
| Checkpoint | 1 epoch / step 375 |
| Weight format | SafeTensors |
The checkpoint was trained with Adafactor, a cosine learning-rate schedule,
peak learning rate 1e-5, weight decay 0.1, gradient accumulation 8,
gradient checkpointing, and seed 20260902. The final recorded training loss
was 0.6251 and token accuracy was 0.8485.
Intended use
- Research on multi-domain reasoning and MOPD-style teacher/student training.
- Continued Math, Code, and Instruction-Following RL training.
- Local inference and controlled evaluation of this intermediate SFT stage.
This model is not presented as a production-ready assistant or as the final
result of the MOPD experiment.
Quick start
Qwen3.5 requires a recent Transformers build. The serving flow follows the
upstream Qwen3.5 recommendation:
pip install "transformers[serving] @ git+https://github.com/huggingface/transformers.git@main"
transformers serve \
--force-model wisdompan/qwen35-2b-mopd-mixsft \
--port 8000 \
--continuous-batching
Then call the OpenAI-compatible endpoint:
from openai import OpenAI
client = OpenAI(base_url="http://localhost:8000/v1", api_key="unused")
response = client.chat.completions.create(
model="wisdompan/qwen35-2b-mopd-mixsft",
messages=[{"role": "user", "content": "Solve: 2x + 3 = 11"}],
)
print(response.choices[0].message.content)
Evaluation status
Only a six-example pipeline sanity check was bundled with this checkpoint. It
is useful for confirming that generation and reward routing work, but it is too
small to report as a benchmark. Broader evaluation will accompany the final
teacher and student releases.
Limitations
- This is an intermediate checkpoint and may produce incorrect, verbose, or
unsafe content.
- Math, coding, and instruction-following quality has not yet been established
on broad public benchmarks.
- Users should independently evaluate safety and task fitness before deployment.
Training lineage
Qwen/Qwen3.5-2B
-> MixSFT (this repository)
-> Math / Code / IF teacher RL
-> MOPD student distillation
License
This derivative is released under the Apache License 2.0, following the base
model license. Users must also comply with the terms and usage requirements of
the upstream Qwen3.5-2B model.