This repository provides a merged full model produced by supervised fine-tuning for ALFWorld-oriented action selection.
Improve strict action selection reliability for ALFWorld-style prompts where the model must output one exact action line from AVAILABLE ACTIONS.
1from transformers import AutoModelForCausalLM, AutoTokenizer
2
3model_id = "uchkw/qwen2.5-7b-instruct-sft-v3"
4tokenizer = AutoTokenizer.from_pretrained(model_id)
5model = AutoModelForCausalLM.from_pretrained(model_id, device_map="auto")