u-10bei/sft_alfworld_trajectory_dataset_v5
Viewer • Updated • 2.5k • 898
How to use naru0411/LLM-Competition-advanced-004 with PEFT:
Task type is invalid.
This repository provides a LoRA adapter fine-tuned from Qwen/Qwen2.5-7B-Instruct using LoRA + Unsloth. This adapter is specifically optimized for high-performance autonomous agents that balance spatial efficiency and logical reasoning.
This adapter is trained to improve multi-turn agent task performance across two distinct domains:
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.float16,
device_map="auto",
)
model = PeftModel.from_pretrained(model, adapter)
Training data ALFWorld Data: u-10bei/sft_alfworld_trajectory_dataset_v5 DBBench Data: u-10bei/dbbench_sft_dataset_react_v4
Dataset License: MIT License. This dataset is used and distributed under the terms of the MIT License. Compliance: Users must comply with the MIT license (including copyright notice) and the base model's original terms of use.