How to use from the
Use from the
llama-cpp-python library
# !pip install llama-cpp-python

from llama_cpp import Llama

llm = Llama.from_pretrained(
	repo_id="cstr/snowflake-arctic-embed-l-GGUF",
	filename="",
)
output = llm(
	"Once upon a time,",
	max_tokens=512,
	echo=True
)
print(output)

snowflake-arctic-embed-l GGUF

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

Snowflake Arctic Embed L. Large retrieval model, 1024-dimensional CLS-pooled.

Files

Quick Start

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

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

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

Model Details

Property Value
Architecture BERT
Parameters 335M
Embedding Dimension 1024
Layers 24
Pooling CLS
Tokenizer WordPiece
Base Model Snowflake/snowflake-arctic-embed-l

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-l-q4_k.gguf "query text"

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

Credits

Downloads last month
195
GGUF
Model size
0.3B 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-l-GGUF

Quantized
(9)
this model