Model reference · open weights
norbert4-scandinavian-embedding is an open-weight embedding model from thivy. 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 | thivy |
|---|---|
| Type | Embedding models |
| Task | Embeddings |
| Parameters (lead) | 149M |
| Runs with | sentence-transformers |
| Released | 2026-01-04 |
| Popularity | 2k downloads / month |
| Licence | Open weights |
About
Multi-dataset trained embedding model for Norwegian, Danish, and Swedish languages.
Total: 1.6M samples across 3 Scandinavian languages
MTEB Retrieval Benchmarks (vs previous models):
| Task | Multi-Dataset | QA-only | NLI-only | Improvement |
|---|---|---|---|---|
| NorQuadRetrieval (ndcg@10) | 0.232 | 0.209 | 0.163 | +11.0% |
| SNLRetrieval (ndcg@10) | 0.818 | 0.765 | 0.519 | +6.9% |
from sentence_transformers import SentenceTransformer
model = SentenceTransformer("thivy/norbert4-base-scandinavian-embedding")
# Encode sentences
sentences = [
"Dette er en norsk setning",
"Detta är en svensk mening",
"Dette er en dansk sætning"
]
embeddings = model.encode(sentences)
# Compute similarity
from sentence_transformers.util import cos_sim
similarity = cos_sim(embeddings[0], embeddings[1])
If you use this model, please cite:
@misc{norbert4-scandi-embedding,
title={NorBERT4 Scandinavian Embedding Model},
author={Thivyesh Ahilathasan},
year={2025},
url={https://huggingface.co/thivy/norbert4-base-scandinavian-embedding}
}
From the published model card. Full card on the HuggingFace links in the sidebar.
Using it via the API
Once AxForge deploys norbert4-scandinavian-embedding for you, it answers on the OpenAI-compatible API — the same base URL and keys as every other model. (norbert4-scandinavian-embedding 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":"norbert4-scandinavian-embedding","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.