This repository has been archived on 2022-07-14. You can view files and clone it, but cannot push or open issues or pull requests.
NJIT-2021GXS-Detection/src/7_onnx_test.py

10 lines
214 B
Python
Raw Normal View History

2022-03-02 19:32:08 +08:00
import onnx
from config import MODEL_PATH
model_path = MODEL_PATH / 'ssd-mobilenet.onnx'
model = onnx.load(str(model_path))
print(onnx.checker.check_model(model))
print(onnx.helper.printable_graph(model.graph))