GauravGosain commited on
Commit
fb41f39
·
verified ·
1 Parent(s): 1af922d

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +6 -3
README.md CHANGED
@@ -25,12 +25,15 @@ The demo replays two real captured token streams applying the same edit to a Go
25
 
26
  ```sh
27
  llama-server \
28
- -m Qwopus3.5-9B-coder-Exp-Q3_K_M.gguf \
29
- -md Qwopus3.5-9B-Coder-DFlash-Q4_K_M.gguf \
 
30
  --spec-type draft-dflash --spec-draft-n-max 15 \
31
- -fa on --jinja -ctxcp 2 -fitt 256
32
  ```
33
 
 
 
34
  Qwen3.5 is a hybrid linear-attention architecture; keep `-ctxcp` low because each context checkpoint stores the full recurrent state (about 100 MB).
35
 
36
  ## Files
 
25
 
26
  ```sh
27
  llama-server \
28
+ -hf Jackrong/Qwopus3.5-9B-Coder-GGUF:Q3_K_M \
29
+ -hfd GauravGosain/Qwopus3.5-9B-Coder-DFlash-GGUF:Q4_K_M \
30
+ --no-mmproj \
31
  --spec-type draft-dflash --spec-draft-n-max 15 \
32
+ -fa on --jinja -c 4096 -ctk q8_0 -ctv q8_0 -ctxcp 2 -fitt 256
33
  ```
34
 
35
+ Pass `-hf` and `-hfd` together (local `-m` plus `-hfd` currently fails to resolve the draft) and keep `--no-mmproj` (the target repo ships a 921 MB vision projector).
36
+
37
  Qwen3.5 is a hybrid linear-attention architecture; keep `-ctxcp` low because each context checkpoint stores the full recurrent state (about 100 MB).
38
 
39
  ## Files