tensorflow2.0 resnet模型
时间: 2023-11-11 10:00:05 浏览: 159
tensorflow-2.0
可以使用TensorFlow2.0中的tf.keras.applications模块中的ResNet50模型,代码如下:
```python
import tensorflow as tf
from tensorflow.keras.applications.resnet50 import ResNet50
model = ResNet50(weights='imagenet')
```
其中,weights参数可以指定预训练权重的来源,可以是'imagenet'或者None。
阅读全文