Skip to content

Commit

Permalink
version 1.6.1
Browse files Browse the repository at this point in the history
  • Loading branch information
noobOriented committed Oct 10, 2019
1 parent 241bc02 commit c1667a4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion talos/__version__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
__title__ = 'talos'
__version__ = '1.6.0'
__version__ = '1.6.1'
__description__ = 'Powerful Neural Network Builder'
__author__ = 'Jsaon'
2 changes: 1 addition & 1 deletion talos/optimizers/weight_decay.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ def __init__(
decay_rate: float,
use_locking: bool = False,
name: str = 'WeightDecay',
variable_filter: Union[Container[tf.Variable], Callable[[tf.Variable], bool]]=None,
variable_filter: Union[Container[tf.Variable], Callable[[tf.Variable], bool]] = None,
):
super().__init__(use_locking, name)
self.optimizer = optimizer
Expand Down

0 comments on commit c1667a4

Please sign in to comment.