Downloads · 30 days
258K
6% of all-time downloads
Xenova/multilingual-e5-small
multilingual-e5-small is a feature extraction model from Xenova. Use it when you need embeddings to search or compare text. It is set up for transformers.js.
https://huggingface.co/intfloat/multilingual-e5-small with ONNX weights to be compatible with Transformers.js.
Downloads · 30 days
258K
6% of all-time downloads
All-time downloads
4.5M
Public
Repo size
2.1 GB
Likes
21
Trending 1
Click a slice to open those files.
.onnx2.1 GB · 99%
From the Hugging Face model README
https://huggingface.co/intfloat/multilingual-e5-small with ONNX weights to be compatible with Transformers.js.
If you haven't already, you can install the Transformers.js JavaScript library from NPM using:
npm i @huggingface/transformers
Example: Run feature extraction.
import { pipeline } from '@huggingface/transformers';
const extractor = await pipeline('feature-extraction', 'Xenova/multilingual-e5-small');
const output = await extractor('This is a simple test.');
Note: Having a separate repo for ONNX weights is intended to be a temporary solution until WebML gains more traction. If you would like to make your models web-ready, we recommend converting to ONNX using 🤗 Optimum and structuring your repo like this one (with ONNX weights located in a subfolder named onnx).