Instructions to use Marqo/marqo-ecommerce-embeddings-L with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- OpenCLIP
How to use Marqo/marqo-ecommerce-embeddings-L with OpenCLIP:
import open_clip model, preprocess_train, preprocess_val = open_clip.create_model_and_transforms('hf-hub:Marqo/marqo-ecommerce-embeddings-L') tokenizer = open_clip.get_tokenizer('hf-hub:Marqo/marqo-ecommerce-embeddings-L') - Transformers
How to use Marqo/marqo-ecommerce-embeddings-L with Transformers:
# Load model directly from transformers import AutoModel model = AutoModel.from_pretrained("Marqo/marqo-ecommerce-embeddings-L", trust_remote_code=True, device_map="auto") - Notebooks
- Google Colab
- Kaggle
Fix preprocess config
Browse files- open_clip_config.json +7 -7
open_clip_config.json
CHANGED
|
@@ -30,16 +30,16 @@
|
|
| 30 |
},
|
| 31 |
"preprocess_cfg": {
|
| 32 |
"mean": [
|
| 33 |
-
0.
|
| 34 |
-
0.
|
| 35 |
-
0.
|
| 36 |
],
|
| 37 |
"std": [
|
| 38 |
-
0.
|
| 39 |
-
0.
|
| 40 |
-
0.
|
| 41 |
],
|
| 42 |
"interpolation": "bicubic",
|
| 43 |
-
"resize_mode": "
|
| 44 |
}
|
| 45 |
}
|
|
|
|
| 30 |
},
|
| 31 |
"preprocess_cfg": {
|
| 32 |
"mean": [
|
| 33 |
+
0.5,
|
| 34 |
+
0.5,
|
| 35 |
+
0.5
|
| 36 |
],
|
| 37 |
"std": [
|
| 38 |
+
0.5,
|
| 39 |
+
0.5,
|
| 40 |
+
0.5
|
| 41 |
],
|
| 42 |
"interpolation": "bicubic",
|
| 43 |
+
"resize_mode": "squash"
|
| 44 |
}
|
| 45 |
}
|