-
Notifications
You must be signed in to change notification settings - Fork 48
fix recall when using residual #874
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
Conversation
Signed-off-by: jinjiabao.jjb <jinjiabao.jjb@antgroup.com>
Codecov ReportAttention: Patch coverage is ❌ Your patch status has failed because the patch coverage (43.75%) is below the target coverage (80.00%). You can increase the patch coverage or adjust the target coverage. @@ Coverage Diff @@
## main #874 +/- ##
==========================================
- Coverage 90.18% 89.90% -0.28%
==========================================
Files 224 224
Lines 15004 15039 +35
==========================================
- Hits 13531 13521 -10
- Misses 1473 1518 +45
Flags with carried forward coverage won't be shown. Click here to find out more.
Continue to review full report in Codecov by Sentry.
🚀 New features to boost your workflow:
|
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.
LGTM
|
||
for (auto metric_type : resource->metric_types) { | ||
for (auto dim : resource->dims) { | ||
for (auto train_type : resource->train_types) { | ||
for (auto& [base_quantization_str, recall] : tmp_test_cases) { | ||
for (auto& [base_quantization_str, recall] : resource->test_cases) { | ||
if (base_quantization_str == "sq8_uniform,fp32") { |
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.
add comment about why need to skip this case
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.
done
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.
lgtm
Signed-off-by: jinjiabao.jjb <jinjiabao.jjb@antgroup.com> Signed-off-by: jingyue.zjl <jingyue.zjl@oceanbase.com>
fixed: #845