pythontensorflowtensorflow2.0

The equivalent of tf.contrib.image.transform in tensorflow 2.0?


What is the equivalent of tf.contrib.image.transform in tensorflow 2.0? When I use the tf_upgrade_v2 conversion script, I get the error:

ERROR: Using member tf.contrib.image.transform in deprecated module tf.contrib. tf.contrib.image.transform cannot be converted automatically. tf.contrib will not be distributed with TensorFlow 2.0, please consider an alternative in non-contrib TensorFlow, a community-maintained repository such as tensorflow/addons, or fork the required code.

Solution

  • There is no equivalent. Some of the ops are implemented in the tensorflow addons though which is only available in Linux not Windows for now.

    Here is the link to tensorflow addones: https://github.com/tensorflow/addons

    Here is the link to one of their image ops which is similar to tf.contrib.image.transform: https://github.com/tensorflow/addons/blob/master/docs/tutorials/image_ops.ipynb

    Hope this helped.