Instructions to use braintacles/brainblip with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use braintacles/brainblip 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="braintacles/brainblip")# Load model directly from transformers import AutoProcessor, AutoModelForImageTextToText processor = AutoProcessor.from_pretrained("braintacles/brainblip") model = AutoModelForImageTextToText.from_pretrained("braintacles/brainblip") - Notebooks
- Google Colab
- Kaggle
Update README.md
Browse files
README.md
CHANGED
|
@@ -11,7 +11,7 @@ license: bsd-3-clause
|
|
| 11 |
### Model Description
|
| 12 |
|
| 13 |
BrainBLIP is finetuned to give more natural captions for training text-to-image datasets with an emphasis on natural language while adding a minimal amount of tags for context.
|
| 14 |
-
This model also introduces "movie rating" tags similar to what CivitAI has implemented:
|
| 15 |
- PG_RATING
|
| 16 |
- PG13_RATING
|
| 17 |
- R_RATING
|
|
|
|
| 11 |
### Model Description
|
| 12 |
|
| 13 |
BrainBLIP is finetuned to give more natural captions for training text-to-image datasets with an emphasis on natural language while adding a minimal amount of tags for context.
|
| 14 |
+
This model also introduces "movie rating" tags similar to [what CivitAI has implemented](https://education.civitai.com/civitais-guide-to-content-levels/):
|
| 15 |
- PG_RATING
|
| 16 |
- PG13_RATING
|
| 17 |
- R_RATING
|