not install ctc on win, test=asr

pull/1994/head
huangyuxin 3 years ago
parent 62c50e0060
commit 10819e0fa2

@ -14,13 +14,15 @@
from .deepspeech2 import DeepSpeech2InferModel from .deepspeech2 import DeepSpeech2InferModel
from .deepspeech2 import DeepSpeech2Model from .deepspeech2 import DeepSpeech2Model
from paddlespeech.s2t.utils import dynamic_pip_install from paddlespeech.s2t.utils import dynamic_pip_install
import sys
try: try:
import paddlespeech_ctcdecoders import paddlespeech_ctcdecoders
except ImportError: except ImportError:
try: try:
package_name = 'paddlespeech_ctcdecoders' package_name = 'paddlespeech_ctcdecoders'
dynamic_pip_install.install(package_name) if sys.platform != "win32":
dynamic_pip_install.install(package_name)
except Exception: except Exception:
raise RuntimeError( raise RuntimeError(
"Can not install package paddlespeech_ctcdecoders on your system. \ "Can not install package paddlespeech_ctcdecoders on your system. \

@ -14,13 +14,15 @@
from .deepspeech2 import DeepSpeech2InferModelOnline from .deepspeech2 import DeepSpeech2InferModelOnline
from .deepspeech2 import DeepSpeech2ModelOnline from .deepspeech2 import DeepSpeech2ModelOnline
from paddlespeech.s2t.utils import dynamic_pip_install from paddlespeech.s2t.utils import dynamic_pip_install
import sys
try: try:
import paddlespeech_ctcdecoders import paddlespeech_ctcdecoders
except ImportError: except ImportError:
try: try:
package_name = 'paddlespeech_ctcdecoders' package_name = 'paddlespeech_ctcdecoders'
dynamic_pip_install.install(package_name) if sys.platform != "win32":
dynamic_pip_install.install(package_name)
except Exception: except Exception:
raise RuntimeError( raise RuntimeError(
"Can not install package paddlespeech_ctcdecoders on your system. \ "Can not install package paddlespeech_ctcdecoders on your system. \

@ -22,6 +22,7 @@ from paddlespeech.s2t.modules.align import Linear
from paddlespeech.s2t.modules.loss import CTCLoss from paddlespeech.s2t.modules.loss import CTCLoss
from paddlespeech.s2t.utils import ctc_utils from paddlespeech.s2t.utils import ctc_utils
from paddlespeech.s2t.utils.log import Log from paddlespeech.s2t.utils.log import Log
import sys
logger = Log(__name__).getlog() logger = Log(__name__).getlog()
@ -34,7 +35,8 @@ except ImportError:
try: try:
from paddlespeech.s2t.utils import dynamic_pip_install from paddlespeech.s2t.utils import dynamic_pip_install
package_name = 'paddlespeech_ctcdecoders' package_name = 'paddlespeech_ctcdecoders'
dynamic_pip_install.install(package_name) if sys.platform != "win32":
dynamic_pip_install.install(package_name)
from paddlespeech.s2t.decoders.ctcdecoder import ctc_beam_search_decoding_batch # noqa: F401 from paddlespeech.s2t.decoders.ctcdecoder import ctc_beam_search_decoding_batch # noqa: F401
from paddlespeech.s2t.decoders.ctcdecoder import ctc_greedy_decoding # noqa: F401 from paddlespeech.s2t.decoders.ctcdecoder import ctc_greedy_decoding # noqa: F401
from paddlespeech.s2t.decoders.ctcdecoder import Scorer # noqa: F401 from paddlespeech.s2t.decoders.ctcdecoder import Scorer # noqa: F401

@ -154,7 +154,8 @@ class SpeedPerturbationSox():
package = "sox" package = "sox"
dynamic_pip_install.install(package) dynamic_pip_install.install(package)
package = "soxbindings" package = "soxbindings"
dynamic_pip_install.install(package) if sys.platform != "win32":
dynamic_pip_install.install(package)
import soxbindings as sox import soxbindings as sox
except Exception: except Exception:
raise RuntimeError( raise RuntimeError(

Loading…
Cancel
Save