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
File size: 1,169 Bytes
726d37e 6f035c1 726d37e | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 | """
Thin HuggingFace tokenizer wrapper around the custom BPE tokenizer.json.
Supports:
AutoTokenizer.from_pretrained("MenteEAI/mentee-embed-v3", trust_remote_code=True)
Internally uses the `tokenizers` fast library — the same tokenizer.json
that was always shipped with the model.
"""
from __future__ import annotations
from transformers import PreTrainedTokenizerFast
class MenteeTokenizer(PreTrainedTokenizerFast):
"""
Drop-in HuggingFace tokenizer for mentee-embed models.
Wraps the BPE tokenizer.json trained alongside the model.
Usage:
from transformers import AutoTokenizer
tok = AutoTokenizer.from_pretrained("MenteEAI/mentee-embed-v3", trust_remote_code=True)
enc = tok(["hello world"], return_tensors="pt", padding=True, truncation=True)
"""
# tell HF what the special tokens are named
model_input_names = ["input_ids", "attention_mask"]
def __init__(self, *args, **kwargs):
# [PAD]=0, [UNK]=1 — these exist in the tokenizer.json vocab already
kwargs.setdefault("pad_token", "[PAD]")
kwargs.setdefault("unk_token", "[UNK]")
super().__init__(*args, **kwargs)
|