Afnaan04's picture
Deploy project using Hugging Face API
3aa726a verified
Raw
History Blame Contribute Delete
245 Bytes
import sys
try:
import tensorflow as tf
print(f"TensorFlow {tf.__version__} loaded successfully!")
except ImportError as e:
print(f"Failed to load TensorFlow: {e}")
except Exception as e:
print(f"An error occurred: {e}")