dkroeni
Results
2
comments of
dkroeni
I have a related problem: i use tf.keras.layers.UpSampling2D with 'nearest', convert to ONNX. When i try to convert to TensorRT i get the error: Assertion failed: (transformationMode != "tf_half_pixel_for_nn" ||...
It seems commenting out is not the solution here, i solved the problem for me by doing: ``` if "half_pixel_centers" in node.attr and node.attr["half_pixel_centers"].i: if node.type == "ResizeNearestNeighbor" and not...