This is a ScAndinavian GenerAl embedding model (SAGA), as of writing (2026-05-04) it is ranked 9th on MTEB for scandinavian tasks and is currently the highest ranked model under 1.5 billion parameters.
SAGA-embed was initialized from a ModernBert architecture and trained on approximately 250 million semantically related pairs and then fine-tuned.
The model has not been optimized for any particular task, the main goal was to create a small, easy to use model for the scandinavian languages.
The model can be used without prompts, but has also been trained using custom prompts for different tasks. Using prompts is recommended to achieve optimal performance. For standard inference, format your prompts as follows:
1from sentence_transformers import SentenceTransformer
2
3model = SentenceTransformer("nicher92/saga_embed_v1")
4
5# Example: Encoding a search query
6query = "task: retrieval | query: Hur mycket skatt betalar jag i Sverige?"
7embedding = model.encode(query)