tf.contrib.eager.run
Runs the program with an optional main function and argv list.
tf.contrib.eager.run( main=None, argv=None )
The program will run with eager execution enabled.
Example:
import tensorflow as tf # Import subject to future changes: from tensorflow.contrib.eager.python import tfe def main(_): u = tf.constant(6.0) v = tf.constant(7.0) print(u * v) if __name__ == "__main__": tfe.run()
Args | |
---|---|
main | the main function to run. |
argv | the arguments to pass to it. |
© 2020 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/versions/r1.15/api_docs/python/tf/contrib/eager/run