How to use the mtp gguf file in llama -server

#7
by nps798 - opened

How to use the mtp gguf file in llama -server ? any comment on how to properly set up the mtp part
Upload Step3.7-flash-mtp-BF16.gguf
Step3.7-flash-mtp-Q8_0.gguf??

StepFun org

You can try the following command:

./llama-server \
    -m Step-3.7-Q4_K_S.gguf \
    --spec-type draft-mtp \
    --spec-draft-model Step3.7-flash-mtp-Q8_0.gguf \
    -c 35000 \
    -np 1 \
    -b 2048 \
    -ub 1024 \
    --temp 0 \
    --spec-draft-n-max 3 \
    --spec-draft-p-min 0.06 \
    --host 127.0.0.1 \
    --port 8080

Sign up or log in to comment