Train or fine-tune sentence-transformers models across `SentenceTransformer` (bi-encoder, dense or static embedding model for retrieval, similarity, clustering, classification, paraphrase mining, dedup, multimodal), `CrossEncoder` (reranker, pair scoring for two-stage retrieval / pair classification), `SparseEncoder` (SPLADE, sparse embedding model for learned-sparse retrieval), and `MultiVectorEncoder` (ColBERT / late-interaction, per-token embeddings scored with MaxSim). Covers loss selection…
Train or fine-tune sentence-transformers models across `SentenceTransformer` (bi-encoder, dense or static embedding model for retrieval, similarity, clustering, classification, paraphrase mining, dedup, multimodal), `CrossEncoder` (reranker, pair scoring for two-stage retrieval / pair classification), `SparseEncoder` (SPLADE, sparse embedding model for learned-sparse retrieval), and `MultiVectorEncoder` (ColBERT / late-interaction, per-token embeddings scored with MaxSim).
Covers loss selection, hard-negative mining, evaluators, distillation, LoRA, Matryoshka, and Hugging Face Hub publishing.
Use for any sentence-transformers training task.
Similar popular skills
Related neighbors and high-traction skills in the same topics — useful to compare before installing.
Declared targets from SKILL.md / docs. Unmarked agents are not listed — the skill may still install via the CLI.
Claude CodeNot declared
CursorNot declared
CodexNot declared
GitHub CopilotNot declared
WindsurfNot declared
Gemini CLINot declared
ClineNot declared
OpenCodeNot declared
Repository health
Stars11.0K
LicenseLICENSE
Default branchmain
Open issues10
Status
Active
Package contents
Files included with this skill beyond the listing page.
skill mdSKILL.md10,502 B
docsSUMMARY.md683 B
History
First seen on skills.sh
First recorded snapshot · 1,200 installs
SKILL.md
Train a sentence-transformers Model
This SKILL.md is a router, not a manual. It tells you which references and example scripts to load for your task. The actual content (recommended losses, evaluators, training-script structure, model selection, training-arg knobs, troubleshooting) lives in references/ and scripts/.
Do not synthesize a training script from this file alone. Open the per-type production template (scripts/train<type>example.py) and copy it as your starting point. The templates contain load-bearing scaffolding (autocast helper, model-card class, logger silencing list, force=True, seed, TF32, version-compatible imports, named-evaluator metric handling) that prior agent runs have repeatedly missed when rolling their own from a synthesized snippet.
references/evaluatorssparseencoder.md: SparseNanoBEIREvaluator (English-only) and the in-domain alternative, eval{name}{primary_metric} key format.
scripts/trainsparseencoder_example.py: production template. Copy this as your starting point.
[MultiVectorEncoder]
references/lossesmultivectorencoder.md: MaxSim scoring, scale choice per scoring mode (scale=1.0 for MaxSim, roughly the average query length for MeanMaxSim), MNRL / CachedMNRL / MarginMSE / DistillKLDiv, XTR-vs-ColBERT scoring, CachedMNRL ↔ gradientcheckpointing incompatibility.
references/evaluatorsmultivectorencoder.md: MultiVectorNanoBEIREvaluator (English-only) and the in-domain alternative, evalNanoBEIRmeanmaxsim_ndcg@10 key format, distillation-eval spearman variant.
scripts/trainmultivectorencoderexample.py: production template. Copy this as your starting point.
Cross-cutting: always required (regardless of task)
references/trainingargs.md: TrainingArguments knobs, precision rules (load fp32 + autocast bf16/fp16, never torchdtype=bfloat16), warmupsteps (float) vs deprecated warmupratio, savesteps must be a multiple of evalsteps for loadbestmodelatend, schedulers, HPO, tracker, resume, hub-push variants.
references/troubleshooting.md: symptom-indexed failure recipes. Skim the section headings on every run, even a healthy one. The "Metrics don't improve" and "Hub push fails" entries cover bugs that bite frequently and are cheaper to recognize before they fire than to debug after.
Cross-cutting: load when applicable
references/hardware_guide.md: VRAM sizing, multi-GPU, FSDP / DeepSpeed, HF Jobs flavors. Required for >24GB models, multi-GPU, or HF Jobs runs.
references/hfjobsexecution.md: required when running on HF Jobs.
references/promptsandinstructions.md: required when using prompt-tuned bases (E5, BGE, GTE, Qwen3-Embedding, Instructor, Nomic, etc.) or adding query: / passage: style prefixes.
Local execution. Pitch HF Jobs only if local hardware can't fit the job.
Single run. After it completes, propose experimentation if the user would benefit (weak/marginal verdict, "see how high you can push it" framing, etc.). Iteration rules in references/training_args.md (Experimentation section).
Public Hub push at end-of-run, wrapped in try-except. On HF Jobs (ephemeral env) ALSO enable in-trainer push (pushtohub=True + hubstrategy="everysave"). Details in references/hfjobsexecution.md.
4. Constraints the produced script must satisfy
These are non-negotiable contracts. Implementation lives in the production templates and references. Do not reinvent.
Capture the pre-training evaluator score as baseline_evalbeforetrainer.train().
Emit a single end-of-run line: VERDICT: WIN|MARGINAL|REGRESSION | score=... | baseline=... | delta=.... A monitor scrapes for this.
Silence httpx, httpcore, huggingface_hub, urllib3, filelock, fsspec to WARNING (otherwise HF download URLs flood the agent's context).
Tee logs to logs/{RUN_NAME}.log.
End with model.pushtohub(...) wrapped in try/except.
Smoke-test before any long run (maxsteps=1 + tiny dataset slice). The production templates show one common pattern (SMOKETEST env var).
[CrossEncoder] Include EarlyStoppingCallback(patience>=3). CE rerankers often peak mid-training and regress.
[SparseEncoder] Log queryactivedims / corpusactivedims on the verdict line. High nDCG with collapsed sparsity is not a win. The keys come back name-prefixed (e.g. ...queryactive_dims). Use suffix matching to pluck them. See the SPARSE production template for the exact pattern.
[MultiVectorEncoder] Match scale to the scoring mode on any MNRL-family loss: near 1.0 for unnormalized MaxSim (do not copy scale=20.0 from bi-encoder MNRL), roughly the average query length with length-normalized MeanMaxSim, since each score is divided by its query's token count. XTRScores is a train-only similarity_fct: the evaluators reject it, so evaluation always scores with MaxSim, including for XTR-trained models.
5. Workflow
Identify the model type (§1). Ask if ambiguous.
Load the §2 required-reading files for that type.
Open scripts/train<type>example.py and copy it as your starting point.
Replace MODELNAME, DATASETNAME, RUNNAME, the loss, and the evaluator with the user's task. Cross-check loss/data-shape match against references/losses<type>.md. Cross-check the metricforbestmodel key against references/evaluators<type>.md (named evaluators format the key as eval{name}{primary_metric}).
Smoke-test (max_steps=1).
Run.
After the run, append to logs/experiments.md and propose iteration if the verdict is weak/marginal.