Skip to content
This repository has been archived by the owner on Dec 1, 2021. It is now read-only.

Commit

Permalink
Change a default bit of profiling (#1125)
Browse files Browse the repository at this point in the history
## What this patch does to fix the issue.
Blueoil profile_model.py outputs `weight_size` and `quantized_weight_size`, but default quantized bit is `32`. (same as no quantized).
I think this is meanless, it is better to change the default to 1.
  • Loading branch information
hadusam committed Jul 20, 2020
1 parent 852133f commit 4b8b812
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion blueoil/cmd/profile_model.py
Original file line number Diff line number Diff line change
Expand Up @@ -281,7 +281,7 @@ def run(experiment_id, restore_path, config_file, bit, unquant_layers):
@click.option(
"-b",
"--bit",
default=32,
default=1,
help="quantized bit",
)
@click.option(
Expand Down

0 comments on commit 4b8b812

Please sign in to comment.