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
5a68ac62
Commit
5a68ac62
authored
May 20, 2020
by
A. Unique TensorFlower
Browse files
Internal change
PiperOrigin-RevId: 312626203
parent
0ff8d37a
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
1 deletion
+3
-1
official/r1/mnist/mnist_eager.py
official/r1/mnist/mnist_eager.py
+3
-1
No files found.
official/r1/mnist/mnist_eager.py
View file @
5a68ac62
...
...
@@ -32,6 +32,8 @@ import time
# pylint: disable=g-bad-import-order
from
absl
import
app
as
absl_app
from
absl
import
flags
from
six.moves
import
range
from
six.moves
import
zip
import
tensorflow
as
tf
from
tensorflow.python
import
eager
as
tfe
# pylint: enable=g-bad-import-order
...
...
@@ -75,7 +77,7 @@ def train(model, optimizer, dataset, step_counter, log_interval=None):
compute_accuracy
(
logits
,
labels
))
grads
=
tape
.
gradient
(
loss_value
,
model
.
variables
)
optimizer
.
apply_gradients
(
zip
(
grads
,
model
.
variables
),
global_step
=
step_counter
)
list
(
zip
(
grads
,
model
.
variables
)
)
,
global_step
=
step_counter
)
if
log_interval
and
batch
%
log_interval
==
0
:
rate
=
log_interval
/
(
time
.
time
()
-
start
)
print
(
'Step #%d
\t
Loss: %.6f (%d steps/sec)'
%
(
batch
,
loss_value
,
rate
))
...
...
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