Sentence Similarity
Transformers
Safetensors
English
Arabic
Urdu
mentee_embed
feature-extraction
embeddings
retrieval
contrastive-learning
multilingual
from-scratch
custom_code
Instructions to use MenteEAI/mentee-embed-v3 with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use MenteEAI/mentee-embed-v3 with Transformers:
# Load model directly from transformers import AutoModel model = AutoModel.from_pretrained("MenteEAI/mentee-embed-v3", trust_remote_code=True, device_map="auto") - Notebooks
- Google Colab
- Kaggle
Fix AutoTokenizer auto_map format
Browse files- tokenizer_config.json +4 -1
tokenizer_config.json
CHANGED
|
@@ -1,7 +1,10 @@
|
|
| 1 |
{
|
| 2 |
"tokenizer_class": "MenteeTokenizer",
|
| 3 |
"auto_map": {
|
| 4 |
-
"AutoTokenizer":
|
|
|
|
|
|
|
|
|
|
| 5 |
},
|
| 6 |
"model_max_length": 512,
|
| 7 |
"padding_side": "right",
|
|
|
|
| 1 |
{
|
| 2 |
"tokenizer_class": "MenteeTokenizer",
|
| 3 |
"auto_map": {
|
| 4 |
+
"AutoTokenizer": [
|
| 5 |
+
"tokenization_mentee.MenteeTokenizer",
|
| 6 |
+
null
|
| 7 |
+
]
|
| 8 |
},
|
| 9 |
"model_max_length": 512,
|
| 10 |
"padding_side": "right",
|