Skip to content
Repo

Qwen3-VL-8B

from modal_training_gym.common.models.qwen3_vl_8b import Qwen3_VL_8B

Alibaba Qwen3-VL-8B-Instruct model.

Attributes

model_name str

Hugging Face repository ID. Default: "Qwen/Qwen3-VL-8B-Instruct"

architecture ModelArchitecture | None

Megatron architecture parameters for the text backbone. Default: ModelArchitecture(...)

response_parser Callable[[str], ParsedResponse] | None

Parser for generated text. Default: parse_qwen3_response

requires_bshd bool

Requires padded BSHD batches during training. Default: True

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.