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
28f6182f
Commit
28f6182f
authored
Mar 16, 2020
by
Hongkun Yu
Committed by
A. Unique TensorFlower
Mar 16, 2020
Browse files
Estimator should still use v1 optimizer.
PiperOrigin-RevId: 301308906
parent
69837027
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
official/recommendation/neumf_model.py
official/recommendation/neumf_model.py
+1
-1
No files found.
official/recommendation/neumf_model.py
View file @
28f6182f
...
...
@@ -109,7 +109,7 @@ def neumf_model_fn(features, labels, mode, params):
mlperf_helper
.
ncf_print
(
key
=
mlperf_helper
.
TAGS
.
OPT_HP_ADAM_EPSILON
,
value
=
params
[
"epsilon"
])
optimizer
=
tf
.
keras
.
o
ptimizer
s
.
Adam
(
optimizer
=
tf
.
compat
.
v1
.
train
.
AdamO
ptimizer
(
learning_rate
=
params
[
"learning_rate"
],
beta1
=
params
[
"beta1"
],
beta2
=
params
[
"beta2"
],
...
...
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