Text Ranking
GGUF
English
qwen3
text-generation-inference
legal
stem
code
medical
finance
conversational
Instructions to use prithivMLmods/zerank-1-GGUF with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- llama-cpp-python
How to use prithivMLmods/zerank-1-GGUF with llama-cpp-python:
# !pip install llama-cpp-python from llama_cpp import Llama llm = Llama.from_pretrained( repo_id="prithivMLmods/zerank-1-GGUF", filename=" zerank-1.BF16.gguf", )
llm.create_chat_completion( messages = "No input example has been defined for this model task." )
- Notebooks
- Google Colab
- Kaggle
- Local Apps
- llama.cpp
How to use prithivMLmods/zerank-1-GGUF with llama.cpp:
Install from brew
brew install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama-server -hf prithivMLmods/zerank-1-GGUF:Q4_K_M # Run inference directly in the terminal: llama-cli -hf prithivMLmods/zerank-1-GGUF:Q4_K_M
Install from WinGet (Windows)
winget install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama-server -hf prithivMLmods/zerank-1-GGUF:Q4_K_M # Run inference directly in the terminal: llama-cli -hf prithivMLmods/zerank-1-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 prithivMLmods/zerank-1-GGUF:Q4_K_M # Run inference directly in the terminal: ./llama-cli -hf prithivMLmods/zerank-1-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 prithivMLmods/zerank-1-GGUF:Q4_K_M # Run inference directly in the terminal: ./build/bin/llama-cli -hf prithivMLmods/zerank-1-GGUF:Q4_K_M
Use Docker
docker model run hf.co/prithivMLmods/zerank-1-GGUF:Q4_K_M
- LM Studio
- Jan
- Ollama
How to use prithivMLmods/zerank-1-GGUF with Ollama:
ollama run hf.co/prithivMLmods/zerank-1-GGUF:Q4_K_M
- Unsloth Studio new
How to use prithivMLmods/zerank-1-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 prithivMLmods/zerank-1-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 prithivMLmods/zerank-1-GGUF to start chatting
Using HuggingFace Spaces for Unsloth
# No setup required # Open https://huggingface.co/spaces/unsloth/studio in your browser # Search for prithivMLmods/zerank-1-GGUF to start chatting
- Pi new
How to use prithivMLmods/zerank-1-GGUF with Pi:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama-server -hf prithivMLmods/zerank-1-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": "prithivMLmods/zerank-1-GGUF:Q4_K_M" } ] } } }Run Pi
# Start Pi in your project directory: pi
- Hermes Agent new
How to use prithivMLmods/zerank-1-GGUF with Hermes Agent:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama-server -hf prithivMLmods/zerank-1-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 prithivMLmods/zerank-1-GGUF:Q4_K_M
Run Hermes
hermes
- Docker Model Runner
How to use prithivMLmods/zerank-1-GGUF with Docker Model Runner:
docker model run hf.co/prithivMLmods/zerank-1-GGUF:Q4_K_M
- Lemonade
How to use prithivMLmods/zerank-1-GGUF with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull prithivMLmods/zerank-1-GGUF:Q4_K_M
Run and chat with the model
lemonade run user.zerank-1-GGUF-Q4_K_M
List all available models
lemonade list
Upload folder using huggingface_hub
Browse files- zerank-1.BF16.gguf +3 -0
- zerank-1.F16.gguf +3 -0
- zerank-1.F32.gguf +3 -0
- zerank-1.Q2_K.gguf +3 -0
- zerank-1.Q3_K_L.gguf +3 -0
- zerank-1.Q3_K_M.gguf +3 -0
- zerank-1.Q3_K_S.gguf +3 -0
- zerank-1.Q4_K_M.gguf +3 -0
- zerank-1.Q4_K_S.gguf +3 -0
- zerank-1.Q5_K_M.gguf +3 -0
- zerank-1.Q5_K_S.gguf +3 -0
- zerank-1.Q6_K.gguf +3 -0
- zerank-1.Q8_0.gguf +3 -0
- .gitattributes +13 -0
zerank-1.BF16.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:a08e273fa1e6ab8195c56a7630ac6eacad523bcedd323472be57a917d6b2ed46
|
| 3 |
+
size 8051284704
|
zerank-1.F16.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:5b27fb31114c2ccb1813fb2ae0d99e0615f058d77923a08e6d43f4b63109e9c6
|
| 3 |
+
size 8051284704
|
zerank-1.F32.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:573104e9434d2e56e0701d566fa936a00caaf8f127fc7fd351fede065b7a75ab
|
| 3 |
+
size 16095828704
|
zerank-1.Q2_K.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:5138269c40267ff8c12b0718dd37933857a16990372a651a533f2e99bbb6cf69
|
| 3 |
+
size 1669499104
|
zerank-1.Q3_K_L.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:818f1755efe770ed9fa6dd0400419ec49bea5418afb27721a0a95b05a4c5a6fd
|
| 3 |
+
size 2239785184
|
zerank-1.Q3_K_M.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:feb477a268b34dfedc63cb6d051a7a9f4fe129ca202bb7f1e4c267770ca92d2c
|
| 3 |
+
size 2075617504
|
zerank-1.Q3_K_S.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:3668c1a87fdf579089956524776b9d2acb4d44be65ac45c0a67c0288f3c930d6
|
| 3 |
+
size 1886996704
|
zerank-1.Q4_K_M.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:3d5eddc2769cb74a4e427eb9e8cb6a10acbcf9acfc633f1959e741ae97e5da45
|
| 3 |
+
size 2497280224
|
zerank-1.Q4_K_S.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:13834efa62c5309ee63870b380c5a65a40001168b436015cc245f0d4317a5f9f
|
| 3 |
+
size 2383309024
|
zerank-1.Q5_K_M.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:3de5cd7e9e8681ed0a177ce39bc507cb1bcade5335a08c924cca20e0c730a860
|
| 3 |
+
size 2889513184
|
zerank-1.Q5_K_S.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:6d8ccb197a301ea0eefa966c28766d5b624ce918eda11cd31439b0fbd74dbef3
|
| 3 |
+
size 2823710944
|
zerank-1.Q6_K.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:0a5ee1a0b9c2360d025e67d5c8daa099e4e15b30a75661f5f1c2cb8103d89eba
|
| 3 |
+
size 3306260704
|
zerank-1.Q8_0.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:e2816022114c42d88da06953584a76b876dbd527af3c6da49ca08c8eed4d90a4
|
| 3 |
+
size 4280404704
|
.gitattributes
CHANGED
|
@@ -33,3 +33,16 @@ 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 |
+
[[:space:]]zerank-1.BF16.gguf filter=lfs diff=lfs merge=lfs -text
|
| 37 |
+
[[:space:]]zerank-1.F16.gguf filter=lfs diff=lfs merge=lfs -text
|
| 38 |
+
[[:space:]]zerank-1.F32.gguf filter=lfs diff=lfs merge=lfs -text
|
| 39 |
+
[[:space:]]zerank-1.Q2_K.gguf filter=lfs diff=lfs merge=lfs -text
|
| 40 |
+
[[:space:]]zerank-1.Q3_K_L.gguf filter=lfs diff=lfs merge=lfs -text
|
| 41 |
+
[[:space:]]zerank-1.Q3_K_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 42 |
+
[[:space:]]zerank-1.Q3_K_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 43 |
+
[[:space:]]zerank-1.Q4_K_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 44 |
+
[[:space:]]zerank-1.Q4_K_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 45 |
+
[[:space:]]zerank-1.Q5_K_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 46 |
+
[[:space:]]zerank-1.Q5_K_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 47 |
+
[[:space:]]zerank-1.Q6_K.gguf filter=lfs diff=lfs merge=lfs -text
|
| 48 |
+
[[:space:]]zerank-1.Q8_0.gguf filter=lfs diff=lfs merge=lfs -text
|