Instructions to use nlpconnect/vit-gpt2-image-captioning with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use nlpconnect/vit-gpt2-image-captioning with Transformers:
# Use a pipeline as a high-level helper # Warning: Pipeline type "image-to-text" is no longer supported in transformers v5. # You must load the model directly (see below) or downgrade to v4.x with: # 'pip install "transformers<5.0.0' from transformers import pipeline pipe = pipeline("image-to-text", model="nlpconnect/vit-gpt2-image-captioning")# Load model directly from transformers import AutoTokenizer, AutoModelForImageTextToText tokenizer = AutoTokenizer.from_pretrained("nlpconnect/vit-gpt2-image-captioning") model = AutoModelForImageTextToText.from_pretrained("nlpconnect/vit-gpt2-image-captioning") - Notebooks
- Google Colab
- Kaggle
Commit ·
0e334c7
1
Parent(s): a64c68b
contact updated
Browse files
README.md
CHANGED
|
@@ -84,4 +84,7 @@ image_to_text("https://ankur3107.github.io/assets/images/image-captioning-exampl
|
|
| 84 |
|
| 85 |
|
| 86 |
# Contact for any help
|
| 87 |
-
* https://huggingface.co/ankur310794
|
|
|
|
|
|
|
|
|
|
|
|
| 84 |
|
| 85 |
|
| 86 |
# Contact for any help
|
| 87 |
+
* https://huggingface.co/ankur310794
|
| 88 |
+
* https://twitter.com/ankur310794
|
| 89 |
+
* http://github.com/ankur3107
|
| 90 |
+
* https://www.linkedin.com/in/ankur310794
|