Instructions to use nomic-ai/nomic-embed-text-v2-moe-GGUF with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- llama.cpp
How to use nomic-ai/nomic-embed-text-v2-moe-GGUF with llama.cpp:
Install (macOS, Linux)
curl -LsSf https://llama.app/install.sh | sh # Start a local OpenAI-compatible server with a web UI: llama serve -hf nomic-ai/nomic-embed-text-v2-moe-GGUF:Q4_K_M # Run inference directly in the terminal: llama cli -hf nomic-ai/nomic-embed-text-v2-moe-GGUF:Q4_K_M
Install from WinGet (Windows)
winget install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama serve -hf nomic-ai/nomic-embed-text-v2-moe-GGUF:Q4_K_M # Run inference directly in the terminal: llama cli -hf nomic-ai/nomic-embed-text-v2-moe-GGUF:Q4_K_M
Use pre-built binary
# Download pre-built binary from: # https://github.com/ggerganov/llama.cpp/releases # Start a local OpenAI-compatible server with a web UI: ./llama-server -hf nomic-ai/nomic-embed-text-v2-moe-GGUF:Q4_K_M # Run inference directly in the terminal: ./llama-cli -hf nomic-ai/nomic-embed-text-v2-moe-GGUF:Q4_K_M
Build from source code
git clone https://github.com/ggerganov/llama.cpp.git cd llama.cpp cmake -B build cmake --build build -j --target llama-server llama-cli # Start a local OpenAI-compatible server with a web UI: ./build/bin/llama-server -hf nomic-ai/nomic-embed-text-v2-moe-GGUF:Q4_K_M # Run inference directly in the terminal: ./build/bin/llama-cli -hf nomic-ai/nomic-embed-text-v2-moe-GGUF:Q4_K_M
Use Docker
docker model run hf.co/nomic-ai/nomic-embed-text-v2-moe-GGUF:Q4_K_M
- LM Studio
- Jan
- Ollama
How to use nomic-ai/nomic-embed-text-v2-moe-GGUF with Ollama:
ollama run hf.co/nomic-ai/nomic-embed-text-v2-moe-GGUF:Q4_K_M
- Unsloth Studio
How to use nomic-ai/nomic-embed-text-v2-moe-GGUF with Unsloth Studio:
Install Unsloth Studio (macOS, Linux, WSL)
curl -fsSL https://unsloth.ai/install.sh | sh # Run unsloth studio unsloth studio -H 0.0.0.0 -p 8888 # Then open http://localhost:8888 in your browser # Search for nomic-ai/nomic-embed-text-v2-moe-GGUF to start chatting
Install Unsloth Studio (Windows)
irm https://unsloth.ai/install.ps1 | iex # Run unsloth studio unsloth studio -H 0.0.0.0 -p 8888 # Then open http://localhost:8888 in your browser # Search for nomic-ai/nomic-embed-text-v2-moe-GGUF to start chatting
Using HuggingFace Spaces for Unsloth
# No setup required # Open https://huggingface.co/spaces/unsloth/studio in your browser # Search for nomic-ai/nomic-embed-text-v2-moe-GGUF to start chatting
- Docker Model Runner
How to use nomic-ai/nomic-embed-text-v2-moe-GGUF with Docker Model Runner:
docker model run hf.co/nomic-ai/nomic-embed-text-v2-moe-GGUF:Q4_K_M
- Lemonade
How to use nomic-ai/nomic-embed-text-v2-moe-GGUF with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull nomic-ai/nomic-embed-text-v2-moe-GGUF:Q4_K_M
Run and chat with the model
lemonade run user.nomic-embed-text-v2-moe-GGUF-Q4_K_M
List all available models
lemonade list
- Atomic Chat
Commit ·
ffbcf4c
1
Parent(s): 8a7e7cb
reconvert with latest llama.cpp
Browse files- README.md +1 -1
- nomic-embed-text-v2-moe.Q2_K.gguf +1 -1
- nomic-embed-text-v2-moe.Q3_K_L.gguf +1 -1
- nomic-embed-text-v2-moe.Q3_K_M.gguf +1 -1
- nomic-embed-text-v2-moe.Q3_K_S.gguf +1 -1
- nomic-embed-text-v2-moe.Q4_0.gguf +1 -1
- nomic-embed-text-v2-moe.Q4_1.gguf +1 -1
- nomic-embed-text-v2-moe.Q4_K_M.gguf +1 -1
- nomic-embed-text-v2-moe.Q4_K_S.gguf +1 -1
- nomic-embed-text-v2-moe.Q5_K_M.gguf +1 -1
- nomic-embed-text-v2-moe.Q5_K_S.gguf +1 -1
- nomic-embed-text-v2-moe.Q6_K.gguf +1 -1
- nomic-embed-text-v2-moe.Q8_0.gguf +1 -1
- nomic-embed-text-v2-moe.bf16.gguf +1 -1
- nomic-embed-text-v2-moe.f16.gguf +1 -1
- nomic-embed-text-v2-moe.f32.gguf +2 -2
README.md
CHANGED
|
@@ -117,7 +117,7 @@ language:
|
|
| 117 |
|
| 118 |
This model was presented in the paper [Training Sparse Mixture Of Experts Text Embedding Models](https://huggingface.co/papers/2502.07972).
|
| 119 |
|
| 120 |
-
Using <a href="https://github.com/ggml-org/llama.cpp">llama.cpp</a> commit <a href="https://github.com/ggml-org/llama.cpp/tree/
|
| 121 |
|
| 122 |
Original model: [nomic-embed-text-v2-moe](https://huggingface.co/nomic-ai/nomic-embed-text-v2-moe)
|
| 123 |
|
|
|
|
| 117 |
|
| 118 |
This model was presented in the paper [Training Sparse Mixture Of Experts Text Embedding Models](https://huggingface.co/papers/2502.07972).
|
| 119 |
|
| 120 |
+
Using <a href="https://github.com/ggml-org/llama.cpp">llama.cpp</a> commit <a href="https://github.com/ggml-org/llama.cpp/tree/e3a9421b78da5c810d812e6348a405f5acc39f34">e3a9421b7</a> for quantization.
|
| 121 |
|
| 122 |
Original model: [nomic-embed-text-v2-moe](https://huggingface.co/nomic-ai/nomic-embed-text-v2-moe)
|
| 123 |
|
nomic-embed-text-v2-moe.Q2_K.gguf
CHANGED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
size 273286112
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:11843331c8f0d14dca2be4809e1146a3a0411892e33b78ae6971b3f619f8e78b
|
| 3 |
size 273286112
|
nomic-embed-text-v2-moe.Q3_K_L.gguf
CHANGED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
size 322223072
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:0be98ccfafd74dd15d4c737f76744f06ac045eddf021fddbc256b60856ddfeef
|
| 3 |
size 322223072
|
nomic-embed-text-v2-moe.Q3_K_M.gguf
CHANGED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
size 308122592
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:3444c50a7044f0e7b898896e745eab21a0e313a45a71d8aee6df3fde1d0c3d25
|
| 3 |
size 308122592
|
nomic-embed-text-v2-moe.Q3_K_S.gguf
CHANGED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
size 288381920
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:e6ae830aa61bd0684c30f1b57aba5559e48b1d40dd7266a93717ff1deda4861a
|
| 3 |
size 288381920
|
nomic-embed-text-v2-moe.Q4_0.gguf
CHANGED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
size 324158432
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:c15fd36aa079618c10037d9ea3b37237d8a4147b9fc4f8325f32539437d38ae7
|
| 3 |
size 324158432
|
nomic-embed-text-v2-moe.Q4_1.gguf
CHANGED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
size 341853152
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:971f584a5739a1c4f0ab6e4395d72059d5c6c8b0f4815c4b56e49136ef340db4
|
| 3 |
size 341853152
|
nomic-embed-text-v2-moe.Q4_K_M.gguf
CHANGED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
size 344120288
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:b5fb2811647b8ef461519a68a3bf67014a84a66a130c8a2af9413ff9f06d3f22
|
| 3 |
size 344120288
|
nomic-embed-text-v2-moe.Q4_K_S.gguf
CHANGED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
size 325338080
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:db0608a87a2daf4a52b74912dd678ca6122db26d971bdfcf16d3b11b77047663
|
| 3 |
size 325338080
|
nomic-embed-text-v2-moe.Q5_K_M.gguf
CHANGED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
size 370828256
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:a6546bdf4e46288c93d79e6292bbdd8efa7ca87c242a8e60afa9cbacdc641471
|
| 3 |
size 370828256
|
nomic-embed-text-v2-moe.Q5_K_S.gguf
CHANGED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
size 359547872
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:540055ed857b6f23521d2fca1a17d31a0e0d0f21aa8e628d48c3e56ef2c20344
|
| 3 |
size 359547872
|
nomic-embed-text-v2-moe.Q6_K.gguf
CHANGED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
size 397149152
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:e74dafe6932fc7ae53f98061401f5cae136203a6b09fa940a2f1eb0ab5804ed8
|
| 3 |
size 397149152
|
nomic-embed-text-v2-moe.Q8_0.gguf
CHANGED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
size 512225120
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:06e7a7e594a26985523c18383aba4aad39fe6e14f08ffc6ab5b554e1ccdc3cff
|
| 3 |
size 512225120
|
nomic-embed-text-v2-moe.bf16.gguf
CHANGED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
size 957680480
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:94c6c2cc3b9212cb9f11067c4d7fa17319dc54c47a488384ddcee4e3163ca807
|
| 3 |
size 957680480
|
nomic-embed-text-v2-moe.f16.gguf
CHANGED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
size 957680480
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:a5db3381f2e514d3490a3a31fe70eb1a65e95016c85c6c2c23223b810806594f
|
| 3 |
size 957680480
|
nomic-embed-text-v2-moe.f32.gguf
CHANGED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
-
size
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:7c9a85afd70f95e953f36d91c3b7f3d7dda72e3840f63b6ab66fc1856b47506f
|
| 3 |
+
size 1907985280
|