tf.contrib.learn.monitors.EveryN.__init__(every_n_steps=100, first_n_steps=1)
Initializes an EveryN
monitor.
Args:
-
every_n_steps
:int
, the number of steps to allow between callbacks. -
first_n_steps
:int
, specifying the number of initial steps during which the callbacks will always be executed, regardless of the value ofevery_n_steps
. Note that this value is relative to the global step
Please login to continue.