SkillScout Large is a dense bi-encoder for retrieving relevant skills from a job title.
Given a job title (e.g., "Data Scientist"), it encodes it into a 1024-dimensional embedding and retrieves the most semantically relevant skills from the ESCO skill gazetteer (9,052 skills) using cosine similarity.
This is Stage 1 of the TalentGuide two-stage job-skill matching pipeline, trained for TalentCLEF 2026 Task B.
Best pipeline result (TalentCLEF 2026 validation set):
nDCG@10 graded = 0.6896 · nDCG@10 binary = 0.7330
when combined with a fine-tuned cross-encoder re-ranker at blend α = 0.7.
Bi-encoder alone: nDCG@10 graded = 0.3621 · MAP = 0.4545
1from sentence_transformers import SentenceTransformer
2import faiss, numpy as np
34model = SentenceTransformer("talentguide/skillscout-large")56# --- Build index once over your skill corpus ---7skill_texts =[...]# list of skill names / descriptions89embs = model.encode(skill_texts, batch_size=128,10 normalize_embeddings=True,11 show_progress_bar=True).astype(np.float32)1213index = faiss.IndexFlatIP(embs.shape[1])# inner product on L2-normed = cosine14index.add(embs)1516# --- Query at inference time ---17job_title ="Software Engineer"18q = model.encode([job_title], normalize_embeddings=True).astype(np.float32)1920scores, idxs = index.search(q, k=50)21for rank,(idx, score)inenumerate(zip(idxs[0], scores[0]),1):22print(f"{rank:3d}. [{score:.4f}] {skill_texts[idx]}")
Demo Output
Software Engineer
1. [0.942] define software architecture
2. [0.938] software frameworks
3. [0.935] create software design
Data Scientist
1. [0.951] data science
2. [0.921] establish data processes
3. [0.919] create data models
Electrician
1. [0.944] install electric switches
2. [0.938] install electricity sockets
3. [0.930] use electrical wire tools
Two-Stage Pipeline Integration
SkillScout Large is designed as Stage 1 — fast ANN retrieval.
For maximum ranking quality, pair it with a cross-encoder re-ranker:
Job title
│
▼
[SkillScout Large] ← this model
│ top-200 candidates (FAISS ANN, ~40ms)
▼
[Cross-encoder re-ranker]
│ fine-grained re-scoring of top-200
▼
Final ranked list (graded: core > contextual > irrelevant)
Evaluated with sentence_transformers.evaluation.InformationRetrievalEvaluator (binary: any qrel > 0 = relevant).
Pipeline Results (graded nDCG, full 9052-skill ranking, server-side)
Run
nDCG@10 graded
nDCG@10 binary
MAP
Zero-shot jjzha/esco-xlm-roberta-large
0.2039
0.2853
0.2663
SkillScout Large (bi-encoder only)
0.3621
0.4830
0.4545
SkillScout Large + cross-encoder (α=0.7)
0.6896
0.7330
0.2481
Competitive Context (TalentCLEF 2025 Task B)
Team
MAP (test)
Approach
pjmathematician (winner 2025)
0.36
GTE 7B + contrastive + LLM-augmented data
NLPnorth (3rd of 14, 2025)
0.29
3-class discriminative classification
SkillScout Large (2026 val)
0.4545
MNR fine-tuned bi-encoder (Stage 1 only)
Limitations
English only — trained on ESCO EN labels.
ESCO-domain — optimised for the ESCO skill taxonomy; performance on other taxonomies (O*NET, custom) may vary without fine-tuning.
64-token cap — long job descriptions should be reduced to a concise title before encoding.
Graded distinction — the bi-encoder alone does not reliably separate core (2) from contextual (1) skills; a cross-encoder re-ranker is needed for strong graded nDCG.
Citation
bibtex
1@misc{talentguide-skillscout-2026,
2 title = {SkillScout Large: Dense Job-to-Skill Retrieval for TalentCLEF 2026},
3 author = {TalentGuide},
4 year = {2026},
5 url = {https://huggingface.co/talentguide/skillscout-large}
6}
78@misc{talentclef2026taskb,
9 title = {TalentCLEF 2026 Task B: Job-Skill Matching},
10 author = {TalentCLEF Organizers},
11 year = {2026},
12 url = {https://talentclef.github.io/}
13}