This model is a 66.3% smaller version of
intfloat/multilingual-e5-small
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.
1from transformers import AutoModel, AutoTokenizer
2
3model_name = "cdinh2022/dutch-english-multilingual-e5-small"
4model = AutoModel.from_pretrained(model_name, trust_remote_code=True)
5tokenizer = AutoTokenizer.from_pretrained(model_name, trust_remote_code=True, use_fast=True)
1from sentence_transformers import SentenceTransformer
2
3model = SentenceTransformer("cdinh2022/dutch-english-multilingual-e5-small")