-
Notifications
You must be signed in to change notification settings - Fork 282
add the configs for qwen3-vl-8b-instruct model #542
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,41 @@ | ||
| { | ||
| "architectures": [ | ||
| "LlamaForCausalLMEagle3" | ||
| ], | ||
| "image_token_id": 151655, | ||
| "model_type": "llama", | ||
| "target_model_type": "qwen3_vl", | ||
| "attention_bias": false, | ||
| "attention_dropout": 0.0, | ||
| "bos_token_id": 151643, | ||
| "dtype": "bfloat16", | ||
| "eos_token_id": 151645, | ||
| "head_dim": 128, | ||
| "hidden_act": "silu", | ||
| "hidden_size": 4096, | ||
| "initializer_range": 0.02, | ||
| "intermediate_size": 12288, | ||
| "max_position_embeddings": 262144, | ||
| "num_attention_heads": 32, | ||
| "num_hidden_layers": 1, | ||
| "num_key_value_heads": 8, | ||
| "rms_norm_eps": 1e-06, | ||
| "rope_scaling": { | ||
| "mrope_interleaved": true, | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. The |
||
| "mrope_section": [ | ||
| 24, | ||
| 20, | ||
| 20 | ||
| ], | ||
| "rope_type": "mrope" | ||
| }, | ||
| "rope_theta": 5000000, | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. The |
||
| "use_cache": true, | ||
| "vocab_size": 151936, | ||
| "tie_word_embeddings": false, | ||
| "transformers_version": "4.57.0.dev0", | ||
| "video_token_id": 151656, | ||
| "vision_end_token_id": 151653, | ||
| "vision_start_token_id": 151652, | ||
| "draft_vocab_size": 32000 | ||
| } | ||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The
target_model_typeset to"qwen3_vl"is not currently supported in theAutoDistributedTargetModel._model_mappingwithinspecforge/modeling/auto.py. Without adding this mapping (e.g., mapping to aQwen3VLForCausalLMclass), the target model will fail to instantiate during training or inference.