The original LoRA adapter was trained on mixed agent trajectory data (ALFWorld + DBBench),
then merged into the base model and quantized with AutoAWQ for faster inference.
1from awq import AutoAWQForCausalLM
2from transformers import AutoTokenizer
3
4model_id = "UtsuSl0th/mixed-lora-3-awq"
5
6tokenizer = AutoTokenizer.from_pretrained(model_id)
7model = AutoAWQForCausalLM.from_quantized(
8 model_id,
9 device_map="auto",
10 fuse_layers=True,
11)
12
13inputs = tokenizer("Your prompt here", return_tensors="pt").to("cuda")
14outputs = model.generate(**inputs, max_new_tokens=256)
15print(tokenizer.decode(outputs[0], skip_special_tokens=True))
Dataset License: MIT License.
Users must comply with the MIT license and the base model's original terms of use.