Instructions to use mradermacher/jina-embeddings-v5-text-small-clustering-GGUF with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use mradermacher/jina-embeddings-v5-text-small-clustering-GGUF with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("feature-extraction", model="mradermacher/jina-embeddings-v5-text-small-clustering-GGUF") messages = [ {"role": "user", "content": "Who are you?"}, ] pipe(messages)# Load model directly from transformers import AutoModel model = AutoModel.from_pretrained("mradermacher/jina-embeddings-v5-text-small-clustering-GGUF", dtype="auto") - sentence-transformers
How to use mradermacher/jina-embeddings-v5-text-small-clustering-GGUF with sentence-transformers:
from sentence_transformers import SentenceTransformer model = SentenceTransformer("mradermacher/jina-embeddings-v5-text-small-clustering-GGUF") sentences = [ "The weather is lovely today.", "It's so sunny outside!", "He drove to the stadium." ] embeddings = model.encode(sentences) similarities = model.similarity(embeddings, embeddings) print(similarities.shape) # [3, 3] - llama-cpp-python
How to use mradermacher/jina-embeddings-v5-text-small-clustering-GGUF with llama-cpp-python:
# !pip install llama-cpp-python from llama_cpp import Llama llm = Llama.from_pretrained( repo_id="mradermacher/jina-embeddings-v5-text-small-clustering-GGUF", filename="jina-embeddings-v5-text-small-clustering.IQ4_XS.gguf", )
llm.create_chat_completion( messages = "\"Today is a sunny day and I will get some ice cream.\"" )
- Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- llama.cpp
How to use mradermacher/jina-embeddings-v5-text-small-clustering-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/jina-embeddings-v5-text-small-clustering-GGUF:Q4_K_M # Run inference directly in the terminal: llama cli -hf mradermacher/jina-embeddings-v5-text-small-clustering-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/jina-embeddings-v5-text-small-clustering-GGUF:Q4_K_M # Run inference directly in the terminal: llama cli -hf mradermacher/jina-embeddings-v5-text-small-clustering-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/jina-embeddings-v5-text-small-clustering-GGUF:Q4_K_M # Run inference directly in the terminal: ./llama-cli -hf mradermacher/jina-embeddings-v5-text-small-clustering-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/jina-embeddings-v5-text-small-clustering-GGUF:Q4_K_M # Run inference directly in the terminal: ./build/bin/llama-cli -hf mradermacher/jina-embeddings-v5-text-small-clustering-GGUF:Q4_K_M
Use Docker
docker model run hf.co/mradermacher/jina-embeddings-v5-text-small-clustering-GGUF:Q4_K_M
- LM Studio
- Jan
- Ollama
How to use mradermacher/jina-embeddings-v5-text-small-clustering-GGUF with Ollama:
ollama run hf.co/mradermacher/jina-embeddings-v5-text-small-clustering-GGUF:Q4_K_M
- Unsloth Studio
How to use mradermacher/jina-embeddings-v5-text-small-clustering-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 mradermacher/jina-embeddings-v5-text-small-clustering-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 mradermacher/jina-embeddings-v5-text-small-clustering-GGUF to start chatting
Using HuggingFace Spaces for Unsloth
# No setup required # Open https://huggingface.co/spaces/unsloth/studio in your browser # Search for mradermacher/jina-embeddings-v5-text-small-clustering-GGUF to start chatting
- Pi
How to use mradermacher/jina-embeddings-v5-text-small-clustering-GGUF with Pi:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf mradermacher/jina-embeddings-v5-text-small-clustering-GGUF:Q4_K_M
Configure the model in Pi
# Install Pi: npm install -g @mariozechner/pi-coding-agent # Add to ~/.pi/agent/models.json: { "providers": { "llama-cpp": { "baseUrl": "http://localhost:8080/v1", "api": "openai-completions", "apiKey": "none", "models": [ { "id": "mradermacher/jina-embeddings-v5-text-small-clustering-GGUF:Q4_K_M" } ] } } }Run Pi
# Start Pi in your project directory: pi
- Hermes Agent new
How to use mradermacher/jina-embeddings-v5-text-small-clustering-GGUF with Hermes Agent:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf mradermacher/jina-embeddings-v5-text-small-clustering-GGUF:Q4_K_M
Configure Hermes
# Install Hermes: curl -fsSL https://hermes-agent.nousresearch.com/install.sh | bash hermes setup # Point Hermes at the local server: hermes config set model.provider custom hermes config set model.base_url http://127.0.0.1:8080/v1 hermes config set model.default mradermacher/jina-embeddings-v5-text-small-clustering-GGUF:Q4_K_M
Run Hermes
hermes
- Atomic Chat new
- OpenClaw new
How to use mradermacher/jina-embeddings-v5-text-small-clustering-GGUF with OpenClaw:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf mradermacher/jina-embeddings-v5-text-small-clustering-GGUF:Q4_K_M
Configure OpenClaw
# Install OpenClaw: npm install -g openclaw@latest # Register the local server and set it as the default model: openclaw onboard --non-interactive --mode local \ --auth-choice custom-api-key \ --custom-base-url http://127.0.0.1:8080/v1 \ --custom-model-id "mradermacher/jina-embeddings-v5-text-small-clustering-GGUF:Q4_K_M" \ --custom-provider-id llama-cpp \ --custom-compatibility openai \ --custom-text-input \ --accept-risk \ --skip-health
Run OpenClaw
openclaw agent --local --agent main --message "Hello from Hugging Face"
- Docker Model Runner
How to use mradermacher/jina-embeddings-v5-text-small-clustering-GGUF with Docker Model Runner:
docker model run hf.co/mradermacher/jina-embeddings-v5-text-small-clustering-GGUF:Q4_K_M
- Lemonade
How to use mradermacher/jina-embeddings-v5-text-small-clustering-GGUF with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull mradermacher/jina-embeddings-v5-text-small-clustering-GGUF:Q4_K_M
Run and chat with the model
lemonade run user.jina-embeddings-v5-text-small-clustering-GGUF-Q4_K_M
List all available models
lemonade list
uploaded from leia
Browse files- .gitattributes +12 -0
- jina-embeddings-v5-text-small-clustering.IQ4_XS.gguf +3 -0
- jina-embeddings-v5-text-small-clustering.Q2_K.gguf +3 -0
- jina-embeddings-v5-text-small-clustering.Q3_K_L.gguf +3 -0
- jina-embeddings-v5-text-small-clustering.Q3_K_M.gguf +3 -0
- jina-embeddings-v5-text-small-clustering.Q3_K_S.gguf +3 -0
- jina-embeddings-v5-text-small-clustering.Q4_K_M.gguf +3 -0
- jina-embeddings-v5-text-small-clustering.Q4_K_S.gguf +3 -0
- jina-embeddings-v5-text-small-clustering.Q5_K_M.gguf +3 -0
- jina-embeddings-v5-text-small-clustering.Q5_K_S.gguf +3 -0
- jina-embeddings-v5-text-small-clustering.Q6_K.gguf +3 -0
- jina-embeddings-v5-text-small-clustering.Q8_0.gguf +3 -0
- jina-embeddings-v5-text-small-clustering.f16.gguf +3 -0
|
@@ -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 |
+
jina-embeddings-v5-text-small-clustering.IQ4_XS.gguf filter=lfs diff=lfs merge=lfs -text
|
| 37 |
+
jina-embeddings-v5-text-small-clustering.Q2_K.gguf filter=lfs diff=lfs merge=lfs -text
|
| 38 |
+
jina-embeddings-v5-text-small-clustering.Q3_K_L.gguf filter=lfs diff=lfs merge=lfs -text
|
| 39 |
+
jina-embeddings-v5-text-small-clustering.Q3_K_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 40 |
+
jina-embeddings-v5-text-small-clustering.Q3_K_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 41 |
+
jina-embeddings-v5-text-small-clustering.Q4_K_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 42 |
+
jina-embeddings-v5-text-small-clustering.Q4_K_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 43 |
+
jina-embeddings-v5-text-small-clustering.Q5_K_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 44 |
+
jina-embeddings-v5-text-small-clustering.Q5_K_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 45 |
+
jina-embeddings-v5-text-small-clustering.Q6_K.gguf filter=lfs diff=lfs merge=lfs -text
|
| 46 |
+
jina-embeddings-v5-text-small-clustering.Q8_0.gguf filter=lfs diff=lfs merge=lfs -text
|
| 47 |
+
jina-embeddings-v5-text-small-clustering.f16.gguf filter=lfs diff=lfs merge=lfs -text
|
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:1b7f9d4ee3e89d23f0550d21576c3795bd2e3a353afc4b259a67777d6e679f00
|
| 3 |
+
size 369278784
|
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:9d6165d5057bc71c3128635a362e1bb2bfd4f51898f81be2f77e0fdf99c26954
|
| 3 |
+
size 296238912
|
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:985440f1f497318b45a9f5e6ffc1d5dbf92f9a822d9ee80a5cc4b1d95b1193dd
|
| 3 |
+
size 368492352
|
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:7c15723a116006401b920a08037b83e94ff479ad1aa124da4ba21ff6802de5a0
|
| 3 |
+
size 347127616
|
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:31bb6c237b83e719fb3b7dd44bf4d79b70762c1a1da9f66f1a039bfd001b4bac
|
| 3 |
+
size 323075904
|
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:6f1a978c491c9fc4af15b396d1a85c1a7b0fa408ae9a0f914b892c9667c51142
|
| 3 |
+
size 396705600
|
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:257d0448ef16c2f6d640e87f16dcd360a082f9ad3558e00b48bdb68008a7c120
|
| 3 |
+
size 383270720
|
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:178ce97840cfb6ee5942736a0909c197646c01df0c3c43a9275b3ce051d50107
|
| 3 |
+
size 444415808
|
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:46eb87282a4f18e3937116494a992b5b989052f72bece72005d05ad5c5ee39f7
|
| 3 |
+
size 436617024
|
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:9d6951aa46d5a2547e00bbfdbf41dfd6176816879243b4b32f2facf0b4a10fb8
|
| 3 |
+
size 495107904
|
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:fa173d5e958886e2d62888bdf1ab23da4c66d6a9d16d9f521ac0c49356f42800
|
| 3 |
+
size 639447872
|
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:945d28d009babb44abd6f87138c38ff8a9fc271f6683cc723f32db942e05f5f0
|
| 3 |
+
size 1198183232
|