Bisonai / mobilenetv3-tensorflow

Unofficial implementation of MobileNetV3 architecture described in paper Searching for MobileNetV3.
Apache License 2.0
225 stars 81 forks source link

one question about kernel 5*5 #5

Closed alexliyang closed 5 years ago

alexliyang commented 5 years ago

when train cifar10, initial size is 9696 , and when downscale size is less than kernel 55 ,how to deal these channels?

martinkersner commented 5 years ago

Hi @alexliyang!

Thanks for a good question! The input size 96x96 is just an example. You should use larger input for MobileNetV3 architecture if you want to get correct/valid results. I will update repository to reflect this constraint.

Cheers, Martin

alexliyang commented 5 years ago

and I meet another question, I want to use this model to classify 7 classes, when training acc is about
0.9, I save model and test , the reuslt is very bad, always tell me the class id is 2 , no other class ids

martinkersner commented 5 years ago

Do you evaluate your model at the end of every epoch? What is the validation accuracy?