зеркало из https://github.com/mozilla/DeepSpeech.git
13 строки
351 B
Python
Executable File
13 строки
351 B
Python
Executable File
#!/usr/bin/env python
|
|
# -*- coding: utf-8 -*-
|
|
from __future__ import absolute_import, division, print_function
|
|
|
|
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()
|