-
Notifications
You must be signed in to change notification settings - Fork 2.5k
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
[tools][sit] Add U8 clamp to NPU SIT #29592
[tools][sit] Add U8 clamp to NPU SIT #29592
Conversation
70246a2
to
1906ff9
Compare
Hi, could you please take a look? @ArtemySkrebkov @DariaMityagina @Maxim-Doronin |
@@ -97,6 +97,7 @@ DEFINE_string(data_shape, "", | |||
"In case of one input size: \"[1,3,224,224]\""); | |||
DEFINE_string(skip_output_layers, "" , "Skip output layers from the network. Currently only applicable for" | |||
"RRMSE and NRMSE mode. Accept ';' separated list of output layers"); | |||
DEFINE_bool(clamp_u8, false, "Apply clamping when convert fp to u8 to make models like edsr work correctly."); |
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.
We shouldn't mention specific networks.
DEFINE_bool(clamp_u8, false, "Apply clamping when convert fp to u8 to make models like edsr work correctly."); | |
DEFINE_bool(clamp_u8, false, "Apply clamping when converting FP to U8"); |
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.
Fixed in 384f801
@@ -259,6 +260,7 @@ void parseCommandLine(int argc, char* argv[]) { | |||
std::cout << " Mean_values [channel1,channel2,channel3] " << FLAGS_mean_values << std::endl; | |||
std::cout << " Scale_values [channel1,channel2,channel3] " << FLAGS_scale_values << std::endl; | |||
std::cout << " Skip checking output layers: " << FLAGS_skip_output_layers << std::endl; | |||
std::cout << " Clamp u8 output: " << FLAGS_clamp_u8 << std::endl; |
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.
We should have a more explicit name for the option, if it's only for output:
std::cout << " Clamp u8 output: " << FLAGS_clamp_u8 << std::endl; | |
std::cout << " Clamp U8 outputs: " << FLAGS_clamp_u8_outputs << std::endl; |
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.
Fixed in 384f801
1906ff9
to
384f801
Compare
build_jenkins |
Details:
Tickets: