This website works better with JavaScript.
Home
Issues
Pull Requests
Milestones
AI流水线
Repositories
Datasets
Forum
实训
竞赛
大数据
AI开发
Register
Sign In
Huawei_Technology
/
mindspore
Not watched
Unwatch
Watch all
Watch but not notify
1
Star
0
Fork
0
Code
Releases
13
Wiki
evaluate
Activity
Issues
0
Pull Requests
0
Datasets
Model
Cloudbrain
HPC
Browse Source
!13948
Fix error words for api comments.
From:
@zhang_yi2020
Reviewed-by: @gemini524,@liangchenghui,@wuxuejian Signed-off-by:
@liangchenghui
pull/13948/MERGE
mindspore-ci-bot
Gitee
5 years ago
parent
ad486e88ca
980769d404
commit
baed02fd5f
3 changed files
with
3 additions
and
3 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-1
mindspore/nn/optim/momentum.py
+1
-1
mindspore/nn/optim/sgd.py
+1
-1
model_zoo/official/cv/resnet/src/momentum.py
+ 1
- 1
mindspore/nn/optim/momentum.py
View File
@@ -52,7 +52,7 @@ class Momentum(Optimizer):
.. math::
p_{t} = p_{t-1} - (grad \ast lr + v_{t} \ast u \ast lr)
If use_nesterov is F
l
ase:
If use_nesterov is Fa
l
se:
.. math::
p_{t} = p_{t-1} - lr \ast v_{t}
+ 1
- 1
mindspore/nn/optim/sgd.py
View File
@@ -47,7 +47,7 @@ class SGD(Optimizer):
.. math::
p_{t+1} = p_{t} - lr \ast (gradient + u \ast v_{t+1})
If nesterov is F
l
ase:
If nesterov is Fa
l
se:
.. math::
p_{t+1} = p_{t} - lr \ast v_{t+1}
+ 1
- 1
model_zoo/official/cv/resnet/src/momentum.py
View File
@@ -44,7 +44,7 @@ class Momentum(Optimizer):
.. math::
p_{t} = p_{t-1} - (grad \ast lr + v_{t} \ast u \ast lr)
If use_nesterov is F
l
ase:
If use_nesterov is Fa
l
se:
.. math::
p_{t} = p_{t-1} - lr \ast v_{t}
Write
Preview
Loading…
Cancel
Save