Skip to content
This repository has been archived by the owner on Nov 17, 2023. It is now read-only.

Commit

Permalink
add mobilenet v2 1.0 pretrained model (#10774)
Browse files Browse the repository at this point in the history
* add mobilenet v2 1.0 pretrained model

* add auto summary
  • Loading branch information
hetong007 authored and szha committed May 2, 2018
1 parent 97da5e3 commit defb8fe
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
3 changes: 3 additions & 0 deletions docs/api/python/gluon/model_zoo.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,7 @@ The following table summarizes the available models.
| mobilenet0.5 | [MobileNet 0.5](https://arxiv.org/abs/1704.04861) | 1,342,536 | 0.6307 | 0.8475 | Trained with [script](https://github.com/apache/incubator-mxnet/blob/master/example/gluon/image_classification.py) |
| mobilenet0.75 | [MobileNet 0.75](https://arxiv.org/abs/1704.04861) | 2,601,976 | 0.6738 | 0.8782 | Trained with [script](https://github.com/apache/incubator-mxnet/blob/master/example/gluon/image_classification.py) |
| mobilenet1.0 | [MobileNet 1.0](https://arxiv.org/abs/1704.04861) | 4,253,864 | 0.7105 | 0.9006 | Trained with [script](https://github.com/apache/incubator-mxnet/blob/master/example/gluon/image_classification.py) |
| mobilenetv2_1.0 | [MobileNetV2 1.0](https://arxiv.org/abs/1801.04381) | 3,539,136 | 0.7159 | 0.9047 | Trained with [script](https://github.com/dmlc/gluon-cv/blob/15ed8a4c71d411b878f0d71d1c7afdce6710c913/scripts/classification/imagenet/train_imagenet.py) |
| resnet18_v1 | [ResNet-18 V1](http://arxiv.org/abs/1512.03385) | 11,699,112 | 0.7039 | 0.8959 | Trained with [script](https://github.com/dmlc/gluon-cv/blob/15ed8a4c71d411b878f0d71d1c7afdce6710c913/scripts/classification/imagenet/train_imagenet.py) |
| resnet34_v1 | [ResNet-34 V1](http://arxiv.org/abs/1512.03385) | 21,814,696 | 0.7411 | 0.9184 | Trained with [script](https://github.com/dmlc/gluon-cv/blob/15ed8a4c71d411b878f0d71d1c7afdce6710c913/scripts/classification/imagenet/train_imagenet.py) |
| resnet50_v1 | [ResNet-50 V1](http://arxiv.org/abs/1512.03385) | 25,629,032 | 0.7540 | 0.9266 | Trained with [script](https://github.com/apache/incubator-mxnet/blob/master/example/gluon/image_classification.py) |
Expand Down Expand Up @@ -203,13 +204,15 @@ The following table summarizes the available models.
mobilenet0_75
mobilenet0_5
mobilenet0_25
mobilenet_v2_1_0
```

```eval_rst
.. autosummary::
:nosignatures:
MobileNet
MobileNetV2
```

## API Reference
Expand Down
1 change: 1 addition & 0 deletions python/mxnet/gluon/model_zoo/model_store.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@
('8e9d539cc66aa5efa71c4b6af983b936ab8701c3', 'mobilenet0.5'),
('529b2c7f4934e6cb851155b22c96c9ab0a7c4dc2', 'mobilenet0.75'),
('6b8c5106c730e8750bcd82ceb75220a3351157cd', 'mobilenet1.0'),
('3ab4967b7a12a9246a144c9dfff74506cb78a526', 'mobilenetv2_1.0'),
('e54b379f50fa4b10bbd2506237e3bd74e6164778', 'resnet18_v1'),
('c1dc0967a3d25ee9127e03bc1046a5d44d92e2ba', 'resnet34_v1'),
('c940b1a062b32e3a5762f397c9d1e178b5abd007', 'resnet50_v1'),
Expand Down

0 comments on commit defb8fe

Please sign in to comment.