Instructions to use barsbold/BLIP-MGLmusuemUpdated with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use barsbold/BLIP-MGLmusuemUpdated 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="barsbold/BLIP-MGLmusuemUpdated")# Load model directly from transformers import AutoProcessor, AutoModelForImageTextToText processor = AutoProcessor.from_pretrained("barsbold/BLIP-MGLmusuemUpdated") model = AutoModelForImageTextToText.from_pretrained("barsbold/BLIP-MGLmusuemUpdated") - Notebooks
- Google Colab
- Kaggle
Create preprocessor_config.json
Browse files- preprocessor_config.json +17 -0
preprocessor_config.json
ADDED
|
@@ -0,0 +1,17 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"do_normalize": true,
|
| 3 |
+
"do_resize": true,
|
| 4 |
+
"image_mean": [
|
| 5 |
+
0.48145466,
|
| 6 |
+
0.4578275,
|
| 7 |
+
0.40821073
|
| 8 |
+
],
|
| 9 |
+
"image_processor_type": "BlipImageProcessor",
|
| 10 |
+
"image_std": [
|
| 11 |
+
0.26862954,
|
| 12 |
+
0.26130258,
|
| 13 |
+
0.27577711
|
| 14 |
+
],
|
| 15 |
+
"processor_class": "BlipProcessor",
|
| 16 |
+
"size": 384
|
| 17 |
+
}
|