-
Notifications
You must be signed in to change notification settings - Fork 23
chore: add qwen perf yaml #369
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,40 @@ | ||||||||||||||
| name: "qwen-agentic-benchmark" | ||||||||||||||
| version: "1.0" | ||||||||||||||
| type: "online" | ||||||||||||||
|
|
||||||||||||||
| model_params: | ||||||||||||||
| name: "Qwen/Qwen3.6-35B-A3B" | ||||||||||||||
| temperature: 1.0 | ||||||||||||||
| top_k: 20 | ||||||||||||||
| top_p: 0.95 | ||||||||||||||
| repetition_penalty: 1.0 | ||||||||||||||
| presence_penalty: 1.5 | ||||||||||||||
|
Collaborator
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. [low] |
||||||||||||||
| max_new_tokens: 8192 | ||||||||||||||
| chat_template_kwargs: | ||||||||||||||
|
Collaborator
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. [medium] No Qwen thinking-enable flag (Grok + Claude). This sets |
||||||||||||||
| preserve_thinking: true | ||||||||||||||
|
|
||||||||||||||
| datasets: | ||||||||||||||
| - name: agentic_combined | ||||||||||||||
| type: performance | ||||||||||||||
| path: /path/to/agentic_combined.jsonl | ||||||||||||||
| accuracy_config: | ||||||||||||||
| eval_method: agentic_inference_inline # required benchmark default. | ||||||||||||||
| agentic_inference: | ||||||||||||||
| enable_salt: true # do not change. | ||||||||||||||
| inject_tool_delay: true # do not change. | ||||||||||||||
|
Comment on lines
+22
to
+24
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. To ensure compliance with the benchmark invariants and to make the configuration complete, please explicitly specify agentic_inference:
enable_salt: true # do not change.
inject_tool_delay: true # do not change.
num_trajectories_to_issue: 990 # Should be integer multiple of dataset trajectory count.
stop_issuing_on_first_user_complete: false # required benchmark default.
Collaborator
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. [medium]
Suggested change
|
||||||||||||||
|
|
||||||||||||||
| settings: | ||||||||||||||
| runtime: | ||||||||||||||
| min_duration_ms: 0 | ||||||||||||||
| max_duration_ms: 36000000 | ||||||||||||||
|
Collaborator
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. [low] |
||||||||||||||
|
|
||||||||||||||
| load_pattern: | ||||||||||||||
| type: agentic_inference | ||||||||||||||
| target_concurrency: 8 # Submission-specific concurrency. | ||||||||||||||
|
Comment on lines
+31
to
+33
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 load_pattern:
type: agentic_inference
target_concurrency: 8 # Submission-specific concurrency.
client:
warmup_connections: 0
max_idle_time: 0.5
Collaborator
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. [medium] Consider adding a
Suggested change
|
||||||||||||||
|
|
||||||||||||||
| endpoint_config: | ||||||||||||||
| endpoints: | ||||||||||||||
| - "http://localhost:30000" | ||||||||||||||
| api_type: openai | ||||||||||||||
|
|
||||||||||||||
| report_dir: logs/qwen_agentic | ||||||||||||||
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.
[low] Confirm the served model id.
model_params.namebecomes the OpenAI requestmodelstring and must match the endpoint's/v1/modelsid (the sibling uses the served name/model). Also double-checkQwen/Qwen3.6-35B-A3Bitself — unusual vs the widely-knownQwen3-30B-A3B; confirm it's not a typo.