Instructions to use Aronstk15/Qwythos-9B-PerfectSplit-CoT-GGUF with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- llama-cpp-python
How to use Aronstk15/Qwythos-9B-PerfectSplit-CoT-GGUF with llama-cpp-python:
# !pip install llama-cpp-python from llama_cpp import Llama llm = Llama.from_pretrained( repo_id="Aronstk15/Qwythos-9B-PerfectSplit-CoT-GGUF", filename="Qwythos-9B-PerfectSplit-CoT.gguf", )
llm.create_chat_completion( messages = [ { "role": "user", "content": "What is the capital of France?" } ] ) - llama-cpp-python
How to use Aronstk15/Qwythos-9B-PerfectSplit-CoT-GGUF with llama-cpp-python:
# !pip install llama-cpp-python from llama_cpp import Llama llm = Llama.from_pretrained( repo_id="Aronstk15/Qwythos-9B-PerfectSplit-CoT-GGUF", filename="Qwythos-9B-PerfectSplit-CoT.gguf", )
llm.create_chat_completion( messages = [ { "role": "user", "content": "What is the capital of France?" } ] ) - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- llama.cpp
How to use Aronstk15/Qwythos-9B-PerfectSplit-CoT-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 Aronstk15/Qwythos-9B-PerfectSplit-CoT-GGUF # Run inference directly in the terminal: llama cli -hf Aronstk15/Qwythos-9B-PerfectSplit-CoT-GGUF
Install from WinGet (Windows)
winget install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama serve -hf Aronstk15/Qwythos-9B-PerfectSplit-CoT-GGUF # Run inference directly in the terminal: llama cli -hf Aronstk15/Qwythos-9B-PerfectSplit-CoT-GGUF
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 Aronstk15/Qwythos-9B-PerfectSplit-CoT-GGUF # Run inference directly in the terminal: ./llama-cli -hf Aronstk15/Qwythos-9B-PerfectSplit-CoT-GGUF
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 Aronstk15/Qwythos-9B-PerfectSplit-CoT-GGUF # Run inference directly in the terminal: ./build/bin/llama-cli -hf Aronstk15/Qwythos-9B-PerfectSplit-CoT-GGUF
Use Docker
docker model run hf.co/Aronstk15/Qwythos-9B-PerfectSplit-CoT-GGUF
- LM Studio
- Jan
- vLLM
How to use Aronstk15/Qwythos-9B-PerfectSplit-CoT-GGUF with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "Aronstk15/Qwythos-9B-PerfectSplit-CoT-GGUF" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "Aronstk15/Qwythos-9B-PerfectSplit-CoT-GGUF", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker
docker model run hf.co/Aronstk15/Qwythos-9B-PerfectSplit-CoT-GGUF
- Ollama
How to use Aronstk15/Qwythos-9B-PerfectSplit-CoT-GGUF with Ollama:
ollama run hf.co/Aronstk15/Qwythos-9B-PerfectSplit-CoT-GGUF
- Unsloth Studio
How to use Aronstk15/Qwythos-9B-PerfectSplit-CoT-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 Aronstk15/Qwythos-9B-PerfectSplit-CoT-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 Aronstk15/Qwythos-9B-PerfectSplit-CoT-GGUF to start chatting
Using HuggingFace Spaces for Unsloth
# No setup required # Open https://huggingface.co/spaces/unsloth/studio in your browser # Search for Aronstk15/Qwythos-9B-PerfectSplit-CoT-GGUF to start chatting
- Pi
How to use Aronstk15/Qwythos-9B-PerfectSplit-CoT-GGUF with Pi:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf Aronstk15/Qwythos-9B-PerfectSplit-CoT-GGUF
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": "Aronstk15/Qwythos-9B-PerfectSplit-CoT-GGUF" } ] } } }Run Pi
# Start Pi in your project directory: pi
- Hermes Agent new
How to use Aronstk15/Qwythos-9B-PerfectSplit-CoT-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 Aronstk15/Qwythos-9B-PerfectSplit-CoT-GGUF
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 Aronstk15/Qwythos-9B-PerfectSplit-CoT-GGUF
Run Hermes
hermes
- Atomic Chat new
- OpenClaw new
How to use Aronstk15/Qwythos-9B-PerfectSplit-CoT-GGUF with OpenClaw:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf Aronstk15/Qwythos-9B-PerfectSplit-CoT-GGUF
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 "Aronstk15/Qwythos-9B-PerfectSplit-CoT-GGUF" \ --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 Aronstk15/Qwythos-9B-PerfectSplit-CoT-GGUF with Docker Model Runner:
docker model run hf.co/Aronstk15/Qwythos-9B-PerfectSplit-CoT-GGUF
- Lemonade
How to use Aronstk15/Qwythos-9B-PerfectSplit-CoT-GGUF with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull Aronstk15/Qwythos-9B-PerfectSplit-CoT-GGUF
Run and chat with the model
lemonade run user.Qwythos-9B-PerfectSplit-CoT-GGUF-{{QUANT_TAG}}List all available models
lemonade list
Qwythos-9B-PerfectSplit-CoT-GGUF
A custom mixed-precision GGUF quantization of Qwythos-9B-Claude-Mythos-5-1M, surgically optimized to preserve Chain-of-Thought (CoT) reasoning quality and 1M-token context recall while reducing the model size by ~37%.
🎯 Why This Quantization Exists
Standard uniform quantizations (Q4_K_M, Q5_K_M, etc.) apply the same bit-width to every tensor. But in reasoning models with hybrid attention stacks, not all weights are equal:
- Attention & DeltaNet gates control information routing and memory retention. Even 1-bit of error here causes attention score drift at long context lengths and breaks the linear recurrence that powers the 1M context window.
- MLP layers contain massive mathematical redundancy due to their expansion ratio. They tolerate aggressive quantization with virtually no quality loss.
This model exploits that asymmetry by keeping sensitive layers at full F16 precision and only compressing the redundant MLP layers.
🧬 Quantization Strategy: "Perfect Split"
| Component | Precision | Rationale |
|---|---|---|
Token Embeddings (token_embd.weight) |
F16 | First point of contact with input. Errors propagate through every layer. |
Output Head (output.weight / lm_head) |
F16 | Maps hidden states to vocabulary logits. Quantization here causes wrong token selection and repetition loops. |
Attention Projections (attn_q, attn_k, attn_v, attn_gate, attn_qkv) |
F16 | Prevents attention score drift at 128K+ context lengths. |
DeltaNet / SSM (ssm_a, ssm_alpha, ssm_beta, ssm_dt, ssm_conv1d, ssm_out, ssm_norm) |
F16 | The recurrence S_t = α_t ⊙ S_{t-1} + β_t ⊙ (k_t ⊗ v_t) runs for millions of steps. Any error accumulates multiplicatively. |
Norms (attn_norm, ffn_norm, ssm_norm) |
F16 | Prevents activation scaling drift across 32+ layers. |
MLP Layers (ffn_gate, ffn_up, ffn_down) |
Q5_K_M | Highly redundant due to expansion ratio. Safe to compress. |
Final Statistics
| Metric | Value |
|---|---|
| Original Size (F16) | 18.00 GB |
| Final Size | 10.88 GB |
| Compression | ~37% smaller |
| Average BPW | 10.43 |
| F16 Tensors | 331 |
| Q5_K_M Tensors | 96 |
| Total Tensors | 427 |
📊 Expected Quality vs. Standard Quants
| Metric | Standard Q5_K_M | PerfectSplit-CoT | Full BF16 |
|---|---|---|---|
| CoT Chain Coherence (50+ steps) | Good | Excellent | Excellent |
| Repetition Loops | Low risk | Minimal | Minimal |
| Long Context Recall (256K+) | Moderate drift | Excellent | Excellent |
| Tool Call JSON Accuracy | ~92% | ~97%+ | ~98% |
| Factual Knowledge Recall | Very Good | Very Good | Excellent |
| File Size | ~6.5 GB | 10.88 GB | 18.00 GB |
Trade-off: This model is ~4 GB larger than a standard Q5_K_M, but preserves near-BF16 quality for reasoning and long-context tasks.
🚀 Usage
With llama.cpp
./llama-cli \
-m Qwythos-9B-PerfectSplit-CoT.gguf \
--prompt "Analyze this dataset and explain the trends." \
--n-predict 2000 \
--temp 0.6 \
--top-k 20 \
--top-p 0.95 \
--min-p 0.05 \
--repeat-penalty 1.05 \
--ctx-size 32768 \
--cache-type-k q8_0 \
--cache-type-v q8_0 \
--flash-attn \
--ngl 99
- Downloads last month
- 278
We're not able to determine the quantization variants.
Model tree for Aronstk15/Qwythos-9B-PerfectSplit-CoT-GGUF
Base model
Qwen/Qwen3.5-9B-Base