-
Notifications
You must be signed in to change notification settings - Fork 11
Add Qwen3-vl Interactive Reference Code and Dataset #309
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
Open
Victor49152
wants to merge
8
commits into
mlcommons:main
Choose a base branch
from
Victor49152:feat/qwen3_vl_interactive_ref
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
8 commits
Select commit
Hold shift + click to select a range
4691744
Add 8k subset to predefined dataset list
Victor49152 e0fbc01
Update yaml configs
Victor49152 cfa4de2
Train split only for the subset
Victor49152 a9ad840
Update default configs
Victor49152 22541d6
precommit
Victor49152 2221e2f
fix import lines
Victor49152 0239d02
precommit
Victor49152 fc29713
Use default temperature None
Victor49152 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
49 changes: 49 additions & 0 deletions
49
examples/08_Qwen3-VL-235B-A22B_Example/interactive_qwen3_vl_235b_a22b_shopify_8k.yaml
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,49 @@ | ||
| # Interactive Benchmark - Qwen3-VL-235B-A22B on Shopify Product Catalogue 8k | ||
| # Use this for interactive testing and development with the smaller 8k dataset | ||
| name: "interactive-qwen3-vl-235b-a22b-shopify-8k-benchmark" | ||
| version: "1.0" | ||
| type: "online" | ||
| timeout: 1800 # 30 minutes for quick interactive runs | ||
|
|
||
| model_params: | ||
| name: "Qwen/Qwen3-VL-235B-A22B-Instruct" | ||
| top_p: 1 | ||
| max_new_tokens: 150 | ||
| streaming: "on" # Required for TTFT/TPOT measurement | ||
|
|
||
| datasets: | ||
| - name: shopify_product_catalogue_8k::q3vl | ||
| type: "performance" | ||
| - name: shopify_product_catalogue_8k::q3vl | ||
| type: "accuracy" | ||
| accuracy_config: | ||
| eval_method: "shopify_category_f1" | ||
| ground_truth: "ground_truth_category" | ||
| extractor: "identity_extractor" | ||
| num_repeats: 1 | ||
|
|
||
| settings: | ||
| runtime: | ||
| min_duration_ms: 600000 # 10 minute | ||
| scheduler_random_seed: 42 | ||
| dataloader_random_seed: 42 | ||
|
|
||
| load_pattern: | ||
| type: "poisson" | ||
| target_qps: 5 | ||
|
|
||
| client: | ||
| num_workers: 5 | ||
| transport: | ||
| type: zmq | ||
| recv_buffer_size: 16777216 | ||
| send_buffer_size: 16777216 | ||
| max_connections: 1000 | ||
| worker_initialization_timeout: 120 | ||
|
|
||
| endpoint_config: | ||
| endpoints: | ||
| - "http://localhost:8000" | ||
| api_key: null | ||
|
|
||
| report_dir: results/qwen3_vl_235b_a22b_shopify_8k_benchmark_interactive/ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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.
Officially, were we calling this scenario "online" or "server"? (I vaguely recall that it's called "server")
If so, I would suggest to rename this file as
server_qwen3_...for the sake of consistency.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.
I was thinking about this naming, too. Since in regular mlperf, it's called server. But I saw other endpoints examples calling it online. Let me change to server since we are submitting to regular MLPERF anyway