How to use from
llama.cpp
Install from brew
brew install llama.cpp
# Start a local OpenAI-compatible server with a web UI:
llama-server -hf cstr/snowflake-arctic-embed-m-GGUF:Q8_0
# Run inference directly in the terminal:
llama-cli -hf cstr/snowflake-arctic-embed-m-GGUF:Q8_0
Install from WinGet (Windows)
winget install llama.cpp
# Start a local OpenAI-compatible server with a web UI:
llama-server -hf cstr/snowflake-arctic-embed-m-GGUF:Q8_0
# Run inference directly in the terminal:
llama-cli -hf cstr/snowflake-arctic-embed-m-GGUF:Q8_0
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 cstr/snowflake-arctic-embed-m-GGUF:Q8_0
# Run inference directly in the terminal:
./llama-cli -hf cstr/snowflake-arctic-embed-m-GGUF:Q8_0
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 cstr/snowflake-arctic-embed-m-GGUF:Q8_0
# Run inference directly in the terminal:
./build/bin/llama-cli -hf cstr/snowflake-arctic-embed-m-GGUF:Q8_0
Use Docker
docker model run hf.co/cstr/snowflake-arctic-embed-m-GGUF:Q8_0
Quick Links

snowflake-arctic-embed-m GGUF

GGUF format of Snowflake/snowflake-arctic-embed-m for use with CrispEmbed.

Snowflake Arctic Embed M. Mid-range retrieval model, 768-dimensional CLS-pooled.

Files

Quick Start

# Download
huggingface-cli download cstr/snowflake-arctic-embed-m-GGUF snowflake-arctic-embed-m-q4_k.gguf --local-dir .

# Run with CrispEmbed
./crispembed -m snowflake-arctic-embed-m-q4_k.gguf "Hello world"

# Or with auto-download
./crispembed -m snowflake-arctic-embed-m "Hello world"

Model Details

Property Value
Architecture BERT
Parameters 109M
Embedding Dimension 768
Layers 12
Pooling CLS
Tokenizer WordPiece
Base Model Snowflake/snowflake-arctic-embed-m

Verification

Verified bit-identical to HuggingFace sentence-transformers (cosine similarity >= 0.999 on test texts).

Usage with CrispEmbed

CrispEmbed is a lightweight C/C++ text embedding inference engine using ggml. No Python runtime, no ONNX. Supports BERT, XLM-R, Qwen3, and Gemma3 architectures.

# Build CrispEmbed
git clone https://github.com/CrispStrobe/CrispEmbed
cd CrispEmbed
cmake -S . -B build && cmake --build build -j

# Encode
./build/crispembed -m snowflake-arctic-embed-m-q4_k.gguf "query text"

# Server mode
./build/crispembed-server -m snowflake-arctic-embed-m-q4_k.gguf --port 8080
curl -X POST http://localhost:8080/v1/embeddings \
    -d '{"input": ["Hello world"], "model": "snowflake-arctic-embed-m"}'

Credits

Downloads last month
219
GGUF
Model size
0.1B params
Architecture
bert
Hardware compatibility
Log In to add your hardware

8-bit

Inference Providers NEW
This model isn't deployed by any Inference Provider. ๐Ÿ™‹ Ask for provider support

Model tree for cstr/snowflake-arctic-embed-m-GGUF

Quantized
(4)
this model