Revert "Merge branch 'rename-test' (Update tests to match new branding)"
This reverts commit93914db805
, reversing changes made toc869f120ca
.
This commit is contained in:
Родитель
160b5700e6
Коммит
6f3641c729
|
@ -1,7 +1,7 @@
|
|||
import time, logging
|
||||
from datetime import datetime
|
||||
import threading, collections, queue, os, os.path
|
||||
import mozilla_voice_stt as stt
|
||||
import deepspeech
|
||||
import numpy as np
|
||||
import pyaudio
|
||||
import wave
|
||||
|
@ -160,7 +160,7 @@ def main(ARGS):
|
|||
|
||||
print('Initializing model...')
|
||||
logging.info("ARGS.model: %s", ARGS.model)
|
||||
model = stt.Model(ARGS.model)
|
||||
model = deepspeech.Model(ARGS.model)
|
||||
if ARGS.scorer:
|
||||
logging.info("ARGS.scorer: %s", ARGS.scorer)
|
||||
model.enableExternalScorer(ARGS.scorer)
|
||||
|
|
4
tests.sh
4
tests.sh
|
@ -14,10 +14,10 @@ get_python_wheel_url()
|
|||
|
||||
extract_python_versions "${this_python_version}" "pyver" "pyver_pkg" "py_unicode_type" "pyconf" "pyalias"
|
||||
|
||||
echo "$(get_python_pkg_url "${pyver_pkg}" "${py_unicode_type}" "mozilla_voice_stt" https://community-tc.services.mozilla.com/api/queue/v1/task/${DEP_TASK_ID}/artifacts/public)"
|
||||
echo "$(get_python_pkg_url "${pyver_pkg}" "${py_unicode_type}" "deepspeech" https://community-tc.services.mozilla.com/api/queue/v1/task/${DEP_TASK_ID}/artifacts/public)"
|
||||
}
|
||||
|
||||
get_npm_package_url()
|
||||
{
|
||||
echo "https://community-tc.services.mozilla.com/api/queue/v1/task/${DEP_TASK_ID}/artifacts/public/mozilla_voice_stt-${DS_VERSION}.tgz"
|
||||
echo "https://community-tc.services.mozilla.com/api/queue/v1/task/${DEP_TASK_ID}/artifacts/public/deepspeech-${DS_VERSION}.tgz"
|
||||
}
|
||||
|
|
|
@ -2,7 +2,7 @@ import glob
|
|||
import webrtcvad
|
||||
import logging
|
||||
import wavSplit
|
||||
import mozilla_voice_stt
|
||||
from deepspeech import Model
|
||||
from timeit import default_timer as timer
|
||||
|
||||
'''
|
||||
|
@ -15,7 +15,7 @@ Returns a list [DeepSpeech Object, Model Load Time, Scorer Load Time]
|
|||
'''
|
||||
def load_model(models, scorer):
|
||||
model_load_start = timer()
|
||||
ds = mozilla_voice_stt.Model(models)
|
||||
ds = Model(models)
|
||||
model_load_end = timer() - model_load_start
|
||||
logging.debug("Loaded model in %0.3fs." % (model_load_end))
|
||||
|
||||
|
|
Загрузка…
Ссылка в новой задаче