Views
No views yet
taco subset of
agentica-org/DeepCoder-Preview-Dataset,
using an execution-based reward (generated programs are run against the problem's stdin/stdout test cases).| Benchmark | This model | Qwen3-4B-Base (before RL) |
|---|---|---|
| HumanEval | 81.71 | 76.83 |
| MBPP | 66.20 | 49.00 |
| Average | 73.96 | 62.91 |
| Method | HumanEval | MBPP | Average |
|---|---|---|---|
| baseline (GRPO) | 84.15 | 60.60 | 72.38 |
| naive resample | 84.76 | 57.40 | 71.08 |
| lorem | 85.98 | 66.00 | 75.99 |
| lorem + shaping | 81.71 | 66.20 | 73.96 |
<think></think> tags, while the
evaluation used the benchmarks' default (non-think) prompts.1from transformers import AutoModelForCausalLM, AutoTokenizer
2
3model_id = "shrango/qwen3-4b-base-taco-grpo-lorem-shaping"
4tok = AutoTokenizer.from_pretrained(model_id)
5model = AutoModelForCausalLM.from_pretrained(model_id, torch_dtype="auto", device_map="auto")