├── .gitignore ├── LICENSE ├── README.md ├── mobilenet_v3_block.py ├── mobilenet_v3_large.py └── mobilenet_v3_small.py /.gitignore: -------------------------------------------------------------------------------- 1 | .idea 2 | __pycache__ 3 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmiLovesAI/MobileNetV3_TensorFlow2/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmiLovesAI/MobileNetV3_TensorFlow2/HEAD/README.md -------------------------------------------------------------------------------- /mobilenet_v3_block.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmiLovesAI/MobileNetV3_TensorFlow2/HEAD/mobilenet_v3_block.py -------------------------------------------------------------------------------- /mobilenet_v3_large.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmiLovesAI/MobileNetV3_TensorFlow2/HEAD/mobilenet_v3_large.py -------------------------------------------------------------------------------- /mobilenet_v3_small.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calmiLovesAI/MobileNetV3_TensorFlow2/HEAD/mobilenet_v3_small.py --------------------------------------------------------------------------------