CoolFace
Modelpublic

Gameselo/french-bge-m3

sourceHugging Facemitupdated 2y agoView on Hugging Face
0likes99downloads
Model Card

pipeline_tag: sentence-similarity language: fr license: mit tags:

  • passage-retrieval
  • sentence-similarity
  • pruned libraryname: sentence-transformers basemodel: BAAI/bge-m3 basemodelrelation: quantized ---

🇫🇷 french-bge-m3

This model is a 38.4% smaller version of BAAI/bge-m3 for the French language, created using the mtem-pruner space.

This pruned model should perform similarly to the original model for French language tasks with a much smaller memory footprint. However, it may not perform well for other languages present in the original multilingual model as tokens not commonly used in French were removed from the original multilingual model's vocabulary.

Usage

You can use this model with the Transformers library:

python
from transformers import AutoModel, AutoTokenizer

model_name = "Gameselo/french-bge-m3"
model = AutoModel.from_pretrained(model_name, trust_remote_code=True)
tokenizer = AutoTokenizer.from_pretrained(model_name, trust_remote_code=True, use_fast=True)

Or with the sentence-transformers library:

python
from sentence_transformers import SentenceTransformer

model = SentenceTransformer("Gameselo/french-bge-m3")

Credits: cc @antoinelouis