Model reference · open weights
az-en-MiniLM-L6 is an open-weight embedding model from LocalDoc. AxForge deploys and operates it for you on dedicated EU-owned hardware — with the licence handled where one is required.
Available as managed deployment — configured and operated for you on dedicated EU hardware, quoted per deployment.
What it is
| Released by | LocalDoc |
|---|---|
| Type | Embedding models |
| Task | Embeddings |
| Parameters (lead) | 30M |
| Context | 512 tokens |
| Released | 2025-05-31 |
| Popularity | 501 downloads / month |
| Licence | Open weights |
About
This is a sentence-transformer model that maps sentences & paragraphs in Azerbaijani (az) and English (en) to a 384-dimensional dense vector space. It is designed for tasks like semantic textual similarity, semantic search, paraphrase mining, text classification, and clustering for these two languages.
The model is based on sentence-transformers/all-MiniLM-L6-v2 and was fine-tuned using knowledge distillation from the high-performance BAAI/bge-small-en-v1.5 English embedding model.
A custom bilingual (Azerbaijani-English) SentencePiece Unigram tokenizer with a vocabulary of ~50k was trained from scratch and is used by this model.
sentence-transformers/all-MiniLM-L6-v2 (6 layers, 384 hidden dimension, 12 attention heads)BAAI/bge-small-en-v1.5.This model demonstrates strong performance on Azerbaijani Semantic Textual Similarity (STS) tasks LocalDoc-Azerbaijan/STS-Benchmark, achieving results competitive with, and in some cases surpassing, larger multilingual models.
The following results were obtained after 3 epochs of training :
| Dataset | Pearson Correlation |
|---|---|
| LocalDoc/Azerbaijani-STSBenchmark | 0.7595 |
| LocalDoc/Azerbaijani-biosses-sts | 0.7410 |
| LocalDoc/Azerbaijani-sickr-sts | 0.7432 |
| LocalDoc/Azerbaijani-sts12-sts | 0.7644 |
| LocalDoc/Azerbaijani-sts13-sts | 0.6336 |
| LocalDoc/Azerbaijani-sts15-sts | 0.7597 |
| LocalDoc/Azerbaijani-sts16-sts | 0.6848 |
| Average Pearson | 0.7266 |
Comparison with other models on (assumed) Azerbaijani STS Benchmarks (Average Pearson):
0.79590.78230.75770.73770.73180.72800.72880.72660.72500.72420.71420.6960First, install the sentence-transformers library:
pip install -U sentence-transformers
from sentence_transformers import SentenceTransformer
model_id = "LocalDoc/az-en-MiniLM-L6-v2"
try:
model = SentenceTransformer(model_id)
print(f"Model {model_id} loaded successfully!")
except Exception as e:
print(f"Failed to load model. Ensure the tokenizer 'LocalDoc/az-en-unigram-tokenizer-50k' is accessible and its dependencies (protobuf, sentencepiece_model_pb2.py) are met if loading fails.")
print(f"Error: {e}")
# You might need to ensure the tokenizer can be loaded.
# If the tokenizer requires it (it shouldn't if it's correctly packaged on the Hub by your tokenizer repo):
# !pip install protobuf
# !wget -P ./az_en_tokenizer_hf/ https://raw.githubusercontent.com/google/sentencepiece/master/python/src/sentencepiece/sentencepiece_model_pb2.py
# model = SentenceTransformer(model_id)
# Example Azerbaijani sentences
sentences_az = [
"Azərbaycanın paytaxtı Bakı şəhəridir.",
"Bu gün hava çox istidir."
]
# Example English sentences
sentences_en = [
"The capital of Azerbaijan is the city of Baku.",
"The weather is very hot today.",
"I enjoy reading books."
]
print("\nEncoding Azerbaijani sentences...")
embeddings_az = model.encode(sentences_az)
for sent, emb in zip(sentences_az, embeddings_az):
print(f"Sentence: {sent}")
print(f"Embedding shape: {emb.shape}, first 3 dims: {emb[:3]}\n")
print("Encoding English sentences...")
embeddings_en = model.encode(sentences_en)
for sent, emb in zip(sentences_en, embeddings_en):
print(f"Sentence: {sent}")
print(f"Embedding shape: {emb.shape}, first 3 dims: {emb[:3]}\n")
from sentence_transformers.util import cos_sim
similarity_matrix = cos_sim(embeddings_az[0], embeddings_en[0])
print(f"Similarity between '{sentences_az[0]}' and '{sentences_en[0]}': {similarity_matrix.item():.4f}")
similarity_matrix_diff = cos_sim(embeddings_az[0], embeddings_en[2])
print(f"Similarity between '{sentences_az[0]}' and '{sentences_en[2]}': {similarity_matrix_diff.item():.4f}")
This model was fine-tuned from sentence-transformers/all-MiniLM-L6-v2 using a knowledge distillation setup.
BAAI/bge-small-en-v1.5 (used to generate target embeddings for English sentences).sentence-transformers/all-MiniLM-L6-v2.LocalDoc/az-en-unigram-tokenizer-50k) was used.
The student model's token embedding layer was resized to match the new vocabulary size (~50k).MSELoss — the student model was trained to produce embeddings for both Azerbaijani and English sentences that are similar to the teacher model'sFrom the published model card. Full card on the HuggingFace links in the sidebar.
Benchmarks
As published on the model card — the maker's own numbers, not measured by AxForge.
| Task | Dataset | Metric | Score |
|---|---|---|---|
| Semantic Textual Similarity (Azerbaijani) | Azerbaijani STS Benchmarks (Average) | Average Pearson | 0.727 |
Using it via the API
Once AxForge deploys az-en-minilm-l6 for you, it answers on the OpenAI-compatible API — the same base URL and keys as every other model. (az-en-minilm-l6 below is illustrative; you get the exact model name on deployment.)
$ curl -sS https://api.axforge.ai/v1/embeddings \
-H "Authorization: Bearer $AXFORGE_API_KEY" \
-H "Content-Type: application/json" \
-d '{"model":"az-en-minilm-l6","input":"text to embed"}'
Create an account — your API key is available in the console. 3M free tokens every 30 days with every new account.