Views
No views yet
| train goal_type | count | ratio in train |
|---|---|---|
| assembly | 3917 | 40.7% |
| transport | 2522 | 26.2% |
| emergency_response | 1727 | 17.9% |
| guidance | 592 | 6.1% |
| traffic_enforcement | 491 | 5.1% |
| target_following | 384 | 4.0% |
| source | count | ratio |
|---|---|---|
| initial | 2890 | 30.0% |
| replan | 6743 | 70.0% |
1from transformers import AutoModelForCausalLM, AutoTokenizer
2
3model_id = "WindyLab/Qwen3-0.6B-cybertown-RLVR"
4tokenizer = AutoTokenizer.from_pretrained(model_id, trust_remote_code=True)
5model = AutoModelForCausalLM.from_pretrained(model_id, torch_dtype="auto", device_map="auto")