My Model Contains Multiple Groups of Outputs

Unlike TensorFlow, in TVM/Relay you return values directly from a function instead of fetching them during a Session run. To return multiple values in Relay you can use a tuple. Check out https://docs.tvm.ai/langref/relay_adt.html#implementing-neural-nets-using-adts for an example of an RNN in Relay.