Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
ModelZoo
ResNet50_tensorflow
Commits
af788dab
Commit
af788dab
authored
Mar 16, 2022
by
Hongkun Yu
Committed by
A. Unique TensorFlower
Mar 16, 2022
Browse files
Remove experimental optimizer usage on github.
PiperOrigin-RevId: 435102510
parent
0f9f7c8e
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
official/modeling/optimization/optimizer_factory.py
official/modeling/optimization/optimizer_factory.py
+2
-2
No files found.
official/modeling/optimization/optimizer_factory.py
View file @
af788dab
...
@@ -28,9 +28,9 @@ from official.nlp import optimization as nlp_optimization
...
@@ -28,9 +28,9 @@ from official.nlp import optimization as nlp_optimization
OPTIMIZERS_CLS
=
{
OPTIMIZERS_CLS
=
{
'sgd'
:
tf
.
keras
.
optimizers
.
SGD
,
'sgd'
:
tf
.
keras
.
optimizers
.
SGD
,
'sgd_experimental'
:
tf
.
keras
.
optimizers
.
experimental
.
SGD
,
# TODO(chenmoneygithub):
experimental.SGD
'adam'
:
tf
.
keras
.
optimizers
.
Adam
,
'adam'
:
tf
.
keras
.
optimizers
.
Adam
,
'adam_experimental'
:
tf
.
keras
.
optimizers
.
experimental
.
Adam
,
# TODO(chenmoneygithub):
experimental.Adam
'adamw'
:
nlp_optimization
.
AdamWeightDecay
,
'adamw'
:
nlp_optimization
.
AdamWeightDecay
,
'lamb'
:
tfa_optimizers
.
LAMB
,
'lamb'
:
tfa_optimizers
.
LAMB
,
'rmsprop'
:
tf
.
keras
.
optimizers
.
RMSprop
,
'rmsprop'
:
tf
.
keras
.
optimizers
.
RMSprop
,
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment