paraphrase-multilingual-MiniLM-L12-v2
by sentence-transformers
Lightweight multilingual sentence embeddings across 50+ languages
sentence-transformers/paraphrase-multilingual-MiniLM-L12-v2Overview
This Sentence-Transformers model maps sentences and short passages from 50+ languages into a shared 384-dimensional space, so semantically similar text clusters together regardless of language. It is small, fast, and CPU-friendly, which makes it a popular default for multilingual semantic search and clustering when latency and cost matter more than top-of-leaderboard accuracy.
On Mixpeek, it is a text embedding extractor for metadata, transcripts, captions, and document chunks: useful when content spans many languages and you need cheap, fast recall.
Architecture
12-layer multilingual MiniLM encoder fine-tuned with a paraphrase/contrastive objective and mean-pooled to a 384-dim sentence embedding. Distilled for speed, so it runs well on CPU.
Mixpeek SDK Integration
// No extractor parameter takes a Hugging Face model id (checked against
// GET /v1/discovery/extractors, which returns 13), so paraphrase-multilingual-MiniLM-L12-v2 runs
// on your side and the output is upserted through POST
// /v1/namespaces/{namespace_id}/documents/upsert. On Enterprise the other
// path is to upload the weights instead: POST /v1/namespaces/{id}/models
// accepts the huggingface format and a custom plugin loads them.
const res = await fetch(
"https://api.mixpeek.com/v1/namespaces/ns_your_namespace/documents/upsert",
{
method: "POST",
headers: {
Authorization: "Bearer API_KEY",
"Content-Type": "application/json",
},
body: JSON.stringify({
collection_id: "col_your_collection",
documents: [
{
document_id: "asset-00412",
// The vector name has to match a vector index on the collection.
vectors: { "text-embedding": yourVector },
payload: { source_key: "archive/2026/asset-00412" },
},
],
}),
},
);
// Managed alternative, if this exact model is not the requirement:
// text_extractor@v1 runs intfloat/multilingual-e5-large-instruct
// (1024-d) over a bucket, with no inference of your own.Capabilities
- 384-dim multilingual sentence embeddings (50+ languages)
- Cross-lingual semantic similarity and clustering
- Fast, small, CPU-friendly
- Drop-in Sentence-Transformers API
Use Cases on Mixpeek
Performance
Pick a larger multilingual model (bge-m3, multilingual-e5-large) when accuracy outranks latency
Common Pipeline Companions
Specification
Research Paper
Sentence-BERT / Making Monolingual Sentence Embeddings Multilingual
arxiv.orgBuild a pipeline with paraphrase-multilingual-MiniLM-L12-v2
Add this model to a processing pipeline alongside other extractors. Combine with retrieval stages for end-to-end search.
Run it on your own data, free