Views
No views yet
Qwen/Qwen3.5-4B, trained with TRL GRPO in a multi-turn agentic RL loop on a custom OpenEnv cricket environment. This is the warmup checkpoint (5-over curriculum, 25 GRPO steps). The main 20-over T20 run resumes from this adapter.Qwen/Qwen3.5-4B (bf16)environment_factory=CricketCaptainToolEnv)max_overs ∈ [2,2,2,2,2,3,3,3,4,4,5] sampled per rollout0.20·r_result + 0.45·r_cricket + 0.25·r_behavior + 0.10·r_validity
r_cricket — dense per-ball Dream11 fantasy proxyr_behavior — coherence + adaptation + opponent_awareness + regretr_validity — fraction of legal tool callsr_result — match outcome margin / win bonus (rare in 5-over)1from peft import PeftModel
2from transformers import AutoModelForCausalLM, AutoTokenizer
3
4base = AutoModelForCausalLM.from_pretrained("Qwen/Qwen3.5-4B", torch_dtype="bfloat16", device_map="auto")
5tok = AutoTokenizer.from_pretrained("Qwen/Qwen3.5-4B")
6model = PeftModel.from_pretrained(base, "pratinavseth/cricket-captain-warmup-stage2")0.35 / 0.30 / 0.25 / 0.10).