Transformers
GGUF
English
Merge
programming
code generation
code
coding
coder
chat
qwen
qwen3
qwencoder
esper
esper-3
valiant
valiant-labs
qwen-3
qwen-3-2.4b
2.4b
reasoning
code-instruct
python
javascript
dev-ops
jenkins
terraform
scripting
powershell
azure
aws
gcp
cloud
problem-solving
architect
engineer
developer
creative
analytical
expert
rationality
conversational
instruct
shining-valiant
shining-valiant-3
qwen-3-1.7b
1.7b
code-reasoning
science
science-reasoning
physics
biology
chemistry
earth-science
astronomy
machine-learning
artificial-intelligence
compsci
computer-science
information-theory
ML-Ops
math
cuda
deep-learning
agentic
LLM
neuromorphic
self-improvement
complex-systems
cognition
linguistics
philosophy
logic
epistemology
simulation
game-theory
knowledge-management
creativity
Instructions to use mradermacher/Qwen3-Shining-Lucy-CODER-2.4B-mix2-GGUF with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use mradermacher/Qwen3-Shining-Lucy-CODER-2.4B-mix2-GGUF with Transformers:
# Load model directly from transformers import AutoModel model = AutoModel.from_pretrained("mradermacher/Qwen3-Shining-Lucy-CODER-2.4B-mix2-GGUF", device_map="auto") - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- llama.cpp
How to use mradermacher/Qwen3-Shining-Lucy-CODER-2.4B-mix2-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/Qwen3-Shining-Lucy-CODER-2.4B-mix2-GGUF:Q4_K_M # Run inference directly in the terminal: llama cli -hf mradermacher/Qwen3-Shining-Lucy-CODER-2.4B-mix2-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/Qwen3-Shining-Lucy-CODER-2.4B-mix2-GGUF:Q4_K_M # Run inference directly in the terminal: llama cli -hf mradermacher/Qwen3-Shining-Lucy-CODER-2.4B-mix2-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/Qwen3-Shining-Lucy-CODER-2.4B-mix2-GGUF:Q4_K_M # Run inference directly in the terminal: ./llama-cli -hf mradermacher/Qwen3-Shining-Lucy-CODER-2.4B-mix2-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/Qwen3-Shining-Lucy-CODER-2.4B-mix2-GGUF:Q4_K_M # Run inference directly in the terminal: ./build/bin/llama-cli -hf mradermacher/Qwen3-Shining-Lucy-CODER-2.4B-mix2-GGUF:Q4_K_M
Use Docker
docker model run hf.co/mradermacher/Qwen3-Shining-Lucy-CODER-2.4B-mix2-GGUF:Q4_K_M
- LM Studio
- Jan
- Ollama
How to use mradermacher/Qwen3-Shining-Lucy-CODER-2.4B-mix2-GGUF with Ollama:
ollama run hf.co/mradermacher/Qwen3-Shining-Lucy-CODER-2.4B-mix2-GGUF:Q4_K_M
- Unsloth Studio
How to use mradermacher/Qwen3-Shining-Lucy-CODER-2.4B-mix2-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/Qwen3-Shining-Lucy-CODER-2.4B-mix2-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/Qwen3-Shining-Lucy-CODER-2.4B-mix2-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/Qwen3-Shining-Lucy-CODER-2.4B-mix2-GGUF to start chatting
- Pi
How to use mradermacher/Qwen3-Shining-Lucy-CODER-2.4B-mix2-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/Qwen3-Shining-Lucy-CODER-2.4B-mix2-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/Qwen3-Shining-Lucy-CODER-2.4B-mix2-GGUF:Q4_K_M" } ] } } }Run Pi
# Start Pi in your project directory: pi
- Hermes Agent new
How to use mradermacher/Qwen3-Shining-Lucy-CODER-2.4B-mix2-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/Qwen3-Shining-Lucy-CODER-2.4B-mix2-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/Qwen3-Shining-Lucy-CODER-2.4B-mix2-GGUF:Q4_K_M
Run Hermes
hermes
- Atomic Chat new
- OpenClaw new
How to use mradermacher/Qwen3-Shining-Lucy-CODER-2.4B-mix2-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/Qwen3-Shining-Lucy-CODER-2.4B-mix2-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/Qwen3-Shining-Lucy-CODER-2.4B-mix2-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/Qwen3-Shining-Lucy-CODER-2.4B-mix2-GGUF with Docker Model Runner:
docker model run hf.co/mradermacher/Qwen3-Shining-Lucy-CODER-2.4B-mix2-GGUF:Q4_K_M
- Lemonade
How to use mradermacher/Qwen3-Shining-Lucy-CODER-2.4B-mix2-GGUF with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull mradermacher/Qwen3-Shining-Lucy-CODER-2.4B-mix2-GGUF:Q4_K_M
Run and chat with the model
lemonade run user.Qwen3-Shining-Lucy-CODER-2.4B-mix2-GGUF-Q4_K_M
List all available models
lemonade list
uploaded from back
Browse files- .gitattributes +12 -0
- Qwen3-Shining-Lucy-CODER-2.4B-mix2.IQ4_XS.gguf +3 -0
- Qwen3-Shining-Lucy-CODER-2.4B-mix2.Q2_K.gguf +3 -0
- Qwen3-Shining-Lucy-CODER-2.4B-mix2.Q3_K_L.gguf +3 -0
- Qwen3-Shining-Lucy-CODER-2.4B-mix2.Q3_K_M.gguf +3 -0
- Qwen3-Shining-Lucy-CODER-2.4B-mix2.Q3_K_S.gguf +3 -0
- Qwen3-Shining-Lucy-CODER-2.4B-mix2.Q4_K_M.gguf +3 -0
- Qwen3-Shining-Lucy-CODER-2.4B-mix2.Q4_K_S.gguf +3 -0
- Qwen3-Shining-Lucy-CODER-2.4B-mix2.Q5_K_M.gguf +3 -0
- Qwen3-Shining-Lucy-CODER-2.4B-mix2.Q5_K_S.gguf +3 -0
- Qwen3-Shining-Lucy-CODER-2.4B-mix2.Q6_K.gguf +3 -0
- Qwen3-Shining-Lucy-CODER-2.4B-mix2.Q8_0.gguf +3 -0
- Qwen3-Shining-Lucy-CODER-2.4B-mix2.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 |
+
Qwen3-Shining-Lucy-CODER-2.4B-mix2.IQ4_XS.gguf filter=lfs diff=lfs merge=lfs -text
|
| 37 |
+
Qwen3-Shining-Lucy-CODER-2.4B-mix2.Q2_K.gguf filter=lfs diff=lfs merge=lfs -text
|
| 38 |
+
Qwen3-Shining-Lucy-CODER-2.4B-mix2.Q3_K_L.gguf filter=lfs diff=lfs merge=lfs -text
|
| 39 |
+
Qwen3-Shining-Lucy-CODER-2.4B-mix2.Q3_K_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 40 |
+
Qwen3-Shining-Lucy-CODER-2.4B-mix2.Q3_K_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 41 |
+
Qwen3-Shining-Lucy-CODER-2.4B-mix2.Q4_K_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 42 |
+
Qwen3-Shining-Lucy-CODER-2.4B-mix2.Q4_K_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 43 |
+
Qwen3-Shining-Lucy-CODER-2.4B-mix2.Q5_K_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 44 |
+
Qwen3-Shining-Lucy-CODER-2.4B-mix2.Q5_K_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 45 |
+
Qwen3-Shining-Lucy-CODER-2.4B-mix2.Q6_K.gguf filter=lfs diff=lfs merge=lfs -text
|
| 46 |
+
Qwen3-Shining-Lucy-CODER-2.4B-mix2.Q8_0.gguf filter=lfs diff=lfs merge=lfs -text
|
| 47 |
+
Qwen3-Shining-Lucy-CODER-2.4B-mix2.f16.gguf filter=lfs diff=lfs merge=lfs -text
|
Qwen3-Shining-Lucy-CODER-2.4B-mix2.IQ4_XS.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:4c7efe662a698de9a56907316f968c5ea6572bf08ec37eb471451255d821bbbd
|
| 3 |
+
size 1394811040
|
Qwen3-Shining-Lucy-CODER-2.4B-mix2.Q2_K.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:a0c528ad984308061a97ee69db5d52b59bc46277bbc7e11844d370c29f0cd402
|
| 3 |
+
size 1036099744
|
Qwen3-Shining-Lucy-CODER-2.4B-mix2.Q3_K_L.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:f6aa365518cd84cc28a819ba2521e69431b79626d7f831763e6d635aae28adde
|
| 3 |
+
size 1374658720
|
Qwen3-Shining-Lucy-CODER-2.4B-mix2.Q3_K_M.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:6e6a8d809461dd387eac7ad769013286480896bea81ff3d939d1e8a76d07bbd7
|
| 3 |
+
size 1279238304
|
Qwen3-Shining-Lucy-CODER-2.4B-mix2.Q3_K_S.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:72dc7488e4a18d2b5a0c9f21fe4336e04b931e3ce50bd089dbb8c8558811ef83
|
| 3 |
+
size 1170284704
|
Qwen3-Shining-Lucy-CODER-2.4B-mix2.Q4_K_M.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:85b932dd00324574a9091e27b76142a57493c1bda4e30c82789b157d815c8479
|
| 3 |
+
size 1530519712
|
Qwen3-Shining-Lucy-CODER-2.4B-mix2.Q4_K_S.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:b438e2ca754c36de7adb8372e7dede0b8ace174ac0535819e808f0449b3d5f2b
|
| 3 |
+
size 1459953824
|
Qwen3-Shining-Lucy-CODER-2.4B-mix2.Q5_K_M.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:e9f7cddafb229030f797cf38208ae8dce725b51e0e2c7e061bbe1430207e4dc7
|
| 3 |
+
size 1756225696
|
Qwen3-Shining-Lucy-CODER-2.4B-mix2.Q5_K_S.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:f57e942b972057730e5b1891e7faede13fde37605325cdf908cf13b622192340
|
| 3 |
+
size 1715282080
|
Qwen3-Shining-Lucy-CODER-2.4B-mix2.Q6_K.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:2164d96f73ef35f5177f3bb7ffabde3610809a35106e6cefce0bdcbd3a51f6fd
|
| 3 |
+
size 1996038304
|
Qwen3-Shining-Lucy-CODER-2.4B-mix2.Q8_0.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:ffae6d3533f38ee3f0dc741f6308700eb2e956dfd679758cac2fb2a7f63e9ce8
|
| 3 |
+
size 2583365792
|
Qwen3-Shining-Lucy-CODER-2.4B-mix2.f16.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:1f6c403b283e9bb0688bde8bb62762a85fb9c04d8e5c4f0dfd4fab9f198202d7
|
| 3 |
+
size 4856891552
|