u-10bei/sft_alfworld_trajectory_dataset_v5
Viewer • Updated • 2.5k • 104
How to use takayosh/agentbenchfinal with PEFT:
from peft import PeftModel
from transformers import AutoModelForCausalLM
base_model = AutoModelForCausalLM.from_pretrained("Qwen/Qwen2.5-7B-Instruct")
model = PeftModel.from_pretrained(base_model, "takayosh/agentbenchfinal")This repository provides a merged full model based on Qwen/Qwen2.5-7B-Instruct.
ties (density=0.1)This repository contains full merged weights (no adapter required).
Additional distilled datasets were optionally included.
from transformers import AutoModelForCausalLM, AutoTokenizer
model_id = "takayosh/agentbenchfinal"
tokenizer = AutoTokenizer.from_pretrained(model_id)
model = AutoModelForCausalLM.from_pretrained(
model_id,
torch_dtype="auto",
device_map="auto"
)
Training data:
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.