Unverified Commit 7f2ea994 authored by Neal Wu's avatar Neal Wu Committed by GitHub
Browse files

Remove extraneous print statement from nasnet_utils.py

parent 1f3bbc02
...@@ -413,7 +413,6 @@ class NasNetABaseCell(object): ...@@ -413,7 +413,6 @@ class NasNetABaseCell(object):
# Decrease the keep probability over time # Decrease the keep probability over time
current_step = tf.cast(tf.train.get_or_create_global_step(), current_step = tf.cast(tf.train.get_or_create_global_step(),
tf.float32) tf.float32)
print("HERE")
drop_path_burn_in_steps = self._total_training_steps drop_path_burn_in_steps = self._total_training_steps
current_ratio = ( current_ratio = (
current_step / drop_path_burn_in_steps) current_step / drop_path_burn_in_steps)
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment