Instructions to use mradermacher/zen3-embedding-medium-GGUF with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use mradermacher/zen3-embedding-medium-GGUF with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("feature-extraction", model="mradermacher/zen3-embedding-medium-GGUF")# Load model directly from transformers import AutoModel model = AutoModel.from_pretrained("mradermacher/zen3-embedding-medium-GGUF", device_map="auto") - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- llama.cpp
How to use mradermacher/zen3-embedding-medium-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 mradermacher/zen3-embedding-medium-GGUF:Q4_K_M # Run inference directly in the terminal: llama cli -hf mradermacher/zen3-embedding-medium-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 mradermacher/zen3-embedding-medium-GGUF:Q4_K_M # Run inference directly in the terminal: llama cli -hf mradermacher/zen3-embedding-medium-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 mradermacher/zen3-embedding-medium-GGUF:Q4_K_M # Run inference directly in the terminal: ./llama-cli -hf mradermacher/zen3-embedding-medium-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 mradermacher/zen3-embedding-medium-GGUF:Q4_K_M # Run inference directly in the terminal: ./build/bin/llama-cli -hf mradermacher/zen3-embedding-medium-GGUF:Q4_K_M
Use Docker
docker model run hf.co/mradermacher/zen3-embedding-medium-GGUF:Q4_K_M
- LM Studio
- Jan
- Ollama
How to use mradermacher/zen3-embedding-medium-GGUF with Ollama:
ollama run hf.co/mradermacher/zen3-embedding-medium-GGUF:Q4_K_M
- Unsloth Desktop
- Docker Model Runner
How to use mradermacher/zen3-embedding-medium-GGUF with Docker Model Runner:
docker model run hf.co/mradermacher/zen3-embedding-medium-GGUF:Q4_K_M
- Lemonade
How to use mradermacher/zen3-embedding-medium-GGUF with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull mradermacher/zen3-embedding-medium-GGUF:Q4_K_M
Run and chat with the model
lemonade run user.zen3-embedding-medium-GGUF-Q4_K_M
List all available models
lemonade list
- Atomic Chat
uploaded from leia
Browse files- .gitattributes +12 -0
- zen3-embedding-medium.IQ4_XS.gguf +3 -0
- zen3-embedding-medium.Q2_K.gguf +3 -0
- zen3-embedding-medium.Q3_K_L.gguf +3 -0
- zen3-embedding-medium.Q3_K_M.gguf +3 -0
- zen3-embedding-medium.Q3_K_S.gguf +3 -0
- zen3-embedding-medium.Q4_K_M.gguf +3 -0
- zen3-embedding-medium.Q4_K_S.gguf +3 -0
- zen3-embedding-medium.Q5_K_M.gguf +3 -0
- zen3-embedding-medium.Q5_K_S.gguf +3 -0
- zen3-embedding-medium.Q6_K.gguf +3 -0
- zen3-embedding-medium.Q8_0.gguf +3 -0
- zen3-embedding-medium.f16.gguf +3 -0
.gitattributes
CHANGED
|
@@ -33,3 +33,15 @@ saved_model/**/* filter=lfs diff=lfs merge=lfs -text
|
|
| 33 |
*.zip filter=lfs diff=lfs merge=lfs -text
|
| 34 |
*.zst filter=lfs diff=lfs merge=lfs -text
|
| 35 |
*tfevents* filter=lfs diff=lfs merge=lfs -text
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 33 |
*.zip filter=lfs diff=lfs merge=lfs -text
|
| 34 |
*.zst filter=lfs diff=lfs merge=lfs -text
|
| 35 |
*tfevents* filter=lfs diff=lfs merge=lfs -text
|
| 36 |
+
zen3-embedding-medium.IQ4_XS.gguf filter=lfs diff=lfs merge=lfs -text
|
| 37 |
+
zen3-embedding-medium.Q2_K.gguf filter=lfs diff=lfs merge=lfs -text
|
| 38 |
+
zen3-embedding-medium.Q3_K_L.gguf filter=lfs diff=lfs merge=lfs -text
|
| 39 |
+
zen3-embedding-medium.Q3_K_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 40 |
+
zen3-embedding-medium.Q3_K_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 41 |
+
zen3-embedding-medium.Q4_K_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 42 |
+
zen3-embedding-medium.Q4_K_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 43 |
+
zen3-embedding-medium.Q5_K_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 44 |
+
zen3-embedding-medium.Q5_K_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 45 |
+
zen3-embedding-medium.Q6_K.gguf filter=lfs diff=lfs merge=lfs -text
|
| 46 |
+
zen3-embedding-medium.Q8_0.gguf filter=lfs diff=lfs merge=lfs -text
|
| 47 |
+
zen3-embedding-medium.f16.gguf filter=lfs diff=lfs merge=lfs -text
|
zen3-embedding-medium.IQ4_XS.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:10e50e7509c0847f3e1351dcbcf5e555c1d32bf2ba10c464dd50471562bbfa1c
|
| 3 |
+
size 192082048
|
zen3-embedding-medium.Q2_K.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:589b74a7afc8f7860da46f68f22ad1db2d002229a72564ab808249ceabd7f7bb
|
| 3 |
+
size 144109696
|
zen3-embedding-medium.Q3_K_L.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:4c10b6b3c83db0f81137dd5ddf96c4d1d167f8ca403dc54940490f8937546a3a
|
| 3 |
+
size 198373504
|
zen3-embedding-medium.Q3_K_M.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:881fec1d6a58d3ec94ea82b0210ab14314af2fbfdc547c802f9294eace6bfed8
|
| 3 |
+
size 180285568
|
zen3-embedding-medium.Q3_K_S.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:0e2d7dbf07d6de201c5eab828dd0412cbafa180132f9af3b7c055e96ba332501
|
| 3 |
+
size 159445120
|
zen3-embedding-medium.Q4_K_M.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:6edc3763a2d96c0865a39ee7b6ebb3e1b5dc68c06b6b62038143b6046cab987e
|
| 3 |
+
size 215773312
|
zen3-embedding-medium.Q4_K_S.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:ab8512680e272d5605e04ab34932d65f077f691d64e1e3fffbbe772b915895bb
|
| 3 |
+
size 201650304
|
zen3-embedding-medium.Q5_K_M.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:9b1e331b3f38349e00f39b8cd94b97d9549cd5543eb74da492dccb6877389d76
|
| 3 |
+
size 245657728
|
zen3-embedding-medium.Q5_K_S.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:9741e71714c5d45830ba302c4ad796d8f02bd5fb720b4c84b3e693988acaf5ac
|
| 3 |
+
size 237301888
|
zen3-embedding-medium.Q6_K.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:525d3636c7aca1c41bb052c6d0a361f225dd6e2ef94e6d3d855d41b21882889c
|
| 3 |
+
size 277409920
|
zen3-embedding-medium.Q8_0.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:08474854c3d3b48293f5d75bf7b069fe8dc3e5925f038011e2c9f9148b6ba2f4
|
| 3 |
+
size 358117536
|
zen3-embedding-medium.f16.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:dd8ba787640491641eae8f37aa1d77b54868b18d13d85c497a077dda819ea357
|
| 3 |
+
size 670534176
|