FreedomAISVR commited on
Commit
95ba642
·
verified ·
1 Parent(s): 6598e33

Update README with vision encoder info

Browse files
Files changed (1) hide show
  1. README.md +25 -16
README.md CHANGED
@@ -12,8 +12,10 @@ tags:
12
  - fp4
13
  - mixture-of-experts
14
  - moe
 
 
15
  base_model: Qwen/Qwen3.6-35B-A3B
16
- pipeline_tag: text-generation
17
  inference: false
18
  quantized_by: FreedomAISVR
19
  ---
@@ -22,13 +24,16 @@ quantized_by: FreedomAISVR
22
 
23
  NVFP4 GGUF quantization of [Qwen/Qwen3.6-35B-A3B](https://huggingface.co/Qwen/Qwen3.6-35B-A3B).
24
 
 
 
25
  ## About NVFP4
26
 
27
  NVFP4 is a Blackwell-native FP4 format (EFM4: 1 sign, 1 mantissa, 2 exponent bits). Applied uniformly to all tensors.
28
 
29
  - **Total params:** 35.95B (3B active, 256 experts, 8/token)
30
  - **Quantization:** NVFP4 (~4.55 BPW)
31
- - **File size:** 18.36 GiB
 
32
  - **Context:** 262,144 tokens natively
33
 
34
  NVFP4 requires a Blackwell (RTX 50-series or B-series) GPU for hardware acceleration.
@@ -37,42 +42,46 @@ NVFP4 requires a Blackwell (RTX 50-series or B-series) GPU for hardware accelera
37
 
38
  | Filename | Type | Size | Description |
39
  |---|---|---|---|
40
- | qwen3.6-35b-a3b-nvfp4.gguf | NVFP4 | 18.36 GiB | Main model weights |
 
41
 
42
  ## Usage
43
 
44
- ### llama.cpp CLI
45
 
46
- `ash
47
  llama-cli -hf FreedomAISVR/Qwen3.6-35B-A3B-NVFP4-GGUF -cnv -p "You are a helpful assistant"
48
- `
49
 
50
- ### llama-server
51
 
52
- `ash
53
- llama-server -hf FreedomAISVR/Qwen3.6-35B-A3B-NVFP4-GGUF --ctx-size 0 --jinja
54
- `
55
 
56
  ### llama-cpp-python
57
 
58
- `python
59
  from llama_cpp import Llama
60
 
61
  llm = Llama.from_pretrained(
62
  repo_id="FreedomAISVR/Qwen3.6-35B-A3B-NVFP4-GGUF",
63
  filename="qwen3.6-35b-a3b-nvfp4.gguf",
64
  )
65
- `
66
 
67
  ## Quantization Pipeline
68
 
69
- `ash
70
  # 1. Convert HF model to intermediate GGUF
71
  python convert_hf_to_gguf.py ./models/qwen3.6-35b/ --outfile qwen3.6-35b-a3b-f16.gguf --outtype bf16
72
 
73
- # 2. Quantize to NVFP4
 
 
 
74
  llama-quantize --allow-requantize qwen3.6-35b-a3b-f16.gguf qwen3.6-35b-a3b-nvfp4.gguf NVFP4
75
- `
76
 
77
  ## Hardware
78
 
@@ -82,4 +91,4 @@ llama-quantize --allow-requantize qwen3.6-35b-a3b-f16.gguf qwen3.6-35b-a3b-nvfp4
82
 
83
  ## License
84
 
85
- Apache-2.0 (same as [Qwen/Qwen3.6-35B-A3B](https://huggingface.co/Qwen/Qwen3.6-35B-A3B))
 
12
  - fp4
13
  - mixture-of-experts
14
  - moe
15
+ - multimodal
16
+ - vision
17
  base_model: Qwen/Qwen3.6-35B-A3B
18
+ pipeline_tag: image-text-to-text
19
  inference: false
20
  quantized_by: FreedomAISVR
21
  ---
 
24
 
25
  NVFP4 GGUF quantization of [Qwen/Qwen3.6-35B-A3B](https://huggingface.co/Qwen/Qwen3.6-35B-A3B).
26
 
27
+ Multimodal model: vision encoder (903 MB) + text MoE LLM (18.36 GB).
28
+
29
  ## About NVFP4
30
 
31
  NVFP4 is a Blackwell-native FP4 format (EFM4: 1 sign, 1 mantissa, 2 exponent bits). Applied uniformly to all tensors.
32
 
33
  - **Total params:** 35.95B (3B active, 256 experts, 8/token)
34
  - **Quantization:** NVFP4 (~4.55 BPW)
35
+ - **File size:** 18.36 GiB (text) + 903 MB (vision)
36
+ - **Vision encoder:** 27-layer ViT, hidden 1152, 3->1152x2 patch embed (temporal)
37
  - **Context:** 262,144 tokens natively
38
 
39
  NVFP4 requires a Blackwell (RTX 50-series or B-series) GPU for hardware acceleration.
 
42
 
43
  | Filename | Type | Size | Description |
44
  |---|---|---|---|
45
+ | `qwen3.6-35b-a3b-nvfp4.gguf` | NVFP4 | 18.36 GiB | Text MoE LLM weights |
46
+ | `mmproj-qwen36-35b-src-BF16.gguf` | MMProj | 903 MB | Vision encoder weights |
47
 
48
  ## Usage
49
 
50
+ ### llama.cpp CLI (text only)
51
 
52
+ ```bash
53
  llama-cli -hf FreedomAISVR/Qwen3.6-35B-A3B-NVFP4-GGUF -cnv -p "You are a helpful assistant"
54
+ ```
55
 
56
+ ### llama-server (multimodal)
57
 
58
+ ```bash
59
+ llama-server -hf FreedomAISVR/Qwen3.6-35B-A3B-NVFP4-GGUF --mmproj mmproj-qwen36-35b-src-BF16.gguf --ctx-size 0 --jinja
60
+ ```
61
 
62
  ### llama-cpp-python
63
 
64
+ ```python
65
  from llama_cpp import Llama
66
 
67
  llm = Llama.from_pretrained(
68
  repo_id="FreedomAISVR/Qwen3.6-35B-A3B-NVFP4-GGUF",
69
  filename="qwen3.6-35b-a3b-nvfp4.gguf",
70
  )
71
+ ```
72
 
73
  ## Quantization Pipeline
74
 
75
+ ```bash
76
  # 1. Convert HF model to intermediate GGUF
77
  python convert_hf_to_gguf.py ./models/qwen3.6-35b/ --outfile qwen3.6-35b-a3b-f16.gguf --outtype bf16
78
 
79
+ # 2. Export vision encoder
80
+ python convert_hf_to_gguf.py ./models/qwen3.6-35b/ --mmproj --outtype bf16
81
+
82
+ # 3. Quantize to NVFP4
83
  llama-quantize --allow-requantize qwen3.6-35b-a3b-f16.gguf qwen3.6-35b-a3b-nvfp4.gguf NVFP4
84
+ ```
85
 
86
  ## Hardware
87
 
 
91
 
92
  ## License
93
 
94
+ Apache-2.0 (same as [Qwen/Qwen3.6-35B-A3B](https://huggingface.co/Qwen/Qwen3.6-35B-A3B))