Qwen3_8B_WEASEL is a WEASEL fine-tuned variant of
Qwen/Qwen3-8B for web-agent style reasoning and action generation.
This model was fine-tuned on a WEASEL/AgentTrek-style web-agent dataset with message-based interaction trajectories.
The underlying trajectories come from
yeonjooooni/agenttrek-WEASEL, while the reasoning traces were newly generated using inference from Qwen3-8B.
1from transformers import AutoTokenizer, AutoModelForCausalLM
2
3model_id = "yeonjooooni/Qwen3_8B_WEASEL"
4tokenizer = AutoTokenizer.from_pretrained(model_id)
5model = AutoModelForCausalLM.from_pretrained(model_id)