смотрю
x = base_model.output
x = GlobalAveragePooling2D()(x)
x = Dense(128, activation='relu')(x) #new FC layer, random init
x = Dense(32, activation='relu')(x) #new FC layer, random init
predictions = Dense(
nb_classes, activation='softmax')(x) #new softmax layer
model = Model(inputs=base_model.input, outputs=predictions)
Ну вот ут тебя получается тут Gap D R D Softmax Это правильная последовательность, но батчнорм не помешал бы
Обсуждают сегодня