Model reference · open weights
skill-sim-model is an open-weight embedding model from alvperez. 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 | alvperez |
|---|---|
| Type | Embedding models |
| Task | Embeddings |
| Parameters (lead) | 109M |
| Context | 514 tokens |
| Runs with | sentence-transformers |
| Released | 2025-05-21 |
| Popularity | 632 downloads / month |
| Licence | Open weights |
About
skill-sim-model is a fine-tuned Sentence-Transformers checkpoint that maps short skill phrases (e.g. Python, Forklift operation, Electrical wiring) into a 768‑D vector space where semantically related skills cluster together.
Training pairs come from the public ESCO taxonomy plus curated hard negatives for job‑matching research.
| Use‑case | How to leverage the embeddings |
|---|---|
| Candidate ↔ vacancy matching | score = cosine(skill_vec, job_vec) |
| Deduplicating skill taxonomies | cluster the vectors |
| Recruiter query‑expansion | nearest‑neighbour search |
| Exploratory dashboards | feed to t‑SNE / PCA |
pip install -U sentence-transformers
from sentence_transformers import SentenceTransformer, util
model = SentenceTransformer("alvperez/skill-sim-model")
skills = ["Electrical wiring",
"Circuit troubleshooting",
"Machine learning"]
emb = model.encode(skills, convert_to_tensor=True)
print(util.pytorch_cos_sim(emb[0], emb)) # similarity matrix
from transformers import pipeline
similarity = pipeline("sentence-similarity",
model="alvperez/skill-sim-model")
similarity("forklift operation",
["pallet jack", "python"])
| Metric | Value |
|---|---|
| Spearman correlation | 0.845 |
| ROC AUC | 0.988 |
| MAP@all (cold‑start) | 0.232 |
cold‑start = the system sees only skill strings, no historical interactions.
sentence-transformers/all-mpnet-base-v2CosineSimilarityLoss5 × 322 e‑5 / 100 stepsFull code in /training_scripts.
@misc{alvperez2025skillsim,
title = {Skill-Sim: a Sentence-Transformers model for skill similarity and job matching},
author = {Pérez Amado, Álvaro},
howpublished = {\url{https://huggingface.co/alvperez/skill-sim-model}},
year = {2025}
}
Built on top of Sentence-Transformers and the public ESCO dataset. Feedback & PRs welcome!
From the published model card. Full card on the HuggingFace links in the sidebar.
Using it via the API
Once AxForge deploys skill-sim-model for you, it answers on the OpenAI-compatible API — the same base URL and keys as every other model. (skill-sim-model 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":"skill-sim-model","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.