Project 1: TensorFlow Version Check
ML Engineer
Builds on these lessons
Current Task
Objective
TensorFlow is Google's library for building and training deep learning models, from a single dense layer to full neural networks.
Task: import tensorflow and print its version.
index.py
import tensorflow as tf
print(tf.__version__)
* Hint: Correct characters turn green, incorrect ones turn red.
Live Preview
🖼️
Verify your code to see the preview
← Previous
Next →