Created
January 24, 2024 15:15
-
-
Save Oil3/924ec31339b242d4e384fd8a14df223e to your computer and use it in GitHub Desktop.
erferf
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import onnx | |
model = onnx.load("path_to_your_model/model.onnx") | |
print("Inputs: ", [input.name for input in model.graph.input]) | |
print("Outputs: ", [output.name for output in model.graph.output]) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment