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
Update README.md
Browse files
README.md
CHANGED
|
@@ -19,6 +19,10 @@ Instruction finetuned adapter for ABC: Acheiving Better Control of Multiomodal E
|
|
| 19 |
|
| 20 |
This model is trained on top of Qwen2VL-Instruct.
|
| 21 |
|
|
|
|
|
|
|
|
|
|
|
|
|
| 22 |
## Citation
|
| 23 |
|
| 24 |
<!-- If there is a paper or blog post introducing the model, the APA and Bibtex information for that should go in this section. -->
|
|
|
|
| 19 |
|
| 20 |
This model is trained on top of Qwen2VL-Instruct.
|
| 21 |
|
| 22 |
+
### Paper and Website
|
| 23 |
+
|
| 24 |
+
For more information, please refer to [Website](https://tiger-ai-lab.github.io/ABC/).
|
| 25 |
+
|
| 26 |
## Citation
|
| 27 |
|
| 28 |
<!-- If there is a paper or blog post introducing the model, the APA and Bibtex information for that should go in this section. -->
|