Resolved! Error analysing LSTM model using X-Cube-AI: ""NOT IMPLEMENTED: Order of dimensions of input cannot be interpreted""
As stated, I have problem analyzing the ONNX model ported from a pytorch model. The code of the model is simple as follows: class LSTM(nn.Module): def __init__(self, input_size, hidden_size, num_layers, num_output=1): super(LSTM, self)._...