ONNX Python examples showing how to create and modify ONNX models using ONNX Python API.
$ docker build -f docker/onnx.Dockerfile --no-cache --tag=onnx:0.0.1 .
$ docker run -it --rm --ipc=host -v $(pwd):/mnt onnx:0.0.1
Create a dummy convolutional neural network from scratch using ONNX Python API.
$ python create_convnet.py
Run the dummy convolutional neural network using ONNX Runtime.
$ python run_convnet.py
Modify the dummy convolutional neural network using ONNX Python API.
$ python modify_convnet.py