Instructions to use mradermacher/git-commit-3B-GGUF with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use mradermacher/git-commit-3B-GGUF with Transformers:
# Load model directly from transformers import AutoModel model = AutoModel.from_pretrained("mradermacher/git-commit-3B-GGUF", dtype="auto") - llama-cpp-python
How to use mradermacher/git-commit-3B-GGUF with llama-cpp-python:
# !pip install llama-cpp-python from llama_cpp import Llama llm = Llama.from_pretrained( repo_id="mradermacher/git-commit-3B-GGUF", filename="git-commit-3B.IQ4_XS.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 mradermacher/git-commit-3B-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/git-commit-3B-GGUF:Q4_K_M # Run inference directly in the terminal: llama-cli -hf mradermacher/git-commit-3B-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/git-commit-3B-GGUF:Q4_K_M # Run inference directly in the terminal: llama-cli -hf mradermacher/git-commit-3B-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/git-commit-3B-GGUF:Q4_K_M # Run inference directly in the terminal: ./llama-cli -hf mradermacher/git-commit-3B-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/git-commit-3B-GGUF:Q4_K_M # Run inference directly in the terminal: ./build/bin/llama-cli -hf mradermacher/git-commit-3B-GGUF:Q4_K_M
Use Docker
docker model run hf.co/mradermacher/git-commit-3B-GGUF:Q4_K_M
- LM Studio
- Jan
- Ollama
How to use mradermacher/git-commit-3B-GGUF with Ollama:
ollama run hf.co/mradermacher/git-commit-3B-GGUF:Q4_K_M
- Unsloth Studio new
How to use mradermacher/git-commit-3B-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/git-commit-3B-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/git-commit-3B-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/git-commit-3B-GGUF to start chatting
- Pi new
How to use mradermacher/git-commit-3B-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/git-commit-3B-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/git-commit-3B-GGUF:Q4_K_M" } ] } } }Run Pi
# Start Pi in your project directory: pi
- Hermes Agent new
How to use mradermacher/git-commit-3B-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/git-commit-3B-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/git-commit-3B-GGUF:Q4_K_M
Run Hermes
hermes
- Docker Model Runner
How to use mradermacher/git-commit-3B-GGUF with Docker Model Runner:
docker model run hf.co/mradermacher/git-commit-3B-GGUF:Q4_K_M
- Lemonade
How to use mradermacher/git-commit-3B-GGUF with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull mradermacher/git-commit-3B-GGUF:Q4_K_M
Run and chat with the model
lemonade run user.git-commit-3B-GGUF-Q4_K_M
List all available models
lemonade list
uploaded from leia
Browse files- .gitattributes +12 -0
- git-commit-3B.IQ4_XS.gguf +3 -0
- git-commit-3B.Q2_K.gguf +3 -0
- git-commit-3B.Q3_K_L.gguf +3 -0
- git-commit-3B.Q3_K_M.gguf +3 -0
- git-commit-3B.Q3_K_S.gguf +3 -0
- git-commit-3B.Q4_K_M.gguf +3 -0
- git-commit-3B.Q4_K_S.gguf +3 -0
- git-commit-3B.Q5_K_M.gguf +3 -0
- git-commit-3B.Q5_K_S.gguf +3 -0
- git-commit-3B.Q6_K.gguf +3 -0
- git-commit-3B.Q8_0.gguf +3 -0
- git-commit-3B.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 |
+
git-commit-3B.IQ4_XS.gguf filter=lfs diff=lfs merge=lfs -text
|
| 37 |
+
git-commit-3B.Q2_K.gguf filter=lfs diff=lfs merge=lfs -text
|
| 38 |
+
git-commit-3B.Q3_K_L.gguf filter=lfs diff=lfs merge=lfs -text
|
| 39 |
+
git-commit-3B.Q3_K_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 40 |
+
git-commit-3B.Q3_K_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 41 |
+
git-commit-3B.Q4_K_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 42 |
+
git-commit-3B.Q4_K_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 43 |
+
git-commit-3B.Q5_K_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 44 |
+
git-commit-3B.Q5_K_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 45 |
+
git-commit-3B.Q6_K.gguf filter=lfs diff=lfs merge=lfs -text
|
| 46 |
+
git-commit-3B.Q8_0.gguf filter=lfs diff=lfs merge=lfs -text
|
| 47 |
+
git-commit-3B.f16.gguf filter=lfs diff=lfs merge=lfs -text
|
git-commit-3B.IQ4_XS.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:dde67c5a084ce9d51a7030fea1547c8645559023a7b6354335b47f7d209de3c5
|
| 3 |
+
size 1753185632
|
git-commit-3B.Q2_K.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:8c1f8faa870beeaffbf6225431fda03158ebeb0bd3fbb2ee6ae08fdeda3613d9
|
| 3 |
+
size 1274756448
|
git-commit-3B.Q3_K_L.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:3379cda630bcab2d714d7e439fc4bd9c66a8778c892424970269471efd8ca997
|
| 3 |
+
size 1707392352
|
git-commit-3B.Q3_K_M.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:dd8ad7057752d1fd512750498e6cc53829a1b2b94cdc776ba21e0c4140942d14
|
| 3 |
+
size 1590476128
|
git-commit-3B.Q3_K_S.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:177a7d091d3cd2d7818ac801fecb4426d2fe05c2aaaf063c47f3aeeac1f91ad8
|
| 3 |
+
size 1454357856
|
git-commit-3B.Q4_K_M.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:a9b047f88c400ce57e927abe1474de89c27b7a76604fdf3a973364df266bf453
|
| 3 |
+
size 1929903456
|
git-commit-3B.Q4_K_S.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:badef9a98d5d5ef4275fab01b6a165fddf291dbbe0715820c0b0e071dac8f17c
|
| 3 |
+
size 1834384736
|
git-commit-3B.Q5_K_M.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:7482001e5643f33072df203127627e5c7146ff0521bc4c370c89f4104923768e
|
| 3 |
+
size 2224815456
|
git-commit-3B.Q5_K_S.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:2a74057aa553251a2e2ac410b7b5fd34003656b4269dd4c9058daa694958e942
|
| 3 |
+
size 2169666912
|
git-commit-3B.Q6_K.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:7260bcc66137a4fa3429b548b0a313078f2f98bd9d0efa61b3491e71d96336d3
|
| 3 |
+
size 2538159456
|
git-commit-3B.Q8_0.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:8a7ad58fd6d41eddcfb76a2501a9790ea9237fdbfd28f1ee538cee57150b8942
|
| 3 |
+
size 3285476704
|
git-commit-3B.f16.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:442a85704239d9f9094bbaf8c569c0fa2ce7a5f85c12a9f722618c07cf6a0002
|
| 3 |
+
size 6178317664
|