Alexander Shekhovtsov
Alexander Shekhovtsov
*[Original discussion](https://discuss.pytorch.org/t/load-an-onnx-model-with-convtranspose2d-group-1/80480/5)* A pretrained model has the following layer ``` nn.ConvTranspose2d(64, 64, kernel_size=2, stride=2, padding=0, output_padding=0, groups=64, bias=False) ``` the model was converted to onnx. During compilation using command: ```...
**Describe the bug** I need to train QAT (per-tensor) model and then convert it tflite. But I get "folding issue" described [here](https://github.com/tensorflow/model-optimization/issues/438#issuecomment-651229773). **System information** TensorFlow version (installed from source or...