8 lines
183 B
Python
8 lines
183 B
Python
import os
|
|
import matplotlib.pyplot as plt
|
|
import tensorflow as tf
|
|
|
|
print("TensorFlow version: {}".format(tf.__version__))
|
|
print("Eager execution: {}".format(tf.executing_eagerly()))
|
|
|