onnxruntime_flutter icon indicating copy to clipboard operation
onnxruntime_flutter copied to clipboard

Get inputs metadata as a list

Open ghost opened this issue 1 year ago • 0 comments

In python there Session has get_inputs and get_outputs

    def get_inputs(self):
        "Return the inputs metadata as a list of :class:`onnxruntime.NodeArg`."
        return self._inputs_meta

    def get_outputs(self):
        "Return the outputs metadata as a list of :class:`onnxruntime.NodeArg`."
        return self._outputs_meta

Can these be added to the API or is there another way to access this data?

ghost avatar Feb 04 '24 10:02 ghost