Instructions to use mradermacher/Qwen2.5-3B-creepypasta-GGUF with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use mradermacher/Qwen2.5-3B-creepypasta-GGUF with Transformers:
# Load model directly from transformers import AutoModel model = AutoModel.from_pretrained("mradermacher/Qwen2.5-3B-creepypasta-GGUF", dtype="auto") - llama-cpp-python
How to use mradermacher/Qwen2.5-3B-creepypasta-GGUF with llama-cpp-python:
# !pip install llama-cpp-python from llama_cpp import Llama llm = Llama.from_pretrained( repo_id="mradermacher/Qwen2.5-3B-creepypasta-GGUF", filename="Qwen2.5-3B-creepypasta.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/Qwen2.5-3B-creepypasta-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/Qwen2.5-3B-creepypasta-GGUF:Q4_K_M # Run inference directly in the terminal: llama cli -hf mradermacher/Qwen2.5-3B-creepypasta-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/Qwen2.5-3B-creepypasta-GGUF:Q4_K_M # Run inference directly in the terminal: llama cli -hf mradermacher/Qwen2.5-3B-creepypasta-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/Qwen2.5-3B-creepypasta-GGUF:Q4_K_M # Run inference directly in the terminal: ./llama-cli -hf mradermacher/Qwen2.5-3B-creepypasta-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/Qwen2.5-3B-creepypasta-GGUF:Q4_K_M # Run inference directly in the terminal: ./build/bin/llama-cli -hf mradermacher/Qwen2.5-3B-creepypasta-GGUF:Q4_K_M
Use Docker
docker model run hf.co/mradermacher/Qwen2.5-3B-creepypasta-GGUF:Q4_K_M
- LM Studio
- Jan
- Ollama
How to use mradermacher/Qwen2.5-3B-creepypasta-GGUF with Ollama:
ollama run hf.co/mradermacher/Qwen2.5-3B-creepypasta-GGUF:Q4_K_M
- Unsloth Studio
How to use mradermacher/Qwen2.5-3B-creepypasta-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/Qwen2.5-3B-creepypasta-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/Qwen2.5-3B-creepypasta-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/Qwen2.5-3B-creepypasta-GGUF to start chatting
- Pi
How to use mradermacher/Qwen2.5-3B-creepypasta-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/Qwen2.5-3B-creepypasta-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/Qwen2.5-3B-creepypasta-GGUF:Q4_K_M" } ] } } }Run Pi
# Start Pi in your project directory: pi
- Hermes Agent new
How to use mradermacher/Qwen2.5-3B-creepypasta-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/Qwen2.5-3B-creepypasta-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/Qwen2.5-3B-creepypasta-GGUF:Q4_K_M
Run Hermes
hermes
- Atomic Chat new
- OpenClaw new
How to use mradermacher/Qwen2.5-3B-creepypasta-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/Qwen2.5-3B-creepypasta-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/Qwen2.5-3B-creepypasta-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 mradermacher/Qwen2.5-3B-creepypasta-GGUF with Docker Model Runner:
docker model run hf.co/mradermacher/Qwen2.5-3B-creepypasta-GGUF:Q4_K_M
- Lemonade
How to use mradermacher/Qwen2.5-3B-creepypasta-GGUF with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull mradermacher/Qwen2.5-3B-creepypasta-GGUF:Q4_K_M
Run and chat with the model
lemonade run user.Qwen2.5-3B-creepypasta-GGUF-Q4_K_M
List all available models
lemonade list
uploaded from leia
Browse files- .gitattributes +12 -0
- Qwen2.5-3B-creepypasta.IQ4_XS.gguf +3 -0
- Qwen2.5-3B-creepypasta.Q2_K.gguf +3 -0
- Qwen2.5-3B-creepypasta.Q3_K_L.gguf +3 -0
- Qwen2.5-3B-creepypasta.Q3_K_M.gguf +3 -0
- Qwen2.5-3B-creepypasta.Q3_K_S.gguf +3 -0
- Qwen2.5-3B-creepypasta.Q4_K_M.gguf +3 -0
- Qwen2.5-3B-creepypasta.Q4_K_S.gguf +3 -0
- Qwen2.5-3B-creepypasta.Q5_K_M.gguf +3 -0
- Qwen2.5-3B-creepypasta.Q5_K_S.gguf +3 -0
- Qwen2.5-3B-creepypasta.Q6_K.gguf +3 -0
- Qwen2.5-3B-creepypasta.Q8_0.gguf +3 -0
- Qwen2.5-3B-creepypasta.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 |
+
Qwen2.5-3B-creepypasta.IQ4_XS.gguf filter=lfs diff=lfs merge=lfs -text
|
| 37 |
+
Qwen2.5-3B-creepypasta.Q2_K.gguf filter=lfs diff=lfs merge=lfs -text
|
| 38 |
+
Qwen2.5-3B-creepypasta.Q3_K_L.gguf filter=lfs diff=lfs merge=lfs -text
|
| 39 |
+
Qwen2.5-3B-creepypasta.Q3_K_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 40 |
+
Qwen2.5-3B-creepypasta.Q3_K_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 41 |
+
Qwen2.5-3B-creepypasta.Q4_K_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 42 |
+
Qwen2.5-3B-creepypasta.Q4_K_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 43 |
+
Qwen2.5-3B-creepypasta.Q5_K_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 44 |
+
Qwen2.5-3B-creepypasta.Q5_K_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 45 |
+
Qwen2.5-3B-creepypasta.Q6_K.gguf filter=lfs diff=lfs merge=lfs -text
|
| 46 |
+
Qwen2.5-3B-creepypasta.Q8_0.gguf filter=lfs diff=lfs merge=lfs -text
|
| 47 |
+
Qwen2.5-3B-creepypasta.f16.gguf filter=lfs diff=lfs merge=lfs -text
|
Qwen2.5-3B-creepypasta.IQ4_XS.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:3a801251fcb7cf850ec049a700412773b10398814f9ffecc25e049caffe474d3
|
| 3 |
+
size 1753185152
|
Qwen2.5-3B-creepypasta.Q2_K.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:a809e06c1ba9e3f8798f6e397810695cc9a975b307c9d56510fa3dde9d76cc2a
|
| 3 |
+
size 1274755968
|
Qwen2.5-3B-creepypasta.Q3_K_L.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:b6d1df800b045256876081917998f74fbc7eb5b98529e0817100e25570ceff58
|
| 3 |
+
size 1707391872
|
Qwen2.5-3B-creepypasta.Q3_K_M.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:2a641774e26739896ccc75ca701423bc4208b14a8216a5f8c018b8a026674e7c
|
| 3 |
+
size 1590475648
|
Qwen2.5-3B-creepypasta.Q3_K_S.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:38f974b2391581290e8f283834a91ad955f6d501e3a723443551509ad625cc33
|
| 3 |
+
size 1454357376
|
Qwen2.5-3B-creepypasta.Q4_K_M.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:3ca51058fcdd4526bd33ab13273b90715618035b24b702a4d2f795e625d3961e
|
| 3 |
+
size 1929902976
|
Qwen2.5-3B-creepypasta.Q4_K_S.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:5e263e9ba0a4c3c65b55b08666bcebde5baea29b0f17d3ef5133de3343523eba
|
| 3 |
+
size 1834384256
|
Qwen2.5-3B-creepypasta.Q5_K_M.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:5081a6f62b18862f2434f688f3bcb23abc53df7c9543e59e1ca95e218ba341ff
|
| 3 |
+
size 2224814976
|
Qwen2.5-3B-creepypasta.Q5_K_S.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:6cd4006fd374aba809fcd58b56f560da641ec45c089b9cb8203384d355fe0bcb
|
| 3 |
+
size 2169666432
|
Qwen2.5-3B-creepypasta.Q6_K.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:4b33e4258c6c3aa595e09a55845263e8b81503b3011e11beb5edf02ce550d7e3
|
| 3 |
+
size 2538158976
|
Qwen2.5-3B-creepypasta.Q8_0.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:487c152bf3ed20e4e7b762b1e54e8effe02f12ecd2ca5ad2ac4be633dda50f27
|
| 3 |
+
size 3285476224
|
Qwen2.5-3B-creepypasta.f16.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:4c537bbf743a6e9b45e4272f13d180cf35f696b98b332a3406ea1ef56d7f7f31
|
| 3 |
+
size 6178317184
|