Instructions to use Glccampos/llm_qween with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- PEFT
How to use Glccampos/llm_qween with PEFT:
from peft import PeftModel from transformers import AutoModelForCausalLM base_model = AutoModelForCausalLM.from_pretrained("Qwen/Qwen2.5-0.5B-Instruct") model = PeftModel.from_pretrained(base_model, "Glccampos/llm_qween") - Notebooks
- Google Colab
- Kaggle
Qwen Q&A LoRA Adapter
This repository contains a LoRA adapter fine-tuned for question answering.
Base Model
Qwen/Qwen2.5-0.5B-Instruct
Training Data
squad formatted as context-question-answer chat examples.
MLflow
The adapter files and Hugging Face repo URL are also logged in MLflow under experiment qwen_qa_lora_cpu.
Usage
Load this adapter with peft.PeftModel.from_pretrained on top of the base model.
- Downloads last month
- 839