-
Notifications
You must be signed in to change notification settings - Fork 390
[6034518] Fix Conv->Relu->Concat Q/DQ insertion gap #1398
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 |
|---|---|---|
|
|
@@ -842,6 +842,7 @@ class Config: | |
| minimum_schemes_to_mutate: int = 10 | ||
| maximum_mutations: int = 3 | ||
| maximum_generation_attempts: int = 100 | ||
| concat_group_min_samples: int = 5 # Minimum Concat-group-aware mutations per region | ||
|
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. Why was
Contributor
Author
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 purpose of this change is to mutate insertion spec to insert Q/DQ for all concat input. But this probability should not be too high (5%) to avoid impaction on normal mutation prcoess. But when sample per region is too small (eg: 30), the estimated sample count to trigger "all concat input QDQ" would be ~1, this is too small, sometimes cannot be triggered. so
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. So is the 5 in |
||
|
|
||
| # Pattern Cache Settings | ||
| pattern_cache_minimum_distance: int = 4 | ||
|
|
||
Uh oh!
There was an error while loading. Please reload this page.