Views
No views yet
qwen3_5_moe: hybrid GatedDeltaNet linear-attention + full-attention over 40 layers, 256 routed experts + a shared expert with 8 active per token, plus a 27-block vision tower) built for task decomposition, planning, tool use / function calling, and scientific & professional reasoning.llm-compressor model_free_ptq (data-free, RTN) -> compressed-tensorsThis is a quantized derivative. Weights, behavior, and license follow the base model — see the original card for full details, benchmarks, and citation.
mlp.experts.*.{gate,up,down}_proj (all layers){gate,up,down}_projself_attn.{q,k,v,o}_projlinear_attn (mamba) layers, MoE router mlp.gate + shared_expert_gate, vision tower (model.visual.*, 27 blocks), token embeddings, lm_head, all norms.model_free_ptq, round-to-nearest); no calibration data. Weights are quantized by streaming the safetensors from disk.1from vllm import LLM, SamplingParams
2
3# This is a multimodal checkpoint: the vision tower is kept in BF16
4# (only the text / MoE weights are 4-bit). vLLM builds the full model.
5llm = LLM(
6 model="sahilchachra/Agents-A1-NVFP4A16",
7 trust_remote_code=True,
8)
9out = llm.chat(
10 [{"role": "user", "content": "Hello!"}],
11 SamplingParams(temperature=0.6, top_p=0.95, max_tokens=512),
12)
13print(out[0].outputs[0].text)1vllm serve sahilchachra/Agents-A1-NVFP4A16 \
2 --trust-remote-code \
3 --max-model-len 262144 --reasoning-parser qwen3