【发布时间】:2021-04-24 17:00:57
【问题描述】:
我正在研究一个图像分类问题,在 ImageNet 上使用了 90% 的预训练 Keras mobilenet v3,其余 10% 的层在应用 0.2 的 dropout 时可训练。我想知道这是如何在后端处理的。
MobileNetV3Small(input_shape=(IMG_HEIGHT, IMG_WIDTH, DEPTH),
alpha=1.0,
minimalistic=False,
include_top=False,
weights='imagenet',
input_tensor=None,
pooling='max',
dropout_rate=0.2)
【问题讨论】:
标签: python-3.x keras deep-learning imagenet