DeepSpeech/DeepSpeech.py

13 строки
351 B
Python
Исходник Постоянная ссылка Обычный вид История

#!/usr/bin/env python
# -*- coding: utf-8 -*-
from __future__ import absolute_import, division, print_function
2017-01-28 22:56:07 +03:00
2019-04-11 13:02:21 +03:00
if __name__ == '__main__':
try:
from deepspeech_training import train as ds_train
except ImportError:
print('Training package is not installed. See training documentation.')
raise
ds_train.run_script()