🧠
Model

Paraphrase Multilingual Minilm L12 V2

by Sentence Transformers ID: hf-model--sentence-transformers--paraphrase-multilingual-minilm-l12-v2
Scale 0.12B
Context Window 4.096K
Downloads 16.6M
FNI Rank 39
Percentile Top 0%
Activity
β†’ 0.0%

--- language: - multilingual - ar - bg - ca - cs - da - de - el - en - es - et - fa - fi - fr - gl - gu - he - hi - hr - hu - hy - id - it - ja - ka - ko - ku - lt - lv - mk - mn - mr - ms - my - nb - nl - pl - pt - ro - ru - sk - sl - sq - sr - sv - th - tr - uk - ur - vi -transformers tags: - sent...

Audited 39 FNI Score
Tiny 0.12B Params
4k Context
Hot 16.6M Downloads
8G GPU ~2GB Est. VRAM
Dense BERTMODEL Architecture
Model Information Summary
Entity Passport
Registry ID hf-model--sentence-transformers--paraphrase-multilingual-minilm-l12-v2
Provider huggingface
πŸ’Ύ

Compute Threshold

~1.4GB VRAM

Interactive
Analyze Hardware
β–Ό

* Static estimation for 4-Bit Quantization.

πŸ“œ

Cite this model

Academic & Research Attribution

