Transformers
GGUF
English
text-generation-inference
math
code
Mixture of Experts
imatrix
conversational
Instructions to use mradermacher/Magpie-Qwen-CortexDual-0.6B-i1-GGUF with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use mradermacher/Magpie-Qwen-CortexDual-0.6B-i1-GGUF with Transformers:
# Load model directly from transformers import AutoModel model = AutoModel.from_pretrained("mradermacher/Magpie-Qwen-CortexDual-0.6B-i1-GGUF", device_map="auto") - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- llama.cpp
How to use mradermacher/Magpie-Qwen-CortexDual-0.6B-i1-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/Magpie-Qwen-CortexDual-0.6B-i1-GGUF:Q4_K_M # Run inference directly in the terminal: llama cli -hf mradermacher/Magpie-Qwen-CortexDual-0.6B-i1-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/Magpie-Qwen-CortexDual-0.6B-i1-GGUF:Q4_K_M # Run inference directly in the terminal: llama cli -hf mradermacher/Magpie-Qwen-CortexDual-0.6B-i1-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/Magpie-Qwen-CortexDual-0.6B-i1-GGUF:Q4_K_M # Run inference directly in the terminal: ./llama-cli -hf mradermacher/Magpie-Qwen-CortexDual-0.6B-i1-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/Magpie-Qwen-CortexDual-0.6B-i1-GGUF:Q4_K_M # Run inference directly in the terminal: ./build/bin/llama-cli -hf mradermacher/Magpie-Qwen-CortexDual-0.6B-i1-GGUF:Q4_K_M
Use Docker
docker model run hf.co/mradermacher/Magpie-Qwen-CortexDual-0.6B-i1-GGUF:Q4_K_M
- LM Studio
- Jan
- Ollama
How to use mradermacher/Magpie-Qwen-CortexDual-0.6B-i1-GGUF with Ollama:
ollama run hf.co/mradermacher/Magpie-Qwen-CortexDual-0.6B-i1-GGUF:Q4_K_M
- Unsloth Desktop
- Pi
How to use mradermacher/Magpie-Qwen-CortexDual-0.6B-i1-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/Magpie-Qwen-CortexDual-0.6B-i1-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/Magpie-Qwen-CortexDual-0.6B-i1-GGUF:Q4_K_M" } ] } } }Run Pi
# Start Pi in your project directory: pi
- Docker Model Runner
How to use mradermacher/Magpie-Qwen-CortexDual-0.6B-i1-GGUF with Docker Model Runner:
docker model run hf.co/mradermacher/Magpie-Qwen-CortexDual-0.6B-i1-GGUF:Q4_K_M
- Lemonade
How to use mradermacher/Magpie-Qwen-CortexDual-0.6B-i1-GGUF with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull mradermacher/Magpie-Qwen-CortexDual-0.6B-i1-GGUF:Q4_K_M
Run and chat with the model
lemonade run user.Magpie-Qwen-CortexDual-0.6B-i1-GGUF-Q4_K_M
List all available models
lemonade list
- Hermes Agent
How to use mradermacher/Magpie-Qwen-CortexDual-0.6B-i1-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/Magpie-Qwen-CortexDual-0.6B-i1-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/Magpie-Qwen-CortexDual-0.6B-i1-GGUF:Q4_K_M
Run Hermes
hermes
- Atomic Chat
- OpenClaw
How to use mradermacher/Magpie-Qwen-CortexDual-0.6B-i1-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/Magpie-Qwen-CortexDual-0.6B-i1-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/Magpie-Qwen-CortexDual-0.6B-i1-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 nico1
Browse files- .gitattributes +24 -0
- Magpie-Qwen-CortexDual-0.6B.i1-IQ1_M.gguf +3 -0
- Magpie-Qwen-CortexDual-0.6B.i1-IQ1_S.gguf +3 -0
- Magpie-Qwen-CortexDual-0.6B.i1-IQ2_M.gguf +3 -0
- Magpie-Qwen-CortexDual-0.6B.i1-IQ2_S.gguf +3 -0
- Magpie-Qwen-CortexDual-0.6B.i1-IQ2_XS.gguf +3 -0
- Magpie-Qwen-CortexDual-0.6B.i1-IQ2_XXS.gguf +3 -0
- Magpie-Qwen-CortexDual-0.6B.i1-IQ3_M.gguf +3 -0
- Magpie-Qwen-CortexDual-0.6B.i1-IQ3_S.gguf +3 -0
- Magpie-Qwen-CortexDual-0.6B.i1-IQ3_XS.gguf +3 -0
- Magpie-Qwen-CortexDual-0.6B.i1-IQ3_XXS.gguf +3 -0
- Magpie-Qwen-CortexDual-0.6B.i1-IQ4_NL.gguf +3 -0
- Magpie-Qwen-CortexDual-0.6B.i1-IQ4_XS.gguf +3 -0
- Magpie-Qwen-CortexDual-0.6B.i1-Q2_K.gguf +3 -0
- Magpie-Qwen-CortexDual-0.6B.i1-Q2_K_S.gguf +3 -0
- Magpie-Qwen-CortexDual-0.6B.i1-Q3_K_L.gguf +3 -0
- Magpie-Qwen-CortexDual-0.6B.i1-Q3_K_M.gguf +3 -0
- Magpie-Qwen-CortexDual-0.6B.i1-Q3_K_S.gguf +3 -0
- Magpie-Qwen-CortexDual-0.6B.i1-Q4_0.gguf +3 -0
- Magpie-Qwen-CortexDual-0.6B.i1-Q4_1.gguf +3 -0
- Magpie-Qwen-CortexDual-0.6B.i1-Q4_K_M.gguf +3 -0
- Magpie-Qwen-CortexDual-0.6B.i1-Q4_K_S.gguf +3 -0
- Magpie-Qwen-CortexDual-0.6B.i1-Q5_K_M.gguf +3 -0
- Magpie-Qwen-CortexDual-0.6B.i1-Q5_K_S.gguf +3 -0
- Magpie-Qwen-CortexDual-0.6B.i1-Q6_K.gguf +3 -0
.gitattributes
CHANGED
|
@@ -34,3 +34,27 @@ saved_model/**/* 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 |
imatrix.dat 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 |
imatrix.dat filter=lfs diff=lfs merge=lfs -text
|
| 37 |
+
Magpie-Qwen-CortexDual-0.6B.i1-IQ1_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 38 |
+
Magpie-Qwen-CortexDual-0.6B.i1-IQ1_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 39 |
+
Magpie-Qwen-CortexDual-0.6B.i1-IQ2_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 40 |
+
Magpie-Qwen-CortexDual-0.6B.i1-IQ2_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 41 |
+
Magpie-Qwen-CortexDual-0.6B.i1-IQ2_XS.gguf filter=lfs diff=lfs merge=lfs -text
|
| 42 |
+
Magpie-Qwen-CortexDual-0.6B.i1-IQ2_XXS.gguf filter=lfs diff=lfs merge=lfs -text
|
| 43 |
+
Magpie-Qwen-CortexDual-0.6B.i1-IQ3_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 44 |
+
Magpie-Qwen-CortexDual-0.6B.i1-IQ3_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 45 |
+
Magpie-Qwen-CortexDual-0.6B.i1-IQ3_XS.gguf filter=lfs diff=lfs merge=lfs -text
|
| 46 |
+
Magpie-Qwen-CortexDual-0.6B.i1-IQ3_XXS.gguf filter=lfs diff=lfs merge=lfs -text
|
| 47 |
+
Magpie-Qwen-CortexDual-0.6B.i1-IQ4_NL.gguf filter=lfs diff=lfs merge=lfs -text
|
| 48 |
+
Magpie-Qwen-CortexDual-0.6B.i1-IQ4_XS.gguf filter=lfs diff=lfs merge=lfs -text
|
| 49 |
+
Magpie-Qwen-CortexDual-0.6B.i1-Q2_K.gguf filter=lfs diff=lfs merge=lfs -text
|
| 50 |
+
Magpie-Qwen-CortexDual-0.6B.i1-Q2_K_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 51 |
+
Magpie-Qwen-CortexDual-0.6B.i1-Q3_K_L.gguf filter=lfs diff=lfs merge=lfs -text
|
| 52 |
+
Magpie-Qwen-CortexDual-0.6B.i1-Q3_K_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 53 |
+
Magpie-Qwen-CortexDual-0.6B.i1-Q3_K_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 54 |
+
Magpie-Qwen-CortexDual-0.6B.i1-Q4_0.gguf filter=lfs diff=lfs merge=lfs -text
|
| 55 |
+
Magpie-Qwen-CortexDual-0.6B.i1-Q4_1.gguf filter=lfs diff=lfs merge=lfs -text
|
| 56 |
+
Magpie-Qwen-CortexDual-0.6B.i1-Q4_K_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 57 |
+
Magpie-Qwen-CortexDual-0.6B.i1-Q4_K_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 58 |
+
Magpie-Qwen-CortexDual-0.6B.i1-Q5_K_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 59 |
+
Magpie-Qwen-CortexDual-0.6B.i1-Q5_K_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 60 |
+
Magpie-Qwen-CortexDual-0.6B.i1-Q6_K.gguf filter=lfs diff=lfs merge=lfs -text
|
Magpie-Qwen-CortexDual-0.6B.i1-IQ1_M.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:ec3dd11f57a0d233b137fd0b9e08d1fad5b1961c0e5d56a63411de1a2d732e8e
|
| 3 |
+
size 216054048
|
Magpie-Qwen-CortexDual-0.6B.i1-IQ1_S.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:a8aa37f7634a0fbf94ef5db896ced3e40c935d2dd9fa236746f8e4d956dc3e85
|
| 3 |
+
size 208017696
|
Magpie-Qwen-CortexDual-0.6B.i1-IQ2_M.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:38bc39089f3ba2e0e8b4fde619851017d9e5854164d40a50692571582fafcd4e
|
| 3 |
+
size 264911136
|
Magpie-Qwen-CortexDual-0.6B.i1-IQ2_S.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:d26d2717c03679f30ca3b3d0bde4df47aba0a6af6abd136d44d24f6fad8e2dc8
|
| 3 |
+
size 254196000
|
Magpie-Qwen-CortexDual-0.6B.i1-IQ2_XS.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:071f7799f1c2450b3aaf2df1af2a2e74ce963bd50abef4868c31b87feed91c6b
|
| 3 |
+
size 241998112
|
Magpie-Qwen-CortexDual-0.6B.i1-IQ2_XXS.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:3171a5e373310634cb34809ed6851d94b533c601ede0228231db900a0d458325
|
| 3 |
+
size 229447968
|
Magpie-Qwen-CortexDual-0.6B.i1-IQ3_M.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:9fc2eeab5d0a7873803056a77d390654ce962511964a8ec5c6394fa0f5a1ce61
|
| 3 |
+
size 336028960
|
Magpie-Qwen-CortexDual-0.6B.i1-IQ3_S.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:ec08164852c8ed75666349f4e618e1574daac6c45089daebc096859fd54c3fa7
|
| 3 |
+
size 323077408
|
Magpie-Qwen-CortexDual-0.6B.i1-IQ3_XS.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:baaeed37a38bbe60ae5c5c7e2b2424eba1c61cca190335da0cea5a324c7d5be5
|
| 3 |
+
size 312755488
|
Magpie-Qwen-CortexDual-0.6B.i1-IQ3_XXS.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:a04f10e09d1bd9f470b1013d3889844d44f7f4dbbdb41c83ba8196f82a22cddd
|
| 3 |
+
size 279017760
|
Magpie-Qwen-CortexDual-0.6B.i1-IQ4_NL.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:0778c33dcdfedd5479cf629f3328e40dbf31887951ac2b2d71fa0008a7b0e253
|
| 3 |
+
size 381568288
|
Magpie-Qwen-CortexDual-0.6B.i1-IQ4_XS.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:ee91df2daaf8e38a85f7c7255be45055dbad81424a527c8eb86dee639459dae1
|
| 3 |
+
size 367805728
|
Magpie-Qwen-CortexDual-0.6B.i1-Q2_K.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:38cfe2945e3877c5cfeece61fd1f9da3c31c883c8ea75be22039b8621c0baa00
|
| 3 |
+
size 296240416
|
Magpie-Qwen-CortexDual-0.6B.i1-Q2_K_S.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:a0c3bbe6a072275422757bb0a4a595a5090116fb5b957cc5b31595bea12b9614
|
| 3 |
+
size 280560928
|
Magpie-Qwen-CortexDual-0.6B.i1-Q3_K_L.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:33e06062ba461680b77b2fcac3df3adb36bee52be1c58e9e36cbfa21f40184c1
|
| 3 |
+
size 368493856
|
Magpie-Qwen-CortexDual-0.6B.i1-Q3_K_M.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:ec8930cbeb0dfc553324385949b9741bbe28d52dacf991e43b759472e12c9aaa
|
| 3 |
+
size 347129120
|
Magpie-Qwen-CortexDual-0.6B.i1-Q3_K_S.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:7132d108bf5111f8309505300f411c1f4b57ce193d82a286a3340c9fe1a16cf9
|
| 3 |
+
size 323077408
|
Magpie-Qwen-CortexDual-0.6B.i1-Q4_0.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:5b700ebaa792bf7c22f07719f709d1992466462de3ccf5ba1824c213c95b788c
|
| 3 |
+
size 382158112
|
Magpie-Qwen-CortexDual-0.6B.i1-Q4_1.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:8e88e8f9f9e4d4521943f0c856e814b8fc662c3a6b0d50e4dee249b9eadef1f2
|
| 3 |
+
size 409093408
|
Magpie-Qwen-CortexDual-0.6B.i1-Q4_K_M.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:1468b04ab21ec672f35bbe00bfb20fd757c42dc8dd58b8b6c001d59aa093365a
|
| 3 |
+
size 396707104
|
Magpie-Qwen-CortexDual-0.6B.i1-Q4_K_S.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:ab618bafbe79de58bdbc3c69175001917cbfd697dca2b2c6e401da01b972439b
|
| 3 |
+
size 383272224
|
Magpie-Qwen-CortexDual-0.6B.i1-Q5_K_M.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:183148b539792dbf5ddc7277708fc300eaf3def06f9d4c38bd7082ee30f5fc37
|
| 3 |
+
size 444417312
|
Magpie-Qwen-CortexDual-0.6B.i1-Q5_K_S.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:7be52ed56a03955f510a78ac2239e4cac7531a955efff55bac26aea89e4be56e
|
| 3 |
+
size 436618528
|
Magpie-Qwen-CortexDual-0.6B.i1-Q6_K.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:c1f5f22f5fa030bfbfc7aa8ed72f5e688f4956e7712f72766eb553e501112e17
|
| 3 |
+
size 495109408
|