Merge pull request #1856 from coqui-ai/decoder-rename

Rename decoder package to coqui_stt_ctcdecoder
This commit is contained in:
Reuben Morais 2021-04-28 12:56:54 +02:00 committed by GitHub
commit f147c78a97
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
20 changed files with 31 additions and 31 deletions

View File

@ -145,7 +145,7 @@ jobs:
bindings
- uses: actions/upload-artifact@v2
with:
name: "ds_ctcdecoder-Linux-test.whl"
name: "coqui_stt_ctcdecoder-Linux-test.whl"
path: ${{ github.workspace }}/native_client/ctcdecode/dist/*.whl
- run: |
make -C native_client/ctcdecode clean-keep-third-party
@ -166,14 +166,14 @@ jobs:
python-version: 3.6
- uses: actions/download-artifact@v2
with:
name: "ds_ctcdecoder-Linux-test.whl"
name: "coqui_stt_ctcdecoder-Linux-test.whl"
- run: |
python --version
pip --version
- run: |
pip install --upgrade pip==19.3.1 setuptools==45.0.0 wheel==0.33.6
- run: |
pip install ds_ctcdecoder-*-cp36-cp36m-*_x86_64.whl
pip install coqui_stt_ctcdecoder-*-cp36-cp36m-*_x86_64.whl
DS_NODECODER=y pip install --upgrade .
- run: |
bits=""
@ -685,7 +685,7 @@ jobs:
bindings
- uses: actions/upload-artifact@v2
with:
name: "ds_ctcdecoder-macOS-test.whl"
name: "coqui_stt_ctcdecoder-macOS-test.whl"
path: ${{ github.workspace }}/native_client/ctcdecode/dist/*.whl
- run: |
make -C native_client/ctcdecode clean-keep-third-party
@ -706,14 +706,14 @@ jobs:
python-version: 3.6
- uses: actions/download-artifact@v2
with:
name: "ds_ctcdecoder-macOS-test.whl"
name: "coqui_stt_ctcdecoder-macOS-test.whl"
- run: |
python --version
pip --version
- run: |
pip install --upgrade pip==19.3.1 setuptools==45.0.0 wheel==0.33.6
- run: |
pip install ds_ctcdecoder-*-cp36-cp36m-*_x86_64.whl
pip install coqui_stt_ctcdecoder-*-cp36-cp36m-*_x86_64.whl
DS_NODECODER=y pip install --upgrade .
- run: |
bits=""
@ -1190,7 +1190,7 @@ jobs:
bindings
- uses: actions/upload-artifact@v2
with:
name: "ds_ctcdecoder-windows-test.whl"
name: "coqui_stt_ctcdecoder-windows-test.whl"
path: ${{ github.workspace }}/native_client/ctcdecode/dist/*.whl
- run: |
make -C native_client/ctcdecode clean-keep-third-party

View File

@ -39,7 +39,7 @@ from coqui_stt_training.util.importers import (
get_validate_label,
print_import_report,
)
from ds_ctcdecoder import Alphabet
from coqui_stt_ctcdecoder import Alphabet
FIELDNAMES = ["wav_filename", "wav_filesize", "transcript"]
SAMPLE_RATE = 16000

View File

@ -23,7 +23,7 @@ from coqui_stt_training.util.importers import (
get_validate_label,
print_import_report,
)
from ds_ctcdecoder import Alphabet
from coqui_stt_ctcdecoder import Alphabet
FIELDNAMES = ["wav_filename", "wav_filesize", "transcript"]
SAMPLE_RATE = 16000

View File

@ -20,7 +20,7 @@ from coqui_stt_training.util.importers import (
get_validate_label,
print_import_report,
)
from ds_ctcdecoder import Alphabet
from coqui_stt_ctcdecoder import Alphabet
FIELDNAMES = ["wav_filename", "wav_filesize", "transcript"]
SAMPLE_RATE = 16000

View File

@ -18,7 +18,7 @@ from coqui_stt_training.util.importers import (
get_validate_label,
print_import_report,
)
from ds_ctcdecoder import Alphabet
from coqui_stt_ctcdecoder import Alphabet
FIELDNAMES = ["wav_filename", "wav_filesize", "transcript"]
SAMPLE_RATE = 16000

View File

@ -17,7 +17,7 @@ from coqui_stt_training.util.importers import (
get_validate_label,
print_import_report,
)
from ds_ctcdecoder import Alphabet
from coqui_stt_ctcdecoder import Alphabet
FIELDNAMES = ["wav_filename", "wav_filesize", "transcript"]
SAMPLE_RATE = 16000

View File

@ -24,7 +24,7 @@ import sox
from coqui_stt_training.util.downloader import SIMPLE_BAR, maybe_download
from coqui_stt_training.util.importers import validate_label_eng as validate_label
from ds_ctcdecoder import Alphabet
from coqui_stt_ctcdecoder import Alphabet
SWC_URL = "https://www2.informatik.uni-hamburg.de/nats/pub/SWC/SWC_{language}.tar"
SWC_ARCHIVE = "SWC_{language}.tar"

View File

@ -16,7 +16,7 @@ import progressbar
from coqui_stt_training.util.downloader import SIMPLE_BAR, maybe_download
from coqui_stt_training.util.importers import validate_label_eng as validate_label
from ds_ctcdecoder import Alphabet
from coqui_stt_ctcdecoder import Alphabet
TUDA_VERSION = "v2"
TUDA_PACKAGE = "german-speechdata-package-{}".format(TUDA_VERSION)

View File

@ -146,7 +146,7 @@ This will create the package ``stt-VERSION.tgz`` in ``native_client/javascript``
Install the CTC decoder package
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
To build the ``ds_ctcdecoder`` package, you'll need the general requirements listed above (in particular SWIG). The command below builds the bindings using eight (8) processes for compilation. Adjust the parameter accordingly for more or less parallelism.
To build the ``coqui_stt_ctcdecoder`` package, you'll need the general requirements listed above (in particular SWIG). The command below builds the bindings using eight (8) processes for compilation. Adjust the parameter accordingly for more or less parallelism.
.. code-block::

View File

@ -13,7 +13,7 @@ from coqui_stt_training.util.config import Config, initialize_globals
from coqui_stt_training.util.flags import create_flags, FLAGS
from coqui_stt_training.util.logging import log_error
from coqui_stt_training.util.evaluate_tools import wer_cer_batch
from ds_ctcdecoder import Scorer
from coqui_stt_ctcdecoder import Scorer
def character_based():

View File

@ -11,7 +11,7 @@ LDFLAGS_NEEDED += $(RASPBIAN)/lib/aarch64-linux-gnu/libm.so.6
endif
ifeq ($(OS),Darwin)
GENERATE_DEBUG_SYMS := dsymutil temp_build/temp_build/ds_ctcdecoder/_swigwrapper.*.so
GENERATE_DEBUG_SYMS := dsymutil temp_build/temp_build/coqui_stt_ctcdecoder/_swigwrapper.*.so
else
GENERATE_DEBUG_SYMS :=
endif
@ -29,7 +29,7 @@ THIRD_PARTY := third_party.$(ARCHIVE_EXT)
all: bindings
clean-keep-third-party:
rm -rf dist temp_build ds_ctcdecoder.egg-info
rm -rf dist temp_build coqui_stt_ctcdecoder.egg-info
rm -f swigwrapper_wrap.cpp swigwrapper.py $(FIRST_PARTY)
clean: clean-keep-third-party

View File

@ -68,7 +68,7 @@ maybe_rebuild(KENLM_FILES, third_party_build, build_dir)
maybe_rebuild(CTC_DECODER_FILES, ctc_decoder_build, build_dir)
decoder_module = Extension(
name='ds_ctcdecoder._swigwrapper',
name='coqui_stt_ctcdecoder._swigwrapper',
sources=['swigwrapper.i'],
swig_opts=['-c++', '-extranative'],
language='c++',
@ -84,12 +84,12 @@ class BuildExtFirst(build):
('build_scripts', build.has_scripts)]
setup(
name='ds_ctcdecoder',
name='coqui_stt_ctcdecoder',
version=project_version,
description="""DS CTC decoder""",
cmdclass = {'build': BuildExtFirst},
ext_modules=[decoder_module],
package_dir = {'ds_ctcdecoder': '.'},
py_modules=['ds_ctcdecoder', 'ds_ctcdecoder.swigwrapper'],
package_dir = {'coqui_stt_ctcdecoder': '.'},
py_modules=['coqui_stt_ctcdecoder', 'coqui_stt_ctcdecoder.swigwrapper'],
install_requires = ['numpy%s' % numpy_min_ver],
)

View File

@ -32,7 +32,7 @@ def main():
]
decoder_pypi_dep = [
'ds_ctcdecoder == {}'.format(version)
'coqui_stt_ctcdecoder == {}'.format(version)
]
tensorflow_pypi_dep = [

View File

@ -1,7 +1,7 @@
import unittest
import os
from ds_ctcdecoder import Alphabet
from coqui_stt_ctcdecoder import Alphabet
class TestAlphabetParsing(unittest.TestCase):

View File

@ -1 +1 @@
0.10.0-alpha.4
0.10.0-alpha.5

View File

@ -12,7 +12,7 @@ import progressbar
import tensorflow as tf
import tensorflow.compat.v1 as tfv1
from ds_ctcdecoder import ctc_beam_search_decoder_batch, Scorer
from coqui_stt_ctcdecoder import ctc_beam_search_decoder_batch, Scorer
from six.moves import zip
from .util.augmentations import NormalizeSampleRate
from .util.config import Config, initialize_globals

View File

@ -25,7 +25,7 @@ tfv1.logging.set_verbosity({
}.get(DESIRED_LOG_LEVEL))
from datetime import datetime
from ds_ctcdecoder import ctc_beam_search_decoder, Scorer
from coqui_stt_ctcdecoder import ctc_beam_search_decoder, Scorer
from .evaluate import evaluate
from six.moves import zip, range
from .util.augmentations import NormalizeSampleRate

View File

@ -6,7 +6,7 @@ import tensorflow.compat.v1 as tfv1
from attrdict import AttrDict
from xdg import BaseDirectory as xdg
from ds_ctcdecoder import Alphabet, UTF8Alphabet
from coqui_stt_ctcdecoder import Alphabet, UTF8Alphabet
from .flags import FLAGS
from .gpu import get_available_gpus

View File

@ -44,11 +44,11 @@ def check_ctcdecoder_version():
try:
# pylint: disable=import-outside-toplevel
from ds_ctcdecoder import __version__ as decoder_version
from coqui_stt_ctcdecoder import __version__ as decoder_version
except ImportError as e:
if e.msg.find('__version__') > 0:
print("Coqui STT version ({ds_version}) requires CTC decoder to expose __version__. "
"Please upgrade the ds_ctcdecoder package to version {ds_version}".format(ds_version=ds_version_s))
"Please upgrade the coqui_stt_ctcdecoder package to version {ds_version}".format(ds_version=ds_version_s))
sys.exit(1)
raise e

View File

@ -18,7 +18,7 @@ from coqui_stt_training.util.config import Config, initialize_globals
from coqui_stt_training.util.feeding import split_audio_file
from coqui_stt_training.util.flags import create_flags, FLAGS
from coqui_stt_training.util.logging import log_error, log_info, log_progress, create_progressbar
from ds_ctcdecoder import ctc_beam_search_decoder_batch, Scorer
from coqui_stt_ctcdecoder import ctc_beam_search_decoder_batch, Scorer
from multiprocessing import Process, cpu_count