-
Notifications
You must be signed in to change notification settings - Fork 1.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[tmva][sofie] Add a new function CheckModel in RModelParser_ONNX
A new function has been added to check the model operators (nodes) and print the list of missing ones (not yet supported) To use it do: ``` TMVA::Experimental::SOFIE::RModelParser_ONNX p; bool ret = p.CheckModel("model.onnx"); ``` It will return true if all operators of the model are supported. In case of missing ones, it will print their list. The check will also extend to subgraph presented in the model as attributes of some specific nodes (e.g. of If operator)
- Loading branch information
Showing
2 changed files
with
86 additions
and
16 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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