File size: 1,752 Bytes
f1f1905
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
---

base_model: open-thoughts/OpenThinkerAgent-32B
model_name: eewer/OpenThinkerAgent-32B-AWQ-Int4-Terminus2
library_name: transformers
pipeline_tag: text-generation
tags:
- qwen3
- openthinker-agent
- awq
- 4-bit
- areal-teacher
---

# OpenThinkerAgent-32B AWQ Int4

This repository contains an AWQ quantized checkpoint of
`open-thoughts/OpenThinkerAgent-32B` prepared for OPD/KDRL teacher-logprob use in AReaL.

## Quantization

- Source model: `open-thoughts/OpenThinkerAgent-32B`
- Source revision: `65d8a62b87c8d3d34bc45108a7ad87635318db9f`
- Dataset: `/wbl-fast/usrs/ee/clean-20260619/terminal-agent-rl/areal_runs/terminal-agent-demo/data/skill_based_medium.even.terminus2.slime_messages.jsonl`
- Calibration samples: 128
- Calibration seed: 7
- Max calibration token window per sample: 2048
- AutoAWQ `max_calib_seq_len`: 2048
- AutoAWQ `n_parallel_calib_samples`: 1
- AutoAWQ `max_chunk_memory`: 256 MiB
- Quantization: W4A16, group size 128, zero point True, version `GEMM`
- Modules left unquantized: `lm_head`
- `duo_scaling`: True
- `apply_clip`: True
- Torch: `2.11.0+cu128`
- CUDA: `12.8`
- AutoAWQ: `0.2.9`
- Started: `2026-06-24T22:09:24.999975+00:00`
- Finished: `2026-06-25T01:31:16.596143+00:00`
- Elapsed seconds: `12111.596`

Calibration text is rendered from the Terminus-2 medium SFT messages with the
Qwen3 chat template and `enable_thinking=True`, so thinking spans are preserved.
The quantization keeps `lm_head` unquantized for quality.

## AReaL Teacher Config

```yaml
teacher:
  path: <this checkpoint>
  quantization_config:
    method: awq
    bits: 4
    group_size: 128
    zero_point: true
    version: gemm
```

The AReaL worker environment needs `autoawq` importable only when this quantized
teacher path is used.