Instructions to use mclemcrew/Qwen2-Audio-MixAssist-LoRA with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- PEFT
How to use mclemcrew/Qwen2-Audio-MixAssist-LoRA with PEFT:
from peft import PeftModel from transformers import AutoModelForCausalLM base_model = AutoModelForCausalLM.from_pretrained("Qwen/Qwen2-Audio-7B-Instruct") model = PeftModel.from_pretrained(base_model, "mclemcrew/Qwen2-Audio-MixAssist-LoRA") - Notebooks
- Google Colab
- Kaggle
File size: 153 Bytes
fe1acc1 | 1 2 3 4 5 6 7 | {
"audio_bos_token": "<|audio_bos|>",
"audio_eos_token": "<|audio_eos|>",
"audio_token": "<|AUDIO|>",
"processor_class": "Qwen2AudioProcessor"
}
|