View source on GitHub |
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. |