Instructions to use OpenGVLab/InternVL-Chat-ViT-6B-Vicuna-13B with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use OpenGVLab/InternVL-Chat-ViT-6B-Vicuna-13B with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("visual-question-answering", model="OpenGVLab/InternVL-Chat-ViT-6B-Vicuna-13B")# Load model directly from transformers import AutoProcessor, AutoModelForCausalLM processor = AutoProcessor.from_pretrained("OpenGVLab/InternVL-Chat-ViT-6B-Vicuna-13B") model = AutoModelForCausalLM.from_pretrained("OpenGVLab/InternVL-Chat-ViT-6B-Vicuna-13B", device_map="auto") - Notebooks
- Google Colab
- Kaggle
Update README.md
Browse files
README.md
CHANGED
|
@@ -2,7 +2,7 @@
|
|
| 2 |
inference: false
|
| 3 |
pipeline_tag: visual-question-answering
|
| 4 |
base_model:
|
| 5 |
-
- OpenGVLab/
|
| 6 |
- lmsys/vicuna-13b-v1.5
|
| 7 |
base_model_relation: merge
|
| 8 |
---
|
|
|
|
| 2 |
inference: false
|
| 3 |
pipeline_tag: visual-question-answering
|
| 4 |
base_model:
|
| 5 |
+
- OpenGVLab/InternViT-6B-224px
|
| 6 |
- lmsys/vicuna-13b-v1.5
|
| 7 |
base_model_relation: merge
|
| 8 |
---
|