import numpy as np | |
import tensorflow as tf | |
import tensorflow_hub as hub | |
import tensorflow_datasets as tfds | |
import matplotlib.pyplot as plt | |
print("Version: ", tf.__version__) | |
print("Eager mode: ", tf.executing_eagerly()) | |
print("Hub version: ", hub.__version__) | |
print("GPU is", "available" if tf.config.list_physical_devices('GPU') else "NOT AVAILABLE") |