mirror of
https://github.com/saymrwulf/onnxruntime.git
synced 2026-05-24 22:17:32 +00:00
13 lines
237 B
Bash
13 lines
237 B
Bash
|
|
#!/bin/bash
|
||
|
|
|
||
|
|
set -e
|
||
|
|
|
||
|
|
# Get directory this script is in
|
||
|
|
DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
|
||
|
|
|
||
|
|
cd ${DIR}
|
||
|
|
|
||
|
|
python3 ./single_add_gen.py
|
||
|
|
python3 -m onnxruntime.tools.convert_onnx_models_to_ort --optimization_level basic .
|
||
|
|
|