Text Generation
GGUF
quantized
qwen3
qwen3_moe
sr2am
Mixture of Experts
iq2_xxs
imatrix
asymmetric
conversational
Instructions to use peppi314/SR2AM-v1.0-30B-IQ2XXS-asym-GGUF with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- llama-cpp-python
How to use peppi314/SR2AM-v1.0-30B-IQ2XXS-asym-GGUF with llama-cpp-python:
# !pip install llama-cpp-python from llama_cpp import Llama llm = Llama.from_pretrained( repo_id="peppi314/SR2AM-v1.0-30B-IQ2XXS-asym-GGUF", filename="SR2AM-v1.0-30B-IQ2XXS-asym.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 peppi314/SR2AM-v1.0-30B-IQ2XXS-asym-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 peppi314/SR2AM-v1.0-30B-IQ2XXS-asym-GGUF # Run inference directly in the terminal: llama cli -hf peppi314/SR2AM-v1.0-30B-IQ2XXS-asym-GGUF
Install from WinGet (Windows)
winget install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama serve -hf peppi314/SR2AM-v1.0-30B-IQ2XXS-asym-GGUF # Run inference directly in the terminal: llama cli -hf peppi314/SR2AM-v1.0-30B-IQ2XXS-asym-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 peppi314/SR2AM-v1.0-30B-IQ2XXS-asym-GGUF # Run inference directly in the terminal: ./llama-cli -hf peppi314/SR2AM-v1.0-30B-IQ2XXS-asym-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 peppi314/SR2AM-v1.0-30B-IQ2XXS-asym-GGUF # Run inference directly in the terminal: ./build/bin/llama-cli -hf peppi314/SR2AM-v1.0-30B-IQ2XXS-asym-GGUF
Use Docker
docker model run hf.co/peppi314/SR2AM-v1.0-30B-IQ2XXS-asym-GGUF
- LM Studio
- Jan
- vLLM
How to use peppi314/SR2AM-v1.0-30B-IQ2XXS-asym-GGUF with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "peppi314/SR2AM-v1.0-30B-IQ2XXS-asym-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": "peppi314/SR2AM-v1.0-30B-IQ2XXS-asym-GGUF", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker
docker model run hf.co/peppi314/SR2AM-v1.0-30B-IQ2XXS-asym-GGUF
- Ollama
How to use peppi314/SR2AM-v1.0-30B-IQ2XXS-asym-GGUF with Ollama:
ollama run hf.co/peppi314/SR2AM-v1.0-30B-IQ2XXS-asym-GGUF
- Unsloth Studio
How to use peppi314/SR2AM-v1.0-30B-IQ2XXS-asym-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 peppi314/SR2AM-v1.0-30B-IQ2XXS-asym-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 peppi314/SR2AM-v1.0-30B-IQ2XXS-asym-GGUF to start chatting
Using HuggingFace Spaces for Unsloth
# No setup required # Open https://huggingface.co/spaces/unsloth/studio in your browser # Search for peppi314/SR2AM-v1.0-30B-IQ2XXS-asym-GGUF to start chatting
- Pi
How to use peppi314/SR2AM-v1.0-30B-IQ2XXS-asym-GGUF with Pi:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf peppi314/SR2AM-v1.0-30B-IQ2XXS-asym-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": "peppi314/SR2AM-v1.0-30B-IQ2XXS-asym-GGUF" } ] } } }Run Pi
# Start Pi in your project directory: pi
- Hermes Agent new
How to use peppi314/SR2AM-v1.0-30B-IQ2XXS-asym-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 peppi314/SR2AM-v1.0-30B-IQ2XXS-asym-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 peppi314/SR2AM-v1.0-30B-IQ2XXS-asym-GGUF
Run Hermes
hermes
- Atomic Chat new
- OpenClaw new
How to use peppi314/SR2AM-v1.0-30B-IQ2XXS-asym-GGUF with OpenClaw:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf peppi314/SR2AM-v1.0-30B-IQ2XXS-asym-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 "peppi314/SR2AM-v1.0-30B-IQ2XXS-asym-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 peppi314/SR2AM-v1.0-30B-IQ2XXS-asym-GGUF with Docker Model Runner:
docker model run hf.co/peppi314/SR2AM-v1.0-30B-IQ2XXS-asym-GGUF
- Lemonade
How to use peppi314/SR2AM-v1.0-30B-IQ2XXS-asym-GGUF with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull peppi314/SR2AM-v1.0-30B-IQ2XXS-asym-GGUF
Run and chat with the model
lemonade run user.SR2AM-v1.0-30B-IQ2XXS-asym-GGUF-{{QUANT_TAG}}List all available models
lemonade list
Upload README.md with huggingface_hub
Browse files
README.md
CHANGED
|
@@ -46,19 +46,48 @@ vs. source BF16 GGUF (58.3 GB, 16.01 BPW) → **6.5× compression**.
|
|
| 46 |
|
| 47 |
## Runtime (RTX 3090 24 GB, full GPU offload)
|
| 48 |
|
| 49 |
-
|
| 50 |
-
|
| 51 |
-
|
| 52 |
-
|
| 53 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 54 |
|
| 55 |
## Usage
|
| 56 |
|
|
|
|
|
|
|
| 57 |
```bash
|
| 58 |
-
llama-
|
|
|
|
|
|
|
|
|
|
|
|
|
| 59 |
```
|
| 60 |
|
| 61 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 62 |
|
| 63 |
## Credits
|
| 64 |
|
|
|
|
| 46 |
|
| 47 |
## Runtime (RTX 3090 24 GB, full GPU offload)
|
| 48 |
|
| 49 |
+
| Setting | Value |
|
| 50 |
+
|---|---|
|
| 51 |
+
| VRAM (with 40k ctx) | 13.9 GB / 24 GB |
|
| 52 |
+
| Prefill | 420.6 t/s |
|
| 53 |
+
| Decode | 168.3 t/s |
|
| 54 |
+
|
| 55 |
+
## Quality
|
| 56 |
+
|
| 57 |
+
| Benchmark | Score | Notes |
|
| 58 |
+
|---|---|---|
|
| 59 |
+
| MATH500 (subset N=30) | **24/30 = 80.0 %** | Qwen-spec sampling (see below). 0 truncations at the run config. |
|
| 60 |
+
|
| 61 |
+
Comparable to published Qwen3-30B-A3B-Thinking-2507 BF16 numbers on MATH500 (~85–90 %); ~5–10 point delta at **2.50 BPW** is in line with what asymmetric MoE quants achieve on reasoning benchmarks.
|
| 62 |
|
| 63 |
## Usage
|
| 64 |
|
| 65 |
+
This is a **thinking-mode** model. Use generous output budgets and Qwen3 official sampling, otherwise reasoning chains get truncated and the model emits empty content.
|
| 66 |
+
|
| 67 |
```bash
|
| 68 |
+
llama-server \
|
| 69 |
+
-m SR2AM-v1.0-30B-IQ2XXS-asym.gguf \
|
| 70 |
+
-ngl 99 \
|
| 71 |
+
-c 40960 \
|
| 72 |
+
--jinja
|
| 73 |
```
|
| 74 |
|
| 75 |
+
Request body for evals / hard reasoning prompts:
|
| 76 |
+
```json
|
| 77 |
+
{
|
| 78 |
+
"messages": [...],
|
| 79 |
+
"max_tokens": 32768,
|
| 80 |
+
"temperature": 0.6,
|
| 81 |
+
"top_p": 0.95,
|
| 82 |
+
"top_k": 20,
|
| 83 |
+
"min_p": 0.0,
|
| 84 |
+
"presence_penalty": 1.0
|
| 85 |
+
}
|
| 86 |
+
```
|
| 87 |
+
|
| 88 |
+
Use a recent `llama.cpp` build with IQ2_XXS CUDA kernels (tested on b9124).
|
| 89 |
+
|
| 90 |
+
> ⚠️ Do **not** set `temperature=0` — off-spec for Qwen3 thinking models and triggers degenerate long chains. Do **not** rely on `chat_template_kwargs.enable_thinking=false` — broken in current llama.cpp ([#20182](https://github.com/ggml-org/llama.cpp/issues/20182), [#13189](https://github.com/ggml-org/llama.cpp/issues/13189)).
|
| 91 |
|
| 92 |
## Credits
|
| 93 |
|