Views
No views yet
| File | Quantization | Size | Cos vs F32 | Notes |
|---|---|---|---|---|
nomic-v2-moe.gguf | F32 | 1818 MB | 1.000000 | Full precision, bit-exact vs HuggingFace |
nomic-v2-moe-f16.gguf | F16 | 1344 MB | 1.000000 | Lossless for this model |
nomic-v2-moe-q8_0.gguf | Q8_0 | 487 MB | 0.999460 | Near-lossless, recommended |
nomic-v2-moe-q4_k.gguf | Q4_K | 352 MB | 0.963589 | Aggressive, ranking preserved |
crispembed -m nomic-v2-moe-q8_0.gguf "search_query: What is a mixture of experts?"1from crispembed import CrispEmbed
2
3model = CrispEmbed("nomic-v2-moe-q8_0.gguf")
4embedding = model.encode("search_query: What is a mixture of experts?")search_query: and documents with search_document: for best retrieval performance.convert-bert-to-gguf.py:1python models/convert-bert-to-gguf.py \
2 --model nomic-ai/nomic-embed-text-v2-moe \
3 --output nomic-v2-moe.gguf --crispcrispembed-quantize:crispembed-quantize nomic-v2-moe.gguf nomic-v2-moe-q8_0.gguf q8_0nomic-ai.apache-2.0. This repository redistributes under the same terms; it grants no rights the upstream licence does not.