Error when exporting PyTorch model "NOT IMPLEMENTED: Order of dimensions of input cannot be interpreted"
I am using the STM32Cube.AI Developer Cloud to convert my ONNX model that I built using PyTorch.Here is my export code:input_size = [1, 8, 1000] x = torch.randn(input_size) onnx_folder_path = 'onnx_models/' if not os.path....