MTP drafter missing?

#2
by kamikode - opened

The MTP drafter seems to have been dropped from the checkpoint. Is this on purpose?

Yep couldnt deploy the model with MTP. Also the latest layer - 45th glm_next - is missing

Yes, actually after testing, the model seems to be wholly broken. It's just outputting "!!!!..." indefinitely

Agreed. No MTP and will not serve. I think this might just be an email harvesting trap.

Per Opus:
glm-5.3-flash-uncensored-nvfp4 — cannot work on this host

Three attempts, all dead ends:

  • jovian image, as configured → ValidationError: checkpoint is compressed-tensors, launcher hardcodes --quantization modelopt_mixed.
    • --quantization compressed-tensors → starts, serves 200 OK, but emits pure ! and logprobs return nan. Reproduced on two MoE kernels (B12X and FLASHINFER_CUTLASS). Root cause is the checkpoint: OrcaSAQ gave
      gate_proj and up_proj separate FP32 global scales (21504 vs 26496), and vLLM's fused w13 path keeps only gate's.
  • the model card's own image (pulled it) → pe_dim must be 64 for fp8_ds_mla. platforms/cuda.py gives SM120 only [TRITON_MLA, FLASHINFER_MLA_SPARSE_SM120], the latter mandates fp8_ds_mla, and GLM is NoPE
    (qk_rope_head_dim=0). The SM90 branch has an explicit case for this shape; SM120 has none. The card's verified platform is 8×H100.

Sign up or log in to comment