MobileNetV2 icon indicating copy to clipboard operation
MobileNetV2 copied to clipboard

Imagenet pretrained weights

Open baoruxiao opened this issue 6 years ago • 5 comments

Hi Xiaochus,

Would you mind sharing your imagenet pretrained weights?

baoruxiao avatar Apr 04 '18 19:04 baoruxiao

Hi yes would you mind sharing them? I could really use them right now. Thanks!

JonathanCMitchell avatar Apr 06 '18 17:04 JonathanCMitchell

Same here! Would be very useful!

gustavz avatar Apr 17 '18 08:04 gustavz

Unfortunately, due to limited computational power, I only experimented on the cifar dataset and did not use imagenet.

xiaochus avatar Apr 17 '18 10:04 xiaochus

Hi, I was hoping to retrain this mobileNetv2 with imagenet weights. So based on this thread it hasn't been trained on that correct? So i have to go the the main mobileNetV2.py from keras team at this github repo:

https://github.com/keras-team/keras/blob/master/keras/applications/mobilenetv2.py

and use that for re-training? thanks.

RadEdje avatar Jun 01 '18 01:06 RadEdje

@xiaochus i m curious about these lines.

x = GlobalAveragePooling2D()(x) x = Reshape((1, 1, 1280))(x) x = Dropout(0.3, name='Dropout')(x) x = Conv2D(k, (1, 1), padding='same')(x) x = Activation('softmax', name='softmax')(x) output = Reshape((k,))(x)

why it is this? not

x = GlobalAveragePooling2D()(x) x = Dense(k)(x) x = Activation('softmax', name='softmax')(x)

Do some guys give one explain? thanks.

alyato avatar Aug 16 '18 06:08 alyato