rtmo / symbolic_shape_infer_all.sh
Luigi's picture
Make ONNX models compatible with ONNXruntime's TensorrtExecutionProvider
b75f05d
raw
history blame contribute delete
No virus
135 Bytes
for f in $(ls -S *.onnx | tac);
do
echo Process "$f"
python3 symbolic_shape_infer.py --input "$f" --output "$f" --auto_merge;
done