8 lines
278 B
Python
Executable File
8 lines
278 B
Python
Executable File
#!/Users/matthias/Documents/Projects/Homelab/Home-Bro/home-bro-brain/venv_piper/bin/python
|
|
import sys
|
|
from onnxruntime.tools.onnxruntime_test import main
|
|
if __name__ == '__main__':
|
|
if sys.argv[0].endswith('.exe'):
|
|
sys.argv[0] = sys.argv[0][:-4]
|
|
sys.exit(main())
|