Views
No views yet
| Parameter | Value |
|---|---|
| Method | FP8 E4M3 block-wise |
| Block size | 128x128 |
| Scale dtype | BF16 |
| Scale naming | weight_scale_inv |
| Activation scheme | Dynamic |
| Original size | ~227 GB (BF16) |
| Quantized size | ~117 GB |
q/k/v/o_proj), GatedDeltaNet (in_proj_qkv, in_proj_z, out_proj), and MLP experts (gate/up/down_proj for all experts + shared expert).conv1d, in_proj_a, in_proj_b), vision tower.1python -m sglang.launch_server \
2 --model-path nivvis/Qwen3.5-122B-A10B-heretic-v2-FP8 \
3 --tp 2 \
4 --port 30000 --host 0.0.0.0 \
5 --mem-fraction-static 0.85 \
6 --context-length 32768 \
7 --attention-backend triton \
8 --reasoning-parser qwen3 \
9 --tool-call-parser qwen3_coder \
10 --mamba-scheduler-strategy extra_buffer \
11 --trust-remote-code1from vllm import LLM
2model = LLM("nivvis/Qwen3.5-122B-A10B-heretic-v2-FP8", tensor_parallel_size=2, trust_remote_code=True)--speculative-algo NEXTN (accept rate ~0.25). Restoring MTP by copying the head from the original Qwen model and fine-tuning against heretic hidden states is a potential future improvement.<think> reasoning. Use "chat_template_kwargs": {"enable_thinking": false} to disable.