You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@mxnet.apache.org by GitBox <gi...@apache.org> on 2018/06/27 17:07:50 UTC

[GitHub] two-names opened a new issue #11423: contrib.BilinearResize2D has restriction on tensor's resolution (1000 x 1000)

two-names opened a new issue #11423: contrib.BilinearResize2D has restriction on tensor's resolution (1000 x 1000)
URL: https://github.com/apache/incubator-mxnet/issues/11423
 
 
   Hello.
   
   The function contrib.BilinearResize2D has restriction on tensor's resolution (1000 x 1000)
   
   There are segmentation tasks where high-resolution branches are needed within hybrid_forward.
   
   This restriction defined in 
   
   > incubator-mxnet\src\operator\contrib
   
   bilinear_resize-inl.h
   
   ```
       DMLC_DECLARE_FIELD(height).set_range(1, 1000)
       .describe("output height (required)");
       DMLC_DECLARE_FIELD(width).set_range(1, 1000)
       .describe("output width (required)");
   ```
   Could you please fix the restriction?
   

----------------------------------------------------------------
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:
users@infra.apache.org


With regards,
Apache Git Services