szha commented on a change in pull request #9614: MobileNetV2 URL: https://github.com/apache/incubator-mxnet/pull/9614#discussion_r165114414
########## File path: python/mxnet/gluon/model_zoo/vision/mobilenet.py ########## @@ -17,27 +17,76 @@ # coding: utf-8 # pylint: disable= arguments-differ -"""MobileNet, implemented in Gluon.""" -__all__ = ['MobileNet', 'mobilenet1_0', 'mobilenet0_75', 'mobilenet0_5', 'mobilenet0_25', - 'get_mobilenet'] +"""MobileNet and MobileNetV2, implemented in Gluon.""" +__all__ = ['MobileNet', 'MobileNetV2', 'mobilenet1_0', 'mobilenet0_75', + 'mobilenet0_5', 'mobilenet0_25', 'get_mobilenet'] + +__modify__ = 'dwSun' +__modified_date__ = '18/01/31' import os +from ... import nn from ....context import cpu from ...block import HybridBlock -from ... import nn + # Helpers +# pylint: disable= too-many-arguments Review comment: please remove and use our pylintrc as standard. ---------------------------------------------------------------- This is an automated message from the Apache Git Service. To respond to the message, please log on GitHub and use the URL above to go to the specific comment. For queries about this service, please contact Infrastructure at: [email protected] With regards, Apache Git Services
