Instructions to use artificialguybr/textcaps-teste2 with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use artificialguybr/textcaps-teste2 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="artificialguybr/textcaps-teste2")# Load model directly from transformers import AutoProcessor, AutoModelForMultimodalLM processor = AutoProcessor.from_pretrained("artificialguybr/textcaps-teste2") model = AutoModelForMultimodalLM.from_pretrained("artificialguybr/textcaps-teste2", device_map="auto") - Notebooks
- Google Colab
- Kaggle
docs: add missing creator links
Browse files
README.md
CHANGED
|
@@ -79,3 +79,11 @@ During validation, one resizes the shorter edge of each image, after which cente
|
|
| 79 |
## Evaluation results
|
| 80 |
|
| 81 |
For evaluation results, we refer readers to the [paper](https://arxiv.org/abs/2205.14100).
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 79 |
## Evaluation results
|
| 80 |
|
| 81 |
For evaluation results, we refer readers to the [paper](https://arxiv.org/abs/2205.14100).
|
| 82 |
+
|
| 83 |
+
<!-- artificialguybr-links:start -->
|
| 84 |
+
### Explore More
|
| 85 |
+
|
| 86 |
+
Discover more of my models, projects, and practical AI resources:
|
| 87 |
+
- **AI tools directory:** [JustGoodAI](https://justgoodai.com/) — a curated directory of useful AI tools.
|
| 88 |
+
|
| 89 |
+
<!-- artificialguybr-links:end -->
|