mirror of
https://github.com/saymrwulf/onnxruntime.git
synced 2026-05-18 21:21:17 +00:00
7 lines
127 B
Python
7 lines
127 B
Python
|
|
import os
|
||
|
|
import sys
|
||
|
|
|
||
|
|
cmd = '/workspace/onnxruntime_training_bert {}'.format(' '.join(sys.argv[1:]))
|
||
|
|
print(cmd)
|
||
|
|
os.system(cmd)
|