Thank you very much! I will check the PR that you send to me.
---
[Visit
Topic](https://discuss.tvm.apache.org/t/how-can-i-get-output-name-from-graph-runtime/8479/3)
to respond.
You are receiving this because you enabled mailing list mode.
To unsubscribe from these emails, [click
here](
Good question. I think we can not get it directly currently. But the mechanism
should have support it. For example, when you pass the output index, we could
use `nodes_[outputs_[index].node_id].name` to get the name.
Something a bit more, I think the name you want more is the model's name, the
I read the docs and have a question about how can we know what is the output we
get from graph runtime.
For example, I have model A that have 3 outputs.
The 3 outputs is
1) name: LayerA, shape: (1, 100)
2) name: LayerB, shape: (1, 100)
3) name: LayerC, shape: (1, 100, 200)
I see the this fu