BibTeX
@misc{hf_model__sentence_transformers__paraphrase_multilingual_minilm_l12_v2,
  author = {Sentence Transformers},
  title = {Paraphrase Multilingual Minilm L12 V2 Model},
  year = {2026},
  howpublished = {\url{https://huggingface.co/sentence-transformers/paraphrase-multilingual-MiniLM-L12-v2}},
  note = {Accessed via Free2AITools Knowledge Fortress}
}
APA Style
Sentence Transformers. (2026). Paraphrase Multilingual Minilm L12 V2 [Model]. Free2AITools. https://huggingface.co/sentence-transformers/paraphrase-multilingual-MiniLM-L12-v2

πŸ”¬Technical Deep Dive

Full Specifications [+]

⚑ Quick Commands

πŸ¦™ Ollama Run
ollama run paraphrase-multilingual-minilm-l12-v2
πŸ€— HF Download
huggingface-cli download sentence-transformers/paraphrase-multilingual-minilm-l12-v2
πŸ“¦ Install Lib
pip install -U transformers

βš–οΈ Free2AI Nexus Index

Methodology β†’ πŸ“˜ What is FNI?
39.0
Top 0% Overall Impact
πŸ”₯ Popularity (P) 0
πŸš€ Velocity (V) 0
πŸ›‘οΈ Credibility (C) 0
πŸ”§ Utility (U) 0
Nexus Verified Data

πŸ’¬ Why this score?

The Nexus Index for Paraphrase Multilingual Minilm L12 V2 aggregates Popularity (P:0), Velocity (V:0), and Credibility (C:0). The Utility score (U:0) represents deployment readiness, context efficiency, and structural reliability within the Nexus ecosystem.

Data Verified πŸ• Last Updated: Not calculated
Free2AI Nexus Index | Fair Β· Transparent Β· Explainable | Full Methodology
---

πŸš€ What's Next?

Technical Deep Dive


language:

  • multilingual
  • ar
  • bg
  • ca
  • cs
  • da
  • de
  • el
  • en
  • es
  • et
  • fa
  • fi
  • fr
  • gl
  • gu
  • he
  • hi
  • hr
  • hu
  • hy
  • id
  • it
  • ja
  • ka
  • ko
  • ku
  • lt
  • lv
  • mk
  • mn
  • mr
  • ms
  • my
  • nb
  • nl
  • pl
  • pt
  • ro
  • ru
  • sk
  • sl
  • sq
  • sr
  • sv
  • th
  • tr
  • uk
  • ur
  • vi
    license: apache-2.0
    library_name: sentence-transformers
    tags:
  • sentence-transformers
  • feature-extraction
  • sentence-similarity
  • transformers
    language_bcp47:
  • fr-ca
  • pt-br
  • zh-cn
  • zh-tw
    pipeline_tag: sentence-similarity

sentence-transformers/paraphrase-multilingual-MiniLM-L12-v2

This is a sentence-transformers model: It maps sentences & paragraphs to a 384 dimensional dense vector space and can be used for tasks like clustering or semantic search.

Usage (Sentence-Transformers)

Using this model becomes easy when you have sentence-transformers installed:

pip install -U sentence-transformers

Then you can use the model like this:

from sentence_transformers import SentenceTransformer
sentences = ["This is an example sentence", "Each sentence is converted"]

model = SentenceTransformer('sentence-transformers/paraphrase-multilingual-MiniLM-L12-v2') embeddings = model.encode(sentences) print(embeddings)

Usage (HuggingFace Transformers)

Without sentence-transformers, you can use the model like this: First, you pass your input through the transformer model, then you have to apply the right pooling-operation on-top of the contextualized word embeddings.

from transformers import AutoTokenizer, AutoModel
import torch


Mean Pooling - Take attention mask into account for correct averaging

def mean_pooling(model_output, attention_mask): token_embeddings = model_output[0] #First element of model_output contains all token embeddings input_mask_expanded = attention_mask.unsqueeze(-1).expand(token_embeddings.size()).float() return torch.sum(token_embeddings * input_mask_expanded, 1) / torch.clamp(input_mask_expanded.sum(1), min=1e-9)

Sentences we want sentence embeddings for

sentences = ['This is an example sentence', 'Each sentence is converted']

Load model from HuggingFace Hub

tokenizer = AutoTokenizer.from_pretrained('sentence-transformers/paraphrase-multilingual-MiniLM-L12-v2') model = AutoModel.from_pretrained('sentence-transformers/paraphrase-multilingual-MiniLM-L12-v2')

Tokenize sentences

encoded_input = tokenizer(sentences, padding=True, truncation=True, return_tensors='pt')

Compute token embeddings

with torch.no_grad(): model_output = model(**encoded_input)

Perform pooling. In this case, max pooling.

sentence_embeddings = mean_pooling(model_output, encoded_input['attention_mask'])

print("Sentence embeddings:") print(sentence_embeddings)

Full Model Architecture

SentenceTransformer(
  (0): Transformer({'max_seq_length': 128, 'do_lower_case': False}) with Transformer model: BertModel 
  (1): Pooling({'word_embedding_dimension': 384, 'pooling_mode_cls_token': False, 'pooling_mode_mean_tokens': True, 'pooling_mode_max_tokens': False, 'pooling_mode_mean_sqrt_len_tokens': False})
)

Citing & Authors

This model was trained by sentence-transformers.

If you find this model helpful, feel free to cite our publication Sentence-BERT: Sentence Embeddings using Siamese BERT-Networks:

@inproceedings{reimers-2019-sentence-bert,
    title = "Sentence-BERT: Sentence Embeddings using Siamese BERT-Networks",
    author = "Reimers, Nils and Gurevych, Iryna",
    booktitle = "Proceedings of the 2019 Conference on Empirical Methods in Natural Language Processing",
    month = "11",
    year = "2019",
    publisher = "Association for Computational Linguistics",
    url = "http://arxiv.org/abs/1908.10084",
}

πŸ“ Limitations & Considerations

  • β€’ Benchmark scores may vary based on evaluation methodology and hardware configuration.
  • β€’ VRAM requirements are estimates; actual usage depends on quantization and batch size.
  • β€’ FNI scores are relative rankings and may change as new models are added.
  • β€’ Source: Unknown
Top Tier

Social Proof

HuggingFace Hub
1.1KLikes
16.6MDownloads
πŸ”„ Daily sync (03:00 UTC)

AI Summary: Based on Hugging Face metadata. Not a recommendation.

πŸ“Š FNI Methodology πŸ“š Knowledge Baseℹ️ Verify with original source

πŸ›‘οΈ Model Transparency Report

Verified data manifest for traceability and transparency.

100% Data Disclosure Active

πŸ†” Identity & Source

id
hf-model--sentence-transformers--paraphrase-multilingual-minilm-l12-v2
source
huggingface
author
Sentence Transformers
tags
sentence-transformerspytorchtfonnxsafetensorsopenvinobertfeature-extractionsentence-similaritytransformersmultilingualarbgcacsdadeelenesetfafifrglguhehihrhuhyiditjakakokultlvmkmnmrmsmynbnlplptroruskslsqsrsvthtrukurviarxiv:1908.10084license:apache-2.0text-embeddings-inferenceendpoints_compatibleregion:us

βš™οΈ Technical Specs

architecture
BertModel
params billions
0.12
context length
4,096
pipeline tag
sentence-similarity
vram gb
1.4
vram is estimated
true
vram formula
VRAM β‰ˆ (params * 0.75) + 0.8GB (KV) + 0.5GB (OS)

πŸ“Š Engagement & Metrics

likes
1,072
downloads
16,597,830

Free2AITools Constitutional Data Pipeline: Curated disclosure mode active. (V15.x Standard)