Exception encountered when calling layer "lambda_9" (type Lambda). module 'tensorflow._api.v2.image' has no attribute 'resize_images' Call arguments received by layer "lambda_9" (type Lambda): • inputs=tf.Tensor(shape=(None, 1, 1, 256), dtype=float32) • mask=None • training=None
时间: 2024-03-05 19:48:51 浏览: 142
1_NOTE20230512190239.docx
这个错误通常是因为 TensorFlow 版本过高,在新版本的 TensorFlow 中 `resize_images` 已经被弃用了。你可以尝试使用 `tf.image.resize` 函数来替代 `resize_images`。
具体来说,如果你的代码中有类似以下的代码:
```python
from tensorflow._api.v2.image import resize_images
...
x = resize_images(x, size)
```
你可以将其替换为:
```python
import tensorflow as tf
...
x = tf.image.resize(x, size)
```
这样应该就可以解决该错误了。
阅读全文