Views
No views yet
| Field | Value |
|---|---|
| Base model | X1AOX1A/WorldModel-Textworld-Llama3.1-8B |
| Base revision | 0cc3d6046690ea2f947dca9843531fbcaf7e19c9 |
| Architecture | LlamaForCausalLM (Llama-3.1-8B) |
| Environment | TextWorld, via AgentGym |
1from transformers import AutoModelForCausalLM, AutoTokenizer
2
3model_id = "Ricardo-H/BehR-WorldModel-Textworld-Llama3.1-8B"
4tokenizer = AutoTokenizer.from_pretrained(model_id)
5model = AutoModelForCausalLM.from_pretrained(
6 model_id,
7 torch_dtype="auto",
8 device_map="auto",
9)X1AOX1A/WorldModel-Textworld-Llama3.1-8B at revision 0cc3d6046690ea2f947dca9843531fbcaf7e19c9, which is itself derived from Meta Llama 3.1. Use is governed by the Llama 3.1 Community 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}