Skip to content

Commit

Permalink
Update info about FD-MobileNet models for Chainer
Browse files Browse the repository at this point in the history
  • Loading branch information
osmr committed Sep 5, 2018
1 parent e81d9e1 commit cf8a515
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 4 deletions.
3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -226,6 +226,9 @@ bottleneck block. Respectively a network without b-suffix has the stride in the
| MobileNet x0.5 | 37.64 | 15.66 | 1,331,592 | 152.04M | Converted from Gluon Model Zoo ([log](https://github.com/osmr/imgclsmob/releases/download/v0.0.21/mobilenet_wd2-1566-d398ee98.npz.log)) |
| MobileNet x0.75 | 33.24 | 12.52 | 2,585,560 | 329.22M | Converted from Gluon Model Zoo ([log](https://github.com/osmr/imgclsmob/releases/download/v0.0.21/mobilenet_w3d4-1252-6675b58c.npz.log)) |
| MobileNet x1.0 | 29.71 | 10.31 | 4,231,976 | 573.83M | Converted from Gluon Model Zoo ([log](https://github.com/osmr/imgclsmob/releases/download/v0.0.21/mobilenet_w1-1031-3ecb405b.npz.log)) |
| FD-MobileNet x0.25 | 56.67 | 31.96 | 383,160 | 12.44M | From [clavichord93/FD-MobileNet] ([log](https://github.com/osmr/imgclsmob/releases/download/v0.0.25/fdmobilenet_wd4-3196-463330f8.npz.log)) |
| FD-MobileNet x0.5 | 44.67 | 21.09 | 993,928 | 40.93M | From [clavichord93/FD-MobileNet] ([log](https://github.com/osmr/imgclsmob/releases/download/v0.0.25/fdmobilenet_wd2-2109-cc9bd695.npz.log)) |
| FD-MobileNet x1.0 | 35.94 | 14.70 | 2,901,288 | 146.08M | From [clavichord93/FD-MobileNet] ([log](https://github.com/osmr/imgclsmob/releases/download/v0.0.25/fdmobilenet_w1-1470-b40709cb.npz.log)) |

[Cadene/pretrained...pytorch]: https://github.com/Cadene/pretrained-models.pytorch
[ShichenLiu/CondenseNet]: https://github.com/ShichenLiu/CondenseNet
Expand Down
6 changes: 3 additions & 3 deletions chainer_/models/mobilenet.py
Original file line number Diff line number Diff line change
Expand Up @@ -370,10 +370,10 @@ def _test():
mobilenet_w3d4,
mobilenet_wd2,
mobilenet_wd4,
# fdmobilenet_w1,
fdmobilenet_w1,
# fdmobilenet_w3d4,
# fdmobilenet_wd2,
# fdmobilenet_wd4,
fdmobilenet_wd2,
fdmobilenet_wd4,
]

for model in models:
Expand Down
5 changes: 4 additions & 1 deletion chainer_/models/model_store.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,10 @@
('mobilenet_wd4', '2428', '21ddc10dd575d589153a49c3807673a2aa579254', 'v0.0.21'),
('mobilenet_wd2', '1566', 'd398ee981ff7487a9b74f447dbbf6b497375d5a2', 'v0.0.21'),
('mobilenet_w3d4', '1252', '6675b58c7eab180a054b4999b08666fab729dbb0', 'v0.0.21'),
('mobilenet_w1', '1031', '3ecb405b83bbf772ef15ae304d0ccdebda7cb326', 'v0.0.21')]}
('mobilenet_w1', '1031', '3ecb405b83bbf772ef15ae304d0ccdebda7cb326', 'v0.0.21'),
('fdmobilenet_wd4', '3196', '463330f87909a68bd29664972be2cd2a716866f4', 'v0.0.25'),
('fdmobilenet_wd2', '2109', 'cc9bd6954b9c6818de209bdb01be9e3731e70376', 'v0.0.25'),
('fdmobilenet_w1', '1470', 'b40709cbc1bed29abec9f3d50ca65d5edf49f70e', 'v0.0.25')]}

imgclsmob_repo_url = 'https://github.com/osmr/imgclsmob'

Expand Down

0 comments on commit cf8a515

Please sign in to comment.