laywerrobot/bin/tflite_convert

12 lines
292 B
Text
Raw Normal View History

2020-08-27 21:55:39 +02:00
#!/home/alpcentaur/ProjektA/BecomeLegal/LaywerROBOT/bin/python
# -*- coding: utf-8 -*-
import re
import sys
from tensorflow.contrib.lite.python.tflite_convert import main
if __name__ == '__main__':
sys.argv[0] = re.sub(r'(-script\.pyw?|\.exe)?$', '', sys.argv[0])
sys.exit(main())