Views
No views yet
📎 Vision support: Placemmproj.ggufin the same directory as the main.gguffile to enable visual capabilities.
| Filename | Quant | Bits | Size | Description |
|---|---|---|---|---|
Qwopus3.6-35B-A3B-v1-BF16.gguf | BF16 | 16 | ~70 GB | Full precision — reference quality |
Qwopus3.6-35B-A3B-v1-Q8_0.gguf | Q8_0 | 8 | ~37 GB | Near-lossless, recommended if VRAM allows |
Qwopus3.6-35B-A3B-v1-Q6_K.gguf | Q6_K | 6 | ~28 GB | Excellent quality, minimal loss |
Qwopus3.6-35B-A3B-v1-Q5_K_M.gguf | Q5_K_M | 5 | ~24 GB | Great quality, good balance |
Qwopus3.6-35B-A3B-v1-Q5_K_S.gguf | Q5_K_S | 5 | ~23 GB | Slightly smaller Q5 variant |
Qwopus3.6-35B-A3B-v1-Q4_K_M.gguf | Q4_K_M | 4 | ~21 GB | Recommended — best size/quality tradeoff |
Qwopus3.6-35B-A3B-v1-Q4_K_S.gguf | Q4_K_S | 4 | ~20 GB | Smaller Q4 variant |
Qwopus3.6-35B-A3B-v1-Q3_K_L.gguf | Q3_K_L | 3 | ~17 GB | Good quality for 3-bit |
Qwopus3.6-35B-A3B-v1-Q3_K_M.gguf | Q3_K_M | 3 | ~16 GB | Balanced 3-bit |
Qwopus3.6-35B-A3B-v1-Q3_K_S.gguf | Q3_K_S | 3 | ~15 GB | Smallest Q3 variant |
Qwopus3.6-35B-A3B-v1-IQ3_XXS.gguf | IQ3_XXS | 3 | ~14 GB | Importance-quantized, very small |
Qwopus3.6-35B-A3B-v1-IQ3_S.gguf | IQ3_S | 3 | ~15 GB | Importance-quantized, better quality than Q3_K_S |
Qwopus3.6-35B-A3B-v1-Q2_K.gguf | Q2_K | 2 | ~12 GB | Smallest — expect quality degradation |
mmproj.gguf | BF16 | 16 | — | Vision encoder — required for image input |
⚠️ Community release notice: This model has not undergone complete performance evaluation or safety testing. Released as an experimental community version for research and exploration.
ModuleNotFoundError: Could not import module 'Qwen3_5MoeForConditionalGeneration'1# Recommended — Q4_K_M
2huggingface-cli download barozp/Qwopus3.6-35B-A3B-v1-GGUF \
3 Qwopus3.6-35B-A3B-v1-Q4_K_M.gguf --local-dir ./
4
5# With vision support
6huggingface-cli download barozp/Qwopus3.6-35B-A3B-v1-GGUF \
7 Qwopus3.6-35B-A3B-v1-Q4_K_M.gguf mmproj.gguf --local-dir ./1# Text only
2llama-cli -m Qwopus3.6-35B-A3B-v1-Q4_K_M.gguf --jinja -ngl 99 -c 32768
3
4# With vision
5llama-cli -m Qwopus3.6-35B-A3B-v1-Q4_K_M.gguf --mmproj mmproj.gguf --jinja -ngl 99 -c 32768
6
7# Server
8llama-server -m Qwopus3.6-35B-A3B-v1-Q4_K_M.gguf --mmproj mmproj.gguf --jinja -ngl 99 -c 32768 --port 80801from llama_cpp import Llama
2
3llm = Llama.from_pretrained(
4 repo_id="barozp/Qwopus3.6-35B-A3B-v1-GGUF",
5 filename="Qwopus3.6-35B-A3B-v1-Q4_K_M.gguf",
6 n_gpu_layers=-1,
7 n_ctx=32768,
8)
9
10response = llm.create_chat_completion(
11 messages=[
12 {"role": "system", "content": "You are a helpful assistant."},
13 {"role": "user", "content": "Explain the traveling salesman problem."},
14 ]
15)
16print(response["choices"][0]["message"]["content"])| Quant | Size | Min VRAM |
|---|---|---|
| Q2_K | ~12 GB | 14 GB |
| IQ3_XXS | ~14 GB | 16 GB |
| Q3_K_M | ~16 GB | 18 GB |
| Q4_K_M | ~21 GB | 24 GB |
| Q5_K_M | ~24 GB | 27 GB |
| Q6_K | ~28 GB | 32 GB |
| Q8_0 | ~37 GB | 40 GB |
-ngl <layers> to fit within available VRAM.convert_hf_to_gguf.pyllama-quantizellama-quantize --imatrix with WikiText-2 calibration data