Qwen3.8-Flash-Next GGUF

Experimental GGUFs for Qwen/Qwen3.8-Flash-Next that use split ngram out of the main weights and allow keeping it on the SSD.

These files require my metal-qwen4exp-split-ngram llama.cpp branch, which adds Qwen 3.8 Flash Next support, optimizations for Apple silicon, and MTP.

Note that this is just an experiment and these weights will likely be deleted later as llama.cpp probably won't support split ngram GGUF.

llama-server example

Run this from the downloaded repository directory. Set LLAMA_SERVER if the experimental binary is not on PATH.

#!/bin/sh
set -eu

model_dir=${MODEL_DIR:-.}
llama_server=${LLAMA_SERVER:-llama-server}

model=${MODEL:-"$model_dir/IQ4_NL/Qwen3.8-Flash-Next-IQ4_NL-00001-of-00003.gguf"}
ngram=${NGRAM_MODEL:-"$model_dir/Qwen3.8-Flash-Next-ngram-IQ4_NL.gguf"}
mtp=${MTP_MODEL:-"$model_dir/Qwen3.8-Flash-Next-MTP-Q8_0.gguf"}
mmproj=${MMPROJ_MODEL:-"$model_dir/Qwen3.8-Flash-Next-mmproj-Q8_0.gguf"}
ngram_load_mode=${NGRAM_LOAD_MODE:-resident}

exec "$llama_server" \
  --load-mode none --no-warmup \
  --model "$model" \
  --model-ngram "$ngram" --ngram-load-mode "$ngram_load_mode" \
  --model-draft "$mtp" --spec-type draft-mtp \
  --mmproj "$mmproj" \
  --ctx-size 262144 -np 1 \
  --temp 1.0 --top-p 0.95 --top-k 20 --min-p 0.0 \
  --repeat-penalty 1.0 --presence-penalty 0.0 \
  --port 8080

The example loads the complete PLE table into RAM. Set NGRAM_LOAD_MODE=read to keep it on SSD and read selected rows on demand.

Downloads last month
-
GGUF
Model size
51B params
Architecture
qwen4exp
Hardware compatibility
Log In to add your hardware

4-bit

5-bit

6-bit

8-bit

Inference Providers NEW
This model isn't deployed by any Inference Provider. 🙋 Ask for provider support

Model tree for tarruda/Qwen3.8-Flash-Next-GGUF

Quantized
(91)
this model