Views
No views yet

Image/video sidecars: This repository now includes the restored Qwen3.6 multimodal config, processor/preprocessor files, tokenizer/chat template, safetensors index, andmodel-vision-from-qwen3.6-base.safetensorsvisual tower sidecar. The existing.ggufbinaries were not rewritten in this metadata-copy pass.
Qwen3_5MoeForCausalLM (linear + full attention interleaved, Gated Delta Net)eaddario/imatrix-calibration → combined_all_medium): 200 chunks × 512 tokens = 102,400 calibration tokens.| File | Bits | Size | imatrix | Notes |
|---|---|---|---|---|
Ornstein3.6-35B-A3B-Q8_0.gguf | 8 | 36.9 GB | — | Reference, near-lossless |
Ornstein3.6-35B-A3B-Q6_K.gguf | 6.5 | 28.5 GB | — | Great default for 32 GB+ systems |
Ornstein3.6-35B-A3B-Q5_K_M.gguf | 5.5 | 24.7 GB | ✓ | Excellent quality/size balance |
Ornstein3.6-35B-A3B-Q5_K_S.gguf | 5.5 | 24.0 GB | ✓ | Slightly smaller Q5 |
Ornstein3.6-35B-A3B-Q4_K_M.gguf | 4.5 | 21.2 GB | ✓ | Common 24 GB-card default |
Ornstein3.6-35B-A3B-Q4_K_S.gguf | 4.5 | 19.9 GB | ✓ | Smaller Q4 |
Ornstein3.6-35B-A3B-IQ4_XS.gguf | 4.25 | ~18 GB | ✓ | Smaller than Q4_K_S, comparable quality with imatrix |
Ornstein3.6-35B-A3B-Q3_K_M.gguf | 3.5 | 16.8 GB | ✓ | Usable; quality below Q4 |
Ornstein3.6-35B-A3B-Q3_K_S.gguf | 3.5 | 15.2 GB | ✓ | Smaller Q3 |
Ornstein3.6-35B-A3B-IQ3_M.gguf | 3.3 | ~15 GB | ✓ | Mixed I-quant, beats Q3_K_S at similar size |
Ornstein3.6-35B-A3B-IQ3_XXS.gguf | 3.0 | ~13 GB | ✓ | Aggressive 3-bit |
Ornstein3.6-35B-A3B-Q2_K.gguf | 2.6 | 12.9 GB | ✓ | Lowest K-quant; expect degraded quality |
Ornstein3.6-35B-A3B-IQ2_M.gguf | 2.7 | ~12 GB | ✓ | Aggressive I-quant 2-bit |
imatrix.dat | — | 192 MB | — | Importance matrix (GGUF format) |
1# Interactive chat
2llama-cli -m Ornstein3.6-35B-A3B-Q4_K_M.gguf -cnv
3
4# Single prompt
5llama-cli -m Ornstein3.6-35B-A3B-Q5_K_M.gguf -p "Write a haiku about MoE routing."
6
7# OpenAI-compatible server
8llama-server -m Ornstein3.6-35B-A3B-Q4_K_M.gguf --host 0.0.0.0 --port 8080 -c 8192Modelfile), koboldcpp, and text-generation-webui all load these GGUFs provided their bundled llama.cpp supports Qwen3_5MoeForCausalLM with Gated Delta Net.1# 1. Convert safetensors → BF16 GGUF
2python llama.cpp/convert_hf_to_gguf.py <model_dir> \
3 --outtype bf16 --outfile Ornstein3.6-35B-A3B-BF16.gguf
4
5# 2. Importance matrix
6llama-imatrix \
7 -m Ornstein3.6-35B-A3B-BF16.gguf \
8 -f calibration.txt \
9 -o imatrix.dat \
10 --chunks 200 -c 512 -b 512 -ngl 99
11
12# 3. Quantize (example)
13llama-quantize --imatrix imatrix.dat \
14 Ornstein3.6-35B-A3B-BF16.gguf \
15 Ornstein3.6-35B-A3B-Q4_K_M.gguf Q4_K_M