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

MobileNetV2 #9614

Merged
merged 24 commits into from
Feb 21, 2018
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
fix parameter name.
  • Loading branch information
dwSun authored and dwSun committed Feb 21, 2018
commit 5cceadf7c4554a154340962fdd6f0f5fabb2060c
4 changes: 2 additions & 2 deletions python/mxnet/gluon/model_zoo/vision/mobilenet.py
Original file line number Diff line number Diff line change
Expand Up @@ -59,8 +59,8 @@ class LinearBottleneck(nn.HybridBlock):
Number of output channels.
t : int
Layer expansion ratio.
s : int
strides
stride : int
stride
"""

def __init__(self, in_channels, channels, t, stride, **kwargs):
Expand Down