Instructions to use TIGER-Lab/ABC-Qwen2VL-Instruct with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- PEFT
How to use TIGER-Lab/ABC-Qwen2VL-Instruct with PEFT:
from peft import PeftModel from transformers import AutoModelForCausalLM base_model = AutoModelForCausalLM.from_pretrained("Qwen/Qwen2-VL-7B-Instruct") model = PeftModel.from_pretrained(base_model, "TIGER-Lab/ABC-Qwen2VL-Instruct") - Notebooks
- Google Colab
- Kaggle
Upload adapter_config.json
Browse files- adapter_config.json +1 -1
adapter_config.json
CHANGED
|
@@ -31,7 +31,7 @@
|
|
| 31 |
"self_attn.v_proj",
|
| 32 |
"mlp.up_proj"
|
| 33 |
],
|
| 34 |
-
"task_type": "
|
| 35 |
"use_dora": false,
|
| 36 |
"use_rslora": false
|
| 37 |
}
|
|
|
|
| 31 |
"self_attn.v_proj",
|
| 32 |
"mlp.up_proj"
|
| 33 |
],
|
| 34 |
+
"task_type": "CAUSAL_LM",
|
| 35 |
"use_dora": false,
|
| 36 |
"use_rslora": false
|
| 37 |
}
|