Skip to content
Repo

Qwen3-30B-A3B

from modal_training_gym.common.models.qwen3_30b import Qwen3_30B

Alibaba Qwen3-30B-A3B MoE model with 30B total and 3B active parameters.

Attributes

model_name str

Hugging Face repository ID. Default: "Qwen/Qwen3-30B-A3B"

architecture ModelArchitecture | None

Megatron architecture parameters for this model. Default: ModelArchitecture(...)

response_parser Callable[[str], ParsedResponse] | None

Parser for generated text. Default: parse_qwen3_response

download() -> None

Download or materialize weights into the model volume.

parse_response(text: str) -> ParsedResponse

Parse model text with response_parser.

Without a configured parser, the model text becomes ParsedResponse.content.

Returns

Parsed model output.