I have converted CRNN model from pytorch into onnx format, and using codes like this:
`
target = 'llvm'
input_name = '0'
shape_dict = {input_name: x.shape}
mod, params = relay.frontend.from_onnx(onnx_model, shape_dict)
with relay.build_config(opt_level=1):
intrp = relay.build_module.create_executor('graph', mod, tvm.cpu(0), target)
`
ERROR:
OpNotImplemented: The following operators are not supported for frontend ONNX:LSTM
I don't konw how to solve it