Views
No views yet
⚠️ Requires a very recent llama.cpp (build b10360 / Aug 2026 or newer). Qwen3.8 is a hybrid Gated Delta Net (linear-attention) + full-attention architecture (arch: qwen35). Support landed in llama.cpp only recently — stable Ollama and LM Studio do not run this yet. Use up-to-datellama.cppbuilt from source until downstream runtimes catch up.
| File | Quant | Size |
|---|---|---|
Qwen3.8-27B-RAM-31GB.gguf | Mixed (Q4_K–F16) + imatrix | 31.2 GB |
| Metric | Value |
|---|---|
| Size on disk | 31.2 GB |
| Average bits per weight | 9.12 |
| Base type | Q4_K_M (per-tensor overrides via RAM spec) |
| Framework | llama.cpp (GGUF), arch qwen35 |
| Calibration | Importance matrix (wikitext-2 + 200 MMLU-Pro, seed=99) |
| Source | Qwen/Qwen3.8-27B (BF16, 55.6 GB) |
| Type | Count | Role |
|---|---|---|
| F32 | 360 | Norms, biases, Gated Delta Net scalar params |
| Q8_0 | 190 | High-sensitivity RAM-allocated projections |
| Q4_K | 179 | Base type (low-sensitivity + fused tensors) |
| F16 | 114 | Probe-protected sensitive tensors |
| Q6_K | 23 | Medium-sensitivity projections |
On RAM allocation coverage: llama.cpp fuses this architecture's attention and Gated Delta Net projections (attn_qkv,ssm_alpha/beta/a/dt) into tensors that don't map 1:1 onto RAM's per-tensor manifest. RAM's mixed-precision spec therefore applies cleanly to ~74% of weight bytes (the MLP bulk + several SSM tensors); the fused attention/SSM tensors receive the imatrix-calibrated base type. It's a mostly-RAM, imatrix GGUF — not a full per-tensor build. The MLX sibling has complete per-tensor allocation.
1# Build a current llama.cpp from source (>= b10360) — brew/Ollama/LM Studio may lag.
2git clone https://github.com/ggml-org/llama.cpp && cd llama.cpp
3cmake -B build && cmake --build build -j # add -DGGML_METAL=ON on Apple Silicon
4
5# Download this GGUF
6hf download baa-ai/Qwen3.8-27B-RAM-31GB-GGUF --include "*.gguf" --local-dir ./qwen3.8-ram
7
8# Run (Qwen3.8 is a reasoning model — thinking enabled by default)
9./build/bin/llama-cli -m ./qwen3.8-ram/Qwen3.8-27B-RAM-31GB.gguf \
10 -p "Explain quantum entanglement in one paragraph." -n 512 -ngl 99
11
12# OpenAI-compatible server
13./build/bin/llama-server -m ./qwen3.8-ram/Qwen3.8-27B-RAM-31GB.gguf --port 8080 -ngl 99 --ctx-size 8192temperature: 0.7
top_p: 0.9
top_k: 20
max_tokens: 8192llama-quantize applies the per-tensor spec with --imatrix (base type Q4_K_M for tensors outside the spec).