Instructions to use mradermacher/Pinnacle-GGUF with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use mradermacher/Pinnacle-GGUF with Transformers:
# Load model directly from transformers import AutoModel model = AutoModel.from_pretrained("mradermacher/Pinnacle-GGUF", dtype="auto") - llama-cpp-python
How to use mradermacher/Pinnacle-GGUF with llama-cpp-python:
# !pip install llama-cpp-python from llama_cpp import Llama llm = Llama.from_pretrained( repo_id="mradermacher/Pinnacle-GGUF", filename="Pinnacle.IQ4_XS.gguf", )
llm.create_chat_completion( messages = "No input example has been defined for this model task." )
- Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- llama.cpp
How to use mradermacher/Pinnacle-GGUF with llama.cpp:
Install from brew
brew install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama-server -hf mradermacher/Pinnacle-GGUF:Q4_K_M # Run inference directly in the terminal: llama-cli -hf mradermacher/Pinnacle-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 mradermacher/Pinnacle-GGUF:Q4_K_M # Run inference directly in the terminal: llama-cli -hf mradermacher/Pinnacle-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/Pinnacle-GGUF:Q4_K_M # Run inference directly in the terminal: ./llama-cli -hf mradermacher/Pinnacle-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/Pinnacle-GGUF:Q4_K_M # Run inference directly in the terminal: ./build/bin/llama-cli -hf mradermacher/Pinnacle-GGUF:Q4_K_M
Use Docker
docker model run hf.co/mradermacher/Pinnacle-GGUF:Q4_K_M
- LM Studio
- Jan
- Ollama
How to use mradermacher/Pinnacle-GGUF with Ollama:
ollama run hf.co/mradermacher/Pinnacle-GGUF:Q4_K_M
- Unsloth Studio
How to use mradermacher/Pinnacle-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/Pinnacle-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/Pinnacle-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/Pinnacle-GGUF to start chatting
- Pi
How to use mradermacher/Pinnacle-GGUF with Pi:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama-server -hf mradermacher/Pinnacle-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/Pinnacle-GGUF:Q4_K_M" } ] } } }Run Pi
# Start Pi in your project directory: pi
- Hermes Agent new
How to use mradermacher/Pinnacle-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 mradermacher/Pinnacle-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/Pinnacle-GGUF:Q4_K_M
Run Hermes
hermes
- Docker Model Runner
How to use mradermacher/Pinnacle-GGUF with Docker Model Runner:
docker model run hf.co/mradermacher/Pinnacle-GGUF:Q4_K_M
- Lemonade
How to use mradermacher/Pinnacle-GGUF with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull mradermacher/Pinnacle-GGUF:Q4_K_M
Run and chat with the model
lemonade run user.Pinnacle-GGUF-Q4_K_M
List all available models
lemonade list
uploaded from leia
Browse files- .gitattributes +12 -0
- Pinnacle.IQ4_XS.gguf +3 -0
- Pinnacle.Q2_K.gguf +3 -0
- Pinnacle.Q3_K_L.gguf +3 -0
- Pinnacle.Q3_K_M.gguf +3 -0
- Pinnacle.Q3_K_S.gguf +3 -0
- Pinnacle.Q4_K_M.gguf +3 -0
- Pinnacle.Q4_K_S.gguf +3 -0
- Pinnacle.Q5_K_M.gguf +3 -0
- Pinnacle.Q5_K_S.gguf +3 -0
- Pinnacle.Q6_K.gguf +3 -0
- Pinnacle.Q8_0.gguf +3 -0
- Pinnacle.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 |
+
Pinnacle.IQ4_XS.gguf filter=lfs diff=lfs merge=lfs -text
|
| 37 |
+
Pinnacle.Q2_K.gguf filter=lfs diff=lfs merge=lfs -text
|
| 38 |
+
Pinnacle.Q3_K_L.gguf filter=lfs diff=lfs merge=lfs -text
|
| 39 |
+
Pinnacle.Q3_K_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 40 |
+
Pinnacle.Q3_K_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 41 |
+
Pinnacle.Q4_K_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 42 |
+
Pinnacle.Q4_K_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 43 |
+
Pinnacle.Q5_K_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 44 |
+
Pinnacle.Q5_K_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 45 |
+
Pinnacle.Q6_K.gguf filter=lfs diff=lfs merge=lfs -text
|
| 46 |
+
Pinnacle.Q8_0.gguf filter=lfs diff=lfs merge=lfs -text
|
| 47 |
+
Pinnacle.f16.gguf filter=lfs diff=lfs merge=lfs -text
|
Pinnacle.IQ4_XS.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:f01d9885a1e10b9367430beaf73ff6f8614641f18243b71dabe0ebd2df2879c2
|
| 3 |
+
size 748385152
|
Pinnacle.Q2_K.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:6ca453903168bda61924f35fd8171a5c5856851b5539e2e6a45d9cc7627504da
|
| 3 |
+
size 580875136
|
Pinnacle.Q3_K_L.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:53cd8528db2020b4554f329b0e0f270bae909790d4c0382e6b08189df576ca55
|
| 3 |
+
size 732525440
|
Pinnacle.Q3_K_M.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:c9a8fb5c1c88075b5d566bf01aad29219127a058e2cefbafd180a4de14505d2e
|
| 3 |
+
size 690844544
|
Pinnacle.Q3_K_S.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:2c35fd994a2be3cb73d0a605682a49ee27b59958899c89c3aca9d2df47af2c6d
|
| 3 |
+
size 641692544
|
Pinnacle.Q4_K_M.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:3b65374c0ddb581e7ba9bf2bf6ed3f8316efb7e32b1882157b6f92b3b89a50ed
|
| 3 |
+
size 807695232
|
Pinnacle.Q4_K_S.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:2b4b475ea84e67916021b8f50b8a7f0ee86218270da39e35281b9e6737183e1f
|
| 3 |
+
size 775648128
|
Pinnacle.Q5_K_M.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:1c7ce51ce6cf565b353e6a1aa686b8596b9d6aed52fbe5c070c6733cde70b184
|
| 3 |
+
size 911504256
|
Pinnacle.Q5_K_S.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:618d737f9a85b94e373786d0108e50f8721cb47490fe64a394eb4b483a427bbb
|
| 3 |
+
size 892564352
|
Pinnacle.Q6_K.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:c963890c34e484f87f061dd41a6b7d64f73b4861b943073347a4188bde8e895e
|
| 3 |
+
size 1021801344
|
Pinnacle.Q8_0.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:5409d1436613b28becdad217d4778bcf108f0d9e632c4fa1b9deb2e502a31316
|
| 3 |
+
size 1321083776
|
Pinnacle.f16.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:9a526c2fe5516f353faad72942e315c10d034166bfccb57d73a4168e5a5b5859
|
| 3 |
+
size 2479596416
|