Instructions to use OpenGVLab/InternVL-14B-224px with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use OpenGVLab/InternVL-14B-224px with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("image-feature-extraction", model="OpenGVLab/InternVL-14B-224px", trust_remote_code=True)# Load model directly from transformers import AutoProcessor, AutoModel processor = AutoProcessor.from_pretrained("OpenGVLab/InternVL-14B-224px", trust_remote_code=True) model = AutoModel.from_pretrained("OpenGVLab/InternVL-14B-224px", trust_remote_code=True) - Notebooks
- Google Colab
- Kaggle
Update README.md
Browse files
README.md
CHANGED
|
@@ -117,7 +117,7 @@ caption = tokenizer.decode(pred[0].cpu(), skip_special_tokens=True).strip()
|
|
| 117 |
|
| 118 |
## Citation
|
| 119 |
|
| 120 |
-
If you find this project useful in your research, please consider
|
| 121 |
|
| 122 |
```BibTeX
|
| 123 |
@article{chen2023internvl,
|
|
|
|
| 117 |
|
| 118 |
## Citation
|
| 119 |
|
| 120 |
+
If you find this project useful in your research, please consider citing:
|
| 121 |
|
| 122 |
```BibTeX
|
| 123 |
@article{chen2023internvl,
|