Views
No views yet
Qwen3_5MoeForCausalLM architecture.Qwen3_5MoeForConditionalGeneration with weights prefixed as model.language_model.*. This repo provides the language model backbone only, with:architectures: ["Qwen3_5MoeForCausalLM"]model_type: "qwen3_5_moe_text"model.layers.* (standard causal LM format, no language_model. prefix)1from vllm import LLM
2llm = LLM(model="codecho/Qwen3.5-35B-A3B-text-only", trust_remote_code=True, tensor_parallel_size=2)