Instructions to use mradermacher/CscSQL-Merge-Qwen2.5-Coder-0.5B-Instruct-GGUF with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use mradermacher/CscSQL-Merge-Qwen2.5-Coder-0.5B-Instruct-GGUF with Transformers:
# Load model directly from transformers import AutoModel model = AutoModel.from_pretrained("mradermacher/CscSQL-Merge-Qwen2.5-Coder-0.5B-Instruct-GGUF", dtype="auto") - llama-cpp-python
How to use mradermacher/CscSQL-Merge-Qwen2.5-Coder-0.5B-Instruct-GGUF with llama-cpp-python:
# !pip install llama-cpp-python from llama_cpp import Llama llm = Llama.from_pretrained( repo_id="mradermacher/CscSQL-Merge-Qwen2.5-Coder-0.5B-Instruct-GGUF", filename="CscSQL-Merge-Qwen2.5-Coder-0.5B-Instruct.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/CscSQL-Merge-Qwen2.5-Coder-0.5B-Instruct-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/CscSQL-Merge-Qwen2.5-Coder-0.5B-Instruct-GGUF:Q4_K_M # Run inference directly in the terminal: llama-cli -hf mradermacher/CscSQL-Merge-Qwen2.5-Coder-0.5B-Instruct-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/CscSQL-Merge-Qwen2.5-Coder-0.5B-Instruct-GGUF:Q4_K_M # Run inference directly in the terminal: llama-cli -hf mradermacher/CscSQL-Merge-Qwen2.5-Coder-0.5B-Instruct-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/CscSQL-Merge-Qwen2.5-Coder-0.5B-Instruct-GGUF:Q4_K_M # Run inference directly in the terminal: ./llama-cli -hf mradermacher/CscSQL-Merge-Qwen2.5-Coder-0.5B-Instruct-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/CscSQL-Merge-Qwen2.5-Coder-0.5B-Instruct-GGUF:Q4_K_M # Run inference directly in the terminal: ./build/bin/llama-cli -hf mradermacher/CscSQL-Merge-Qwen2.5-Coder-0.5B-Instruct-GGUF:Q4_K_M
Use Docker
docker model run hf.co/mradermacher/CscSQL-Merge-Qwen2.5-Coder-0.5B-Instruct-GGUF:Q4_K_M
- LM Studio
- Jan
- Ollama
How to use mradermacher/CscSQL-Merge-Qwen2.5-Coder-0.5B-Instruct-GGUF with Ollama:
ollama run hf.co/mradermacher/CscSQL-Merge-Qwen2.5-Coder-0.5B-Instruct-GGUF:Q4_K_M
- Unsloth Studio
How to use mradermacher/CscSQL-Merge-Qwen2.5-Coder-0.5B-Instruct-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/CscSQL-Merge-Qwen2.5-Coder-0.5B-Instruct-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/CscSQL-Merge-Qwen2.5-Coder-0.5B-Instruct-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/CscSQL-Merge-Qwen2.5-Coder-0.5B-Instruct-GGUF to start chatting
- Pi
How to use mradermacher/CscSQL-Merge-Qwen2.5-Coder-0.5B-Instruct-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/CscSQL-Merge-Qwen2.5-Coder-0.5B-Instruct-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/CscSQL-Merge-Qwen2.5-Coder-0.5B-Instruct-GGUF:Q4_K_M" } ] } } }Run Pi
# Start Pi in your project directory: pi
- Hermes Agent new
How to use mradermacher/CscSQL-Merge-Qwen2.5-Coder-0.5B-Instruct-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/CscSQL-Merge-Qwen2.5-Coder-0.5B-Instruct-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/CscSQL-Merge-Qwen2.5-Coder-0.5B-Instruct-GGUF:Q4_K_M
Run Hermes
hermes
- Atomic Chat new
- Docker Model Runner
How to use mradermacher/CscSQL-Merge-Qwen2.5-Coder-0.5B-Instruct-GGUF with Docker Model Runner:
docker model run hf.co/mradermacher/CscSQL-Merge-Qwen2.5-Coder-0.5B-Instruct-GGUF:Q4_K_M
- Lemonade
How to use mradermacher/CscSQL-Merge-Qwen2.5-Coder-0.5B-Instruct-GGUF with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull mradermacher/CscSQL-Merge-Qwen2.5-Coder-0.5B-Instruct-GGUF:Q4_K_M
Run and chat with the model
lemonade run user.CscSQL-Merge-Qwen2.5-Coder-0.5B-Instruct-GGUF-Q4_K_M
List all available models
lemonade list
uploaded from rich1
Browse files- .gitattributes +12 -0
- CscSQL-Merge-Qwen2.5-Coder-0.5B-Instruct.IQ4_XS.gguf +3 -0
- CscSQL-Merge-Qwen2.5-Coder-0.5B-Instruct.Q2_K.gguf +3 -0
- CscSQL-Merge-Qwen2.5-Coder-0.5B-Instruct.Q3_K_L.gguf +3 -0
- CscSQL-Merge-Qwen2.5-Coder-0.5B-Instruct.Q3_K_M.gguf +3 -0
- CscSQL-Merge-Qwen2.5-Coder-0.5B-Instruct.Q3_K_S.gguf +3 -0
- CscSQL-Merge-Qwen2.5-Coder-0.5B-Instruct.Q4_K_M.gguf +3 -0
- CscSQL-Merge-Qwen2.5-Coder-0.5B-Instruct.Q4_K_S.gguf +3 -0
- CscSQL-Merge-Qwen2.5-Coder-0.5B-Instruct.Q5_K_M.gguf +3 -0
- CscSQL-Merge-Qwen2.5-Coder-0.5B-Instruct.Q5_K_S.gguf +3 -0
- CscSQL-Merge-Qwen2.5-Coder-0.5B-Instruct.Q6_K.gguf +3 -0
- CscSQL-Merge-Qwen2.5-Coder-0.5B-Instruct.Q8_0.gguf +3 -0
- CscSQL-Merge-Qwen2.5-Coder-0.5B-Instruct.f16.gguf +3 -0
|
@@ -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 |
+
CscSQL-Merge-Qwen2.5-Coder-0.5B-Instruct.IQ4_XS.gguf filter=lfs diff=lfs merge=lfs -text
|
| 37 |
+
CscSQL-Merge-Qwen2.5-Coder-0.5B-Instruct.Q2_K.gguf filter=lfs diff=lfs merge=lfs -text
|
| 38 |
+
CscSQL-Merge-Qwen2.5-Coder-0.5B-Instruct.Q3_K_L.gguf filter=lfs diff=lfs merge=lfs -text
|
| 39 |
+
CscSQL-Merge-Qwen2.5-Coder-0.5B-Instruct.Q3_K_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 40 |
+
CscSQL-Merge-Qwen2.5-Coder-0.5B-Instruct.Q3_K_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 41 |
+
CscSQL-Merge-Qwen2.5-Coder-0.5B-Instruct.Q4_K_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 42 |
+
CscSQL-Merge-Qwen2.5-Coder-0.5B-Instruct.Q4_K_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 43 |
+
CscSQL-Merge-Qwen2.5-Coder-0.5B-Instruct.Q5_K_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 44 |
+
CscSQL-Merge-Qwen2.5-Coder-0.5B-Instruct.Q5_K_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 45 |
+
CscSQL-Merge-Qwen2.5-Coder-0.5B-Instruct.Q6_K.gguf filter=lfs diff=lfs merge=lfs -text
|
| 46 |
+
CscSQL-Merge-Qwen2.5-Coder-0.5B-Instruct.Q8_0.gguf filter=lfs diff=lfs merge=lfs -text
|
| 47 |
+
CscSQL-Merge-Qwen2.5-Coder-0.5B-Instruct.f16.gguf filter=lfs diff=lfs merge=lfs -text
|
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:a111ecd875db65f7f6e5eeb846a2dd7dd0e3571ec25fef63870435cb61156866
|
| 3 |
+
size 428021280
|
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:8f444d1d75a1117f0e9d6583be84eab6f97733f18506fcf2e14ab8d42666d1cb
|
| 3 |
+
size 415183392
|
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:cf8c421c32fcc84c247adb03fd9bfa9d76e788e022f5708a97fc844d4ae33f35
|
| 3 |
+
size 445934112
|
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:61e096b00343bfbfd17048e2b1adc133a7802477716ddb78a7c25dac2270dbae
|
| 3 |
+
size 432042528
|
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:faf84bef3c5fe1ad07e801e36c3952487ac91f76063dc07fa04b67706ddcb601
|
| 3 |
+
size 414839328
|
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:ae34f07eff9378ffee8d0d22e8709cf68ffe7165447ae8b93de272f964745ae4
|
| 3 |
+
size 491400736
|
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:014087aeb2fe1bb1aa3412488577c5f84012b61bc2c8ec931f93c0fba7373307
|
| 3 |
+
size 479064608
|
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:5841b5c35f0be4d9b045b3f38ae9ee18045f3549fac83187112a3153cb154570
|
| 3 |
+
size 522187296
|
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:4d0a57a8737d232b37af85cdbb5513c57720d386d625bb60149b22d8ceae5e2c
|
| 3 |
+
size 514811424
|
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:993681c4873a0f5867ca4ddf61dffd5f168013da46a48327e263f930b7d626bd
|
| 3 |
+
size 650379808
|
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:558a3d15fe5c0bfa3de11aefc7806935a76195a527e32b06d9759d96310d7866
|
| 3 |
+
size 675711520
|
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:7ed656432b2bf14385d1c1b131fa452715151fea2bbfeb10c1c34cebbe2541f1
|
| 3 |
+
size 1266426400
|