目录
解决问题
AttributeError: module 'tensorflow.image' has no attribute 'resize'
解决思路
属性错误:模块'tensorflow。image没有属性resize
版本不同造成的错误!
解决方法
将
1. b4 = Lambda(lambda x: tf.image.resize(x, size_before[1:3], # 20200529 本文件内此后代码均直接替代!b4 = Lambda(lambda x: tf.compat.v1.image.resize(x, size_before[1:3], 2. method='bilinear', align_corners=True))(b4)
替换为
1. # b4 = Lambda(lambda x: tf.compat.v1.image.resize(x, size_before[1:3], 2. # method='bilinear', align_corners=True))(b4) 3. b4 = Lambda(lambda x: tf.image.resize_bilinear(x, size_before[1:3], # 20200529 本文件内此后代码均直接替代!b4 = Lambda(lambda x: tf.compat.v1.image.resize(x, size_before[1:3], 4. align_corners=True))(b4)
哈哈,大功告成!