Retrieval — official Qwen query prompt on the question only:
python
1q = model.encode(["När får jag föräldrapenning?"], prompt_name="query", normalize_embeddings=True)2d = model.encode(["Du kan ansöka på Mina sidor."], normalize_embeddings=True)3print(float(q[0] @ d[0]))
STS / clustering: no prompt. Keep all 1024 dims.
Benchmarks
SuperLim-2 (held-out test)
Spearman of cosine vs human 0–5 on SweParaphrase (n=1378). SweFAQ is in-category accuracy (n=109). Same frozen sbx/superlim-2 splits as the KBLab re-run.
Model
Params
SweParaphrase ρ
SweFAQ
KBLab v2.0 (our re-run)
110M
0.8207
0.5780
Qwen3-Embedding-0.6B zero-shot (base)
596M
0.7294
0.5229
CoSENT parent
596M
0.8279
0.5229
CoSENT→FAQ parent
596M
0.8205
0.5963
this soup (0.15 / 0.85)
596M
0.8226
0.6055
SweParaphrase test was never in train. SweFAQ used official train only — do not call SweFAQ zero-shot. Dev also clears (0.848 / 0.645).
MTEB (Scandinavian, v1)
mteb 2.19.3, max_seq_length=512. 27/28 tasks (DKHateClassification gated, skipped). SweFAQ here is nDCG@10 and is supervised for this soup. SuperLim-targeted checkpoint — it does not beat KBLab on the Swedish-only MTEB mean.
Swedish tasks:
Task
KBLab
Qwen 0.6B (base)
this soup
BGE-sv-mix@768
DalajClassification
0.5003
0.5018
0.5036
0.4993
SweRecClassification
0.6858
0.6532
0.7300
0.7647
SwedishSentimentClassification
0.8737
0.8411
0.9170
0.9293
SweFaqRetrieval nDCG@10 †
0.7331
0.6747
0.7295
0.8221
SwednRetrieval
0.7067
0.6638
0.6517
0.7809
SwednClusteringP2P
0.3641
0.3298
0.3520
0.3554
SwednClusteringS2S
0.2486
0.0716
0.0893
0.1991
MassiveIntent (sv)
0.6587
0.5772
0.5968
0.6824
MassiveScenario (sv)
0.7475
0.6543
0.6737
0.7553
SV mean (9)
0.6132
0.5519
0.5826
0.6432
† Supervised for this soup. SwednRetrieval has no train overlap and went the wrong way vs both KBLab and vanilla Qwen.
Nordic category means (27 tasks):
KBLab
Qwen 0.6B (base)
this soup
BGE-sv-mix@768
Classification (12)
0.5243
0.5503
0.5707
0.5960
Retrieval (7)
0.4466
0.6117
0.6066
0.6915
Clustering (6)
0.4091
0.3618
0.3741
0.4101
Bitext (2)
0.4338
0.7314
0.6846
0.6876
Overall (27)
0.4719
0.5377
0.5448
0.5862
The soup slightly lifts vanilla Qwen on the Nordic mean. It still trails KBLab on the Swedish subset. Use the BGE sister model if you want the broader Swedish retrieval lift.
Weight soup of two Swedish fine-tunes of Qwen/Qwen3-Embedding-0.6B:
0.15 × CoSENT (STS) + 0.85 × CoSENT-then-FAQ
CoSENT on all graded SweParaphrase-train pairs (label / 5). SuperLim dev/test blocked. First 0.6B Qwen in this lab over 0.821 Spearman.
Light MNRL continue on SweFAQ-train + Swedish healthcare Q–A (Qwen query prefix). FAQ recovered; STS fell to 0.8205.
Soup the two state_dicts. Mix weights that clear both bars on dev also clear test.
Do not 4-bit this checkpoint if you want the STS claim. The lead over KBLab is +0.002.
Intended use
Swedish STS, clustering, and retrieval (FAQ / search). Not a general “best Nordic embedder.”
Limits
Fine-tune + soup, not a new architecture.
SweFAQ n=109; this is +3 items vs the KBLab re-run.
Behind the BGE Swedish mix on both SuperLim tasks.
SuperLim claim is SweParaphrase + SweFAQ only. On MTEB Scandinavian the Swedish-only mean is still under KBLab.
License
Apache-2.0, same as Qwen3-Embedding-0.6B. Fine-tune by oxfrug.
Citation
bibtex
1@article{qwen3embedding,
2 title={Qwen3 Embedding: Advancing Text Embedding and Reranking Through Foundation Models},
3 author={Zhang, Yanzhao and Li, Mingxin and Long, Dingkun and Zhang, Xin and Lin, Huan and Yang, Baosong and Xie, Pengjun and Yang, An and Liu, Dayiheng and Lin, Junyang and Huang, Fei and Zhou, Jingren},
4 journal={arXiv preprint arXiv:2506.05176},
5 year={2025}
6}
78@inproceedings{berdicevskis-etal-2023-superlim,
9 title = {Superlim: A {S}wedish Language Understanding Evaluation Benchmark},
10 author = {Berdicevskis, Aleksandrs and Bouma, Gerlof and Kurtz, Robin and Morger, Felix and {\"O}hman, Joey and Adesam, Yvonne and Borin, Lars and Dann{\'e}lls, Dana and Forsberg, Markus and Isbister, Tim and Lindahl, Anna and Malmsten, Martin and Rekathati, Faton and Sahlgren, Magnus and Volodina, Elena and B{\"o}rjeson, Love and Hengchen, Simon and Tahmasebi, Nina},
11 booktitle = {Proceedings of EMNLP 2023},
12 year = {2023}
13}