Instructions to use mradermacher/PromptCoT-2.0-SelfPlay-4B-GGUF with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use mradermacher/PromptCoT-2.0-SelfPlay-4B-GGUF with Transformers:
# Load model directly from transformers import AutoModel model = AutoModel.from_pretrained("mradermacher/PromptCoT-2.0-SelfPlay-4B-GGUF", device_map="auto") - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- llama.cpp
How to use mradermacher/PromptCoT-2.0-SelfPlay-4B-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/PromptCoT-2.0-SelfPlay-4B-GGUF:Q4_K_M # Run inference directly in the terminal: llama cli -hf mradermacher/PromptCoT-2.0-SelfPlay-4B-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/PromptCoT-2.0-SelfPlay-4B-GGUF:Q4_K_M # Run inference directly in the terminal: llama cli -hf mradermacher/PromptCoT-2.0-SelfPlay-4B-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/PromptCoT-2.0-SelfPlay-4B-GGUF:Q4_K_M # Run inference directly in the terminal: ./llama-cli -hf mradermacher/PromptCoT-2.0-SelfPlay-4B-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/PromptCoT-2.0-SelfPlay-4B-GGUF:Q4_K_M # Run inference directly in the terminal: ./build/bin/llama-cli -hf mradermacher/PromptCoT-2.0-SelfPlay-4B-GGUF:Q4_K_M
Use Docker
docker model run hf.co/mradermacher/PromptCoT-2.0-SelfPlay-4B-GGUF:Q4_K_M
- LM Studio
- Jan
- Ollama
How to use mradermacher/PromptCoT-2.0-SelfPlay-4B-GGUF with Ollama:
ollama run hf.co/mradermacher/PromptCoT-2.0-SelfPlay-4B-GGUF:Q4_K_M
- Unsloth Desktop
- Pi
How to use mradermacher/PromptCoT-2.0-SelfPlay-4B-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/PromptCoT-2.0-SelfPlay-4B-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/PromptCoT-2.0-SelfPlay-4B-GGUF:Q4_K_M" } ] } } }Run Pi
# Start Pi in your project directory: pi
- Docker Model Runner
How to use mradermacher/PromptCoT-2.0-SelfPlay-4B-GGUF with Docker Model Runner:
docker model run hf.co/mradermacher/PromptCoT-2.0-SelfPlay-4B-GGUF:Q4_K_M
- Lemonade
How to use mradermacher/PromptCoT-2.0-SelfPlay-4B-GGUF with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull mradermacher/PromptCoT-2.0-SelfPlay-4B-GGUF:Q4_K_M
Run and chat with the model
lemonade run user.PromptCoT-2.0-SelfPlay-4B-GGUF-Q4_K_M
List all available models
lemonade list
- Hermes Agent
How to use mradermacher/PromptCoT-2.0-SelfPlay-4B-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/PromptCoT-2.0-SelfPlay-4B-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/PromptCoT-2.0-SelfPlay-4B-GGUF:Q4_K_M
Run Hermes
hermes
- Atomic Chat
- OpenClaw
How to use mradermacher/PromptCoT-2.0-SelfPlay-4B-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/PromptCoT-2.0-SelfPlay-4B-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/PromptCoT-2.0-SelfPlay-4B-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
- PromptCoT-2.0-SelfPlay-4B.IQ4_XS.gguf +3 -0
- PromptCoT-2.0-SelfPlay-4B.Q2_K.gguf +3 -0
- PromptCoT-2.0-SelfPlay-4B.Q3_K_L.gguf +3 -0
- PromptCoT-2.0-SelfPlay-4B.Q3_K_M.gguf +3 -0
- PromptCoT-2.0-SelfPlay-4B.Q3_K_S.gguf +3 -0
- PromptCoT-2.0-SelfPlay-4B.Q4_K_M.gguf +3 -0
- PromptCoT-2.0-SelfPlay-4B.Q4_K_S.gguf +3 -0
- PromptCoT-2.0-SelfPlay-4B.Q5_K_M.gguf +3 -0
- PromptCoT-2.0-SelfPlay-4B.Q5_K_S.gguf +3 -0
- PromptCoT-2.0-SelfPlay-4B.Q6_K.gguf +3 -0
- PromptCoT-2.0-SelfPlay-4B.Q8_0.gguf +3 -0
- PromptCoT-2.0-SelfPlay-4B.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 |
+
PromptCoT-2.0-SelfPlay-4B.IQ4_XS.gguf filter=lfs diff=lfs merge=lfs -text
|
| 37 |
+
PromptCoT-2.0-SelfPlay-4B.Q2_K.gguf filter=lfs diff=lfs merge=lfs -text
|
| 38 |
+
PromptCoT-2.0-SelfPlay-4B.Q3_K_L.gguf filter=lfs diff=lfs merge=lfs -text
|
| 39 |
+
PromptCoT-2.0-SelfPlay-4B.Q3_K_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 40 |
+
PromptCoT-2.0-SelfPlay-4B.Q3_K_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 41 |
+
PromptCoT-2.0-SelfPlay-4B.Q4_K_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 42 |
+
PromptCoT-2.0-SelfPlay-4B.Q4_K_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 43 |
+
PromptCoT-2.0-SelfPlay-4B.Q5_K_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 44 |
+
PromptCoT-2.0-SelfPlay-4B.Q5_K_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 45 |
+
PromptCoT-2.0-SelfPlay-4B.Q6_K.gguf filter=lfs diff=lfs merge=lfs -text
|
| 46 |
+
PromptCoT-2.0-SelfPlay-4B.Q8_0.gguf filter=lfs diff=lfs merge=lfs -text
|
| 47 |
+
PromptCoT-2.0-SelfPlay-4B.f16.gguf filter=lfs diff=lfs merge=lfs -text
|
PromptCoT-2.0-SelfPlay-4B.IQ4_XS.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:a55934342fb632a3f4eae65261c516a30c4e3c610d703ce4031c2dd01fe7fa9f
|
| 3 |
+
size 2492949152
|
PromptCoT-2.0-SelfPlay-4B.Q2_K.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:3cd7294abdacaf3dac727dd125add7aa2f473cd9d95031a1bd6910bac09d3935
|
| 3 |
+
size 1797125792
|
PromptCoT-2.0-SelfPlay-4B.Q3_K_L.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:78019b303d2aa07af45e3a5a3892b35a4fffa857c307081d160702e89c472834
|
| 3 |
+
size 2406915232
|
PromptCoT-2.0-SelfPlay-4B.Q3_K_M.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:ec0125d80f0acc396016b47fd363046d2b02144ad7ba47eddec3d2f27b0cfef2
|
| 3 |
+
size 2242747552
|
PromptCoT-2.0-SelfPlay-4B.Q3_K_S.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:46e2281a0a58845301cc99a932fd91b3546823e67e30c89b6e63d9a8202da7b3
|
| 3 |
+
size 2054126752
|
PromptCoT-2.0-SelfPlay-4B.Q4_K_M.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:9b155c332acd00d9c4302a55dc195c33d90769cfa7faf9653939fc55d00a42ec
|
| 3 |
+
size 2716068512
|
PromptCoT-2.0-SelfPlay-4B.Q4_K_S.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:aee028d4ee3a2033b99c60bc5f0eea427009746a88f18e5e39fdf964cc420b7c
|
| 3 |
+
size 2602097312
|
PromptCoT-2.0-SelfPlay-4B.Q5_K_M.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:5b7afc91e3c0b1a2dde2ea886c78e286029966c6beee416f70663a5724df45ce
|
| 3 |
+
size 3156920992
|
PromptCoT-2.0-SelfPlay-4B.Q5_K_S.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:9ea198fe5c2b8dbf036f6fb801d0ee7ab436dd218fa3db1b6fb7bd75a7e7639f
|
| 3 |
+
size 3091118752
|
PromptCoT-2.0-SelfPlay-4B.Q6_K.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:ae26e072f2ebc8cc97a37ca9f751a3a913091bd575f666a83c4700bfa202df7b
|
| 3 |
+
size 3625326752
|
PromptCoT-2.0-SelfPlay-4B.Q8_0.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:4ca8a59ebc89f22cc0a61901cdd095368c085ddedec6c0b08639453c20380459
|
| 3 |
+
size 4693671072
|
PromptCoT-2.0-SelfPlay-4B.f16.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:7ce8127267dbac58d4e958135e2cd4f5cbc7ad536c28b4a3fd7a69a3a42766c8
|
| 3 |
+
size 8829197472
|