Radamanthys11 commited on
Commit
59dc15c
·
verified ·
1 Parent(s): df11a38

Add README with usage instructions

Browse files
Files changed (1) hide show
  1. README.md +25 -10
README.md CHANGED
@@ -1,18 +1,33 @@
1
  ---
2
  base_model: google/gemma-4-31B-it-assistant
 
 
3
  library_name: gguf
 
4
  tags:
5
- - gguf
6
- - quantized
7
- - mtp
8
- - gemma-4
9
- license: apache-2.0
10
- language:
11
- - en
12
  ---
13
 
14
- # Gemma-4-31B-it-assistant
 
 
 
 
 
 
 
 
15
 
16
- GGUF from gemma-4-31B-it-assistant to use as MTP.
 
 
 
 
 
 
 
17
 
18
- This model is only compatible with ik_llama.cpp
 
1
  ---
2
  base_model: google/gemma-4-31B-it-assistant
3
+ language:
4
+ - en
5
  library_name: gguf
6
+ license: gemma
7
  tags:
8
+ - gguf
9
+ - quantized
10
+ - mtp
11
+ - gemma-4
 
 
 
12
  ---
13
 
14
+ # Gemma 4 31B IT Assistant — MTP GGUF
15
+
16
+ This repository contains GGUF quantizations of [google/gemma-4-31B-it-assistant](https://huggingface.co/google/gemma-4-31B-it-assistant) to use as MTP.
17
+
18
+ Do not use with llama.cpp as they do not offer support. This model is only compatible with [ik_llama.cpp](https://github.com/ikawrakow/ik_llama.cpp).
19
+
20
+ ## Usage
21
+
22
+ The assistant is a **draft model** that requires the main Gemma 4 31B target GGUF alongside it.
23
 
24
+ ```bash
25
+ ./build/bin/llama-server \
26
+ --model google_gemma-4-31B-it-Q8_0.gguf \
27
+ --ctx-size 32768 -ctk q8_0 -ctv q8_0 --n-gpu-layers 99 \
28
+ -b 1024 -ub 1024 --jinja \
29
+ --spec-type mtp -md gemma-4-31B-it-assistant-Q8_0.gguf -ngld 99 \
30
+ --draft-max 3 --draft-p-min 0.0
31
+ ```
32
 
33
+ > **Note:** `--draft-max 3` is a good starting point.