首先,实例化一个预加载了ImageNet训练权重的MobileNet V2模型。 通过指定include_top = False参数,可以加载不在顶部包括分类层的网络,这对于特征提取是理想的。 # Create the base model from the pre-trained model MobileNet V2 IMG_SHAPE = IMG_SIZE + (3,) base_model = tf.keras.applications.MobileNetV2(...