W3cubDocs

/TensorFlow Python

tf.contrib.summary.initialize

tf.contrib.summary.initialize(
    graph=None,
    session=None
)

Defined in tensorflow/contrib/summary/summary_ops.py.

Initializes summary writing for graph execution mode.

This helper method provides a higher-level alternative to using tf.contrib.summary.summary_writer_initializer_op and tf.contrib.summary.graph.

Most users will also want to call tf.train.create_global_step which can happen before or after this function is called.

Args:

  • graph: A tf.Graph or tf.GraphDef to output to the writer. This function will not write the default graph by default. When writing to an event log file, the associated step will be zero.
  • session: So this method can call tf.Session.run. This defaults to tf.get_default_session.

Raises:

© 2018 The TensorFlow Authors. All rights reserved.
Licensed under the Creative Commons Attribution License 3.0.
Code samples licensed under the Apache 2.0 License.
https://www.tensorflow.org/api_docs/python/tf/contrib/summary/initialize