Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/nsarang/MnasNet
A TensorFlow 2.0 implementation of MnasNet: Platform-Aware Neural Architecture Search for Mobile.
https://github.com/nsarang/MnasNet
architecture-search deep-learning imagenet keras mnasnet mobile-development tensorflow tensorflow2
Last synced: 3 months ago
JSON representation
A TensorFlow 2.0 implementation of MnasNet: Platform-Aware Neural Architecture Search for Mobile.
- Host: GitHub
- URL: https://github.com/nsarang/MnasNet
- Owner: nsarang
- Created: 2019-07-06T15:28:36.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2019-09-14T07:52:46.000Z (about 5 years ago)
- Last Synced: 2024-04-08T02:54:31.925Z (7 months ago)
- Topics: architecture-search, deep-learning, imagenet, keras, mnasnet, mobile-development, tensorflow, tensorflow2
- Language: Python
- Homepage:
- Size: 1.28 MB
- Stars: 7
- Watchers: 2
- Forks: 5
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
- Awesome-Tensorflow2 - nsarang/MnasNet
README
# MnasNet Tensorflow 2 Implementation
Mingxing Tan, Bo Chen, Ruoming Pang, Vijay Vasudevan, Mark Sandler, Andrew Howard, Quoc V. Le. **MnasNet: Platform-Aware Neural Architecture Search for Mobile**. CVPR 2019.
Arxiv link: https://arxiv.org/abs/1807.11626## Usage
Available implementations: **a1, b1, small, d1, d1_320**
```python
from MnasNet_models import Build_MnasNet# Standard model
model = Build_MnasNet('a1')# Change default parameters:
model = Build_MnasNet('a1', dict(input_shape=(128, 128, 3), dropout_rate=0.5))
```## Pretrained models
| Model | Dataset | Input Size | Depth Multiplier | Top-1 Accuracy | Top-5 Accuracy | Pixel 1 latency (ms) | DownLoad Link |
| :---- | ------- | ---------- | ---------------- | -------------- | -------------- | -------------------- | ------------- |
| MnasNet-A1 | ImageNet | 224*224 | 1.0 | 75.2 | 95.2 | 78ms | [Google Drive](https://drive.google.com/file/d/1tGHQC8vwrCKsMTKVTJMK-7uElYgLeR20/view?usp=sharing)## Reference
[MnasNet - Official implementation for Cloud TPU](https://github.com/tensorflow/tpu/tree/master/models/official/mnasnet)