when apply the mtp parameters, and the accuracy of aime25 and gpqa-diamond will decline

#4
by youngmd - opened

using the parameters in A100*8 from the link https://huggingface.co/QuantTrio/GLM-5.2-Int4-Int8Mix/discussions/1, also find the result of some codes is not good when apply the mtp parameters.

aime25 decline from 0.93 to 0.67
gpqa-dimaond decline from 0.92 to 0.79

        --served-model-name GLM-5.2
        --dtype bfloat16
        --quantization compressed-tensors
        # --kv-cache-dtype fp8 # Triton Sparse MLA do not support fp8
        --tensor-parallel-size 8
        --enable-expert-parallel
        --max-model-len auto
        --gpu-memory-utilization 0.96
        --max-num-seqs 4
        --tool-call-parser glm47
        --reasoning-parser glm45
         --speculative-config '{"method":"mtp","num_speculative_tokens":1}' # do not enable Speculative Decoding, it will reduce the context length to 100k.
        --disable-uvicorn-access-log
        --safetensors-load-strategy prefetch

when apply the mtp, the avg output will increase from 39 tok/s to 60 tok/s, however the accuracy will decline.

Sign up or log in to comment