Views
No views yet
intfloat/multilingual-e5-small produced with schema-invariant fine-tuning on
DevDataBench: full-schema
serialization with per-example field-order permutation and field dropout, so the
encoder binds meaning to field labels rather than to serialization order. This is
an embedding model that powers retrieval; it is not a hosted search service.intfloat/multilingual-e5-smallcgistai4data/devdata-search-multilingual-e5-small-cmnrlTrue; field dropout: 0.15512query: ; document prefix: passage: (prepend these when encoding)1from sentence_transformers import SentenceTransformer
2
3model = SentenceTransformer("ai4data/devdata-search-multilingual-e5-small-cgist-guide-e5cmnrl")
4queries = ["query: " + "mobile-broadband subscriptions per 100 people"]
5docs = ["passage: " + "name: Active mobile-broadband subscriptions | ..."]
6q = model.encode(queries)
7d = model.encode(docs)q and d ranks documents for each query.intfloat/multilingual-e5-small; trained on public World Bank Data360 metadata.