forked from mindspore-Ecosystem/mindspore
correct the errors on webpage0817
This commit is contained in:
parent
ba031c7277
commit
326173f50a
|
@ -2,4 +2,4 @@
|
|||
|
||||
参数分组情况下,可以分组调整权重衰减策略。
|
||||
|
||||
分组时,每组网络参数均可配置 `weight_decay` 。若未配置,则该组网络参数使用优化器中配置的 `weight_decay` 。
|
||||
分组时,每组网络参数均可配置 `weight_decay` ,若未配置,则该组网络参数使用优化器中配置的 `weight_decay` 。
|
||||
|
|
|
@ -369,7 +369,7 @@ class Adam(Optimizer):
|
|||
|
||||
If parameters are not grouped, the `weight_decay` in optimizer will be applied on the network parameters without
|
||||
'beta' or 'gamma' in their names. Users can group parameters to change the strategy of decaying weight. When
|
||||
parameters are grouped, each group can set `weight_decay`, if not, the `weight_decay` in optimizer will be
|
||||
parameters are grouped, each group can set `weight_decay`. If not, the `weight_decay` in optimizer will be
|
||||
applied.
|
||||
|
||||
Args:
|
||||
|
|
|
@ -138,7 +138,7 @@ class Lamb(Optimizer):
|
|||
|
||||
If parameters are not grouped, the `weight_decay` in optimizer will be applied on the network parameters without
|
||||
'beta' or 'gamma' in their names. Users can group parameters to change the strategy of decaying weight. When
|
||||
parameters are grouped, each group can set `weight_decay`, if not, the `weight_decay` in optimizer will be
|
||||
parameters are grouped, each group can set `weight_decay`. If not, the `weight_decay` in optimizer will be
|
||||
applied.
|
||||
|
||||
Args:
|
||||
|
|
|
@ -80,7 +80,7 @@ class ProximalAdagrad(Optimizer):
|
|||
|
||||
If parameters are not grouped, the `weight_decay` in optimizer will be applied on the network parameters without
|
||||
'beta' or 'gamma' in their names. Users can group parameters to change the strategy of decaying weight. When
|
||||
parameters are grouped, each group can set `weight_decay`, if not, the `weight_decay` in optimizer will be
|
||||
parameters are grouped, each group can set `weight_decay`. If not, the `weight_decay` in optimizer will be
|
||||
applied.
|
||||
|
||||
Args:
|
||||
|
|
Loading…
Reference in New Issue