The CTX recipe with Stage 1 (domain-adaptive MLM) skipped — contrastive straight off ModernBERT-base. Shows DAPT adds only ~0.1 once Signals A+B are present.
A 149M-parameter ModernBERT-base scientific document embedder trained with citation-context sentences as the primary contrastive signal. Part of the SciEmbed release (paper under double-blind review; author info omitted).
1from sentence_transformers import SentenceTransformer
2
3model = SentenceTransformer("anon-nlp/sciembed-nodapt-ctx")
4emb = model.encode(["citation-context supervision for scientific embeddings"],
5 normalize_embeddings=True)
See the repository README. Paper: SciEmbed: Citation-Context Supervision for Scientific Document Embeddings (under review).