Views
No views yet
fetch() it directly.Try what it powers: the heavy (semantic) engine of AI-Chat Compressor — a Chrome extension that compresses AI-chat context locally by keeping only the sentences relevant to your question. → Chrome Web Store

model2vec (Python), model2vec-rs (Rust), and the browser via WASM
(StaticModel::from_bytes).1from model2vec import StaticModel
2m = StaticModel.from_pretrained("777Radik/potion-multilingual-128M-int8")
3
4# Cross-lingual by design: these two sentences mean the same thing and land
5# close together, although they share no words and use different scripts.
6emb = m.encode(["как развернуть сервис в кластере", "deploy a service to a cluster"])| dataset | budget | BM25 | this model |
|---|---|---|---|
| HotpotQA — supporting-fact recall | 25% | 72.1% | 57.4% |
| MuSiQue — answer kept | 25% | 48.0% | 50.0% |
| QASPER — answer span kept | 25% | 74.4% | 81.8% |
| QASPER — answer span kept | 5% | 44.6% | 43.8% |
scripts/quantize-potion.py --dim 128 (model2vec int8 quantization).
Base model & method by MinishLab. License: MIT.