[GitHub] chinakook commented on issue #10600: Gluon Interpolation Layer

2018-04-18 Thread GitBox
chinakook commented on issue #10600: Gluon Interpolation Layer URL: https://github.com/apache/incubator-mxnet/issues/10600#issuecomment-382375451 I don't know. I think this op is weird. This is an automated message from the

[GitHub] chinakook commented on issue #10600: Gluon Interpolation Layer

2018-04-18 Thread GitBox
chinakook commented on issue #10600: Gluon Interpolation Layer URL: https://github.com/apache/incubator-mxnet/issues/10600#issuecomment-382346176 ``` def hybrid_forward(self, F, x): return F.contrib.BilinearResize2D(x, self.height, self.width) ``` or ```

[GitHub] chinakook commented on issue #10600: Gluon Interpolation Layer

2018-04-18 Thread GitBox
chinakook commented on issue #10600: Gluon Interpolation Layer URL: https://github.com/apache/incubator-mxnet/issues/10600#issuecomment-382339302 del hybrid ``` class BilinearInterp(nn.Block): def __init__(self, target_size, **kwargs): super(BilinearInterp,