Views
No views yet
| Field | Value |
|---|---|
| Base model | X1AOX1A/WorldModel-Webshop-Qwen2.5-7B |
| Base revision | 99e530d0e6f19c1e61734b61eaec8c2a3a11cabd |
| Architecture | Qwen2ForCausalLM (Qwen2.5-7B) |
| Environment | WebShop, via AgentGym |
1from transformers import AutoModelForCausalLM, AutoTokenizer
2
3model_id = "Ricardo-H/BehR-WorldModel-Webshop-Qwen2.5-7B"
4tokenizer = AutoTokenizer.from_pretrained(model_id)
5model = AutoModelForCausalLM.from_pretrained(
6 model_id,
7 torch_dtype="auto",
8 device_map="auto",
9)X1AOX1A/WorldModel-Webshop-Qwen2.5-7B at revision 99e530d0e6f19c1e61734b61eaec8c2a3a11cabd, which is itself derived from Qwen2.5-7B. Use is governed by the Qwen2.5 license and by the terms of the base world model; check the base repository before redistribution or commercial use. The serving and evaluation repository is Apache-2.0; these model weights are not.1@article{huang2026behrwm,
2 title = {Beyond State Consistency: Behavior Consistency in Text-Based World Models},
3 author = {Huang, Youling and Chen, Guanqiao and Yao, Junchi and Wang, Lu and
4 Yang, Fangkai and Du, Chao and Zhao, ChenZhuo and Zhao, Pu and
5 Lin, Qingwei and Rajmohan, Saravan and Zhang, Dongmei},
6 journal = {arXiv preprint arXiv:2604.13824},
7 year = {2026},
8 url = {https://arxiv.org/abs/2604.13824}
9}