Instructions to use mradermacher/Qwen2.5-0.5B-Distill-Fast-GGUF with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use mradermacher/Qwen2.5-0.5B-Distill-Fast-GGUF with Transformers:
# Load model directly from transformers import AutoModel model = AutoModel.from_pretrained("mradermacher/Qwen2.5-0.5B-Distill-Fast-GGUF", dtype="auto") - llama-cpp-python
How to use mradermacher/Qwen2.5-0.5B-Distill-Fast-GGUF with llama-cpp-python:
# !pip install llama-cpp-python from llama_cpp import Llama llm = Llama.from_pretrained( repo_id="mradermacher/Qwen2.5-0.5B-Distill-Fast-GGUF", filename="Qwen2.5-0.5B-Distill-Fast.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-0.5B-Distill-Fast-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/Qwen2.5-0.5B-Distill-Fast-GGUF:Q4_K_M # Run inference directly in the terminal: llama-cli -hf mradermacher/Qwen2.5-0.5B-Distill-Fast-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/Qwen2.5-0.5B-Distill-Fast-GGUF:Q4_K_M # Run inference directly in the terminal: llama-cli -hf mradermacher/Qwen2.5-0.5B-Distill-Fast-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-0.5B-Distill-Fast-GGUF:Q4_K_M # Run inference directly in the terminal: ./llama-cli -hf mradermacher/Qwen2.5-0.5B-Distill-Fast-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-0.5B-Distill-Fast-GGUF:Q4_K_M # Run inference directly in the terminal: ./build/bin/llama-cli -hf mradermacher/Qwen2.5-0.5B-Distill-Fast-GGUF:Q4_K_M
Use Docker
docker model run hf.co/mradermacher/Qwen2.5-0.5B-Distill-Fast-GGUF:Q4_K_M
- LM Studio
- Jan
- Ollama
How to use mradermacher/Qwen2.5-0.5B-Distill-Fast-GGUF with Ollama:
ollama run hf.co/mradermacher/Qwen2.5-0.5B-Distill-Fast-GGUF:Q4_K_M
- Unsloth Studio
How to use mradermacher/Qwen2.5-0.5B-Distill-Fast-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-0.5B-Distill-Fast-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-0.5B-Distill-Fast-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-0.5B-Distill-Fast-GGUF to start chatting
- Pi
How to use mradermacher/Qwen2.5-0.5B-Distill-Fast-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/Qwen2.5-0.5B-Distill-Fast-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-0.5B-Distill-Fast-GGUF:Q4_K_M" } ] } } }Run Pi
# Start Pi in your project directory: pi
- Hermes Agent new
How to use mradermacher/Qwen2.5-0.5B-Distill-Fast-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/Qwen2.5-0.5B-Distill-Fast-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-0.5B-Distill-Fast-GGUF:Q4_K_M
Run Hermes
hermes
- Atomic Chat new
- Docker Model Runner
How to use mradermacher/Qwen2.5-0.5B-Distill-Fast-GGUF with Docker Model Runner:
docker model run hf.co/mradermacher/Qwen2.5-0.5B-Distill-Fast-GGUF:Q4_K_M
- Lemonade
How to use mradermacher/Qwen2.5-0.5B-Distill-Fast-GGUF with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull mradermacher/Qwen2.5-0.5B-Distill-Fast-GGUF:Q4_K_M
Run and chat with the model
lemonade run user.Qwen2.5-0.5B-Distill-Fast-GGUF-Q4_K_M
List all available models
lemonade list
uploaded from rich1
Browse files- .gitattributes +12 -0
- Qwen2.5-0.5B-Distill-Fast.IQ4_XS.gguf +3 -0
- Qwen2.5-0.5B-Distill-Fast.Q2_K.gguf +3 -0
- Qwen2.5-0.5B-Distill-Fast.Q3_K_L.gguf +3 -0
- Qwen2.5-0.5B-Distill-Fast.Q3_K_M.gguf +3 -0
- Qwen2.5-0.5B-Distill-Fast.Q3_K_S.gguf +3 -0
- Qwen2.5-0.5B-Distill-Fast.Q4_K_M.gguf +3 -0
- Qwen2.5-0.5B-Distill-Fast.Q4_K_S.gguf +3 -0
- Qwen2.5-0.5B-Distill-Fast.Q5_K_M.gguf +3 -0
- Qwen2.5-0.5B-Distill-Fast.Q5_K_S.gguf +3 -0
- Qwen2.5-0.5B-Distill-Fast.Q6_K.gguf +3 -0
- Qwen2.5-0.5B-Distill-Fast.Q8_0.gguf +3 -0
- Qwen2.5-0.5B-Distill-Fast.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-0.5B-Distill-Fast.IQ4_XS.gguf filter=lfs diff=lfs merge=lfs -text
|
| 37 |
+
Qwen2.5-0.5B-Distill-Fast.Q2_K.gguf filter=lfs diff=lfs merge=lfs -text
|
| 38 |
+
Qwen2.5-0.5B-Distill-Fast.Q3_K_L.gguf filter=lfs diff=lfs merge=lfs -text
|
| 39 |
+
Qwen2.5-0.5B-Distill-Fast.Q3_K_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 40 |
+
Qwen2.5-0.5B-Distill-Fast.Q3_K_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 41 |
+
Qwen2.5-0.5B-Distill-Fast.Q4_K_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 42 |
+
Qwen2.5-0.5B-Distill-Fast.Q4_K_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 43 |
+
Qwen2.5-0.5B-Distill-Fast.Q5_K_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 44 |
+
Qwen2.5-0.5B-Distill-Fast.Q5_K_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 45 |
+
Qwen2.5-0.5B-Distill-Fast.Q6_K.gguf filter=lfs diff=lfs merge=lfs -text
|
| 46 |
+
Qwen2.5-0.5B-Distill-Fast.Q8_0.gguf filter=lfs diff=lfs merge=lfs -text
|
| 47 |
+
Qwen2.5-0.5B-Distill-Fast.f16.gguf filter=lfs diff=lfs merge=lfs -text
|
Qwen2.5-0.5B-Distill-Fast.IQ4_XS.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:691cc3e49d6a0f95e2c601e195ae593dff691e1282935ffdee29e9d51ddd53e2
|
| 3 |
+
size 351445632
|
Qwen2.5-0.5B-Distill-Fast.Q2_K.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:dd7c79c6c0380eaeea7a74045ecd40bc8cc2a3f2ff359711957c8eeb9875a3ab
|
| 3 |
+
size 338607744
|
Qwen2.5-0.5B-Distill-Fast.Q3_K_L.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:78b44d96f443f2d857d6cc96b90419be2a1911199491901229b8a3415aad6ec1
|
| 3 |
+
size 369358464
|
Qwen2.5-0.5B-Distill-Fast.Q3_K_M.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:ad4372ab1f339db98ba63b56f9b08df35ed5cdb3f7fa921e226878757623f676
|
| 3 |
+
size 355466880
|
Qwen2.5-0.5B-Distill-Fast.Q3_K_S.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:d3226a1f3bfaeae43a445c3be4ae73f2bfd769e57d7b9ca1a8ce79c9b1dc4f6e
|
| 3 |
+
size 338263680
|
Qwen2.5-0.5B-Distill-Fast.Q4_K_M.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:a9dffffe50da681ebb0c0d2de98ec0dc10f096cbe6b56e18830464c7e5938cf0
|
| 3 |
+
size 397808256
|
Qwen2.5-0.5B-Distill-Fast.Q4_K_S.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:39071393f23a85f547a77c7d4630cd1d9aa7f0561d446b50a5d915a1da44e2c1
|
| 3 |
+
size 385472128
|
Qwen2.5-0.5B-Distill-Fast.Q5_K_M.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:a036bbcf031f08face255cba4e0710c537dfd207e43c34d9aa8df0a1cc9dd9ac
|
| 3 |
+
size 420086400
|
Qwen2.5-0.5B-Distill-Fast.Q5_K_S.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:4216f2bfb0ac6d5c81bebbaa2c5d83b79ff74d562ae52b7306eb77a4f59a3f1c
|
| 3 |
+
size 412710528
|
Qwen2.5-0.5B-Distill-Fast.Q6_K.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:7a10a355c2ab1e3fad33b52ecb9411edb8e6dbb27e95d3ee71c4ce791c410325
|
| 3 |
+
size 505736832
|
Qwen2.5-0.5B-Distill-Fast.Q8_0.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:5e003088e1f9eac23c6901374d0b4a9b9dadba93ee948425c4374311a46d2b68
|
| 3 |
+
size 531068544
|
Qwen2.5-0.5B-Distill-Fast.f16.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:d17b70d4a0d556e48634b07e6ec37bb9710632c3198a9b07d409b1463ee27cd6
|
| 3 |
+
size 994157184
|