Transformers
GGUF
Safetensors
English
python
code-generation
code-assistant
causal-lm
full-finetune
hunyuan
instruct
conversational
Instructions to use mradermacher/Hunyuan-PythonGOD-0.5B-GGUF with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use mradermacher/Hunyuan-PythonGOD-0.5B-GGUF with Transformers:
# Load model directly from transformers import AutoModel model = AutoModel.from_pretrained("mradermacher/Hunyuan-PythonGOD-0.5B-GGUF", device_map="auto") - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- llama.cpp
How to use mradermacher/Hunyuan-PythonGOD-0.5B-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 mradermacher/Hunyuan-PythonGOD-0.5B-GGUF:Q4_K_M # Run inference directly in the terminal: llama cli -hf mradermacher/Hunyuan-PythonGOD-0.5B-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 mradermacher/Hunyuan-PythonGOD-0.5B-GGUF:Q4_K_M # Run inference directly in the terminal: llama cli -hf mradermacher/Hunyuan-PythonGOD-0.5B-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/Hunyuan-PythonGOD-0.5B-GGUF:Q4_K_M # Run inference directly in the terminal: ./llama-cli -hf mradermacher/Hunyuan-PythonGOD-0.5B-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/Hunyuan-PythonGOD-0.5B-GGUF:Q4_K_M # Run inference directly in the terminal: ./build/bin/llama-cli -hf mradermacher/Hunyuan-PythonGOD-0.5B-GGUF:Q4_K_M
Use Docker
docker model run hf.co/mradermacher/Hunyuan-PythonGOD-0.5B-GGUF:Q4_K_M
- LM Studio
- Jan
- Ollama
How to use mradermacher/Hunyuan-PythonGOD-0.5B-GGUF with Ollama:
ollama run hf.co/mradermacher/Hunyuan-PythonGOD-0.5B-GGUF:Q4_K_M
- Unsloth Desktop
- Pi
How to use mradermacher/Hunyuan-PythonGOD-0.5B-GGUF with Pi:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf mradermacher/Hunyuan-PythonGOD-0.5B-GGUF:Q4_K_M
Configure the model in Pi
# Install Pi: npm install -g @earendil-works/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/Hunyuan-PythonGOD-0.5B-GGUF:Q4_K_M" } ] } } }Run Pi
# Start Pi in your project directory: pi
- Docker Model Runner
How to use mradermacher/Hunyuan-PythonGOD-0.5B-GGUF with Docker Model Runner:
docker model run hf.co/mradermacher/Hunyuan-PythonGOD-0.5B-GGUF:Q4_K_M
- Lemonade
How to use mradermacher/Hunyuan-PythonGOD-0.5B-GGUF with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull mradermacher/Hunyuan-PythonGOD-0.5B-GGUF:Q4_K_M
Run and chat with the model
lemonade run user.Hunyuan-PythonGOD-0.5B-GGUF-Q4_K_M
List all available models
lemonade list
- Hermes Agent
How to use mradermacher/Hunyuan-PythonGOD-0.5B-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 mradermacher/Hunyuan-PythonGOD-0.5B-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/Hunyuan-PythonGOD-0.5B-GGUF:Q4_K_M
Run Hermes
hermes
- Atomic Chat
- OpenClaw
How to use mradermacher/Hunyuan-PythonGOD-0.5B-GGUF with OpenClaw:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf mradermacher/Hunyuan-PythonGOD-0.5B-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 "mradermacher/Hunyuan-PythonGOD-0.5B-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"
uploaded from leia
Browse files- .gitattributes +12 -0
- Hunyuan-PythonGOD-0.5B.IQ4_XS.gguf +3 -0
- Hunyuan-PythonGOD-0.5B.Q2_K.gguf +3 -0
- Hunyuan-PythonGOD-0.5B.Q3_K_L.gguf +3 -0
- Hunyuan-PythonGOD-0.5B.Q3_K_M.gguf +3 -0
- Hunyuan-PythonGOD-0.5B.Q3_K_S.gguf +3 -0
- Hunyuan-PythonGOD-0.5B.Q4_K_M.gguf +3 -0
- Hunyuan-PythonGOD-0.5B.Q4_K_S.gguf +3 -0
- Hunyuan-PythonGOD-0.5B.Q5_K_M.gguf +3 -0
- Hunyuan-PythonGOD-0.5B.Q5_K_S.gguf +3 -0
- Hunyuan-PythonGOD-0.5B.Q6_K.gguf +3 -0
- Hunyuan-PythonGOD-0.5B.Q8_0.gguf +3 -0
- Hunyuan-PythonGOD-0.5B.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 |
+
Hunyuan-PythonGOD-0.5B.IQ4_XS.gguf filter=lfs diff=lfs merge=lfs -text
|
| 37 |
+
Hunyuan-PythonGOD-0.5B.Q2_K.gguf filter=lfs diff=lfs merge=lfs -text
|
| 38 |
+
Hunyuan-PythonGOD-0.5B.Q3_K_L.gguf filter=lfs diff=lfs merge=lfs -text
|
| 39 |
+
Hunyuan-PythonGOD-0.5B.Q3_K_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 40 |
+
Hunyuan-PythonGOD-0.5B.Q3_K_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 41 |
+
Hunyuan-PythonGOD-0.5B.Q4_K_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 42 |
+
Hunyuan-PythonGOD-0.5B.Q4_K_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 43 |
+
Hunyuan-PythonGOD-0.5B.Q5_K_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 44 |
+
Hunyuan-PythonGOD-0.5B.Q5_K_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 45 |
+
Hunyuan-PythonGOD-0.5B.Q6_K.gguf filter=lfs diff=lfs merge=lfs -text
|
| 46 |
+
Hunyuan-PythonGOD-0.5B.Q8_0.gguf filter=lfs diff=lfs merge=lfs -text
|
| 47 |
+
Hunyuan-PythonGOD-0.5B.f16.gguf filter=lfs diff=lfs merge=lfs -text
|
Hunyuan-PythonGOD-0.5B.IQ4_XS.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:665a27effc5bffc53fd328ff96653b4ad10383c6182d0f3de9727361b8d5d91b
|
| 3 |
+
size 329117856
|
Hunyuan-PythonGOD-0.5B.Q2_K.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:8f8ee38fe797db0a5a5af9836fa0e9390583fc139a34bfd9d95b84a97a2b93d4
|
| 3 |
+
size 259666080
|
Hunyuan-PythonGOD-0.5B.Q3_K_L.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:1b7078b0046d14022e28260f2eeaeaec80d3352717d4320d275d63ab9d38837b
|
| 3 |
+
size 327397536
|
Hunyuan-PythonGOD-0.5B.Q3_K_M.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:a4bbb0c7812b6ab03311dcd165ba4d1bde01975275d5b42545086c1e76aa9edc
|
| 3 |
+
size 307671200
|
Hunyuan-PythonGOD-0.5B.Q3_K_S.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:e22bfbbecbde684b198f9c8d9d2440752f3621cd2e045594bd98aceea67f3b83
|
| 3 |
+
size 285225120
|
Hunyuan-PythonGOD-0.5B.Q4_K_M.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:15e7298f834600399fe9b50412e7c3574c807bcbe34ae801f786f84e4e33ce2a
|
| 3 |
+
size 354971808
|
Hunyuan-PythonGOD-0.5B.Q4_K_S.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:ec72dd042719cee5f25d9c501bb89069e0fd72645747ace7e42d333e2884fd24
|
| 3 |
+
size 342274208
|
Hunyuan-PythonGOD-0.5B.Q5_K_M.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:d56e68e96cf7608b2944a6d30ccbfb97311b9e8a6c0e7255ac7ec1643fe7c809
|
| 3 |
+
size 399798432
|
Hunyuan-PythonGOD-0.5B.Q5_K_S.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:38f45ee69550d7844f3d42cf33bccfe9dc082336943391a152ae4e536f9b20d1
|
| 3 |
+
size 392278176
|
Hunyuan-PythonGOD-0.5B.Q6_K.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:91a24e46e3e400f54a7acd24aa00cfc7bed0dd5d21434a54c1eea2e1d584e9d9
|
| 3 |
+
size 447426720
|
Hunyuan-PythonGOD-0.5B.Q8_0.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:c573c335826d59b9526e06d5e4a5587a77d10a59634eda86316d42fcb79bb79f
|
| 3 |
+
size 577954560
|
Hunyuan-PythonGOD-0.5B.f16.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:e947176e3471dbab56000434df4435e0db042f107e56d93502fbda3c66d2b4e9
|
| 3 |
+
size 1083223680
|