Instructions to use compilade/imatrix-prior-tests with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- llama-cpp-python
How to use compilade/imatrix-prior-tests with llama-cpp-python:
# !pip install llama-cpp-python from llama_cpp import Llama llm = Llama.from_pretrained( repo_id="compilade/imatrix-prior-tests", filename="Qwen3-30B-A3B-Instruct-2507-Q2_K-legacy.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 compilade/imatrix-prior-tests with llama.cpp:
Install from brew
brew install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama-server -hf compilade/imatrix-prior-tests:Q2_K # Run inference directly in the terminal: llama-cli -hf compilade/imatrix-prior-tests:Q2_K
Install from WinGet (Windows)
winget install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama-server -hf compilade/imatrix-prior-tests:Q2_K # Run inference directly in the terminal: llama-cli -hf compilade/imatrix-prior-tests:Q2_K
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 compilade/imatrix-prior-tests:Q2_K # Run inference directly in the terminal: ./llama-cli -hf compilade/imatrix-prior-tests:Q2_K
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 compilade/imatrix-prior-tests:Q2_K # Run inference directly in the terminal: ./build/bin/llama-cli -hf compilade/imatrix-prior-tests:Q2_K
Use Docker
docker model run hf.co/compilade/imatrix-prior-tests:Q2_K
- LM Studio
- Jan
- Ollama
How to use compilade/imatrix-prior-tests with Ollama:
ollama run hf.co/compilade/imatrix-prior-tests:Q2_K
- Unsloth Studio new
How to use compilade/imatrix-prior-tests 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 compilade/imatrix-prior-tests 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 compilade/imatrix-prior-tests to start chatting
Using HuggingFace Spaces for Unsloth
# No setup required # Open https://huggingface.co/spaces/unsloth/studio in your browser # Search for compilade/imatrix-prior-tests to start chatting
- Pi new
How to use compilade/imatrix-prior-tests with Pi:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama-server -hf compilade/imatrix-prior-tests:Q2_K
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": "compilade/imatrix-prior-tests:Q2_K" } ] } } }Run Pi
# Start Pi in your project directory: pi
- Hermes Agent new
How to use compilade/imatrix-prior-tests with Hermes Agent:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama-server -hf compilade/imatrix-prior-tests:Q2_K
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 compilade/imatrix-prior-tests:Q2_K
Run Hermes
hermes
- Docker Model Runner
How to use compilade/imatrix-prior-tests with Docker Model Runner:
docker model run hf.co/compilade/imatrix-prior-tests:Q2_K
- Lemonade
How to use compilade/imatrix-prior-tests with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull compilade/imatrix-prior-tests:Q2_K
Run and chat with the model
lemonade run user.imatrix-prior-tests-Q2_K
List all available models
lemonade list
Upload folder using huggingface_hub
Browse files- .gitattributes +7 -0
- Qwen3-30B-A3B-Instruct-2507-Q2_K-legacy.gguf +3 -0
- Qwen3-30B-A3B-Instruct-2507-Q2_K-prior0.gguf +3 -0
- Qwen3-30B-A3B-Instruct-2507-Q2_K-prior1.gguf +3 -0
- Qwen3-30B-A3B-Instruct-2507-Q2_K-prior128.gguf +3 -0
- Qwen3-30B-A3B-Instruct-2507-Q2_K-prior16.gguf +3 -0
- Qwen3-30B-A3B-Instruct-2507-Q8_0-imatrix.dat +3 -0
- Qwen3-30B-A3B-Instruct-2507-Q8_0-imatrix.gguf +3 -0
.gitattributes
CHANGED
|
@@ -33,3 +33,10 @@ 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 |
+
Qwen3-30B-A3B-Instruct-2507-Q2_K-legacy.gguf filter=lfs diff=lfs merge=lfs -text
|
| 37 |
+
Qwen3-30B-A3B-Instruct-2507-Q2_K-prior0.gguf filter=lfs diff=lfs merge=lfs -text
|
| 38 |
+
Qwen3-30B-A3B-Instruct-2507-Q2_K-prior1.gguf filter=lfs diff=lfs merge=lfs -text
|
| 39 |
+
Qwen3-30B-A3B-Instruct-2507-Q2_K-prior128.gguf filter=lfs diff=lfs merge=lfs -text
|
| 40 |
+
Qwen3-30B-A3B-Instruct-2507-Q2_K-prior16.gguf filter=lfs diff=lfs merge=lfs -text
|
| 41 |
+
Qwen3-30B-A3B-Instruct-2507-Q8_0-imatrix.dat filter=lfs diff=lfs merge=lfs -text
|
| 42 |
+
Qwen3-30B-A3B-Instruct-2507-Q8_0-imatrix.gguf filter=lfs diff=lfs merge=lfs -text
|
Qwen3-30B-A3B-Instruct-2507-Q2_K-legacy.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:38ee3b382fc4de1aa37dfff63c60faf3139a66fdfb90e607ae2374669335e079
|
| 3 |
+
size 11258609696
|
Qwen3-30B-A3B-Instruct-2507-Q2_K-prior0.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:2b9ab36300bc249e9753ea37f17623d2b553a696077b5454a58d4abe8280d99c
|
| 3 |
+
size 11258609696
|
Qwen3-30B-A3B-Instruct-2507-Q2_K-prior1.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:d8fa00183b33fa86e07b6c7f916d7fd64b7d521cba1c8ebc76d2d8f0ab7b4ccf
|
| 3 |
+
size 11258609696
|
Qwen3-30B-A3B-Instruct-2507-Q2_K-prior128.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:6b1955f8c900867a22497364b7252ad2b7f6865d86e4914334520fd321756b11
|
| 3 |
+
size 11258609696
|
Qwen3-30B-A3B-Instruct-2507-Q2_K-prior16.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:aa4380876ef635612fa34d45d5368928a36d11efcbf6ef83fe0cee43af082365
|
| 3 |
+
size 11258609696
|
Qwen3-30B-A3B-Instruct-2507-Q8_0-imatrix.dat
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:49c180ab63d58ee7fac8c868fe3fa1b86a1f408209ee8304c3c78fd85deaecbb
|
| 3 |
+
size 94515366
|
Qwen3-30B-A3B-Instruct-2507-Q8_0-imatrix.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:a11f4f18fa1754f56a3176b76e8e9e6bf83c1cf6d9027a8a17d2f630f58b1944
|
| 3 |
+
size 122029344
|