Skip to content

Commit

Permalink
fix typo in table
Browse files Browse the repository at this point in the history
  • Loading branch information
diegofiori committed Jan 12, 2023
1 parent 8c5eb5b commit 0ab8955
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion apps/accelerate/speedster/speedster/root_op.py
Original file line number Diff line number Diff line change
Expand Up @@ -364,7 +364,7 @@ def execute(
"model size",
f"{original_model_size / 1e6:.2f} MB",
f"{optimized_models[0][0].get_size() / 1e6:.2f} MB",
f"{int((optimized_models[0][0].get_size()-original_model_size) / original_model_size)}%", # noqa: E501
f"{min(int((optimized_models[0][0].get_size()-original_model_size) / original_model_size * 100), 0)}%", # noqa: E501
],
["metric drop", "", opt_metric_drop, ""],
[
Expand Down

0 comments on commit 0ab8955

Please sign in to comment.