天天看點

成功解決AttributeError: module tensorflow.image has no attribute resize

解決方法

   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],

                                                   method='bilinear', align_corners=True))(b4)

替換為

#     b4 = Lambda(lambda x: tf.compat.v1.image.resize(x, size_before[1:3],  

#                                                     method='bilinear', align_corners=True))(b4)

   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],

                                                   align_corners=True))(b4)

哈哈,大功告成!

繼續閱讀