14.12.2020 · As per the solution provided by SalahRahimi on GitHub regarding the same issue, the user was able to resolve the issue by doing the following changes.. The main issue here was the tensor flow version. mrcnn doesn't work with tensorflow.2.0, therefore I had to remove this version and re-install version 1.15. Note that it is not possible to install version 1.15 in …
31.03.2020 · I want to resize images from 28*28 to 32*32,used tf.image.resize_images(x_train, (32, 32)).It returns AttributeError: module 'tensorflow_core._api.v2.image' has no attribute 'resize_images'.The ver...
13.10.2020 · In case anyone encounters this issue and has tensorflow 2.0 but doesn't want to change the versions of tensorflow and python, there is another easier solution:
“AttributeError: module 'tensorflow._api.v2.train' has no attribute 'GradientDescentOptimizer'” Code Answer's ; python by vizard on Jun 06 2020 Comment. 2.