Views
No views yet
avsolatorio/GIST-small-Embedding-v0 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.avsolatorio/GIST-small-Embedding-v0cmnrlTrue; field dropout: 0.155121from sentence_transformers import SentenceTransformer
2
3model = SentenceTransformer("ai4data/devdata-search-gist-small-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.avsolatorio/GIST-small-Embedding-v0; trained on public World Bank Data360 metadata.