Skip to content

Commit

Permalink
Feat (core): set default MSE iters to 20
Browse files Browse the repository at this point in the history
  • Loading branch information
volcacius committed Sep 28, 2023
1 parent 2f1709d commit 4b9970a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/brevitas/core/stats/stats_op.py
Original file line number Diff line number Diff line change
Expand Up @@ -436,8 +436,8 @@ def __init__(
mse_init_op,
inner_stats_input_view_shape_impl: torch.nn.Module,
stats_reduce_dim: Optional[int] = None,
mse_search_method='fibonacci',
mse_iters=10):
mse_search_method: str = 'fibonacci',
mse_iters: int = 20):
super(MSE, self).__init__()
self.mse_init_op = mse_init_op
self.input_view_shape_impl = inner_stats_input_view_shape_impl
Expand Down

0 comments on commit 4b9970a

Please sign in to comment.