Closed
Description
As INPUTS
and OUTPUTS
are required only for TF models in the AI.MODELSET
command, we want to allow investigate model's input and outputs:
- ONNX:
size_t n_input_nodes;
ort->SessionGetInputCount(session, &n_input_nodes);
size_t n_output_nodes;
ort->SessionGetOutputCount(session, &n_output_nodes);
- Torch - User defined