Views
No views yet
sentence-transformers/all-MiniLM-L6-v2 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.sentence-transformers/all-MiniLM-L6-v2cmnrlTrue; field dropout: 0.155121from sentence_transformers import SentenceTransformer
2
3model = SentenceTransformer("ai4data/devdata-search-minilm-l6-cmnrl")
4queries = ["mobile-broadband subscriptions per 100 people, reported annually"]
5docs = ["name: Active mobile-broadband subscriptions | ..."]
6q = model.encode(queries)
7d = model.encode(docs)q and d ranks documents for each query.sentence-transformers/all-MiniLM-L6-v2; trained on public World Bank Data360 metadata.