CoolFace
Modelpublic

jacrecra/dutch-english-multilingual-e5-large-instruct

sourceHugging Facemitupdated 1y agoView on Hugging Face
0likes124downloads
Model Card

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

  • —passage-retrieval
  • —sentence-similarity
  • —pruned libraryname: sentence-transformers basemodel: intfloat/multilingual-e5-large-instruct basemodelrelation: quantized ---

🇳🇱 dutch-english-multilingual-e5-large-instruct

This model is a 37.2% smaller version of intfloat/multilingual-e5-large-instruct for the Dutch language, created using the mtem-pruner space.

This pruned model should perform similarly to the original model for Dutch 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 Dutch 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 = "jacrecra/dutch-english-multilingual-e5-large-instruct"
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("jacrecra/dutch-english-multilingual-e5-large-instruct")

Credits: cc @antoinelouis