зеркало из https://github.com/mozilla/DeepSpeech.git
13 строки
360 B
Python
13 строки
360 B
Python
#!/usr/bin/env python
|
|
# -*- coding: utf-8 -*-
|
|
from __future__ import absolute_import, division, print_function
|
|
|
|
if __name__ == '__main__':
|
|
try:
|
|
from deepspeech_training import evaluate as ds_evaluate
|
|
except ImportError:
|
|
print('Training package is not installed. See training documentation.')
|
|
raise
|
|
|
|
ds_evaluate.run_script()
|