tensorflow上 module 'keras.api._v2.keras.applications' has no attribute 'ResNet18'
时间: 2023-10-17 09:58:13 浏览: 138
解决Keras 与 Tensorflow 版本之间的兼容性问题
这错误提示是因为在keras的API中没有定义名为ResNet18的模型。如果你想要在Keras中使用ResNet18模型,你可以使用其他的库,例如PyTorch,或者使用TensorFlow实现自己的ResNet18模型。你可以查看TensorFlow的文档和代码示例,来了解如何在TensorFlow中实现ResNet18模型。
阅读全文