MobileNetworks
MobileNetworks copied to clipboard
Keras implementation of Mobile Networks
Results
2
MobileNetworks issues
Sort by
recently updated
recently updated
newest added
Hello, I want to train MobileNet from scratch. I have all the image data available but I am not sure about input and output layers of MobileNet. I am using...
x = GlobalAveragePooling2D()(x) x = Reshape(shape, name='reshape_1')(x) x = Dropout(dropout, name='dropout')(x) x = Conv2D(classes, (1, 1), padding='same', name='conv_preds')(x) x = Activation('softmax', name='act_softmax')(x) x = Reshape((classes,), name='reshape_2')(x) If I use the...