Views
No views yet
Update: A newer version trained on 2M sentences is available: potion-mxbai-2m-512d — scoring 71.28 avg (+0.55 over this model, +2.23 STS).
| Model | STS | Classification | PairClassification | Avg |
|---|---|---|---|---|
| potion-mxbai-512d (this) | 69.36 | 65.52 | 77.32 | 70.73 |
| potion-base-32M | 65.74 | 65.96 | 78.17 | 69.96 |
| Task | Ours | Potion | Diff |
|---|---|---|---|
| STS22 | 65.79 | 36.69 | +29.09 |
| STS17 | 34.21 | 29.85 | +4.36 |
| EmotionClassification | 51.59 | 48.29 | +3.30 |
| STS12 | 65.37 | 62.72 | +2.64 |
| ImdbClassification | 71.73 | 70.13 | +1.61 |
| TweetSentimentExtraction | 57.69 | 56.58 | +1.11 |
| STS15 | 81.62 | 80.76 | +0.86 |
| BIOSSES | 78.27 | 77.56 | +0.72 |
| STS13 | 77.84 | 77.59 | +0.24 |
| SICK-R | 65.78 | 65.67 | +0.12 |
| SprintDuplicateQuestions | 92.60 | 92.55 | +0.04 |
1from model2vec import StaticModel
2
3model = StaticModel.from_pretrained("blobbybob/potion-mxbai-512d")
4embeddings = model.encode(["Hello world", "Static embeddings are fast"])1from sentence_transformers import SentenceTransformer
2
3model = SentenceTransformer("blobbybob/potion-mxbai-512d")
4embeddings = model.encode(["Hello world", "Static embeddings are fast"])1@article{minishlab2024model2vec,
2 author = {Tulkens, Stephan and {van Dongen}, Thomas},
3 title = {Model2Vec: Fast State-of-the-Art Static Embeddings},
4 year = {2024},
5 url = {https://github.com/MinishLab/model2vec}
6}