keras-team / keras-applications

Reference implementations of popular deep learning models.
Other
2k stars 914 forks source link

Adds MobiletNetV3 to applications #170

Closed DrSlink closed 4 years ago

DrSlink commented 4 years ago

This is a keras implementation of MobileNetV3. I tried to write this as close as possible to the official tensorflow implementation and the keras implementation of MobileNetV2. This file enables access to the 6 trained MobileNetV3 models found here

taehoonlee commented 4 years ago

Thank you for the PR, @DrSlink. Would you please apply the followings?

  1. Update the accuracies: 68.076 | 87.800 for the small and 75.556 | 92.708 for the large (I used my evaluation script),
  2. Decouple the small and large models (you can refer to resnet_common.py),
  3. Create your own branch not DrSlink:master and then open new PR with the branch. It will facilitate the review process.
DrSlink commented 4 years ago

Thank you for the answer, @taehoonlee. New PR is #176