C3 W2 "Looking into the details" lecture, tf.__version__

The beginning of the lecture shows how to get the current version of tensorflow being used. Were we supposed to verify that the version is greater than “x.y” or something? If so, what is that version? Was this omitted from the lecture?

You don’t have to verify anything for the assignment as long as the environment is set by the instructor. In general, it’s good to check with your client or use 2.7 and above for the time being.

Tensorflow 2.10 isn’t out yet. So, a check like this is sufficient for now:

import tensorflow as tf
assert(tf.__version__ >= '2.7')