How to use from
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 zenmagnets/Nemotron-3-Embed-1B-Q4_K_M-GGUF:Q4_K_M
# Run inference directly in the terminal:
llama cli -hf zenmagnets/Nemotron-3-Embed-1B-Q4_K_M-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 zenmagnets/Nemotron-3-Embed-1B-Q4_K_M-GGUF:Q4_K_M
# Run inference directly in the terminal:
llama cli -hf zenmagnets/Nemotron-3-Embed-1B-Q4_K_M-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 zenmagnets/Nemotron-3-Embed-1B-Q4_K_M-GGUF:Q4_K_M
# Run inference directly in the terminal:
./llama-cli -hf zenmagnets/Nemotron-3-Embed-1B-Q4_K_M-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 zenmagnets/Nemotron-3-Embed-1B-Q4_K_M-GGUF:Q4_K_M
# Run inference directly in the terminal:
./build/bin/llama-cli -hf zenmagnets/Nemotron-3-Embed-1B-Q4_K_M-GGUF:Q4_K_M
Use Docker
docker model run hf.co/zenmagnets/Nemotron-3-Embed-1B-Q4_K_M-GGUF:Q4_K_M
Quick Links

Nemotron-3-Embed-1B Q4_K_M GGUF

An independently converted and quantized GGUF of NVIDIA's nvidia/Nemotron-3-Embed-1B-BF16, prepared for local embedding inference in LM Studio and llama.cpp-compatible runtimes.

This repository is not an official NVIDIA release and is not affiliated with or endorsed by NVIDIA.

File

File Quantization Size SHA-256
nemotron-3-embed-1b-q4_k_m.gguf Q4_K_M 749,352,096 bytes (714.6 MiB) 9a74166f51dbc280073748fa199bea49283bd21f7f9280f2dec2b4d975ddfd1d

The model produces 2,048-dimensional, L2-normalized embeddings. Its GGUF metadata declares a 262,144-token maximum context. The release was functionally tested at a 4,096-token context; very large contexts were not validated and require substantially more memory.

Use with LM Studio

Download the GGUF from Files and versions, then drag it into LM Studio or place it in LM Studio's models directory. LM Studio should classify it as an embedding model.

Load it with a 4,096-token context and full GPU offload, start the local server, and call the OpenAI-compatible embeddings endpoint:

curl http://127.0.0.1:1234/v1/embeddings \
  -H 'Content-Type: application/json' \
  -d '{
    "model": "nemotron-3-embed-1b-q4",
    "input": [
      "query: What is retrieval-augmented generation?",
      "passage: Retrieval-augmented generation adds retrieved documents to a model prompt."
    ]
  }'

The exact model identifier can differ if LM Studio assigns another load name; check http://127.0.0.1:1234/v1/models when needed.

Retrieval format

Use the prefixes specified by NVIDIA:

  • Queries: query: <text>
  • Documents: passage: <text>

Embeddings are normalized, so cosine similarity and dot product give equivalent rankings (within normal floating-point tolerance).

Conversion provenance

The conversion was mechanical. The model was not fine-tuned or otherwise trained. See QUANTIZATION.md for the reproducibility record and embedded metadata summary.

Validation

Validated on an Apple M3 Max with LM Studio 0.4.19 Build 2 and its llama.cpp runtime 2.25.2, using full GPU offload and a 4,096-token context.

Check Result
Output dimensions 2,048
L2 norm (three test vectors) 1.00000002 / 1.00000001 / 0.99999997
Relevant query/passage cosine 0.654999
Unrelated query/passage cosine 0.044103
Median latency, one input 30.46 ms
Median batch time, 32 inputs 974.98 ms
Median batch throughput 32.82 texts/s

Latency includes local HTTP and JSON serialization. These numbers are a runtime smoke test, not a retrieval-quality evaluation. Hardware, text length, context settings, and runtime versions affect performance.

Limitations

  • Q4_K_M is lossy and can change retrieval scores or rankings relative to the upstream BF16 model.
  • No MTEB/MMTEB accuracy evaluation was run on this quantization; consult NVIDIA's upstream model card for BF16 benchmark results.
  • This model is intended for embeddings, retrieval, semantic search, and reranking pipelines. It is not a chat or text-generation model.
  • Users remain responsible for evaluating model behavior, data handling, and suitability for their application.

License and attribution

The model materials are distributed under the OpenMDW License Agreement 1.1. The upstream model incorporates Ministral-3-3B-Instruct-2512 materials released under Apache 2.0.

This repository retains NVIDIA's LICENSE, NOTICE, and THIRD_PARTY_NOTICES.md. By using or distributing the model, you agree to the applicable license terms. NVIDIA retains ownership of its names and trademarks; their use here is solely to identify the upstream model.

Upstream resources

Downloads last month
135
GGUF
Model size
1B params
Architecture
mistral3
Hardware compatibility
Log In to add your hardware

4-bit

Inference Providers NEW
This model isn't deployed by any Inference Provider. 🙋 Ask for provider support

Model tree for zenmagnets/Nemotron-3-Embed-1B-Q4_K_M-GGUF

Papers for zenmagnets/Nemotron-3-Embed-1B-Q4_K_M-GGUF