You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tvm.apache.org by GitBox <gi...@apache.org> on 2019/11/27 23:37:28 UTC

[GitHub] [incubator-tvm] apivovarov opened a new pull request #4440: [TFLite] Add transpose_conv to TFLite parser

apivovarov opened a new pull request #4440: [TFLite] Add transpose_conv to TFLite parser
URL: https://github.com/apache/incubator-tvm/pull/4440
 
 
   This PR adds `transpose_conv` to TFLite frontend.
   
   conv2d_transpose TF docs:
   https://www.tensorflow.org/versions/r1.13/api_docs/python/tf/nn/conv2d_transpose
   
   [TFLite schema](https://raw.githubusercontent.com/tensorflow/tensorflow/r1.13/tensorflow/lite/schema/schema.fbs)
   ```
   table TransposeConvOptions {
     padding:Padding;
     stride_w:int;
     stride_h:int;
   }
   ```
   
   
   Limitations:
   * Similar to TF frontend TFLite frontend supports 'SAME' padding for kernel 1x1 only.
   
   

----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to 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