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
| # Openvino==2022.1.0 | |
| import sys | |
| from openvino.runtime import Core | |
| DELIMITER = ' | ' | |
| if len(sys.argv) < 3: | |
| print("Please provide path to model xml file as a first arg and" | |
| " path to output text file to dump model constants.") |
NewerOlder