Instructions to use taronaeo/Granite-3.0-1B-A400M-Instruct-BE-GGUF with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- llama-cpp-python
How to use taronaeo/Granite-3.0-1B-A400M-Instruct-BE-GGUF with llama-cpp-python:
# !pip install llama-cpp-python from llama_cpp import Llama llm = Llama.from_pretrained( repo_id="taronaeo/Granite-3.0-1B-A400M-Instruct-BE-GGUF", filename="granite-3.0-1b-a400m-instruct-be.Q2_K.gguf", )
llm.create_chat_completion( messages = [ { "role": "user", "content": "What is the capital of France?" } ] ) - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- llama.cpp
How to use taronaeo/Granite-3.0-1B-A400M-Instruct-BE-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 taronaeo/Granite-3.0-1B-A400M-Instruct-BE-GGUF:Q4_K_M # Run inference directly in the terminal: llama cli -hf taronaeo/Granite-3.0-1B-A400M-Instruct-BE-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 taronaeo/Granite-3.0-1B-A400M-Instruct-BE-GGUF:Q4_K_M # Run inference directly in the terminal: llama cli -hf taronaeo/Granite-3.0-1B-A400M-Instruct-BE-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 taronaeo/Granite-3.0-1B-A400M-Instruct-BE-GGUF:Q4_K_M # Run inference directly in the terminal: ./llama-cli -hf taronaeo/Granite-3.0-1B-A400M-Instruct-BE-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 taronaeo/Granite-3.0-1B-A400M-Instruct-BE-GGUF:Q4_K_M # Run inference directly in the terminal: ./build/bin/llama-cli -hf taronaeo/Granite-3.0-1B-A400M-Instruct-BE-GGUF:Q4_K_M
Use Docker
docker model run hf.co/taronaeo/Granite-3.0-1B-A400M-Instruct-BE-GGUF:Q4_K_M
- LM Studio
- Jan
- vLLM
How to use taronaeo/Granite-3.0-1B-A400M-Instruct-BE-GGUF with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "taronaeo/Granite-3.0-1B-A400M-Instruct-BE-GGUF" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "taronaeo/Granite-3.0-1B-A400M-Instruct-BE-GGUF", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker
docker model run hf.co/taronaeo/Granite-3.0-1B-A400M-Instruct-BE-GGUF:Q4_K_M
- Ollama
How to use taronaeo/Granite-3.0-1B-A400M-Instruct-BE-GGUF with Ollama:
ollama run hf.co/taronaeo/Granite-3.0-1B-A400M-Instruct-BE-GGUF:Q4_K_M
- Unsloth Studio
How to use taronaeo/Granite-3.0-1B-A400M-Instruct-BE-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 taronaeo/Granite-3.0-1B-A400M-Instruct-BE-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 taronaeo/Granite-3.0-1B-A400M-Instruct-BE-GGUF to start chatting
Using HuggingFace Spaces for Unsloth
# No setup required # Open https://huggingface.co/spaces/unsloth/studio in your browser # Search for taronaeo/Granite-3.0-1B-A400M-Instruct-BE-GGUF to start chatting
- Pi
How to use taronaeo/Granite-3.0-1B-A400M-Instruct-BE-GGUF with Pi:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf taronaeo/Granite-3.0-1B-A400M-Instruct-BE-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": "taronaeo/Granite-3.0-1B-A400M-Instruct-BE-GGUF:Q4_K_M" } ] } } }Run Pi
# Start Pi in your project directory: pi
- Hermes Agent new
How to use taronaeo/Granite-3.0-1B-A400M-Instruct-BE-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 taronaeo/Granite-3.0-1B-A400M-Instruct-BE-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 taronaeo/Granite-3.0-1B-A400M-Instruct-BE-GGUF:Q4_K_M
Run Hermes
hermes
- Atomic Chat new
- OpenClaw new
How to use taronaeo/Granite-3.0-1B-A400M-Instruct-BE-GGUF with OpenClaw:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf taronaeo/Granite-3.0-1B-A400M-Instruct-BE-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 "taronaeo/Granite-3.0-1B-A400M-Instruct-BE-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 taronaeo/Granite-3.0-1B-A400M-Instruct-BE-GGUF with Docker Model Runner:
docker model run hf.co/taronaeo/Granite-3.0-1B-A400M-Instruct-BE-GGUF:Q4_K_M
- Lemonade
How to use taronaeo/Granite-3.0-1B-A400M-Instruct-BE-GGUF with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull taronaeo/Granite-3.0-1B-A400M-Instruct-BE-GGUF:Q4_K_M
Run and chat with the model
lemonade run user.Granite-3.0-1B-A400M-Instruct-BE-GGUF-Q4_K_M
List all available models
lemonade list
add gguf big-endian models
Browse files- .gitattributes +12 -0
- granite-3.0-1b-a400m-instruct-be.Q2_K.gguf +3 -0
- granite-3.0-1b-a400m-instruct-be.Q3_K_L.gguf +3 -0
- granite-3.0-1b-a400m-instruct-be.Q3_K_M.gguf +3 -0
- granite-3.0-1b-a400m-instruct-be.Q3_K_S.gguf +3 -0
- granite-3.0-1b-a400m-instruct-be.Q4_0.gguf +3 -0
- granite-3.0-1b-a400m-instruct-be.Q4_K_M.gguf +3 -0
- granite-3.0-1b-a400m-instruct-be.Q4_K_S.gguf +3 -0
- granite-3.0-1b-a400m-instruct-be.Q5_0.gguf +3 -0
- granite-3.0-1b-a400m-instruct-be.Q5_K_M.gguf +3 -0
- granite-3.0-1b-a400m-instruct-be.Q5_K_S.gguf +3 -0
- granite-3.0-1b-a400m-instruct-be.Q6_K.gguf +3 -0
- granite-3.0-1b-a400m-instruct-be.Q8_0.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 |
+
granite-3.0-1b-a400m-instruct-be.Q2_K.gguf filter=lfs diff=lfs merge=lfs -text
|
| 37 |
+
granite-3.0-1b-a400m-instruct-be.Q3_K_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 38 |
+
granite-3.0-1b-a400m-instruct-be.Q3_K_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 39 |
+
granite-3.0-1b-a400m-instruct-be.Q4_0.gguf filter=lfs diff=lfs merge=lfs -text
|
| 40 |
+
granite-3.0-1b-a400m-instruct-be.Q4_K_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 41 |
+
granite-3.0-1b-a400m-instruct-be.Q5_K_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 42 |
+
granite-3.0-1b-a400m-instruct-be.Q8_0.gguf filter=lfs diff=lfs merge=lfs -text
|
| 43 |
+
granite-3.0-1b-a400m-instruct-be.Q3_K_L.gguf filter=lfs diff=lfs merge=lfs -text
|
| 44 |
+
granite-3.0-1b-a400m-instruct-be.Q5_0.gguf filter=lfs diff=lfs merge=lfs -text
|
| 45 |
+
granite-3.0-1b-a400m-instruct-be.Q5_K_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 46 |
+
granite-3.0-1b-a400m-instruct-be.Q6_K.gguf filter=lfs diff=lfs merge=lfs -text
|
| 47 |
+
granite-3.0-1b-a400m-instruct-be.Q4_K_M.gguf filter=lfs diff=lfs merge=lfs -text
|
granite-3.0-1b-a400m-instruct-be.Q2_K.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:474f1f5a732e084a2e9e7097171d4e2be6764719a37860d886ee28ecc37617aa
|
| 3 |
+
size 512236576
|
granite-3.0-1b-a400m-instruct-be.Q3_K_L.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:4d0be9b503ac7b594dbe2f9bcc9eff92c1336799dbe646414101aa8de3dd37da
|
| 3 |
+
size 711400480
|
granite-3.0-1b-a400m-instruct-be.Q3_K_M.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:6138bf9779c4375da1e72fe0fe18a5928216ea14a45982c3141c2d1f7b919dc0
|
| 3 |
+
size 658578464
|
granite-3.0-1b-a400m-instruct-be.Q3_K_S.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:c4968d938f5f501c842338188ac4cea86818982427c88157731db5561fc6d9d2
|
| 3 |
+
size 597859360
|
granite-3.0-1b-a400m-instruct-be.Q4_0.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:2f0d89a31a25cb394285ec55faabef7144c6a0c756010f7ff54862d07d9335ea
|
| 3 |
+
size 768318496
|
granite-3.0-1b-a400m-instruct-be.Q4_K_M.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:937a8c4828cae34dbf3d6d76cfd119bca51eb314e28ed455d60ed0701545a8f6
|
| 3 |
+
size 821845024
|
granite-3.0-1b-a400m-instruct-be.Q4_K_S.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:ba6351573f089b570341a2ff29e3fe577027e08fe1f198871a4a7fba3c77291c
|
| 3 |
+
size 774872096
|
granite-3.0-1b-a400m-instruct-be.Q5_0.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:0fb5a1b3a227f02d9b16450542579d4f113f68084ca553aa7b8920f3abfc7314
|
| 3 |
+
size 928750624
|
granite-3.0-1b-a400m-instruct-be.Q5_K_M.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:2d36230ae047fce43c5d0134ca2c783ee9ef92305c59345c9aa3e9d54cae909a
|
| 3 |
+
size 956324896
|
granite-3.0-1b-a400m-instruct-be.Q5_K_S.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:efec80e12d4641811ef11cf674ef71330352ddd13bbc6856e836b6c8a47836a6
|
| 3 |
+
size 928750624
|
granite-3.0-1b-a400m-instruct-be.Q6_K.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:3bd59d52ebe783a6083699cddcbc037ab6f1b82a11c05f305d34973e319e43bb
|
| 3 |
+
size 1099209760
|
granite-3.0-1b-a400m-instruct-be.Q8_0.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:206bc6329803324a203006993cd73e1f0ef78c8831dea87844138a129a2c7bb3
|
| 3 |
+
size 1422237440
|