forked from openvinotoolkit/model_analyzer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmodel_analyzer.py
21 lines (16 loc) · 908 Bytes
/
model_analyzer.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
"""
Model Analyzer
Copyright (c) 2019 Intel Corporation
LEGAL NOTICE: Your use of this software and any required dependent software (the “Software Package”) is subject to
the terms and conditions of the software license agreements for Software Package, which may also include
notices, disclaimers, or license terms for third party or open source software
included in or with the Software Package, and your use indicates your acceptance of all such terms.
Please refer to the “third-party-programs.txt” or other similarly-named text file included with the Software Package
for additional details.
You may obtain a copy of the License at
https://software.intel.com/content/dam/develop/external/us/en/documents/intel-openvino-license-agreements.pdf
"""
from model_analyzer import main, parse_arguments
if __name__ == '__main__':
ARGUMENTS = parse_arguments()
main(ARGUMENTS)