STDC/tools/optimizer_scripts/res/test_onnx_tester_on_difference.sh

10 lines
205 B
Bash

#!/bin/bash
python onnx_tester.py /test_models/mobilenet_v2_224.onnx /test_models/mobilenet_v2_224.cut.onnx
if [ $? -eq 0 ]; then
echo "Those two model results should be different!"
exit 1
fi
exit 0