Views
No views yet
Qwen/Qwen3-Omni-30B-A3B-Instruct| Subfolder | Description |
|---|---|
system1_train_only_empty5_2k | Train-only strong audio-dependent data plus 5% empty-audio unknown negatives, checkpoint 2000. |
system2_train_dev_empty5_2k | Train+dev strong audio-dependent data plus 5% empty-audio unknown negatives, checkpoint 2000. |
system3_train_dev_empty2p5_3k | Train+dev strong audio-dependent data plus 2.5% empty-audio unknown negatives, checkpoint 3000. |
1from transformers import AutoProcessor
2from peft import PeftModel
3
4base_model = "Qwen/Qwen3-Omni-30B-A3B-Instruct"
5adapter_repo = "frednamfred/adqa_nam_qwen3_omni_lora"
6subfolder = "system1_train_only_empty5_2k"
7
8processor = AutoProcessor.from_pretrained(base_model, trust_remote_code=True)
9# Load the Qwen3-Omni model with the model class used in your local Qwen3-Omni setup,
10# then attach the LoRA adapter:
11model = PeftModel.from_pretrained(model, adapter_repo, subfolder=subfolder)