AttributeError: module 'tensorflow._api.v2.image' has no attribute 'flip_front_back'
时间: 2024-05-17 09:10:45 浏览: 71
pycharm用import报错:AttributeError: module tensorflow(or other) has no attribut (import搜索路径顺序问题)
这个错误提示表明在使用Tensorflow图像处理模块中的flip_front_back函数时出现了问题,因为该函数在当前版本的Tensorflow中已经被删除了,所以无法调用。
您可以考虑使用其他替代函数来代替flip_front_back函数,比如tf.image.flip_left_right()或tf.image.transpose()等。
另外,您也可以升级您的Tensorflow版本,因为在较新的版本中,可能会有新的替代函数或者该函数被重新添加进去。
阅读全文