tf.contrib.learn.monitors.ExportMonitor.step_begin()

tf.contrib.learn.monitors.ExportMonitor.step_begin(step) Overrides BaseMonitor.step_begin. When overriding this method, you must call the super implementation. Args: step: int, the current value of the global step. Returns: A list, the result of every_n_step_begin, if that was called this step, or an empty list otherwise. Raises: ValueError: if called more than once during a step.

tf.contrib.learn.monitors.ExportMonitor.signature_fn

tf.contrib.learn.monitors.ExportMonitor.signature_fn

tf.contrib.learn.monitors.ExportMonitor.set_estimator()

tf.contrib.learn.monitors.ExportMonitor.set_estimator(estimator) A setter called automatically by the target estimator. If the estimator is locked, this method does nothing. Args: estimator: the estimator that this monitor monitors. Raises: ValueError: if the estimator is None.

tf.contrib.learn.monitors.ExportMonitor.run_on_all_workers

tf.contrib.learn.monitors.ExportMonitor.run_on_all_workers

tf.contrib.learn.monitors.ExportMonitor.post_step()

tf.contrib.learn.monitors.ExportMonitor.post_step(step, session)

tf.contrib.learn.monitors.ExportMonitor.last_export_dir

tf.contrib.learn.monitors.ExportMonitor.last_export_dir Returns the directory containing the last completed export. Returns: The string path to the exported directory. NB: this functionality was added on 2016/09/25; clients that depend on the return value may need to handle the case where this function returns None because the estimator being fitted does not yet return a value during export.

tf.contrib.learn.monitors.ExportMonitor.export_dir

tf.contrib.learn.monitors.ExportMonitor.export_dir

tf.contrib.learn.monitors.ExportMonitor.exports_to_keep

tf.contrib.learn.monitors.ExportMonitor.exports_to_keep

tf.contrib.learn.monitors.ExportMonitor.every_n_step_end()

tf.contrib.learn.monitors.ExportMonitor.every_n_step_end(step, outputs)

tf.contrib.learn.monitors.ExportMonitor.every_n_step_begin()

tf.contrib.learn.monitors.ExportMonitor.every_n_step_begin(step) Callback before every n'th step begins. Args: step: int, the current value of the global step. Returns: A list of tensors that will be evaluated at this step.