u-10bei/sft_alfworld_trajectory_dataset_v5
Viewer • Updated • 2.5k • 361
How to use legoskier/Qwen2.5-7B-agent-trajectory-lora_12_1 with PEFT:
Task type is invalid.
This repository provides a LoRA adapter fine-tuned from Qwen/Qwen2.5-7B-Instruct using LoRA + Unsloth on A100 80GB GPU.
This repository contains LoRA adapter weights only. The base model must be loaded separately.
This adapter is trained to improve multi-turn agent task performance on ALFWorld (household tasks) and DBBench (database operations).
Loss is applied to all assistant turns in the multi-turn trajectory, enabling the model to learn environment observation, action selection, tool use, and recovery from errors.
from transformers import AutoModelForCausalLM, AutoTokenizer
from peft import PeftModel
import torch
base = "Qwen/Qwen2.5-7B-Instruct"
adapter = "your_id/your-repo"
tokenizer = AutoTokenizer.from_pretrained(base)
model = AutoModelForCausalLM.from_pretrained(
base,
torch_dtype=torch.bfloat16,
device_map="auto",
attn_implementation="flash_attention_2",
)
model = PeftModel.from_pretrained(model, adapter)
Training data:
Dataset License: MIT License. Users must comply with the MIT license and the base model's original terms of use.