Views
No views yet
| Filename | Type | Size | Description |
|---|---|---|---|
qwen3.6-35b-a3b-nvfp4.gguf | NVFP4 | 18.36 GiB | Text MoE LLM weights |
mmproj-qwen36-35b-src-BF16.gguf | MMProj | 903 MB | Vision encoder weights |
llama-cli -hf FreedomAISVR/Qwen3.6-35B-A3B-NVFP4-GGUF -cnv -p "You are a helpful assistant"llama-server -hf FreedomAISVR/Qwen3.6-35B-A3B-NVFP4-GGUF --mmproj mmproj-qwen36-35b-src-BF16.gguf --ctx-size 0 --jinja1from llama_cpp import Llama
2
3llm = Llama.from_pretrained(
4 repo_id="FreedomAISVR/Qwen3.6-35B-A3B-NVFP4-GGUF",
5 filename="qwen3.6-35b-a3b-nvfp4.gguf",
6)1# 1. Convert HF model to intermediate GGUF
2python convert_hf_to_gguf.py ./models/qwen3.6-35b/ --outfile qwen3.6-35b-a3b-f16.gguf --outtype bf16
3
4# 2. Export vision encoder
5python convert_hf_to_gguf.py ./models/qwen3.6-35b/ --mmproj --outtype bf16
6
7# 3. Quantize to NVFP4
8llama-quantize --allow-requantize qwen3.6-35b-a3b-f16.gguf qwen3.6-35b-a3b-nvfp4.gguf NVFP4| GPU | VRAM | Notes |
|---|---|---|
| NVIDIA RTX 5060 Ti | 16 GB | Quantization performed on this GPU |