Downloads · 30 days
59
4% of all-time downloads
Xenova/e5-base
e5-base 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/e5-base with ONNX weights to be compatible with Transformers.js.
Downloads · 30 days
59
4% of all-time downloads
All-time downloads
1.5K
Public
Repo size
1.4 GB
Likes
0
Public
Click a slice to open those files.
.onnx1.4 GB · 100%
From the Hugging Face model README
https://huggingface.co/intfloat/e5-base 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/e5-base');
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).