diff --git a/ISSUE_TEMPLATE.md b/ISSUE_TEMPLATE.md index 5b42ee74..08345c3a 100644 --- a/ISSUE_TEMPLATE.md +++ b/ISSUE_TEMPLATE.md @@ -1,4 +1,4 @@ -For support and discussions, please use our [Discourse forums](https://discourse.mozilla.org/c/mozilla-voice-stt). +For support and discussions, please use our [Discourse forums](https://discourse.mozilla.org/c/deep-speech). If you've found a bug, or have a feature request, then please create an issue with the following information: diff --git a/Makefile b/Makefile index e7f08eb8..45e950fe 100644 --- a/Makefile +++ b/Makefile @@ -1,4 +1,4 @@ -MOZILLA_VOICE_STT_REPO ?= https://github.com/mozilla/STT.git +MOZILLA_VOICE_STT_REPO ?= https://github.com/mozilla/DeepSpeech.git MOZILLA_VOICE_STT_SHA ?= origin/master Dockerfile%: Dockerfile%.tmpl diff --git a/README.rst b/README.rst index 68b856b0..2b4729c9 100644 --- a/README.rst +++ b/README.rst @@ -7,8 +7,8 @@ Mozilla Voice STT :alt: Documentation -.. image:: https://community-tc.services.mozilla.com/api/github/v1/repository/mozilla/STT/master/badge.svg - :target: https://community-tc.services.mozilla.com/api/github/v1/repository/mozilla/STT/master/latest +.. image:: https://community-tc.services.mozilla.com/api/github/v1/repository/mozilla/DeepSpeech/master/badge.svg + :target: https://community-tc.services.mozilla.com/api/github/v1/repository/mozilla/DeepSpeech/master/latest :alt: Task Status @@ -16,7 +16,7 @@ Mozilla Voice STT is an open source Speech-To-Text engine, using a model trained Documentation for installation, usage, and training models are available on `deepspeech.readthedocs.io `_. -For the latest release, including pre-trained models and checkpoints, `see the latest release on GitHub `_. +For the latest release, including pre-trained models and checkpoints, `see the latest release on GitHub `_. For contribution guidelines, see `CONTRIBUTING.rst `_. diff --git a/SUPPORT.rst b/SUPPORT.rst index ea93626e..d72a7418 100644 --- a/SUPPORT.rst +++ b/SUPPORT.rst @@ -5,8 +5,8 @@ Contact/Getting Help There are several ways to contact us or to get help: -#. `Discourse Forums `_ - The `Deep Speech category on Discourse `_ is the first place to look. Search for keywords related to your question or problem to see if someone else has run into it already. If you can't find anything relevant there, search on our `issue tracker `_ to see if there is an existing issue about your problem. +#. `Discourse Forums `_ - The `Deep Speech category on Discourse `_ is the first place to look. Search for keywords related to your question or problem to see if someone else has run into it already. If you can't find anything relevant there, search on our `issue tracker `_ to see if there is an existing issue about your problem. -#. `Matrix chat `_ - If your question is not addressed by either the `FAQ `_ or `Discourse Forums `_\ , you can contact us on the ``#machinelearning`` channel on `Mozilla Matrix `_\ ; people there can try to answer/help +#. `Matrix chat `_ - If your question is not addressed by either the `FAQ `_ or `Discourse Forums `_\ , you can contact us on the ``#machinelearning`` channel on `Mozilla Matrix `_\ ; people there can try to answer/help -#. `Create a new issue `_ - Finally, if you have a bug report or a feature request that isn't already covered by an existing issue, please open an issue in our repo and fill the appropriate information on your hardware and software setup. +#. `Create a new issue `_ - Finally, if you have a bug report or a feature request that isn't already covered by an existing issue, please open an issue in our repo and fill the appropriate information on your hardware and software setup. diff --git a/doc/BUILDING.rst b/doc/BUILDING.rst index f21406b0..8c8a1980 100644 --- a/doc/BUILDING.rst +++ b/doc/BUILDING.rst @@ -37,7 +37,7 @@ Clone Mozilla Voice STT source code (TensorFlow will come as a submdule): .. code-block:: - git clone https://github.com/mozilla/STT.git + git clone https://github.com/mozilla/DeepSpeech.git git submodule sync tensorflow/ git submodule update --init tensorflow/ diff --git a/doc/Decoder.rst b/doc/Decoder.rst index 1c145e93..9f238197 100644 --- a/doc/Decoder.rst +++ b/doc/Decoder.rst @@ -22,7 +22,7 @@ The use of an external scorer is fully optional. When an external scorer is not Currently, the Mozilla Voice STT external scorer is implemented with `KenLM `_, plus some tooling to package the necessary files and metadata into a single ``.scorer`` package. The tooling lives in ``data/lm/``. The scripts included in ``data/lm/`` can be used and modified to build your own language model based on your particular use case or language. See :ref:`scorer-scripts` for more details on how to reproduce our scorer file as well as create your own. -The scripts are geared towards replicating the language model files we release as part of `Mozilla Voice STT model releases `_, but modifying them to use different datasets or language model construction parameters should be simple. +The scripts are geared towards replicating the language model files we release as part of `Mozilla Voice STT model releases `_, but modifying them to use different datasets or language model construction parameters should be simple. Decoding modes diff --git a/doc/Scorer.rst b/doc/Scorer.rst index 50a8db60..841c8577 100644 --- a/doc/Scorer.rst +++ b/doc/Scorer.rst @@ -7,7 +7,7 @@ Mozilla Voice STT pre-trained models include an external scorer. This document e The scorer is composed of two sub-components, a KenLM language model and a trie data structure containing all words in the vocabulary. In order to create the scorer package, first we must create a KenLM language model (using ``data/lm/generate_lm.py``, and then use ``generate_scorer_package`` to create the final package file including the trie data structure. -The ``generate_scorer_package`` binary is part of the native client package that is included with official releases. You can find the appropriate archive for your platform in the `GitHub release downloads `_. The native client package is named ``native_client.{arch}.{config}.{plat}.tar.xz``, where ``{arch}`` is the architecture the binary was built for, for example ``amd64`` or ``arm64``, ``config`` is the build configuration, which for building decoder packages does not matter, and ``{plat}`` is the platform the binary was built-for, for example ``linux`` or ``osx``. If you wanted to run the ``generate_scorer_package`` binary on a Linux desktop, you would download ``native_client.amd64.cpu.linux.tar.xz``. +The ``generate_scorer_package`` binary is part of the native client package that is included with official releases. You can find the appropriate archive for your platform in the `GitHub release downloads `_. The native client package is named ``native_client.{arch}.{config}.{plat}.tar.xz``, where ``{arch}`` is the architecture the binary was built for, for example ``amd64`` or ``arm64``, ``config`` is the build configuration, which for building decoder packages does not matter, and ``{plat}`` is the platform the binary was built-for, for example ``linux`` or ``osx``. If you wanted to run the ``generate_scorer_package`` binary on a Linux desktop, you would download ``native_client.amd64.cpu.linux.tar.xz``. Reproducing our external scorer ------------------------------- @@ -44,7 +44,7 @@ Afterwards you can use ``generate_scorer_package`` to generate the scorer packag cd data/lm # Download and extract appropriate native_client package: - curl -LO http://github.com/mozilla/STT/releases/... + curl -LO http://github.com/mozilla/DeepSpeech/releases/... tar xvf native_client.*.tar.xz ./generate_scorer_package --alphabet ../alphabet.txt --lm lm.binary --vocab vocab-500000.txt \ --package kenlm.scorer --default_alpha 0.931289039105002 --default_beta 1.1834137581510284 diff --git a/doc/TRAINING.rst b/doc/TRAINING.rst index 034be8ba..85c9a4b2 100644 --- a/doc/TRAINING.rst +++ b/doc/TRAINING.rst @@ -16,7 +16,7 @@ Clone the Mozilla Voice STT repository: .. code-block:: bash - git clone https://github.com/mozilla/STT + git clone https://github.com/mozilla/DeepSpeech Creating a virtual environment ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ diff --git a/doc/USING.rst b/doc/USING.rst index 095a61d1..83bcc321 100644 --- a/doc/USING.rst +++ b/doc/USING.rst @@ -33,12 +33,12 @@ The CUDA capable builds (Python, NodeJS, C++, etc) depend on CUDA 10.1 and CuDNN Getting the pre-trained model ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ -If you want to use the pre-trained English model for performing speech-to-text, you can download it (along with other important inference material) from the Mozilla Voice STT `releases page `_. Alternatively, you can run the following command to download the model files in your current directory: +If you want to use the pre-trained English model for performing speech-to-text, you can download it (along with other important inference material) from the Mozilla Voice STT `releases page `_. Alternatively, you can run the following command to download the model files in your current directory: .. code-block:: bash - wget https://github.com/mozilla/STT/releases/download/v0.8.1/deepspeech-0.8.1-models.pbmm - wget https://github.com/mozilla/STT/releases/download/v0.8.1/deepspeech-0.8.1-models.scorer + wget https://github.com/mozilla/DeepSpeech/releases/download/v0.7.4/deepspeech-0.7.4-models.pbmm + wget https://github.com/mozilla/DeepSpeech/releases/download/v0.7.4/deepspeech-0.7.4-models.scorer There are several pre-trained model files available in official releases. Files ending in ``.pbmm`` are compatible with clients and language bindings built against the standard TensorFlow runtime. Usually these packages are simply called ``mozilla_voice_stt``. These files are also compatible with CUDA enabled clients and language bindings. These packages are usually called ``mozilla_voice_stt_cuda``. Files ending in ``.tflite`` are compatible with clients and language bindings built against the `TensorFlow Lite runtime `_. These models are optimized for size and performance in low power devices. On desktop platforms, the compatible packages are called ``mozilla_voice_stt_tflite``. On Android and Raspberry Pi, we only publish TensorFlow Lite enabled packages, and they are simply called ``mozilla_voice_stt``. You can see a full list of supported platforms and which TensorFlow runtime is supported at :ref:`supported-platforms-inference`. @@ -122,7 +122,7 @@ Alternatively, if you have a supported NVIDIA GPU on Linux, you can install the $ pip3 install mozilla_voice_stt_cuda -See the `release notes `_ to find which GPUs are supported. Please ensure you have the required `CUDA dependency <#cuda-dependency>`_. +See the `release notes `_ to find which GPUs are supported. Please ensure you have the required `CUDA dependency <#cuda-dependency>`_. You can update ``mozilla_voice_stt_cuda`` as follows: @@ -136,7 +136,7 @@ Note: the following command assumes you `downloaded the pre-trained model <#gett .. code-block:: bash - mozilla_voice_stt --model deepspeech-0.8.1-models.pbmm --scorer deepspeech-0.8.1-models.scorer --audio my_audio_file.wav + mozilla_voice_stt --model deepspeech-0.7.4-models.pbmm --scorer deepspeech-0.7.4-models.scorer --audio my_audio_file.wav The ``--scorer`` argument is optional, and represents an external language model to be used when transcribing the audio. @@ -165,7 +165,7 @@ Alternatively, if you're using Linux and have a supported NVIDIA GPU, you can in npm install @mozilla-voice/stt-cuda -See the `release notes `_ to find which GPUs are supported. Please ensure you have the required `CUDA dependency <#cuda-dependency>`_. +See the `release notes `_ to find which GPUs are supported. Please ensure you have the required `CUDA dependency <#cuda-dependency>`_. See the :ref:`TypeScript client ` for an example of how to use the bindings programatically. @@ -194,13 +194,13 @@ also, if you need some binaries different than current master, like ``v0.2.0-alp The script ``taskcluster.py`` will download ``native_client.tar.xz`` (which includes the ``mozilla_voice_stt`` binary and associated libraries) and extract it into the current folder. Also, ``taskcluster.py`` will download binaries for Linux/x86_64 by default, but you can override that behavior with the ``--arch`` parameter. See the help info with ``python util/taskcluster.py -h`` for more details. Specific branches of Mozilla Voice STT or TensorFlow can be specified as well. -Alternatively you may manually download the ``native_client.tar.xz`` from the [releases](https://github.com/mozilla/STT/releases). +Alternatively you may manually download the ``native_client.tar.xz`` from the [releases](https://github.com/mozilla/DeepSpeech/releases). Note: the following command assumes you `downloaded the pre-trained model <#getting-the-pre-trained-model>`_. .. code-block:: bash - ./mozilla_voice_stt --model deepspeech-0.8.1-models.pbmm --scorer deepspeech-0.8.1-models.scorer --audio audio_input.wav + ./mozilla_voice_stt --model deepspeech-0.7.4-models.pbmm --scorer deepspeech-0.7.4-models.scorer --audio audio_input.wav See the help output with ``./mozilla_voice_stt -h`` for more details. diff --git a/doc/conf.py b/doc/conf.py index 2a62a07c..22857514 100644 --- a/doc/conf.py +++ b/doc/conf.py @@ -202,5 +202,5 @@ texinfo_documents = [ # Example configuration for intersphinx: refer to the Python standard library. intersphinx_mapping = {'https://docs.python.org/': None} -extlinks = {'github': ('https://github.com/mozilla/STT/blob/v{}/%s'.format(release), +extlinks = {'github': ('https://github.com/mozilla/DeepSpeech/blob/v{}/%s'.format(release), '%s')} diff --git a/doc/index.rst b/doc/index.rst index 5b76358f..b9657df1 100644 --- a/doc/index.rst +++ b/doc/index.rst @@ -20,19 +20,19 @@ To install and use Mozilla Voice STT all you have to do is: pip3 install mozilla_voice_stt # Download pre-trained English model files - curl -LO https://github.com/mozilla/STT/releases/download/v0.8.1/deepspeech-0.8.1-models.pbmm - curl -LO https://github.com/mozilla/STT/releases/download/v0.8.1/deepspeech-0.8.1-models.scorer + curl -LO https://github.com/mozilla/DeepSpeech/releases/download/v0.7.4/deepspeech-0.7.4-models.pbmm + curl -LO https://github.com/mozilla/DeepSpeech/releases/download/v0.7.4/deepspeech-0.7.4-models.scorer # Download example audio files - curl -LO https://github.com/mozilla/STT/releases/download/v0.8.1/audio-0.8.1.tar.gz - tar xvf audio-0.8.1.tar.gz + curl -LO https://github.com/mozilla/DeepSpeech/releases/download/v0.7.4/audio-0.7.4.tar.gz + tar xvf audio-0.7.4.tar.gz # Transcribe an audio file - mozilla_voice_stt --model deepspeech-0.8.1-models.pbmm --scorer deepspeech-0.8.1-models.scorer --audio audio/2830-3980-0043.wav + mozilla_voice_stt --model deepspeech-0.7.4-models.pbmm --scorer deepspeech-0.7.4-models.scorer --audio audio/2830-3980-0043.wav -A pre-trained English model is available for use and can be downloaded following the instructions in :ref:`the usage docs `. For the latest release, including pre-trained models and checkpoints, `see the GitHub releases page `_. +A pre-trained English model is available for use and can be downloaded following the instructions in :ref:`the usage docs `. For the latest release, including pre-trained models and checkpoints, `see the GitHub releases page `_. -Quicker inference can be performed using a supported NVIDIA GPU on Linux. See the `release notes `_ to find which GPUs are supported. To run ``mozilla_voice_stt`` on a GPU, install the GPU specific package: +Quicker inference can be performed using a supported NVIDIA GPU on Linux. See the `release notes `_ to find which GPUs are supported. To run ``mozilla_voice_stt`` on a GPU, install the GPU specific package: .. code-block:: bash @@ -44,7 +44,7 @@ Quicker inference can be performed using a supported NVIDIA GPU on Linux. See th pip3 install mozilla_voice_stt_cuda # Transcribe an audio file. - mozilla_voice_stt --model deepspeech-0.8.1-models.pbmm --scorer deepspeech-0.8.1-models.scorer --audio audio/2830-3980-0043.wav + mozilla_voice_stt --model deepspeech-0.7.4-models.pbmm --scorer deepspeech-0.7.4-models.scorer --audio audio/2830-3980-0043.wav Please ensure you have the required :ref:`CUDA dependencies `. diff --git a/native_client/dotnet/README.rst b/native_client/dotnet/README.rst index 5db9eb28..26db5b96 100644 --- a/native_client/dotnet/README.rst +++ b/native_client/dotnet/README.rst @@ -42,11 +42,11 @@ We highly recommend sticking to the recommended versions of CUDA/cuDNN in order Getting the code ---------------- -We need to clone ``mozilla/STT``. +We need to clone ``mozilla/DeepSpeech``. .. code-block:: bash - git clone https://github.com/mozilla/STT + git clone https://github.com/mozilla/DeepSpeech git submodule sync tensorflow/ git submodule update --init tensorflow/ @@ -142,4 +142,4 @@ Be patient, if you enabled AVX/AVX2 and CUDA it will take a long time. Finally y Using the generated library --------------------------- -As for now we can only use the generated ``libmozilla_voice_stt.so`` with the C# clients, go to `native_client/dotnet/ `_ in your Mozilla Voice STT directory and open the Visual Studio solution, then we need to build in debug or release mode, finally we just need to copy ``libmozilla_voice_stt.so`` to the generated ``x64/Debug`` or ``x64/Release`` directory. +As for now we can only use the generated ``libmozilla_voice_stt.so`` with the C# clients, go to `native_client/dotnet/ `_ in your Mozilla Voice STT directory and open the Visual Studio solution, then we need to build in debug or release mode, finally we just need to copy ``libmozilla_voice_stt.so`` to the generated ``x64/Debug`` or ``x64/Release`` directory. diff --git a/native_client/dotnet/nupkg/deepspeech.nuspec.in b/native_client/dotnet/nupkg/deepspeech.nuspec.in index 51925787..93a6f6ea 100644 --- a/native_client/dotnet/nupkg/deepspeech.nuspec.in +++ b/native_client/dotnet/nupkg/deepspeech.nuspec.in @@ -7,7 +7,7 @@ Mozilla Mozilla MPL-2.0 - http://github.com/mozilla/STT + http://github.com/mozilla/DeepSpeech false A library for running inference with a Mozilla Voice STT model Copyright (c) 2019 Mozilla Corporation diff --git a/native_client/java/README.md b/native_client/java/README.md index 8554ff50..89ebc594 100644 --- a/native_client/java/README.md +++ b/native_client/java/README.md @@ -1 +1 @@ -Full project description and documentation on GitHub: [https://github.com/mozilla/STT](https://github.com/mozilla/STT). +Full project description and documentation on GitHub: [https://github.com/mozilla/DeepSpeech](https://github.com/mozilla/DeepSpeech). diff --git a/native_client/java/libmozillavoicestt/build.gradle b/native_client/java/libmozillavoicestt/build.gradle index 02a71d68..2906d06e 100644 --- a/native_client/java/libmozillavoicestt/build.gradle +++ b/native_client/java/libmozillavoicestt/build.gradle @@ -83,7 +83,7 @@ uploadArchives { pom.project { description 'Speech recognition library' - url 'https://github.com/mozilla/STT' + url 'https://github.com/mozilla/DeepSpeech' licenses { license { @@ -102,9 +102,9 @@ uploadArchives { } scm { - connection 'https://github.com/mozilla/STT.git' - developerConnection 'https://github.com/mozilla/STT.git' - url 'https://github.com/mozilla/STT' + connection 'https://github.com/mozilla/DeepSpeech.git' + developerConnection 'https://github.com/mozilla/DeepSpeech.git' + url 'https://github.com/mozilla/DeepSpeech' } } diff --git a/native_client/javascript/package.json.in b/native_client/javascript/package.json.in index 47aa45b1..6e9599e5 100644 --- a/native_client/javascript/package.json.in +++ b/native_client/javascript/package.json.in @@ -9,7 +9,7 @@ }, "author" : "Mozilla", "license": "MPL-2.0", - "homepage": "https://github.com/mozilla/STT/tree/v$(PROJECT_VERSION)#project-deepspeech", + "homepage": "https://github.com/mozilla/DeepSpeech/tree/v$(PROJECT_VERSION)#project-deepspeech", "files": [ "README.md", "client.js", @@ -18,11 +18,11 @@ "lib/*" ], "bugs": { - "url": "https://github.com/mozilla/STT/issues" + "url": "https://github.com/mozilla/DeepSpeech/issues" }, "repository" : { "type" : "git", - "url" : "git://github.com/mozilla/STT.git" + "url" : "git://github.com/mozilla/DeepSpeech.git" }, "binary": { "module_name" : "deepspeech", diff --git a/native_client/python/setup.py b/native_client/python/setup.py index 72122f8b..e0f0ca13 100755 --- a/native_client/python/setup.py +++ b/native_client/python/setup.py @@ -75,12 +75,12 @@ def main(): package_dir={'mozilla_voice_stt': '.'}, cmdclass={'build': BuildExtFirst}, license='MPL-2.0', - url='https://github.com/mozilla/STT', + url='https://github.com/mozilla/DeepSpeech', project_urls={ - 'Documentation': 'https://github.com/mozilla/STT/tree/v{}#project-deepspeech'.format(project_version), - 'Tracker': 'https://github.com/mozilla/STT/issues', - 'Repository': 'https://github.com/mozilla/STT/tree/v{}'.format(project_version), - 'Discussions': 'https://discourse.mozilla.org/c/mozilla-voice-stt', + 'Documentation': 'https://github.com/mozilla/DeepSpeech/tree/v{}#project-deepspeech'.format(project_version), + 'Tracker': 'https://github.com/mozilla/DeepSpeech/issues', + 'Repository': 'https://github.com/mozilla/DeepSpeech/tree/v{}'.format(project_version), + 'Discussions': 'https://discourse.mozilla.org/c/deep-speech', }, ext_modules=[ds_ext], py_modules=['mozilla_voice_stt', 'mozilla_voice_stt.client', 'mozilla_voice_stt.impl'], diff --git a/native_client/swift/mozilla_voice_stt_test/SpeechRecognitionImpl.swift b/native_client/swift/mozilla_voice_stt_test/SpeechRecognitionImpl.swift index d583ec93..bd460745 100644 --- a/native_client/swift/mozilla_voice_stt_test/SpeechRecognitionImpl.swift +++ b/native_client/swift/mozilla_voice_stt_test/SpeechRecognitionImpl.swift @@ -26,8 +26,8 @@ class SpeechRecognitionImpl : NSObject, AVCaptureAudioDataOutputSampleBufferDele private var audioData = Data() override init() { - let modelPath = Bundle.main.path(forResource: "deepspeech-0.8.1-models", ofType: "tflite")! - let scorerPath = Bundle.main.path(forResource: "deepspeech-0.8.1-models", ofType: "scorer")! + let modelPath = Bundle.main.path(forResource: "deepspeech-0.7.4-models", ofType: "tflite")! + let scorerPath = Bundle.main.path(forResource: "deepspeech-0.7.4-models", ofType: "scorer")! model = try! MozillaVoiceSttModel(modelPath: modelPath) try! model.enableExternalScorer(scorerPath: scorerPath) diff --git a/native_client/tflitemodelstate.cc b/native_client/tflitemodelstate.cc index 4daeffd0..9d8d9ddb 100644 --- a/native_client/tflitemodelstate.cc +++ b/native_client/tflitemodelstate.cc @@ -255,7 +255,7 @@ TFLiteModelState::init(const char* model_path) std::cerr << "Specified model file version (" << *graph_version << ") is " << "incompatible with minimum version supported by this client (" << ds_graph_version() << "). See " - << "https://github.com/mozilla/STT/blob/" + << "https://github.com/mozilla/DeepSpeech/blob/" << ds_git_version() << "/doc/USING.rst#model-compatibility " << "for more information" << std::endl; return STT_ERR_MODEL_INCOMPATIBLE; diff --git a/native_client/tfmodelstate.cc b/native_client/tfmodelstate.cc index 53f3fc32..0d785986 100644 --- a/native_client/tfmodelstate.cc +++ b/native_client/tfmodelstate.cc @@ -91,7 +91,7 @@ TFModelState::init(const char* model_path) std::cerr << "Specified model file version (" << graph_version << ") is " << "incompatible with minimum version supported by this client (" << ds_graph_version() << "). See " - << "https://github.com/mozilla/STT/blob/" + << "https://github.com/mozilla/DeepSpeech/blob/" << ds_git_version() << "/doc/USING.rst#model-compatibility " << "for more information" << std::endl; return STT_ERR_MODEL_INCOMPATIBLE; diff --git a/setup.py b/setup.py index 36b0b3a7..0551c751 100644 --- a/setup.py +++ b/setup.py @@ -99,7 +99,7 @@ def main(): name='mozilla_voice_stt_training', version=version, description='Training code for mozilla DeepSpeech', - url='https://github.com/mozilla/STT', + url='https://github.com/mozilla/DeepSpeech', author='Mozilla', license='MPL-2.0', # Classifiers help users find your project by categorizing it. diff --git a/taskcluster/android-arm64-cpu-opt.yml b/taskcluster/android-arm64-cpu-opt.yml index a541a1be..69e513e1 100644 --- a/taskcluster/android-arm64-cpu-opt.yml +++ b/taskcluster/android-arm64-cpu-opt.yml @@ -17,5 +17,5 @@ build: nc_asset_name: "native_client.arm64.cpu.android.tar.xz" workerType: "${docker.dsBuild}" metadata: - name: "Mozilla Voice STT Android ARM64" - description: "Building Mozilla Voice STT for Android ARM64, optimized version" + name: "DeepSpeech Android ARM64" + description: "Building DeepSpeech for Android ARM64, optimized version" diff --git a/taskcluster/android-armv7-cpu-opt.yml b/taskcluster/android-armv7-cpu-opt.yml index 801a4e9b..11c7901f 100644 --- a/taskcluster/android-armv7-cpu-opt.yml +++ b/taskcluster/android-armv7-cpu-opt.yml @@ -16,5 +16,5 @@ build: nc_asset_name: "native_client.armv7.cpu.android.tar.xz" workerType: "${docker.dsBuild}" metadata: - name: "Mozilla Voice STT Android ARMv7" - description: "Building Mozilla Voice STT for Android ARMv7, optimized version" + name: "DeepSpeech Android ARMv7" + description: "Building DeepSpeech for Android ARMv7, optimized version" diff --git a/taskcluster/android-java-opt.yml b/taskcluster/android-java-opt.yml index b757d0ef..2b3d9cc3 100644 --- a/taskcluster/android-java-opt.yml +++ b/taskcluster/android-java-opt.yml @@ -27,5 +27,5 @@ build: nc_asset_name: "native_client.apk.cpu.android.tar.xz" workerType: "${docker.dsBuild}" metadata: - name: "Mozilla Voice STT Android APK (ARM64+ARMv7+x86_64)" - description: "Building Mozilla Voice STT for Android APK (ARM64+ARMv7+x86_64), optimized version" + name: "DeepSpeech Android APK (ARM64+ARMv7+x86_64)" + description: "Building DeepSpeech for Android APK (ARM64+ARMv7+x86_64), optimized version" diff --git a/taskcluster/android-x86_64-cpu-opt.yml b/taskcluster/android-x86_64-cpu-opt.yml index f691c4ff..a196b02e 100644 --- a/taskcluster/android-x86_64-cpu-opt.yml +++ b/taskcluster/android-x86_64-cpu-opt.yml @@ -16,5 +16,5 @@ build: nc_asset_name: "native_client.x86_64.cpu.android.tar.xz" workerType: "${docker.dsBuild}" metadata: - name: "Mozilla Voice STT Android x86_64" - description: "Building Mozilla Voice STT for Android x86_64, optimized version" + name: "DeepSpeech Android x86_64" + description: "Building DeepSpeech for Android x86_64, optimized version" diff --git a/taskcluster/darwin-amd64-cpu-opt.yml b/taskcluster/darwin-amd64-cpu-opt.yml index 0a9115e4..2b894c4a 100644 --- a/taskcluster/darwin-amd64-cpu-opt.yml +++ b/taskcluster/darwin-amd64-cpu-opt.yml @@ -17,5 +17,5 @@ build: nc_asset_name: "native_client.amd64.cpu.osx.tar.xz" maxRunTime: 14400 metadata: - name: "Mozilla Voice STT OSX AMD64 CPU" - description: "Building Mozilla Voice STT for OSX AMD64, CPU only, optimized version" + name: "DeepSpeech OSX AMD64 CPU" + description: "Building DeepSpeech for OSX AMD64, CPU only, optimized version" diff --git a/taskcluster/darwin-amd64-ctc-opt.yml b/taskcluster/darwin-amd64-ctc-opt.yml index ea5a6c21..faf981ab 100644 --- a/taskcluster/darwin-amd64-ctc-opt.yml +++ b/taskcluster/darwin-amd64-ctc-opt.yml @@ -16,5 +16,5 @@ build: build: 'taskcluster/decoder-build.sh' package: 'taskcluster/decoder-package.sh' metadata: - name: "Mozilla Voice STT CTC Decoder OSX AMD64 CPU" - description: "Building Mozilla Voice STT CTC Decoder for OSX AMD64, CPU only, optimized version" + name: "DeepSpeech CTC Decoder OSX AMD64 CPU" + description: "Building DeepSpeech CTC Decoder for OSX AMD64, CPU only, optimized version" diff --git a/taskcluster/darwin-amd64-tflite-opt.yml b/taskcluster/darwin-amd64-tflite-opt.yml index 5fc23734..031159ca 100644 --- a/taskcluster/darwin-amd64-tflite-opt.yml +++ b/taskcluster/darwin-amd64-tflite-opt.yml @@ -17,5 +17,5 @@ build: nc_asset_name: "native_client.amd64.tflite.osx.tar.xz" maxRunTime: 14400 metadata: - name: "Mozilla Voice STT OSX AMD64 TFLite" - description: "Building Mozilla Voice STT for OSX AMD64, TFLite, optimized version" + name: "DeepSpeech OSX AMD64 TFLite" + description: "Building DeepSpeech for OSX AMD64, TFLite, optimized version" diff --git a/taskcluster/docker-image-build.yml b/taskcluster/docker-image-build.yml index 88f3c034..03a1c71a 100644 --- a/taskcluster/docker-image-build.yml +++ b/taskcluster/docker-image-build.yml @@ -3,5 +3,5 @@ build: dockerfile: "Dockerfile.build" workerType: "${docker.tfBuild}" metadata: - name: "Mozilla Voice STT Docker build" - description: "Testing |docker build| of Mozilla Voice STT build image" + name: "DeepSpeech Docker build" + description: "Testing |docker build| of DeepSpeech build image" diff --git a/taskcluster/docker-image-train.yml b/taskcluster/docker-image-train.yml index b6477a96..4dee6efe 100644 --- a/taskcluster/docker-image-train.yml +++ b/taskcluster/docker-image-train.yml @@ -3,5 +3,5 @@ build: dockerfile: "Dockerfile.train" workerType: "${docker.tfBuild}" metadata: - name: "Mozilla Voice STT Docker train" - description: "Testing |docker build| of Mozilla Voice STT train image" + name: "DeepSpeech Docker train" + description: "Testing |docker build| of DeepSpeech train image" diff --git a/taskcluster/docs.yml b/taskcluster/docs.yml index 0c5cc76b..e51eb88e 100644 --- a/taskcluster/docs.yml +++ b/taskcluster/docs.yml @@ -13,5 +13,5 @@ build: package: "taskcluster/docs-package.sh" workerType: "${docker.smallTask}" metadata: - name: "Mozilla Voice STT API Documentation" - description: "Building Mozilla Voice STT API Documentation" + name: "DeepSpeech API Documentation" + description: "Building DeepSpeech API Documentation" diff --git a/taskcluster/examples-base.tyml b/taskcluster/examples-base.tyml index 582cfacd..0282fc80 100644 --- a/taskcluster/examples-base.tyml +++ b/taskcluster/examples-base.tyml @@ -23,7 +23,7 @@ then: env: DEEPSPEECH_MODEL: "https://github.com/reuben/DeepSpeech/releases/download/v0.8.0/models_0.8.tar.gz" - DEEPSPEECH_AUDIO: "https://github.com/mozilla/STT/releases/download/v0.8.1/audio-0.8.1.tar.gz" + DEEPSPEECH_AUDIO: "https://github.com/mozilla/DeepSpeech/releases/download/v0.4.1/audio-0.4.1.tar.gz" PIP_DEFAULT_TIMEOUT: "60" EXAMPLES_CLONE_URL: "https://github.com/mozilla/STT-examples" EXAMPLES_CHECKOUT_TARGET: "master" diff --git a/taskcluster/examples-electronjs.yml b/taskcluster/examples-electronjs.yml index 0cfd0a96..c3a42570 100644 --- a/taskcluster/examples-electronjs.yml +++ b/taskcluster/examples-electronjs.yml @@ -10,5 +10,5 @@ build: tests_cmdline: "${system.homedir.linux}/DeepSpeech/examples/electron/test.sh" workerType: "${docker.dsTests}" metadata: - name: "Mozilla Voice STT examples: ElectronJS/React on NodeJS v12.x" - description: "Mozilla Voice STT examples: ElectronJS/React on NodeJS v12.x" + name: "DeepSpeech examples: ElectronJS/React on NodeJS v12.x" + description: "DeepSpeech examples: ElectronJS/React on NodeJS v12.x" diff --git a/taskcluster/examples-ffmpeg_vad_streaming-node10.yml b/taskcluster/examples-ffmpeg_vad_streaming-node10.yml index 18b985b9..6b00c1d5 100644 --- a/taskcluster/examples-ffmpeg_vad_streaming-node10.yml +++ b/taskcluster/examples-ffmpeg_vad_streaming-node10.yml @@ -10,5 +10,5 @@ build: tests_cmdline: "${system.homedir.linux}/DeepSpeech/examples/ffmpeg_vad_streaming/test.sh" workerType: "${docker.dsTests}" metadata: - name: "Mozilla Voice STT examples: ffmpeg VAD Streaming NodeJS v10.x" - description: "Mozilla Voice STT examples: ffmpeg VAD Streaming NodeJS v10.x" + name: "DeepSpeech examples: ffmpeg VAD Streaming NodeJS v10.x" + description: "DeepSpeech examples: ffmpeg VAD Streaming NodeJS v10.x" diff --git a/taskcluster/examples-ffmpeg_vad_streaming-node12.yml b/taskcluster/examples-ffmpeg_vad_streaming-node12.yml index 11240207..24e81f34 100644 --- a/taskcluster/examples-ffmpeg_vad_streaming-node12.yml +++ b/taskcluster/examples-ffmpeg_vad_streaming-node12.yml @@ -10,5 +10,5 @@ build: tests_cmdline: "${system.homedir.linux}/DeepSpeech/examples/ffmpeg_vad_streaming/test.sh" workerType: "${docker.dsTests}" metadata: - name: "Mozilla Voice STT examples: ffmpeg VAD Streaming NodeJS v12.x" - description: "Mozilla Voice STT examples: ffmpeg VAD Streaming NodeJS v12.x" + name: "DeepSpeech examples: ffmpeg VAD Streaming NodeJS v12.x" + description: "DeepSpeech examples: ffmpeg VAD Streaming NodeJS v12.x" diff --git a/taskcluster/examples-mic_vad_streaming-py36.yml b/taskcluster/examples-mic_vad_streaming-py36.yml index 05638210..98e825a9 100644 --- a/taskcluster/examples-mic_vad_streaming-py36.yml +++ b/taskcluster/examples-mic_vad_streaming-py36.yml @@ -10,5 +10,5 @@ build: tests_cmdline: "${system.homedir.linux}/DeepSpeech/examples/mic_vad_streaming/test.sh 3.6.0:m" workerType: "${docker.dsTests}" metadata: - name: "Mozilla Voice STT examples: mic VAD streaming Py3.6" - description: "Mozilla Voice STT examples: mic VAD streaming Python 3.6" + name: "DeepSpeech examples: mic VAD streaming Py3.6" + description: "DeepSpeech examples: mic VAD streaming Python 3.6" diff --git a/taskcluster/examples-mic_vad_streaming-py37.yml b/taskcluster/examples-mic_vad_streaming-py37.yml index 8bb0c8fd..59773509 100644 --- a/taskcluster/examples-mic_vad_streaming-py37.yml +++ b/taskcluster/examples-mic_vad_streaming-py37.yml @@ -10,5 +10,5 @@ build: tests_cmdline: "${system.homedir.linux}/DeepSpeech/examples/mic_vad_streaming/test.sh 3.7.0:m" workerType: "${docker.dsTests}" metadata: - name: "Mozilla Voice STT examples: mic VAD streaming Py3.7" - description: "Mozilla Voice STT examples: mic VAD streaming Python 3.7" + name: "DeepSpeech examples: mic VAD streaming Py3.7" + description: "DeepSpeech examples: mic VAD streaming Python 3.7" diff --git a/taskcluster/examples-nodejs_wav-node10.yml b/taskcluster/examples-nodejs_wav-node10.yml index 3a2983bd..36c8a3cc 100644 --- a/taskcluster/examples-nodejs_wav-node10.yml +++ b/taskcluster/examples-nodejs_wav-node10.yml @@ -7,5 +7,5 @@ build: tests_cmdline: "${system.homedir.linux}/DeepSpeech/examples/nodejs_wav/test.sh" workerType: "${docker.dsTests}" metadata: - name: "Mozilla Voice STT examples: NodeJS WAV NodeJS v10.x" - description: "Mozilla Voice STT examples: NodeJS WAV NodeJS v10.x" + name: "DeepSpeech examples: NodeJS WAV NodeJS v10.x" + description: "DeepSpeech examples: NodeJS WAV NodeJS v10.x" diff --git a/taskcluster/examples-nodejs_wav-node12.yml b/taskcluster/examples-nodejs_wav-node12.yml index 4ed666d5..2ec849f0 100644 --- a/taskcluster/examples-nodejs_wav-node12.yml +++ b/taskcluster/examples-nodejs_wav-node12.yml @@ -7,5 +7,5 @@ build: tests_cmdline: "${system.homedir.linux}/DeepSpeech/examples/nodejs_wav/test.sh" workerType: "${docker.dsTests}" metadata: - name: "Mozilla Voice STT examples: NodeJS WAV NodeJS v12.x" - description: "Mozilla Voice STT examples: NodeJS WAV NodeJS v12.x" + name: "DeepSpeech examples: NodeJS WAV NodeJS v12.x" + description: "DeepSpeech examples: NodeJS WAV NodeJS v12.x" diff --git a/taskcluster/examples-vad_transcriber-py35.yml b/taskcluster/examples-vad_transcriber-py35.yml index d79ccd12..ebf891af 100644 --- a/taskcluster/examples-vad_transcriber-py35.yml +++ b/taskcluster/examples-vad_transcriber-py35.yml @@ -7,5 +7,5 @@ build: tests_cmdline: "${system.homedir.linux}/DeepSpeech/examples/vad_transcriber/test.sh 3.5.0:m" workerType: "${docker.dsTests}" metadata: - name: "Mozilla Voice STT examples: VAD transcriber Py3.5" - description: "Mozilla Voice STT examples: VAD transcriberaming Python 3.5" + name: "DeepSpeech examples: VAD transcriber Py3.5" + description: "DeepSpeech examples: VAD transcriberaming Python 3.5" diff --git a/taskcluster/examples-vad_transcriber-py36.yml b/taskcluster/examples-vad_transcriber-py36.yml index f72b13ae..a7cdfd48 100644 --- a/taskcluster/examples-vad_transcriber-py36.yml +++ b/taskcluster/examples-vad_transcriber-py36.yml @@ -7,5 +7,5 @@ build: tests_cmdline: "${system.homedir.linux}/DeepSpeech/examples/vad_transcriber/test.sh 3.6.0:m" workerType: "${docker.dsTests}" metadata: - name: "Mozilla Voice STT examples: VAD transcriber Py3.6" - description: "Mozilla Voice STT examples: VAD transcriberaming Python 3.6" + name: "DeepSpeech examples: VAD transcriber Py3.6" + description: "DeepSpeech examples: VAD transcriberaming Python 3.6" diff --git a/taskcluster/examples-vad_transcriber-py37.yml b/taskcluster/examples-vad_transcriber-py37.yml index f368310a..c5c4eeca 100644 --- a/taskcluster/examples-vad_transcriber-py37.yml +++ b/taskcluster/examples-vad_transcriber-py37.yml @@ -7,5 +7,5 @@ build: tests_cmdline: "${system.homedir.linux}/DeepSpeech/examples/vad_transcriber/test.sh 3.7.0:m" workerType: "${docker.dsTests}" metadata: - name: "Mozilla Voice STT examples: VAD transcriber Py3.7" - description: "Mozilla Voice STT examples: VAD transcriberaming Python 3.7" + name: "DeepSpeech examples: VAD transcriber Py3.7" + description: "DeepSpeech examples: VAD transcriberaming Python 3.7" diff --git a/taskcluster/examples-vad_transcriber-py38.yml b/taskcluster/examples-vad_transcriber-py38.yml index ee87b146..5542ef43 100644 --- a/taskcluster/examples-vad_transcriber-py38.yml +++ b/taskcluster/examples-vad_transcriber-py38.yml @@ -7,5 +7,5 @@ build: tests_cmdline: "${system.homedir.linux}/DeepSpeech/examples/vad_transcriber/test.sh 3.8.0:" workerType: "${docker.dsTests}" metadata: - name: "Mozilla Voice STT examples: VAD transcriber Py3.8" - description: "Mozilla Voice STT examples: VAD transcriberaming Python 3.8" + name: "DeepSpeech examples: VAD transcriber Py3.8" + description: "DeepSpeech examples: VAD transcriberaming Python 3.8" diff --git a/taskcluster/ios-arm64-tflite-opt.yml b/taskcluster/ios-arm64-tflite-opt.yml index f127b1e0..98dd581c 100644 --- a/taskcluster/ios-arm64-tflite-opt.yml +++ b/taskcluster/ios-arm64-tflite-opt.yml @@ -17,5 +17,5 @@ build: nc_asset_name: "native_client.arm64.tflite.ios.tar.xz" maxRunTime: 14400 metadata: - name: "Mozilla Voice STT iOS ARM64 TFLite" - description: "Building Mozilla Voice STT for iOS ARM64, TFLite, optimized version" + name: "DeepSpeech iOS ARM64 TFLite" + description: "Building DeepSpeech for iOS ARM64, TFLite, optimized version" diff --git a/taskcluster/ios-x86_64-tflite-opt.yml b/taskcluster/ios-x86_64-tflite-opt.yml index 71d0065a..5809e1a1 100644 --- a/taskcluster/ios-x86_64-tflite-opt.yml +++ b/taskcluster/ios-x86_64-tflite-opt.yml @@ -17,5 +17,5 @@ build: nc_asset_name: "native_client.x86_64.tflite.ios.tar.xz" maxRunTime: 14400 metadata: - name: "Mozilla Voice STT iOS x86_64 TFLite" - description: "Building Mozilla Voice STT for iOS x86_64, TFLite, optimized version" + name: "DeepSpeech iOS x86_64 TFLite" + description: "Building DeepSpeech for iOS x86_64, TFLite, optimized version" diff --git a/taskcluster/linux-amd64-cpu-opt.yml b/taskcluster/linux-amd64-cpu-opt.yml index 3c17eeb8..ac77ea80 100644 --- a/taskcluster/linux-amd64-cpu-opt.yml +++ b/taskcluster/linux-amd64-cpu-opt.yml @@ -21,5 +21,5 @@ build: nc_asset_name: "native_client.amd64.cpu.linux.tar.xz" workerType: "${docker.dsBuild}" metadata: - name: "Mozilla Voice STT Linux AMD64 CPU" - description: "Building Mozilla Voice STT for Linux/AMD64, CPU only, optimized version" + name: "DeepSpeech Linux AMD64 CPU" + description: "Building DeepSpeech for Linux/AMD64, CPU only, optimized version" diff --git a/taskcluster/linux-amd64-ctc-opt.yml b/taskcluster/linux-amd64-ctc-opt.yml index cfebf204..3b518b87 100644 --- a/taskcluster/linux-amd64-ctc-opt.yml +++ b/taskcluster/linux-amd64-ctc-opt.yml @@ -20,5 +20,5 @@ build: package: 'taskcluster/decoder-package.sh' workerType: "${docker.dsBuild}" metadata: - name: "Mozilla Voice STT CTC Decoder Linux AMD64 CPU" - description: "Building Mozilla Voice STT CTC Decoder for Linux/AMD64, CPU only, optimized version" + name: "DeepSpeech CTC Decoder Linux AMD64 CPU" + description: "Building DeepSpeech CTC Decoder for Linux/AMD64, CPU only, optimized version" diff --git a/taskcluster/linux-amd64-gpu-opt.yml b/taskcluster/linux-amd64-gpu-opt.yml index 114591c1..d301cf46 100644 --- a/taskcluster/linux-amd64-gpu-opt.yml +++ b/taskcluster/linux-amd64-gpu-opt.yml @@ -22,5 +22,5 @@ build: nc_asset_name: "native_client.amd64.cuda.linux.tar.xz" workerType: "${docker.dsBuild}" metadata: - name: "Mozilla Voice STT Linux AMD64 CUDA" - description: "Building Mozilla Voice STT for Linux/AMD64, CUDA-enabled, optimized version" + name: "DeepSpeech Linux AMD64 CUDA" + description: "Building DeepSpeech for Linux/AMD64, CUDA-enabled, optimized version" diff --git a/taskcluster/linux-amd64-tflite-opt.yml b/taskcluster/linux-amd64-tflite-opt.yml index 043b5136..9b83788e 100644 --- a/taskcluster/linux-amd64-tflite-opt.yml +++ b/taskcluster/linux-amd64-tflite-opt.yml @@ -21,5 +21,5 @@ build: nc_asset_name: "native_client.amd64.tflite.linux.tar.xz" workerType: "${docker.dsBuild}" metadata: - name: "Mozilla Voice STT Linux AMD64 TFLite" - description: "Building Mozilla Voice STT for Linux/AMD64, TFLite, optimized version" + name: "DeepSpeech Linux AMD64 TFLite" + description: "Building DeepSpeech for Linux/AMD64, TFLite, optimized version" diff --git a/taskcluster/linux-arm64-cpu-opt.yml b/taskcluster/linux-arm64-cpu-opt.yml index ba640c7c..5eb88618 100644 --- a/taskcluster/linux-arm64-cpu-opt.yml +++ b/taskcluster/linux-arm64-cpu-opt.yml @@ -28,5 +28,5 @@ build: nc_asset_name: "native_client.arm64.cpu.linux.tar.xz" workerType: "${docker.dsBuild}" metadata: - name: "Mozilla Voice STT Linux ARM64 Cortex-A53 CPU" - description: "Building Mozilla Voice STT for Linux ARM64 Cortex-A53, CPU only, optimized version" + name: "DeepSpeech Linux ARM64 Cortex-A53 CPU" + description: "Building DeepSpeech for Linux ARM64 Cortex-A53, CPU only, optimized version" diff --git a/taskcluster/linux-rpi3-cpu-opt.yml b/taskcluster/linux-rpi3-cpu-opt.yml index e0513d86..dbf19c6c 100644 --- a/taskcluster/linux-rpi3-cpu-opt.yml +++ b/taskcluster/linux-rpi3-cpu-opt.yml @@ -28,5 +28,5 @@ build: workerType: "${docker.dsBuild}" nc_asset_name: "native_client.rpi3.cpu.linux.tar.xz" metadata: - name: "Mozilla Voice STT Linux RPi3/ARMv7 CPU" - description: "Building Mozilla Voice STT for Linux RPi3 ARMv7, CPU only, optimized version" + name: "DeepSpeech Linux RPi3/ARMv7 CPU" + description: "Building DeepSpeech for Linux RPi3 ARMv7, CPU only, optimized version" diff --git a/taskcluster/node-package-cpu.yml b/taskcluster/node-package-cpu.yml index f9cb1cb4..bcb838c4 100644 --- a/taskcluster/node-package-cpu.yml +++ b/taskcluster/node-package-cpu.yml @@ -15,5 +15,5 @@ build: package: "taskcluster/node-package.sh" workerType: "${docker.smallTask}" metadata: - name: "Mozilla Voice STT NodeJS CPU package" - description: "Packaging Mozilla Voice STT CPU for registry" + name: "DeepSpeech NodeJS CPU package" + description: "Packaging DeepSpeech CPU for registry" diff --git a/taskcluster/node-package-gpu.yml b/taskcluster/node-package-gpu.yml index 1f26a968..26c65b5e 100644 --- a/taskcluster/node-package-gpu.yml +++ b/taskcluster/node-package-gpu.yml @@ -12,5 +12,5 @@ build: package: "taskcluster/node-package.sh" workerType: "${docker.smallTask}" metadata: - name: "Mozilla Voice STT NodeJS GPU package" - description: "Packaging Mozilla Voice STT GPU for registry" + name: "DeepSpeech NodeJS GPU package" + description: "Packaging DeepSpeech GPU for registry" diff --git a/taskcluster/node-package-tflite.yml b/taskcluster/node-package-tflite.yml index 1f920057..4cad0f88 100644 --- a/taskcluster/node-package-tflite.yml +++ b/taskcluster/node-package-tflite.yml @@ -13,5 +13,5 @@ build: package: "taskcluster/node-package.sh" workerType: "${docker.smallTask}" metadata: - name: "Mozilla Voice STT NodeJS TFLite package" - description: "Packaging Mozilla Voice STT TFLite for registry" + name: "DeepSpeech NodeJS TFLite package" + description: "Packaging DeepSpeech TFLite for registry" diff --git a/taskcluster/scriptworker-task-github.yml b/taskcluster/scriptworker-task-github.yml index b81426ba..74388b52 100644 --- a/taskcluster/scriptworker-task-github.yml +++ b/taskcluster/scriptworker-task-github.yml @@ -74,5 +74,5 @@ build: - "ios-x86_64-tflite-opt" - "ios-arm64-tflite-opt" metadata: - name: "Mozilla Voice STT GitHub Packages" - description: "Trigger Uploading of Mozilla Voice STT Packages to GitHub release page" + name: "DeepSpeech GitHub Packages" + description: "Trigger Uploading of DeepSpeech Packages to GitHub release page" diff --git a/taskcluster/scriptworker-task-jcenter.yml b/taskcluster/scriptworker-task-jcenter.yml index 6af462b4..d66d08a1 100644 --- a/taskcluster/scriptworker-task-jcenter.yml +++ b/taskcluster/scriptworker-task-jcenter.yml @@ -16,5 +16,5 @@ build: - "android-java-opt" nuget: [] metadata: - name: "Mozilla Voice STT Android lib Packages" - description: "Trigger Uploading of Mozilla Voice STT Android lib to JCenter registry" + name: "DeepSpeech Android lib Packages" + description: "Trigger Uploading of DeepSpeech Android lib to JCenter registry" diff --git a/taskcluster/scriptworker-task-npm.yml b/taskcluster/scriptworker-task-npm.yml index b063e200..89f414d4 100644 --- a/taskcluster/scriptworker-task-npm.yml +++ b/taskcluster/scriptworker-task-npm.yml @@ -23,5 +23,5 @@ build: - "node-package-tflite" nuget: [] metadata: - name: "Mozilla Voice STT NPM Packages" - description: "Trigger Uploading of Mozilla Voice STT Packages to NPM registry" + name: "DeepSpeech NPM Packages" + description: "Trigger Uploading of DeepSpeech Packages to NPM registry" diff --git a/taskcluster/scriptworker-task-nuget.yml b/taskcluster/scriptworker-task-nuget.yml index 8b7675d8..0720067c 100644 --- a/taskcluster/scriptworker-task-nuget.yml +++ b/taskcluster/scriptworker-task-nuget.yml @@ -20,5 +20,5 @@ build: - "win-amd64-gpu-opt" - "win-amd64-tflite-opt" metadata: - name: "Mozilla Voice STT NuGet Packages" - description: "Trigger Uploading of Mozilla Voice STT .Net Framework bindings to NuGet" + name: "DeepSpeech NuGet Packages" + description: "Trigger Uploading of DeepSpeech .Net Framework bindings to NuGet" diff --git a/taskcluster/scriptworker-task-pypi.yml b/taskcluster/scriptworker-task-pypi.yml index 021c65af..988384c5 100644 --- a/taskcluster/scriptworker-task-pypi.yml +++ b/taskcluster/scriptworker-task-pypi.yml @@ -40,5 +40,5 @@ build: # - "linux-arm64-cpu-opt" Aarch64 packages are refused by upload.pypi.org nuget: [] metadata: - name: "Mozilla Voice STT PyPi Packages" - description: "Trigger Uploading of Mozilla Voice STT Packages to PyPi" + name: "DeepSpeech PyPi Packages" + description: "Trigger Uploading of DeepSpeech Packages to PyPi" diff --git a/taskcluster/scriptworker-task-readthedocs.yml b/taskcluster/scriptworker-task-readthedocs.yml index d7ca04ba..db9cd772 100644 --- a/taskcluster/scriptworker-task-readthedocs.yml +++ b/taskcluster/scriptworker-task-readthedocs.yml @@ -15,5 +15,5 @@ build: javascript: [] nuget: [] metadata: - name: "Mozilla Voice STT ReadTheDocs build & version update" + name: "DeepSpeech ReadTheDocs build & version update" description: "Trigger building of new version on ReadTheDocs and update default version" diff --git a/taskcluster/test-apk-android-24-x86_64-opt.yml b/taskcluster/test-apk-android-24-x86_64-opt.yml index f839d40f..a682e960 100644 --- a/taskcluster/test-apk-android-24-x86_64-opt.yml +++ b/taskcluster/test-apk-android-24-x86_64-opt.yml @@ -20,5 +20,5 @@ build: tests_cmdline: "${system.homedir.linux}/DeepSpeech/ds/taskcluster/tc-android-apk-tests.sh x86_64 android-24 16k" workerType: "${docker.dsHighMemTests}" metadata: - name: "Mozilla Voice STT Android 7.0 x86_64 Google Pixel APK/Java tests" - description: "Testing Mozilla Voice STT APK/Java for Android 7.0 x86_64 Google Pixel, optimized version" + name: "DeepSpeech Android 7.0 x86_64 Google Pixel APK/Java tests" + description: "Testing DeepSpeech APK/Java for Android 7.0 x86_64 Google Pixel, optimized version" diff --git a/taskcluster/test-apk-android-25-x86_64-opt.yml b/taskcluster/test-apk-android-25-x86_64-opt.yml index 32b4e4da..56132961 100644 --- a/taskcluster/test-apk-android-25-x86_64-opt.yml +++ b/taskcluster/test-apk-android-25-x86_64-opt.yml @@ -20,5 +20,5 @@ build: tests_cmdline: "${system.homedir.linux}/DeepSpeech/ds/taskcluster/tc-android-apk-tests.sh x86_64 android-25 16k" workerType: "${docker.dsHighMemTests}" metadata: - name: "Mozilla Voice STT Android 7.1 x86_64 Google Pixel APK/Java tests" - description: "Testing Mozilla Voice STT APK/Java for Android 7.1 x86_64 Google Pixel, optimized version" + name: "DeepSpeech Android 7.1 x86_64 Google Pixel APK/Java tests" + description: "Testing DeepSpeech APK/Java for Android 7.1 x86_64 Google Pixel, optimized version" diff --git a/taskcluster/test-apk-android-26-x86_64-opt.yml b/taskcluster/test-apk-android-26-x86_64-opt.yml index ae90c482..62f33cf8 100644 --- a/taskcluster/test-apk-android-26-x86_64-opt.yml +++ b/taskcluster/test-apk-android-26-x86_64-opt.yml @@ -20,5 +20,5 @@ build: tests_cmdline: "${system.homedir.linux}/DeepSpeech/ds/taskcluster/tc-android-apk-tests.sh x86_64 android-26" workerType: "${docker.dsHighMemTests}" metadata: - name: "Mozilla Voice STT Android 8.0 x86_64 Google Pixel APK/Java tests" - description: "Testing Mozilla Voice STT APK/Java for Android 8.0 x86_64 Google Pixel, optimized version" + name: "DeepSpeech Android 8.0 x86_64 Google Pixel APK/Java tests" + description: "Testing DeepSpeech APK/Java for Android 8.0 x86_64 Google Pixel, optimized version" diff --git a/taskcluster/test-apk-android-28-x86_64-opt.yml b/taskcluster/test-apk-android-28-x86_64-opt.yml index 8bdd9f66..e1d790f7 100644 --- a/taskcluster/test-apk-android-28-x86_64-opt.yml +++ b/taskcluster/test-apk-android-28-x86_64-opt.yml @@ -20,5 +20,5 @@ build: tests_cmdline: "${system.homedir.linux}/DeepSpeech/ds/taskcluster/tc-android-apk-tests.sh x86_64 android-28" workerType: "${docker.dsHighMemTests}" metadata: - name: "Mozilla Voice STT Android 9.0 x86_64 Google Pixel APK/Java tests" - description: "Testing Mozilla Voice STT APK/Java for Android 9.0 x86_64 Google Pixel, optimized version" + name: "DeepSpeech Android 9.0 x86_64 Google Pixel APK/Java tests" + description: "Testing DeepSpeech APK/Java for Android 9.0 x86_64 Google Pixel, optimized version" diff --git a/taskcluster/test-apk-android-29-x86_64-opt.yml b/taskcluster/test-apk-android-29-x86_64-opt.yml index 67e14255..efabecec 100644 --- a/taskcluster/test-apk-android-29-x86_64-opt.yml +++ b/taskcluster/test-apk-android-29-x86_64-opt.yml @@ -20,5 +20,5 @@ build: tests_cmdline: "${system.homedir.linux}/DeepSpeech/ds/taskcluster/tc-android-apk-tests.sh x86_64 android-29" workerType: "${docker.dsHighMemTests}" metadata: - name: "Mozilla Voice STT Android 10.0 x86_64 Google Pixel APK/Java tests" - description: "Testing Mozilla Voice STT APK/Java for Android 10.0 x86_64 Google Pixel, optimized version" + name: "DeepSpeech Android 10.0 x86_64 Google Pixel APK/Java tests" + description: "Testing DeepSpeech APK/Java for Android 10.0 x86_64 Google Pixel, optimized version" diff --git a/taskcluster/test-apk-android-30-x86_64-opt.yml b/taskcluster/test-apk-android-30-x86_64-opt.yml index 3838acfe..12fed734 100644 --- a/taskcluster/test-apk-android-30-x86_64-opt.yml +++ b/taskcluster/test-apk-android-30-x86_64-opt.yml @@ -20,5 +20,5 @@ build: tests_cmdline: "${system.homedir.linux}/DeepSpeech/ds/taskcluster/tc-android-apk-tests.sh x86_64 android-30" workerType: "${docker.dsHighMemTests}" metadata: - name: "Mozilla Voice STT Android 11.0 x86_64 Google Pixel APK/Java tests" - description: "Testing Mozilla Voice STT APK/Java for Android 11.0 x86_64 Google Pixel, optimized version" + name: "DeepSpeech Android 11.0 x86_64 Google Pixel APK/Java tests" + description: "Testing DeepSpeech APK/Java for Android 11.0 x86_64 Google Pixel, optimized version" diff --git a/taskcluster/test-augmentations-linux-amd64-py36m-opt.yml b/taskcluster/test-augmentations-linux-amd64-py36m-opt.yml index aa092bfa..e05640d1 100644 --- a/taskcluster/test-augmentations-linux-amd64-py36m-opt.yml +++ b/taskcluster/test-augmentations-linux-amd64-py36m-opt.yml @@ -9,5 +9,5 @@ build: tests_cmdline: "${system.homedir.linux}/DeepSpeech/ds/taskcluster/tc-augmentation-tests.sh 3.6.10:m" workerType: "${docker.dsTests}" metadata: - name: "Mozilla Voice STT Linux AMD64 CPU signal augmentations Py3.6" + name: "DeepSpeech Linux AMD64 CPU signal augmentations Py3.6" description: "Augmenting LDC93S1 sample in different ways for Linux/AMD64 16kHz Python 3.6, CPU only, optimized version" diff --git a/taskcluster/test-cpp-android-24-arm64-opt.yml b/taskcluster/test-cpp-android-24-arm64-opt.yml index e63ef786..f8634afd 100644 --- a/taskcluster/test-cpp-android-24-arm64-opt.yml +++ b/taskcluster/test-cpp-android-24-arm64-opt.yml @@ -12,5 +12,5 @@ build: tests_cmdline: "${system.homedir.linux}/DeepSpeech/ds/taskcluster/tc-android-ds-tests.sh arm64-v8a android-24 16k" workerType: "${docker.dsHighMemTests}" metadata: - name: "Mozilla Voice STT Android 7.0 ARM64 Google Pixel C++ tests" - description: "Testing Mozilla Voice STT C++ for Android 7.0 ARM64 Google Pixel, optimized version" + name: "DeepSpeech Android 7.0 ARM64 Google Pixel C++ tests" + description: "Testing DeepSpeech C++ for Android 7.0 ARM64 Google Pixel, optimized version" diff --git a/taskcluster/test-cpp-android-24-armv7-opt.yml b/taskcluster/test-cpp-android-24-armv7-opt.yml index e14b0a20..c81bba47 100644 --- a/taskcluster/test-cpp-android-24-armv7-opt.yml +++ b/taskcluster/test-cpp-android-24-armv7-opt.yml @@ -12,5 +12,5 @@ build: tests_cmdline: "${system.homedir.linux}/DeepSpeech/ds/taskcluster/tc-android-ds-tests.sh armeabi-v7a android-24 16k" workerType: "${docker.dsHighMemTests}" metadata: - name: "Mozilla Voice STT Android 7.0 ARMv7 Google Pixel C++ tests" - description: "Testing Mozilla Voice STT C++ for Android 7.0 ARMv7 Google Pixel, optimized version" + name: "DeepSpeech Android 7.0 ARMv7 Google Pixel C++ tests" + description: "Testing DeepSpeech C++ for Android 7.0 ARMv7 Google Pixel, optimized version" diff --git a/taskcluster/test-cpp-android-25-arm64-opt.yml b/taskcluster/test-cpp-android-25-arm64-opt.yml index 6f7d36e9..ae002cef 100644 --- a/taskcluster/test-cpp-android-25-arm64-opt.yml +++ b/taskcluster/test-cpp-android-25-arm64-opt.yml @@ -12,5 +12,5 @@ build: tests_cmdline: "${system.homedir.linux}/DeepSpeech/ds/taskcluster/tc-android-ds-tests.sh arm64-v8a android-25 16k" workerType: "${docker.dsHighMemTests}" metadata: - name: "Mozilla Voice STT Android 7.1 ARM64 Google Pixel C++ tests" - description: "Testing Mozilla Voice STT C++ for Android 7.1 ARM64 Google Pixel, optimized version" + name: "DeepSpeech Android 7.1 ARM64 Google Pixel C++ tests" + description: "Testing DeepSpeech C++ for Android 7.1 ARM64 Google Pixel, optimized version" diff --git a/taskcluster/test-cpp-android-25-armv7-opt.yml b/taskcluster/test-cpp-android-25-armv7-opt.yml index 062697b6..fa8c5f8d 100644 --- a/taskcluster/test-cpp-android-25-armv7-opt.yml +++ b/taskcluster/test-cpp-android-25-armv7-opt.yml @@ -12,5 +12,5 @@ build: tests_cmdline: "${system.homedir.linux}/DeepSpeech/ds/taskcluster/tc-android-ds-tests.sh armeabi-v7a android-25 16k" workerType: "${docker.dsHighMemTests}" metadata: - name: "Mozilla Voice STT Android 7.1 ARMv7 Google Pixel C++ tests" - description: "Testing Mozilla Voice STT C++ for Android 7.1 ARMv7 Google Pixel, optimized version" + name: "DeepSpeech Android 7.1 ARMv7 Google Pixel C++ tests" + description: "Testing DeepSpeech C++ for Android 7.1 ARMv7 Google Pixel, optimized version" diff --git a/taskcluster/test-cpp-linux-amd64-prod_pbmodel-opt.yml b/taskcluster/test-cpp-linux-amd64-prod_pbmodel-opt.yml index c2a7dff5..c5019231 100644 --- a/taskcluster/test-cpp-linux-amd64-prod_pbmodel-opt.yml +++ b/taskcluster/test-cpp-linux-amd64-prod_pbmodel-opt.yml @@ -6,5 +6,5 @@ build: tests_cmdline: "${system.homedir.linux}/DeepSpeech/ds/taskcluster/tc-cpp-ds-tests-prod.sh 16k" workerType: "${docker.dsTests}" metadata: - name: "Mozilla Voice STT Linux AMD64 CPU C++ prod tests" - description: "Testing Mozilla Voice STT C++ for Linux/AMD64 on prod model, CPU only, optimized version" + name: "DeepSpeech Linux AMD64 CPU C++ prod tests" + description: "Testing DeepSpeech C++ for Linux/AMD64 on prod model, CPU only, optimized version" diff --git a/taskcluster/test-cpp_16k-armbian-arm64-opt.yml b/taskcluster/test-cpp_16k-armbian-arm64-opt.yml index 8dce52db..919daa0d 100644 --- a/taskcluster/test-cpp_16k-armbian-arm64-opt.yml +++ b/taskcluster/test-cpp_16k-armbian-arm64-opt.yml @@ -7,5 +7,5 @@ build: args: tests_cmdline: "${system.homedir.linux}/DeepSpeech/ds/taskcluster/tc-cpp_tflite-ds-tests.sh 16k" metadata: - name: "Mozilla Voice STT ARMbian ARM64 Cortex-A53 CPU C++ tests (16kHz)" - description: "Testing Mozilla Voice STT C++ for ARMbian ARM64 Cortex-A53, CPU only, optimized version (16kHz)" + name: "DeepSpeech ARMbian ARM64 Cortex-A53 CPU C++ tests (16kHz)" + description: "Testing DeepSpeech C++ for ARMbian ARM64 Cortex-A53, CPU only, optimized version (16kHz)" diff --git a/taskcluster/test-cpp_16k-darwin-amd64-opt.yml b/taskcluster/test-cpp_16k-darwin-amd64-opt.yml index 0bba4b96..45a8b3b4 100644 --- a/taskcluster/test-cpp_16k-darwin-amd64-opt.yml +++ b/taskcluster/test-cpp_16k-darwin-amd64-opt.yml @@ -8,5 +8,5 @@ build: args: tests_cmdline: "$TASKCLUSTER_TASK_DIR/DeepSpeech/ds/taskcluster/tc-cpp-ds-tests.sh 16k" metadata: - name: "Mozilla Voice STT OSX AMD64 CPU C++ tests (16kHz)" - description: "Testing Mozilla Voice STT C++ for OSX/AMD64, CPU only, optimized version (16kHz)" + name: "DeepSpeech OSX AMD64 CPU C++ tests (16kHz)" + description: "Testing DeepSpeech C++ for OSX/AMD64, CPU only, optimized version (16kHz)" diff --git a/taskcluster/test-cpp_16k-linux-amd64-opt.yml b/taskcluster/test-cpp_16k-linux-amd64-opt.yml index 6d7b47fd..35d95838 100644 --- a/taskcluster/test-cpp_16k-linux-amd64-opt.yml +++ b/taskcluster/test-cpp_16k-linux-amd64-opt.yml @@ -8,5 +8,5 @@ build: tests_cmdline: "${system.homedir.linux}/DeepSpeech/ds/taskcluster/tc-cpp-ds-tests.sh 16k" workerType: "${docker.dsTests}" metadata: - name: "Mozilla Voice STT Linux AMD64 CPU C++ tests (16kHz)" - description: "Testing Mozilla Voice STT C++ for Linux/AMD64, CPU only, optimized version (16kHz)" + name: "DeepSpeech Linux AMD64 CPU C++ tests (16kHz)" + description: "Testing DeepSpeech C++ for Linux/AMD64, CPU only, optimized version (16kHz)" diff --git a/taskcluster/test-cpp_16k-raspbian-rpi3-opt.yml b/taskcluster/test-cpp_16k-raspbian-rpi3-opt.yml index 8275dd9c..1c0cf156 100644 --- a/taskcluster/test-cpp_16k-raspbian-rpi3-opt.yml +++ b/taskcluster/test-cpp_16k-raspbian-rpi3-opt.yml @@ -7,5 +7,5 @@ build: args: tests_cmdline: "${system.homedir.linux}/DeepSpeech/ds/taskcluster/tc-cpp_tflite-ds-tests.sh 16k" metadata: - name: "Mozilla Voice STT Raspbian RPi3/ARMv7 CPU C++ tests (16kHz)" - description: "Testing Mozilla Voice STT C++ for Raspbian RPi3/ARMv7, CPU only, optimized version (16kHz)" + name: "DeepSpeech Raspbian RPi3/ARMv7 CPU C++ tests (16kHz)" + description: "Testing DeepSpeech C++ for Raspbian RPi3/ARMv7, CPU only, optimized version (16kHz)" diff --git a/taskcluster/test-cpp_16k-win-amd64-opt.yml b/taskcluster/test-cpp_16k-win-amd64-opt.yml index faa69aed..7a2c89fb 100644 --- a/taskcluster/test-cpp_16k-win-amd64-opt.yml +++ b/taskcluster/test-cpp_16k-win-amd64-opt.yml @@ -7,5 +7,5 @@ build: args: tests_cmdline: "$TASKCLUSTER_TASK_DIR/DeepSpeech/ds/taskcluster/tc-cppwin-ds-tests.sh 16k" metadata: - name: "Mozilla Voice STT Windows AMD64 CPU C++ tests (16kHz)" - description: "Testing Mozilla Voice STT C++ for Windows/AMD64, CPU only, optimized version (16kHz)" + name: "DeepSpeech Windows AMD64 CPU C++ tests (16kHz)" + description: "Testing DeepSpeech C++ for Windows/AMD64, CPU only, optimized version (16kHz)" diff --git a/taskcluster/test-cpp_16k-win-cuda-opt.yml b/taskcluster/test-cpp_16k-win-cuda-opt.yml index bea8dc32..6685832a 100644 --- a/taskcluster/test-cpp_16k-win-cuda-opt.yml +++ b/taskcluster/test-cpp_16k-win-cuda-opt.yml @@ -7,5 +7,5 @@ build: args: tests_cmdline: "$TASKCLUSTER_TASK_DIR/DeepSpeech/ds/taskcluster/tc-cppwin-ds-tests.sh 16k cuda" metadata: - name: "Mozilla Voice STT Windows AMD64 CUDA C++ tests (16kHz)" - description: "Testing Mozilla Voice STT C++ for Windows/AMD64, CUDA, optimized version (16kHz)" + name: "DeepSpeech Windows AMD64 CUDA C++ tests (16kHz)" + description: "Testing DeepSpeech C++ for Windows/AMD64, CUDA, optimized version (16kHz)" diff --git a/taskcluster/test-cpp_16k_tflite-darwin-amd64-opt.yml b/taskcluster/test-cpp_16k_tflite-darwin-amd64-opt.yml index 7d5517eb..be050c63 100644 --- a/taskcluster/test-cpp_16k_tflite-darwin-amd64-opt.yml +++ b/taskcluster/test-cpp_16k_tflite-darwin-amd64-opt.yml @@ -8,5 +8,5 @@ build: args: tests_cmdline: "$TASKCLUSTER_TASK_DIR/DeepSpeech/ds/taskcluster/tc-cpp_tflite_basic-ds-tests.sh 16k" metadata: - name: "Mozilla Voice STT OSX AMD64 TFlite C++ tests (16kHz)" - description: "Testing Mozilla Voice STT C++ for OSX/AMD64, TFLite, optimized version (16kHz)" + name: "DeepSpeech OSX AMD64 TFlite C++ tests (16kHz)" + description: "Testing DeepSpeech C++ for OSX/AMD64, TFLite, optimized version (16kHz)" diff --git a/taskcluster/test-cpp_16k_tflite-linux-amd64-opt.yml b/taskcluster/test-cpp_16k_tflite-linux-amd64-opt.yml index f2714aa0..bead6046 100755 --- a/taskcluster/test-cpp_16k_tflite-linux-amd64-opt.yml +++ b/taskcluster/test-cpp_16k_tflite-linux-amd64-opt.yml @@ -8,5 +8,5 @@ build: tests_cmdline: "${system.homedir.linux}/DeepSpeech/ds/taskcluster/tc-cpp_tflite_basic-ds-tests.sh 16k" workerType: "${docker.dsTests}" metadata: - name: "Mozilla Voice STT Linux AMD64 TFLite C++ tests (16kHz)" - description: "Testing Mozilla Voice STT C++ for Linux/AMD64, TFLite, optimized version (16kHz)" + name: "DeepSpeech Linux AMD64 TFLite C++ tests (16kHz)" + description: "Testing DeepSpeech C++ for Linux/AMD64, TFLite, optimized version (16kHz)" diff --git a/taskcluster/test-cpp_16k_tflite-win-amd64-opt.yml b/taskcluster/test-cpp_16k_tflite-win-amd64-opt.yml index e2abd09e..15abcf3b 100644 --- a/taskcluster/test-cpp_16k_tflite-win-amd64-opt.yml +++ b/taskcluster/test-cpp_16k_tflite-win-amd64-opt.yml @@ -7,5 +7,5 @@ build: args: tests_cmdline: "$TASKCLUSTER_TASK_DIR/DeepSpeech/ds/taskcluster/tc-cpp_tflite_basic-ds-tests.sh 16k" metadata: - name: "Mozilla Voice STT Windows AMD64 TFLite C++ tests (16kHz)" - description: "Testing Mozilla Voice STT C++ for Windows/AMD64, TFLite, optimized version (16kHz)" + name: "DeepSpeech Windows AMD64 TFLite C++ tests (16kHz)" + description: "Testing DeepSpeech C++ for Windows/AMD64, TFLite, optimized version (16kHz)" diff --git a/taskcluster/test-cpp_8k-linux-amd64-opt.yml b/taskcluster/test-cpp_8k-linux-amd64-opt.yml index 5ca7f28b..e0c73476 100644 --- a/taskcluster/test-cpp_8k-linux-amd64-opt.yml +++ b/taskcluster/test-cpp_8k-linux-amd64-opt.yml @@ -8,5 +8,5 @@ build: tests_cmdline: "${system.homedir.linux}/DeepSpeech/ds/taskcluster/tc-cpp-ds-tests.sh 8k" workerType: "${docker.dsTests}" metadata: - name: "Mozilla Voice STT Linux AMD64 CPU C++ tests (8kHz)" - description: "Testing Mozilla Voice STT C++ for Linux/AMD64, CPU only, optimized version (8kHz)" + name: "DeepSpeech Linux AMD64 CPU C++ tests (8kHz)" + description: "Testing DeepSpeech C++ for Linux/AMD64, CPU only, optimized version (8kHz)" diff --git a/taskcluster/test-cpp_8k_tflite-linux-amd64-opt.yml b/taskcluster/test-cpp_8k_tflite-linux-amd64-opt.yml index 738edf9c..fc7bb2a2 100755 --- a/taskcluster/test-cpp_8k_tflite-linux-amd64-opt.yml +++ b/taskcluster/test-cpp_8k_tflite-linux-amd64-opt.yml @@ -8,5 +8,5 @@ build: tests_cmdline: "${system.homedir.linux}/DeepSpeech/ds/taskcluster/tc-cpp_tflite_basic-ds-tests.sh 8k" workerType: "${docker.dsTests}" metadata: - name: "Mozilla Voice STT Linux AMD64 TFLite C++ tests (16kHz)" - description: "Testing Mozilla Voice STT C++ for Linux/AMD64, TFLite, optimized version (16kHz)" + name: "DeepSpeech Linux AMD64 TFLite C++ tests (16kHz)" + description: "Testing DeepSpeech C++ for Linux/AMD64, TFLite, optimized version (16kHz)" diff --git a/taskcluster/test-cpp_tflite-linux-amd64-prod-opt.yml b/taskcluster/test-cpp_tflite-linux-amd64-prod-opt.yml index 5f33aead..91cf9fc2 100755 --- a/taskcluster/test-cpp_tflite-linux-amd64-prod-opt.yml +++ b/taskcluster/test-cpp_tflite-linux-amd64-prod-opt.yml @@ -6,5 +6,5 @@ build: tests_cmdline: "${system.homedir.linux}/DeepSpeech/ds/taskcluster/tc-cpp_tflite-tests-prod.sh 16k" workerType: "${docker.dsTests}" metadata: - name: "Mozilla Voice STT Linux AMD64 TFLite C++ prod tests" - description: "Testing Mozilla Voice STT C++ for Linux/AMD64 on prod model, TFLite, optimized version" + name: "DeepSpeech Linux AMD64 TFLite C++ prod tests" + description: "Testing DeepSpeech C++ for Linux/AMD64 on prod model, TFLite, optimized version" diff --git a/taskcluster/test-electronjs_v5.0-darwin-amd64-opt.yml b/taskcluster/test-electronjs_v5.0-darwin-amd64-opt.yml index f2d0d119..8c2e3e16 100644 --- a/taskcluster/test-electronjs_v5.0-darwin-amd64-opt.yml +++ b/taskcluster/test-electronjs_v5.0-darwin-amd64-opt.yml @@ -11,5 +11,5 @@ build: args: tests_cmdline: "$TASKCLUSTER_TASK_DIR/DeepSpeech/ds/taskcluster/tc-electron-tests.sh 12.x 5.0.6 16k" metadata: - name: "Mozilla Voice STT OSX AMD64 CPU ElectronJS v5.0 tests" - description: "Testing Mozilla Voice STT for OSX/AMD64 on ElectronJS v5.0, CPU only, optimized version" + name: "DeepSpeech OSX AMD64 CPU ElectronJS v5.0 tests" + description: "Testing DeepSpeech for OSX/AMD64 on ElectronJS v5.0, CPU only, optimized version" diff --git a/taskcluster/test-electronjs_v5.0-win-amd64-opt.yml b/taskcluster/test-electronjs_v5.0-win-amd64-opt.yml index dfe9ca5e..dca60813 100644 --- a/taskcluster/test-electronjs_v5.0-win-amd64-opt.yml +++ b/taskcluster/test-electronjs_v5.0-win-amd64-opt.yml @@ -10,5 +10,5 @@ build: args: tests_cmdline: "${system.homedir.win}/DeepSpeech/ds/taskcluster/tc-electron-tests.sh 12.x 5.0.6 16k" metadata: - name: "Mozilla Voice STT Windows AMD64 CPU ElectronJS v5.0 tests" - description: "Testing Mozilla Voice STT for Windows/AMD64 on ElectronJS v5.0, CPU only, optimized version" + name: "DeepSpeech Windows AMD64 CPU ElectronJS v5.0 tests" + description: "Testing DeepSpeech for Windows/AMD64 on ElectronJS v5.0, CPU only, optimized version" diff --git a/taskcluster/test-electronjs_v5.0_16k-linux-amd64-opt.yml b/taskcluster/test-electronjs_v5.0_16k-linux-amd64-opt.yml index 668aae6f..8b362864 100644 --- a/taskcluster/test-electronjs_v5.0_16k-linux-amd64-opt.yml +++ b/taskcluster/test-electronjs_v5.0_16k-linux-amd64-opt.yml @@ -12,5 +12,5 @@ build: tests_cmdline: "${system.homedir.linux}/DeepSpeech/ds/taskcluster/tc-electron-tests.sh 12.x 5.0.6 16k" workerType: "${docker.dsTests}" metadata: - name: "Mozilla Voice STT Linux AMD64 CPU ElectronJS v5.0 tests (16kHz)" - description: "Testing Mozilla Voice STT for Linux/AMD64 on ElectronJS v5.0, CPU only, optimized version (16kHz)" + name: "DeepSpeech Linux AMD64 CPU ElectronJS v5.0 tests (16kHz)" + description: "Testing DeepSpeech for Linux/AMD64 on ElectronJS v5.0, CPU only, optimized version (16kHz)" diff --git a/taskcluster/test-electronjs_v5.0_8k-linux-amd64-opt.yml b/taskcluster/test-electronjs_v5.0_8k-linux-amd64-opt.yml index 6a58ca5c..5ecd4ed4 100644 --- a/taskcluster/test-electronjs_v5.0_8k-linux-amd64-opt.yml +++ b/taskcluster/test-electronjs_v5.0_8k-linux-amd64-opt.yml @@ -12,5 +12,5 @@ build: tests_cmdline: "${system.homedir.linux}/DeepSpeech/ds/taskcluster/tc-electron-tests.sh 12.x 5.0.6 8k" workerType: "${docker.dsTests}" metadata: - name: "Mozilla Voice STT Linux AMD64 CPU ElectronJS v5.0 tests (8kHz)" - description: "Testing Mozilla Voice STT for Linux/AMD64 on ElectronJS v5.0, CPU only, optimized version (8kHz)" + name: "DeepSpeech Linux AMD64 CPU ElectronJS v5.0 tests (8kHz)" + description: "Testing DeepSpeech for Linux/AMD64 on ElectronJS v5.0, CPU only, optimized version (8kHz)" diff --git a/taskcluster/test-electronjs_v6.0-darwin-amd64-opt.yml b/taskcluster/test-electronjs_v6.0-darwin-amd64-opt.yml index e2bc2050..08c02306 100644 --- a/taskcluster/test-electronjs_v6.0-darwin-amd64-opt.yml +++ b/taskcluster/test-electronjs_v6.0-darwin-amd64-opt.yml @@ -11,5 +11,5 @@ build: args: tests_cmdline: "$TASKCLUSTER_TASK_DIR/DeepSpeech/ds/taskcluster/tc-electron-tests.sh 12.x 6.0.12 16k" metadata: - name: "Mozilla Voice STT OSX AMD64 CPU ElectronJS v6.0 tests" - description: "Testing Mozilla Voice STT for OSX/AMD64 on ElectronJS v6.0, CPU only, optimized version" + name: "DeepSpeech OSX AMD64 CPU ElectronJS v6.0 tests" + description: "Testing DeepSpeech for OSX/AMD64 on ElectronJS v6.0, CPU only, optimized version" diff --git a/taskcluster/test-electronjs_v6.0-win-amd64-opt.yml b/taskcluster/test-electronjs_v6.0-win-amd64-opt.yml index 5ee20505..10556ebc 100644 --- a/taskcluster/test-electronjs_v6.0-win-amd64-opt.yml +++ b/taskcluster/test-electronjs_v6.0-win-amd64-opt.yml @@ -10,5 +10,5 @@ build: args: tests_cmdline: "${system.homedir.win}/DeepSpeech/ds/taskcluster/tc-electron-tests.sh 12.x 6.0.12 16k" metadata: - name: "Mozilla Voice STT Windows AMD64 CPU ElectronJS v6.0 tests" - description: "Testing Mozilla Voice STT for Windows/AMD64 on ElectronJS v6.0, CPU only, optimized version" + name: "DeepSpeech Windows AMD64 CPU ElectronJS v6.0 tests" + description: "Testing DeepSpeech for Windows/AMD64 on ElectronJS v6.0, CPU only, optimized version" diff --git a/taskcluster/test-electronjs_v6.0_16k-linux-amd64-opt.yml b/taskcluster/test-electronjs_v6.0_16k-linux-amd64-opt.yml index 38a61e3f..d8a9d7ef 100644 --- a/taskcluster/test-electronjs_v6.0_16k-linux-amd64-opt.yml +++ b/taskcluster/test-electronjs_v6.0_16k-linux-amd64-opt.yml @@ -12,5 +12,5 @@ build: tests_cmdline: "${system.homedir.linux}/DeepSpeech/ds/taskcluster/tc-electron-tests.sh 12.x 6.0.12 16k" workerType: "${docker.dsTests}" metadata: - name: "Mozilla Voice STT Linux AMD64 CPU ElectronJS v6.0 tests (16kHz)" - description: "Testing Mozilla Voice STT for Linux/AMD64 on ElectronJS v6.0, CPU only, optimized version (16kHz)" + name: "DeepSpeech Linux AMD64 CPU ElectronJS v6.0 tests (16kHz)" + description: "Testing DeepSpeech for Linux/AMD64 on ElectronJS v6.0, CPU only, optimized version (16kHz)" diff --git a/taskcluster/test-electronjs_v6.0_8k-linux-amd64-opt.yml b/taskcluster/test-electronjs_v6.0_8k-linux-amd64-opt.yml index 3a1350cf..b7f5ca3f 100644 --- a/taskcluster/test-electronjs_v6.0_8k-linux-amd64-opt.yml +++ b/taskcluster/test-electronjs_v6.0_8k-linux-amd64-opt.yml @@ -12,5 +12,5 @@ build: tests_cmdline: "${system.homedir.linux}/DeepSpeech/ds/taskcluster/tc-electron-tests.sh 12.x 6.0.12 8k" workerType: "${docker.dsTests}" metadata: - name: "Mozilla Voice STT Linux AMD64 CPU ElectronJS v6.0 tests (8kHz)" - description: "Testing Mozilla Voice STT for Linux/AMD64 on ElectronJS v6.0, CPU only, optimized version (8kHz)" + name: "DeepSpeech Linux AMD64 CPU ElectronJS v6.0 tests (8kHz)" + description: "Testing DeepSpeech for Linux/AMD64 on ElectronJS v6.0, CPU only, optimized version (8kHz)" diff --git a/taskcluster/test-electronjs_v6.1-darwin-amd64-opt.yml b/taskcluster/test-electronjs_v6.1-darwin-amd64-opt.yml index f8e43def..3d0bf2de 100644 --- a/taskcluster/test-electronjs_v6.1-darwin-amd64-opt.yml +++ b/taskcluster/test-electronjs_v6.1-darwin-amd64-opt.yml @@ -11,5 +11,5 @@ build: args: tests_cmdline: "$TASKCLUSTER_TASK_DIR/DeepSpeech/ds/taskcluster/tc-electron-tests.sh 12.x 6.1.7 16k" metadata: - name: "Mozilla Voice STT OSX AMD64 CPU ElectronJS v6.1 tests" - description: "Testing Mozilla Voice STT for OSX/AMD64 on ElectronJS v6.1, CPU only, optimized version" + name: "DeepSpeech OSX AMD64 CPU ElectronJS v6.1 tests" + description: "Testing DeepSpeech for OSX/AMD64 on ElectronJS v6.1, CPU only, optimized version" diff --git a/taskcluster/test-electronjs_v6.1-win-amd64-opt.yml b/taskcluster/test-electronjs_v6.1-win-amd64-opt.yml index 7e24a5a2..a27e2e58 100644 --- a/taskcluster/test-electronjs_v6.1-win-amd64-opt.yml +++ b/taskcluster/test-electronjs_v6.1-win-amd64-opt.yml @@ -10,5 +10,5 @@ build: args: tests_cmdline: "${system.homedir.win}/DeepSpeech/ds/taskcluster/tc-electron-tests.sh 12.x 6.1.7 16k" metadata: - name: "Mozilla Voice STT Windows AMD64 CPU ElectronJS v6.1 tests" - description: "Testing Mozilla Voice STT for Windows/AMD64 on ElectronJS v6.1, CPU only, optimized version" + name: "DeepSpeech Windows AMD64 CPU ElectronJS v6.1 tests" + description: "Testing DeepSpeech for Windows/AMD64 on ElectronJS v6.1, CPU only, optimized version" diff --git a/taskcluster/test-electronjs_v6.1_16k-linux-amd64-opt.yml b/taskcluster/test-electronjs_v6.1_16k-linux-amd64-opt.yml index 7e238f2d..dcbd5799 100644 --- a/taskcluster/test-electronjs_v6.1_16k-linux-amd64-opt.yml +++ b/taskcluster/test-electronjs_v6.1_16k-linux-amd64-opt.yml @@ -12,5 +12,5 @@ build: tests_cmdline: "${system.homedir.linux}/DeepSpeech/ds/taskcluster/tc-electron-tests.sh 12.x 6.1.7 16k" workerType: "${docker.dsTests}" metadata: - name: "Mozilla Voice STT Linux AMD64 CPU ElectronJS v6.1 tests (16kHz)" - description: "Testing Mozilla Voice STT for Linux/AMD64 on ElectronJS v6.1, CPU only, optimized version (16kHz)" + name: "DeepSpeech Linux AMD64 CPU ElectronJS v6.1 tests (16kHz)" + description: "Testing DeepSpeech for Linux/AMD64 on ElectronJS v6.1, CPU only, optimized version (16kHz)" diff --git a/taskcluster/test-electronjs_v6.1_8k-linux-amd64-opt.yml b/taskcluster/test-electronjs_v6.1_8k-linux-amd64-opt.yml index 88767b86..45c965ab 100644 --- a/taskcluster/test-electronjs_v6.1_8k-linux-amd64-opt.yml +++ b/taskcluster/test-electronjs_v6.1_8k-linux-amd64-opt.yml @@ -12,5 +12,5 @@ build: tests_cmdline: "${system.homedir.linux}/DeepSpeech/ds/taskcluster/tc-electron-tests.sh 12.x 6.1.7 8k" workerType: "${docker.dsTests}" metadata: - name: "Mozilla Voice STT Linux AMD64 CPU ElectronJS v6.1 tests (8kHz)" - description: "Testing Mozilla Voice STT for Linux/AMD64 on ElectronJS v6.1, CPU only, optimized version (8kHz)" + name: "DeepSpeech Linux AMD64 CPU ElectronJS v6.1 tests (8kHz)" + description: "Testing DeepSpeech for Linux/AMD64 on ElectronJS v6.1, CPU only, optimized version (8kHz)" diff --git a/taskcluster/test-electronjs_v7.0-darwin-amd64-opt.yml b/taskcluster/test-electronjs_v7.0-darwin-amd64-opt.yml index 23c27ac5..8f6340bb 100644 --- a/taskcluster/test-electronjs_v7.0-darwin-amd64-opt.yml +++ b/taskcluster/test-electronjs_v7.0-darwin-amd64-opt.yml @@ -11,5 +11,5 @@ build: args: tests_cmdline: "$TASKCLUSTER_TASK_DIR/DeepSpeech/ds/taskcluster/tc-electron-tests.sh 12.x 7.0.1 16k" metadata: - name: "Mozilla Voice STT OSX AMD64 CPU ElectronJS v7.0 tests" - description: "Testing Mozilla Voice STT for OSX/AMD64 on ElectronJS v7.0, CPU only, optimized version" + name: "DeepSpeech OSX AMD64 CPU ElectronJS v7.0 tests" + description: "Testing DeepSpeech for OSX/AMD64 on ElectronJS v7.0, CPU only, optimized version" diff --git a/taskcluster/test-electronjs_v7.0-win-amd64-opt.yml b/taskcluster/test-electronjs_v7.0-win-amd64-opt.yml index a467bd13..e0a8ccbe 100644 --- a/taskcluster/test-electronjs_v7.0-win-amd64-opt.yml +++ b/taskcluster/test-electronjs_v7.0-win-amd64-opt.yml @@ -10,5 +10,5 @@ build: args: tests_cmdline: "${system.homedir.win}/DeepSpeech/ds/taskcluster/tc-electron-tests.sh 12.x 7.0.1 16k" metadata: - name: "Mozilla Voice STT Windows AMD64 CPU ElectronJS v7.0 tests" - description: "Testing Mozilla Voice STT for Windows/AMD64 on ElectronJS v7.0, CPU only, optimized version" + name: "DeepSpeech Windows AMD64 CPU ElectronJS v7.0 tests" + description: "Testing DeepSpeech for Windows/AMD64 on ElectronJS v7.0, CPU only, optimized version" diff --git a/taskcluster/test-electronjs_v7.0_16k-linux-amd64-opt.yml b/taskcluster/test-electronjs_v7.0_16k-linux-amd64-opt.yml index e68759fd..fb793d8d 100644 --- a/taskcluster/test-electronjs_v7.0_16k-linux-amd64-opt.yml +++ b/taskcluster/test-electronjs_v7.0_16k-linux-amd64-opt.yml @@ -12,5 +12,5 @@ build: tests_cmdline: "${system.homedir.linux}/DeepSpeech/ds/taskcluster/tc-electron-tests.sh 12.x 7.0.1 16k" workerType: "${docker.dsTests}" metadata: - name: "Mozilla Voice STT Linux AMD64 CPU ElectronJS v7.0 tests (16kHz)" - description: "Testing Mozilla Voice STT for Linux/AMD64 on ElectronJS v7.0, CPU only, optimized version (16kHz)" + name: "DeepSpeech Linux AMD64 CPU ElectronJS v7.0 tests (16kHz)" + description: "Testing DeepSpeech for Linux/AMD64 on ElectronJS v7.0, CPU only, optimized version (16kHz)" diff --git a/taskcluster/test-electronjs_v7.0_8k-linux-amd64-opt.yml b/taskcluster/test-electronjs_v7.0_8k-linux-amd64-opt.yml index b7a4d100..5562c0a9 100644 --- a/taskcluster/test-electronjs_v7.0_8k-linux-amd64-opt.yml +++ b/taskcluster/test-electronjs_v7.0_8k-linux-amd64-opt.yml @@ -12,5 +12,5 @@ build: tests_cmdline: "${system.homedir.linux}/DeepSpeech/ds/taskcluster/tc-electron-tests.sh 12.x 7.0.1 8k" workerType: "${docker.dsTests}" metadata: - name: "Mozilla Voice STT Linux AMD64 CPU ElectronJS v7.0 tests (8kHz)" - description: "Testing Mozilla Voice STT for Linux/AMD64 on ElectronJS v7.0, CPU only, optimized version (8kHz)" + name: "DeepSpeech Linux AMD64 CPU ElectronJS v7.0 tests (8kHz)" + description: "Testing DeepSpeech for Linux/AMD64 on ElectronJS v7.0, CPU only, optimized version (8kHz)" diff --git a/taskcluster/test-electronjs_v7.1-darwin-amd64-opt.yml b/taskcluster/test-electronjs_v7.1-darwin-amd64-opt.yml index b6012524..7c2fdfcd 100644 --- a/taskcluster/test-electronjs_v7.1-darwin-amd64-opt.yml +++ b/taskcluster/test-electronjs_v7.1-darwin-amd64-opt.yml @@ -11,5 +11,5 @@ build: args: tests_cmdline: "$TASKCLUSTER_TASK_DIR/DeepSpeech/ds/taskcluster/tc-electron-tests.sh 12.x 7.1.2 16k" metadata: - name: "Mozilla Voice STT OSX AMD64 CPU ElectronJS v7.1 tests" - description: "Testing Mozilla Voice STT for OSX/AMD64 on ElectronJS v7.1, CPU only, optimized version" + name: "DeepSpeech OSX AMD64 CPU ElectronJS v7.1 tests" + description: "Testing DeepSpeech for OSX/AMD64 on ElectronJS v7.1, CPU only, optimized version" diff --git a/taskcluster/test-electronjs_v7.1-win-amd64-opt.yml b/taskcluster/test-electronjs_v7.1-win-amd64-opt.yml index 60a80f4a..da3c5586 100644 --- a/taskcluster/test-electronjs_v7.1-win-amd64-opt.yml +++ b/taskcluster/test-electronjs_v7.1-win-amd64-opt.yml @@ -10,5 +10,5 @@ build: args: tests_cmdline: "${system.homedir.win}/DeepSpeech/ds/taskcluster/tc-electron-tests.sh 12.x 7.1.2 16k" metadata: - name: "Mozilla Voice STT Windows AMD64 CPU ElectronJS v7.1 tests" - description: "Testing Mozilla Voice STT for Windows/AMD64 on ElectronJS v7.1, CPU only, optimized version" + name: "DeepSpeech Windows AMD64 CPU ElectronJS v7.1 tests" + description: "Testing DeepSpeech for Windows/AMD64 on ElectronJS v7.1, CPU only, optimized version" diff --git a/taskcluster/test-electronjs_v7.1_16k-linux-amd64-opt.yml b/taskcluster/test-electronjs_v7.1_16k-linux-amd64-opt.yml index f6f33746..ffcc3000 100644 --- a/taskcluster/test-electronjs_v7.1_16k-linux-amd64-opt.yml +++ b/taskcluster/test-electronjs_v7.1_16k-linux-amd64-opt.yml @@ -12,5 +12,5 @@ build: tests_cmdline: "${system.homedir.linux}/DeepSpeech/ds/taskcluster/tc-electron-tests.sh 12.x 7.1.2 16k" workerType: "${docker.dsTests}" metadata: - name: "Mozilla Voice STT Linux AMD64 CPU ElectronJS v7.1 tests (16kHz)" - description: "Testing Mozilla Voice STT for Linux/AMD64 on ElectronJS v7.1, CPU only, optimized version (16kHz)" + name: "DeepSpeech Linux AMD64 CPU ElectronJS v7.1 tests (16kHz)" + description: "Testing DeepSpeech for Linux/AMD64 on ElectronJS v7.1, CPU only, optimized version (16kHz)" diff --git a/taskcluster/test-electronjs_v7.1_8k-linux-amd64-opt.yml b/taskcluster/test-electronjs_v7.1_8k-linux-amd64-opt.yml index da32a8bf..4e5976aa 100644 --- a/taskcluster/test-electronjs_v7.1_8k-linux-amd64-opt.yml +++ b/taskcluster/test-electronjs_v7.1_8k-linux-amd64-opt.yml @@ -12,5 +12,5 @@ build: tests_cmdline: "${system.homedir.linux}/DeepSpeech/ds/taskcluster/tc-electron-tests.sh 12.x 7.1.2 8k" workerType: "${docker.dsTests}" metadata: - name: "Mozilla Voice STT Linux AMD64 CPU ElectronJS v7.1 tests (8kHz)" - description: "Testing Mozilla Voice STT for Linux/AMD64 on ElectronJS v7.1, CPU only, optimized version (8kHz)" + name: "DeepSpeech Linux AMD64 CPU ElectronJS v7.1 tests (8kHz)" + description: "Testing DeepSpeech for Linux/AMD64 on ElectronJS v7.1, CPU only, optimized version (8kHz)" diff --git a/taskcluster/test-electronjs_v8.0-darwin-amd64-opt.yml b/taskcluster/test-electronjs_v8.0-darwin-amd64-opt.yml index 18f53ba9..efd57f69 100644 --- a/taskcluster/test-electronjs_v8.0-darwin-amd64-opt.yml +++ b/taskcluster/test-electronjs_v8.0-darwin-amd64-opt.yml @@ -11,5 +11,5 @@ build: args: tests_cmdline: "$TASKCLUSTER_TASK_DIR/DeepSpeech/ds/taskcluster/tc-electron-tests.sh 12.x 8.0.1 16k" metadata: - name: "Mozilla Voice STT OSX AMD64 CPU ElectronJS v8.0 tests" - description: "Testing Mozilla Voice STT for OSX/AMD64 on ElectronJS v8.0, CPU only, optimized version" + name: "DeepSpeech OSX AMD64 CPU ElectronJS v8.0 tests" + description: "Testing DeepSpeech for OSX/AMD64 on ElectronJS v8.0, CPU only, optimized version" diff --git a/taskcluster/test-electronjs_v8.0-win-amd64-opt.yml b/taskcluster/test-electronjs_v8.0-win-amd64-opt.yml index 9a246fe2..5c33a767 100644 --- a/taskcluster/test-electronjs_v8.0-win-amd64-opt.yml +++ b/taskcluster/test-electronjs_v8.0-win-amd64-opt.yml @@ -10,5 +10,5 @@ build: args: tests_cmdline: "${system.homedir.win}/DeepSpeech/ds/taskcluster/tc-electron-tests.sh 12.x 8.0.1 16k" metadata: - name: "Mozilla Voice STT Windows AMD64 CPU ElectronJS v8.0 tests" - description: "Testing Mozilla Voice STT for Windows/AMD64 on ElectronJS v8.0, CPU only, optimized version" + name: "DeepSpeech Windows AMD64 CPU ElectronJS v8.0 tests" + description: "Testing DeepSpeech for Windows/AMD64 on ElectronJS v8.0, CPU only, optimized version" diff --git a/taskcluster/test-electronjs_v8.0_16k-linux-amd64-opt.yml b/taskcluster/test-electronjs_v8.0_16k-linux-amd64-opt.yml index 4ae666b1..579fce59 100644 --- a/taskcluster/test-electronjs_v8.0_16k-linux-amd64-opt.yml +++ b/taskcluster/test-electronjs_v8.0_16k-linux-amd64-opt.yml @@ -12,5 +12,5 @@ build: tests_cmdline: "${system.homedir.linux}/DeepSpeech/ds/taskcluster/tc-electron-tests.sh 12.x 8.0.1 16k" workerType: "${docker.dsTests}" metadata: - name: "Mozilla Voice STT Linux AMD64 CPU ElectronJS v8.0 tests (16kHz)" - description: "Testing Mozilla Voice STT for Linux/AMD64 on ElectronJS v8.0, CPU only, optimized version (16kHz)" + name: "DeepSpeech Linux AMD64 CPU ElectronJS v8.0 tests (16kHz)" + description: "Testing DeepSpeech for Linux/AMD64 on ElectronJS v8.0, CPU only, optimized version (16kHz)" diff --git a/taskcluster/test-electronjs_v8.0_8k-linux-amd64-opt.yml b/taskcluster/test-electronjs_v8.0_8k-linux-amd64-opt.yml index a502b22a..e8ff0815 100644 --- a/taskcluster/test-electronjs_v8.0_8k-linux-amd64-opt.yml +++ b/taskcluster/test-electronjs_v8.0_8k-linux-amd64-opt.yml @@ -12,5 +12,5 @@ build: tests_cmdline: "${system.homedir.linux}/DeepSpeech/ds/taskcluster/tc-electron-tests.sh 12.x 8.0.1 8k" workerType: "${docker.dsTests}" metadata: - name: "Mozilla Voice STT Linux AMD64 CPU ElectronJS v8.0 tests (8kHz)" - description: "Testing Mozilla Voice STT for Linux/AMD64 on ElectronJS v8.0, CPU only, optimized version (8kHz)" + name: "DeepSpeech Linux AMD64 CPU ElectronJS v8.0 tests (8kHz)" + description: "Testing DeepSpeech for Linux/AMD64 on ElectronJS v8.0, CPU only, optimized version (8kHz)" diff --git a/taskcluster/test-electronjs_v8.0_multiarchpkg-win-amd64-opt.yml b/taskcluster/test-electronjs_v8.0_multiarchpkg-win-amd64-opt.yml index 4f5e9263..d086e347 100644 --- a/taskcluster/test-electronjs_v8.0_multiarchpkg-win-amd64-opt.yml +++ b/taskcluster/test-electronjs_v8.0_multiarchpkg-win-amd64-opt.yml @@ -10,5 +10,5 @@ build: args: tests_cmdline: "${system.homedir.win}/DeepSpeech/ds/taskcluster/tc-electron-tests.sh 12.x 8.0.1 16k" metadata: - name: "Mozilla Voice STT Windows AMD64 CPU ElectronJS MultiArch Package v8.0 tests" - description: "Testing Mozilla Voice STT for Windows/AMD64 on ElectronJS MultiArch Package v8.0, CPU only, optimized version" + name: "DeepSpeech Windows AMD64 CPU ElectronJS MultiArch Package v8.0 tests" + description: "Testing DeepSpeech for Windows/AMD64 on ElectronJS MultiArch Package v8.0, CPU only, optimized version" diff --git a/taskcluster/test-electronjs_v8.0_multiarchpkg-win-cuda-opt.yml b/taskcluster/test-electronjs_v8.0_multiarchpkg-win-cuda-opt.yml index c1bb92a5..ac35c001 100644 --- a/taskcluster/test-electronjs_v8.0_multiarchpkg-win-cuda-opt.yml +++ b/taskcluster/test-electronjs_v8.0_multiarchpkg-win-cuda-opt.yml @@ -10,5 +10,5 @@ build: args: tests_cmdline: "${system.homedir.win}/DeepSpeech/ds/taskcluster/tc-electron-tests.sh 12.x 8.0.1 16k cuda" metadata: - name: "Mozilla Voice STT Windows AMD64 CUDA ElectronJS MultiArch Package v8.0 tests" - description: "Testing Mozilla Voice STT for Windows/AMD64 on ElectronJS MultiArch Package v8.0, CUDA, optimized version" + name: "DeepSpeech Windows AMD64 CUDA ElectronJS MultiArch Package v8.0 tests" + description: "Testing DeepSpeech for Windows/AMD64 on ElectronJS MultiArch Package v8.0, CUDA, optimized version" diff --git a/taskcluster/test-electronjs_v8.0_multiarchpkg-win-tflite-opt.yml b/taskcluster/test-electronjs_v8.0_multiarchpkg-win-tflite-opt.yml index 3348316b..5d2531f0 100644 --- a/taskcluster/test-electronjs_v8.0_multiarchpkg-win-tflite-opt.yml +++ b/taskcluster/test-electronjs_v8.0_multiarchpkg-win-tflite-opt.yml @@ -10,5 +10,5 @@ build: args: tests_cmdline: "${system.homedir.win}/DeepSpeech/ds/taskcluster/tc-electron_tflite-tests.sh 12.x 8.0.1 16k" metadata: - name: "Mozilla Voice STT Windows AMD64 TFLite ElectronJS MultiArch Package v8.0 tests" - description: "Testing Mozilla Voice STT for Windows/AMD64 on ElectronJS MultiArch Package v8.0, TFLite only, optimized version" + name: "DeepSpeech Windows AMD64 TFLite ElectronJS MultiArch Package v8.0 tests" + description: "Testing DeepSpeech for Windows/AMD64 on ElectronJS MultiArch Package v8.0, TFLite only, optimized version" diff --git a/taskcluster/test-electronjs_v9.0-darwin-amd64-opt.yml b/taskcluster/test-electronjs_v9.0-darwin-amd64-opt.yml index fd028966..2c9ce143 100644 --- a/taskcluster/test-electronjs_v9.0-darwin-amd64-opt.yml +++ b/taskcluster/test-electronjs_v9.0-darwin-amd64-opt.yml @@ -11,5 +11,5 @@ build: args: tests_cmdline: "$TASKCLUSTER_TASK_DIR/DeepSpeech/ds/taskcluster/tc-electron-tests.sh 12.x 9.0.1 16k" metadata: - name: "Mozilla Voice STT OSX AMD64 CPU ElectronJS v9.0 tests" - description: "Testing Mozilla Voice STT for OSX/AMD64 on ElectronJS v9.0, CPU only, optimized version" + name: "DeepSpeech OSX AMD64 CPU ElectronJS v9.0 tests" + description: "Testing DeepSpeech for OSX/AMD64 on ElectronJS v9.0, CPU only, optimized version" diff --git a/taskcluster/test-electronjs_v9.0-win-amd64-opt.yml b/taskcluster/test-electronjs_v9.0-win-amd64-opt.yml index dc672414..66bd7b1f 100644 --- a/taskcluster/test-electronjs_v9.0-win-amd64-opt.yml +++ b/taskcluster/test-electronjs_v9.0-win-amd64-opt.yml @@ -10,5 +10,5 @@ build: args: tests_cmdline: "${system.homedir.win}/DeepSpeech/ds/taskcluster/tc-electron-tests.sh 12.x 9.0.1 16k" metadata: - name: "Mozilla Voice STT Windows AMD64 CPU ElectronJS v9.0 tests" - description: "Testing Mozilla Voice STT for Windows/AMD64 on ElectronJS v9.0, CPU only, optimized version" + name: "DeepSpeech Windows AMD64 CPU ElectronJS v9.0 tests" + description: "Testing DeepSpeech for Windows/AMD64 on ElectronJS v9.0, CPU only, optimized version" diff --git a/taskcluster/test-electronjs_v9.0_16k-linux-amd64-opt.yml b/taskcluster/test-electronjs_v9.0_16k-linux-amd64-opt.yml index 3ad246a4..fe676063 100644 --- a/taskcluster/test-electronjs_v9.0_16k-linux-amd64-opt.yml +++ b/taskcluster/test-electronjs_v9.0_16k-linux-amd64-opt.yml @@ -12,5 +12,5 @@ build: tests_cmdline: "${system.homedir.linux}/DeepSpeech/ds/taskcluster/tc-electron-tests.sh 12.x 9.0.1 16k" workerType: "${docker.dsTests}" metadata: - name: "Mozilla Voice STT Linux AMD64 CPU ElectronJS v9.0 tests (16kHz)" - description: "Testing Mozilla Voice STT for Linux/AMD64 on ElectronJS v9.0, CPU only, optimized version (16kHz)" + name: "DeepSpeech Linux AMD64 CPU ElectronJS v9.0 tests (16kHz)" + description: "Testing DeepSpeech for Linux/AMD64 on ElectronJS v9.0, CPU only, optimized version (16kHz)" diff --git a/taskcluster/test-electronjs_v9.0_8k-linux-amd64-opt.yml b/taskcluster/test-electronjs_v9.0_8k-linux-amd64-opt.yml index dde11f76..90595402 100644 --- a/taskcluster/test-electronjs_v9.0_8k-linux-amd64-opt.yml +++ b/taskcluster/test-electronjs_v9.0_8k-linux-amd64-opt.yml @@ -12,5 +12,5 @@ build: tests_cmdline: "${system.homedir.linux}/DeepSpeech/ds/taskcluster/tc-electron-tests.sh 12.x 9.0.1 8k" workerType: "${docker.dsTests}" metadata: - name: "Mozilla Voice STT Linux AMD64 CPU ElectronJS v9.0 tests (8kHz)" - description: "Testing Mozilla Voice STT for Linux/AMD64 on ElectronJS v9.0, CPU only, optimized version (8kHz)" + name: "DeepSpeech Linux AMD64 CPU ElectronJS v9.0 tests (8kHz)" + description: "Testing DeepSpeech for Linux/AMD64 on ElectronJS v9.0, CPU only, optimized version (8kHz)" diff --git a/taskcluster/test-electronjs_v9.0_multiarchpkg-win-amd64-opt.yml b/taskcluster/test-electronjs_v9.0_multiarchpkg-win-amd64-opt.yml index 4e4b713b..0b6d51f3 100644 --- a/taskcluster/test-electronjs_v9.0_multiarchpkg-win-amd64-opt.yml +++ b/taskcluster/test-electronjs_v9.0_multiarchpkg-win-amd64-opt.yml @@ -10,5 +10,5 @@ build: args: tests_cmdline: "${system.homedir.win}/DeepSpeech/ds/taskcluster/tc-electron-tests.sh 12.x 9.0.1 16k" metadata: - name: "Mozilla Voice STT Windows AMD64 CPU ElectronJS MultiArch Package v9.0 tests" - description: "Testing Mozilla Voice STT for Windows/AMD64 on ElectronJS MultiArch Package v9.0, CPU only, optimized version" + name: "DeepSpeech Windows AMD64 CPU ElectronJS MultiArch Package v9.0 tests" + description: "Testing DeepSpeech for Windows/AMD64 on ElectronJS MultiArch Package v9.0, CPU only, optimized version" diff --git a/taskcluster/test-electronjs_v9.0_multiarchpkg-win-cuda-opt.yml b/taskcluster/test-electronjs_v9.0_multiarchpkg-win-cuda-opt.yml index 875d5cee..957a0281 100644 --- a/taskcluster/test-electronjs_v9.0_multiarchpkg-win-cuda-opt.yml +++ b/taskcluster/test-electronjs_v9.0_multiarchpkg-win-cuda-opt.yml @@ -10,5 +10,5 @@ build: args: tests_cmdline: "${system.homedir.win}/DeepSpeech/ds/taskcluster/tc-electron-tests.sh 12.x 9.0.1 16k cuda" metadata: - name: "Mozilla Voice STT Windows AMD64 CUDA ElectronJS MultiArch Package v9.0 tests" - description: "Testing Mozilla Voice STT for Windows/AMD64 on ElectronJS MultiArch Package v9.0, CUDA, optimized version" + name: "DeepSpeech Windows AMD64 CUDA ElectronJS MultiArch Package v9.0 tests" + description: "Testing DeepSpeech for Windows/AMD64 on ElectronJS MultiArch Package v9.0, CUDA, optimized version" diff --git a/taskcluster/test-electronjs_v9.0_multiarchpkg-win-tflite-opt.yml b/taskcluster/test-electronjs_v9.0_multiarchpkg-win-tflite-opt.yml index 4c3dcee0..4de742c3 100644 --- a/taskcluster/test-electronjs_v9.0_multiarchpkg-win-tflite-opt.yml +++ b/taskcluster/test-electronjs_v9.0_multiarchpkg-win-tflite-opt.yml @@ -10,5 +10,5 @@ build: args: tests_cmdline: "${system.homedir.win}/DeepSpeech/ds/taskcluster/tc-electron_tflite-tests.sh 12.x 9.0.1 16k" metadata: - name: "Mozilla Voice STT Windows AMD64 TFLite ElectronJS MultiArch Package v9.0 tests" - description: "Testing Mozilla Voice STT for Windows/AMD64 on ElectronJS MultiArch Package v9.0, TFLite only, optimized version" + name: "DeepSpeech Windows AMD64 TFLite ElectronJS MultiArch Package v9.0 tests" + description: "Testing DeepSpeech for Windows/AMD64 on ElectronJS MultiArch Package v9.0, TFLite only, optimized version" diff --git a/taskcluster/test-electronjs_v9.1-darwin-amd64-opt.yml b/taskcluster/test-electronjs_v9.1-darwin-amd64-opt.yml index 65e8a22e..65d57a96 100644 --- a/taskcluster/test-electronjs_v9.1-darwin-amd64-opt.yml +++ b/taskcluster/test-electronjs_v9.1-darwin-amd64-opt.yml @@ -11,5 +11,5 @@ build: args: tests_cmdline: "$TASKCLUSTER_TASK_DIR/DeepSpeech/ds/taskcluster/tc-electron-tests.sh 12.x 9.1.0 16k" metadata: - name: "Mozilla Voice STT OSX AMD64 CPU ElectronJS v9.1 tests" - description: "Testing Mozilla Voice STT for OSX/AMD64 on ElectronJS v9.1, CPU only, optimized version" + name: "DeepSpeech OSX AMD64 CPU ElectronJS v9.1 tests" + description: "Testing DeepSpeech for OSX/AMD64 on ElectronJS v9.1, CPU only, optimized version" diff --git a/taskcluster/test-electronjs_v9.1-win-amd64-opt.yml b/taskcluster/test-electronjs_v9.1-win-amd64-opt.yml index 1854d91a..108d07b9 100644 --- a/taskcluster/test-electronjs_v9.1-win-amd64-opt.yml +++ b/taskcluster/test-electronjs_v9.1-win-amd64-opt.yml @@ -10,5 +10,5 @@ build: args: tests_cmdline: "${system.homedir.win}/DeepSpeech/ds/taskcluster/tc-electron-tests.sh 12.x 9.1.0 16k" metadata: - name: "Mozilla Voice STT Windows AMD64 CPU ElectronJS v9.1 tests" - description: "Testing Mozilla Voice STT for Windows/AMD64 on ElectronJS v9.1, CPU only, optimized version" + name: "DeepSpeech Windows AMD64 CPU ElectronJS v9.1 tests" + description: "Testing DeepSpeech for Windows/AMD64 on ElectronJS v9.1, CPU only, optimized version" diff --git a/taskcluster/test-electronjs_v9.1_16k-linux-amd64-opt.yml b/taskcluster/test-electronjs_v9.1_16k-linux-amd64-opt.yml index 719aa7a7..992f011d 100644 --- a/taskcluster/test-electronjs_v9.1_16k-linux-amd64-opt.yml +++ b/taskcluster/test-electronjs_v9.1_16k-linux-amd64-opt.yml @@ -12,5 +12,5 @@ build: tests_cmdline: "${system.homedir.linux}/DeepSpeech/ds/taskcluster/tc-electron-tests.sh 12.x 9.1.0 16k" workerType: "${docker.dsTests}" metadata: - name: "Mozilla Voice STT Linux AMD64 CPU ElectronJS v9.1 tests (16kHz)" - description: "Testing Mozilla Voice STT for Linux/AMD64 on ElectronJS v9.1, CPU only, optimized version (16kHz)" + name: "DeepSpeech Linux AMD64 CPU ElectronJS v9.1 tests (16kHz)" + description: "Testing DeepSpeech for Linux/AMD64 on ElectronJS v9.1, CPU only, optimized version (16kHz)" diff --git a/taskcluster/test-electronjs_v9.1_8k-linux-amd64-opt.yml b/taskcluster/test-electronjs_v9.1_8k-linux-amd64-opt.yml index 5ae238d4..f066ddb0 100644 --- a/taskcluster/test-electronjs_v9.1_8k-linux-amd64-opt.yml +++ b/taskcluster/test-electronjs_v9.1_8k-linux-amd64-opt.yml @@ -12,5 +12,5 @@ build: tests_cmdline: "${system.homedir.linux}/DeepSpeech/ds/taskcluster/tc-electron-tests.sh 12.x 9.1.0 8k" workerType: "${docker.dsTests}" metadata: - name: "Mozilla Voice STT Linux AMD64 CPU ElectronJS v9.1 tests (8kHz)" - description: "Testing Mozilla Voice STT for Linux/AMD64 on ElectronJS v9.1, CPU only, optimized version (8kHz)" + name: "DeepSpeech Linux AMD64 CPU ElectronJS v9.1 tests (8kHz)" + description: "Testing DeepSpeech for Linux/AMD64 on ElectronJS v9.1, CPU only, optimized version (8kHz)" diff --git a/taskcluster/test-electronjs_v9.1_multiarchpkg-win-amd64-opt.yml b/taskcluster/test-electronjs_v9.1_multiarchpkg-win-amd64-opt.yml index b08f7ab5..9e3b54b2 100644 --- a/taskcluster/test-electronjs_v9.1_multiarchpkg-win-amd64-opt.yml +++ b/taskcluster/test-electronjs_v9.1_multiarchpkg-win-amd64-opt.yml @@ -10,5 +10,5 @@ build: args: tests_cmdline: "${system.homedir.win}/DeepSpeech/ds/taskcluster/tc-electron-tests.sh 12.x 9.1.0 16k" metadata: - name: "Mozilla Voice STT Windows AMD64 CPU ElectronJS MultiArch Package v9.1 tests" - description: "Testing Mozilla Voice STT for Windows/AMD64 on ElectronJS MultiArch Package v9.1, CPU only, optimized version" + name: "DeepSpeech Windows AMD64 CPU ElectronJS MultiArch Package v9.1 tests" + description: "Testing DeepSpeech for Windows/AMD64 on ElectronJS MultiArch Package v9.1, CPU only, optimized version" diff --git a/taskcluster/test-electronjs_v9.1_multiarchpkg-win-cuda-opt.yml b/taskcluster/test-electronjs_v9.1_multiarchpkg-win-cuda-opt.yml index f6640c7c..cc69231b 100644 --- a/taskcluster/test-electronjs_v9.1_multiarchpkg-win-cuda-opt.yml +++ b/taskcluster/test-electronjs_v9.1_multiarchpkg-win-cuda-opt.yml @@ -10,5 +10,5 @@ build: args: tests_cmdline: "${system.homedir.win}/DeepSpeech/ds/taskcluster/tc-electron-tests.sh 12.x 9.1.0 16k cuda" metadata: - name: "Mozilla Voice STT Windows AMD64 CUDA ElectronJS MultiArch Package v9.1 tests" - description: "Testing Mozilla Voice STT for Windows/AMD64 on ElectronJS MultiArch Package v9.1, CUDA, optimized version" + name: "DeepSpeech Windows AMD64 CUDA ElectronJS MultiArch Package v9.1 tests" + description: "Testing DeepSpeech for Windows/AMD64 on ElectronJS MultiArch Package v9.1, CUDA, optimized version" diff --git a/taskcluster/test-electronjs_v9.1_multiarchpkg-win-tflite-opt.yml b/taskcluster/test-electronjs_v9.1_multiarchpkg-win-tflite-opt.yml index ce591a7e..33c456d8 100644 --- a/taskcluster/test-electronjs_v9.1_multiarchpkg-win-tflite-opt.yml +++ b/taskcluster/test-electronjs_v9.1_multiarchpkg-win-tflite-opt.yml @@ -10,5 +10,5 @@ build: args: tests_cmdline: "${system.homedir.win}/DeepSpeech/ds/taskcluster/tc-electron_tflite-tests.sh 12.x 9.1.0 16k" metadata: - name: "Mozilla Voice STT Windows AMD64 TFLite ElectronJS MultiArch Package v9.1 tests" - description: "Testing Mozilla Voice STT for Windows/AMD64 on ElectronJS MultiArch Package v9.1, TFLite only, optimized version" + name: "DeepSpeech Windows AMD64 TFLite ElectronJS MultiArch Package v9.1 tests" + description: "Testing DeepSpeech for Windows/AMD64 on ElectronJS MultiArch Package v9.1, TFLite only, optimized version" diff --git a/taskcluster/test-evaluate_tflite-linux-amd64-py36m-opt.yml b/taskcluster/test-evaluate_tflite-linux-amd64-py36m-opt.yml index 006554e2..dfa3023f 100644 --- a/taskcluster/test-evaluate_tflite-linux-amd64-py36m-opt.yml +++ b/taskcluster/test-evaluate_tflite-linux-amd64-py36m-opt.yml @@ -8,5 +8,5 @@ build: tests_cmdline: "${system.homedir.linux}/DeepSpeech/ds/taskcluster/tc-evaluate_tflite.sh 3.6.10:m 16k" workerType: "${docker.dsTests}" metadata: - name: "Mozilla Voice STT Linux AMD64 CPU evaluate_tflite.py Py3.6 (16kHz)" + name: "DeepSpeech Linux AMD64 CPU evaluate_tflite.py Py3.6 (16kHz)" description: "Test evaluate_tflite.py on Linux/AMD64 using upstream TensorFlow Python 3.6, CPU only, optimized version" diff --git a/taskcluster/test-netframework-win-amd64-opt.yml b/taskcluster/test-netframework-win-amd64-opt.yml index f5ce8e3f..df789683 100644 --- a/taskcluster/test-netframework-win-amd64-opt.yml +++ b/taskcluster/test-netframework-win-amd64-opt.yml @@ -7,5 +7,5 @@ build: args: tests_cmdline: "$TASKCLUSTER_TASK_DIR/DeepSpeech/ds/taskcluster/tc-netframework-ds-tests.sh 16k" metadata: - name: "Mozilla Voice STT Windows AMD64 CPU .Net Framework tests" - description: "Testing Mozilla Voice STT .Net Framework for Windows/AMD64, CPU only, optimized version" + name: "DeepSpeech Windows AMD64 CPU .Net Framework tests" + description: "Testing DeepSpeech .Net Framework for Windows/AMD64, CPU only, optimized version" diff --git a/taskcluster/test-netframework-win-cuda-opt.yml b/taskcluster/test-netframework-win-cuda-opt.yml index ee7fd37e..c23664d7 100644 --- a/taskcluster/test-netframework-win-cuda-opt.yml +++ b/taskcluster/test-netframework-win-cuda-opt.yml @@ -7,5 +7,5 @@ build: args: tests_cmdline: "$TASKCLUSTER_TASK_DIR/DeepSpeech/ds/taskcluster/tc-netframework-ds-tests.sh 16k cuda" metadata: - name: "Mozilla Voice STT Windows AMD64 CUDA .Net Framework tests" - description: "Testing Mozilla Voice STT .Net Framework for Windows/AMD64, CUDA, optimized version" + name: "DeepSpeech Windows AMD64 CUDA .Net Framework tests" + description: "Testing DeepSpeech .Net Framework for Windows/AMD64, CUDA, optimized version" diff --git a/taskcluster/test-netframework-win-tflite-opt.yml b/taskcluster/test-netframework-win-tflite-opt.yml index 3e053fe4..327bf685 100644 --- a/taskcluster/test-netframework-win-tflite-opt.yml +++ b/taskcluster/test-netframework-win-tflite-opt.yml @@ -7,5 +7,5 @@ build: args: tests_cmdline: "$TASKCLUSTER_TASK_DIR/DeepSpeech/ds/taskcluster/tc-netframework-ds-tests.sh 16k --tflite" metadata: - name: "Mozilla Voice STT Windows AMD64 TFLite .Net Framework tests" - description: "Testing Mozilla Voice STT .Net Framework for Windows/AMD64, TFLite, optimized version" + name: "DeepSpeech Windows AMD64 TFLite .Net Framework tests" + description: "Testing DeepSpeech .Net Framework for Windows/AMD64, TFLite, optimized version" diff --git a/taskcluster/test-nodejs_10x-armbian-arm64-opt.yml b/taskcluster/test-nodejs_10x-armbian-arm64-opt.yml index 23ca1a7f..8c3cf5ac 100644 --- a/taskcluster/test-nodejs_10x-armbian-arm64-opt.yml +++ b/taskcluster/test-nodejs_10x-armbian-arm64-opt.yml @@ -10,5 +10,5 @@ build: args: tests_cmdline: "${system.homedir.linux}/DeepSpeech/ds/taskcluster/tc-node_tflite-tests.sh 10.x 16k" metadata: - name: "Mozilla Voice STT ARMbian ARM64 Cortex-A53 CPU NodeJS 10.x tests" - description: "Testing Mozilla Voice STT for ARMbian ARM64 Cortex-A53 on NodeJS v10.x, CPU only, optimized version" + name: "DeepSpeech ARMbian ARM64 Cortex-A53 CPU NodeJS 10.x tests" + description: "Testing DeepSpeech for ARMbian ARM64 Cortex-A53 on NodeJS v10.x, CPU only, optimized version" diff --git a/taskcluster/test-nodejs_10x-darwin-amd64-opt.yml b/taskcluster/test-nodejs_10x-darwin-amd64-opt.yml index fa401723..f1ea4abd 100644 --- a/taskcluster/test-nodejs_10x-darwin-amd64-opt.yml +++ b/taskcluster/test-nodejs_10x-darwin-amd64-opt.yml @@ -11,5 +11,5 @@ build: args: tests_cmdline: "$TASKCLUSTER_TASK_DIR/DeepSpeech/ds/taskcluster/tc-node-tests.sh 10.x 16k" metadata: - name: "Mozilla Voice STT OSX AMD64 CPU NodeJS 10.x tests" - description: "Testing Mozilla Voice STT for OSX/AMD64 on NodeJS v10.x, CPU only, optimized version" + name: "DeepSpeech OSX AMD64 CPU NodeJS 10.x tests" + description: "Testing DeepSpeech for OSX/AMD64 on NodeJS v10.x, CPU only, optimized version" diff --git a/taskcluster/test-nodejs_10x-raspbian-rpi3-opt.yml b/taskcluster/test-nodejs_10x-raspbian-rpi3-opt.yml index c9b3461c..d1867591 100644 --- a/taskcluster/test-nodejs_10x-raspbian-rpi3-opt.yml +++ b/taskcluster/test-nodejs_10x-raspbian-rpi3-opt.yml @@ -10,5 +10,5 @@ build: args: tests_cmdline: "${system.homedir.linux}/DeepSpeech/ds/taskcluster/tc-node_tflite-tests.sh 10.x 16k" metadata: - name: "Mozilla Voice STT Raspbian RPi3/ARMv7 CPU NodeJS 10.x tests" - description: "Testing Mozilla Voice STT for Raspbian RPi3/ARMv7 on NodeJS v10.x, CPU only, optimized version" + name: "DeepSpeech Raspbian RPi3/ARMv7 CPU NodeJS 10.x tests" + description: "Testing DeepSpeech for Raspbian RPi3/ARMv7 on NodeJS v10.x, CPU only, optimized version" diff --git a/taskcluster/test-nodejs_10x-win-amd64-opt.yml b/taskcluster/test-nodejs_10x-win-amd64-opt.yml index 20d22fdb..b1b03b0d 100644 --- a/taskcluster/test-nodejs_10x-win-amd64-opt.yml +++ b/taskcluster/test-nodejs_10x-win-amd64-opt.yml @@ -10,5 +10,5 @@ build: args: tests_cmdline: "${system.homedir.win}/DeepSpeech/ds/taskcluster/tc-node-tests.sh 10.x 16k" metadata: - name: "Mozilla Voice STT Windows AMD64 CPU NodeJS 10.x tests" - description: "Testing Mozilla Voice STT for Windows/AMD64 on NodeJS v10.x, CPU only, optimized version" + name: "DeepSpeech Windows AMD64 CPU NodeJS 10.x tests" + description: "Testing DeepSpeech for Windows/AMD64 on NodeJS v10.x, CPU only, optimized version" diff --git a/taskcluster/test-nodejs_10x_16k-linux-amd64-opt.yml b/taskcluster/test-nodejs_10x_16k-linux-amd64-opt.yml index 4b496d05..7f6d104c 100644 --- a/taskcluster/test-nodejs_10x_16k-linux-amd64-opt.yml +++ b/taskcluster/test-nodejs_10x_16k-linux-amd64-opt.yml @@ -12,5 +12,5 @@ build: tests_cmdline: "${system.homedir.linux}/DeepSpeech/ds/taskcluster/tc-node-tests.sh 10.x 16k" workerType: "${docker.dsTests}" metadata: - name: "Mozilla Voice STT Linux AMD64 CPU NodeJS 10.x tests (16kHz)" - description: "Testing Mozilla Voice STT for Linux/AMD64 on NodeJS v10.x, CPU only, optimized version (16kHz)" + name: "DeepSpeech Linux AMD64 CPU NodeJS 10.x tests (16kHz)" + description: "Testing DeepSpeech for Linux/AMD64 on NodeJS v10.x, CPU only, optimized version (16kHz)" diff --git a/taskcluster/test-nodejs_10x_16k-linux-amd64-prod_pbmodel-opt.yml b/taskcluster/test-nodejs_10x_16k-linux-amd64-prod_pbmodel-opt.yml index 05aa27b6..6e09e3c2 100644 --- a/taskcluster/test-nodejs_10x_16k-linux-amd64-prod_pbmodel-opt.yml +++ b/taskcluster/test-nodejs_10x_16k-linux-amd64-prod_pbmodel-opt.yml @@ -10,5 +10,5 @@ build: tests_cmdline: "${system.homedir.linux}/DeepSpeech/ds/taskcluster/tc-node-tests-prod.sh 10.x 16k" workerType: "${docker.dsTests}" metadata: - name: "Mozilla Voice STT Linux AMD64 CPU NodeJS 10.x prod tests (16kHz)" - description: "Testing Mozilla Voice STT for Linux/AMD64 on NodeJS v10.x on prod model, CPU only, optimized version (16kHz)" + name: "DeepSpeech Linux AMD64 CPU NodeJS 10.x prod tests (16kHz)" + description: "Testing DeepSpeech for Linux/AMD64 on NodeJS v10.x on prod model, CPU only, optimized version (16kHz)" diff --git a/taskcluster/test-nodejs_10x_16k_tflite-linux-amd64-prod-opt.yml b/taskcluster/test-nodejs_10x_16k_tflite-linux-amd64-prod-opt.yml index 56305a0d..1f8513f5 100644 --- a/taskcluster/test-nodejs_10x_16k_tflite-linux-amd64-prod-opt.yml +++ b/taskcluster/test-nodejs_10x_16k_tflite-linux-amd64-prod-opt.yml @@ -10,5 +10,5 @@ build: tests_cmdline: "${system.homedir.linux}/DeepSpeech/ds/taskcluster/tc-node_tflite-tests-prod.sh 10.x 16k" workerType: "${docker.dsTests}" metadata: - name: "Mozilla Voice STT Linux AMD64 TFLite NodeJS 10.x prod tests (16kHz)" - description: "Testing Mozilla Voice STT for Linux/AMD64 on NodeJS v10.x on prod model, TFLite, optimized version (16kHz)" + name: "DeepSpeech Linux AMD64 TFLite NodeJS 10.x prod tests (16kHz)" + description: "Testing DeepSpeech for Linux/AMD64 on NodeJS v10.x on prod model, TFLite, optimized version (16kHz)" diff --git a/taskcluster/test-nodejs_10x_8k-linux-amd64-opt.yml b/taskcluster/test-nodejs_10x_8k-linux-amd64-opt.yml index 253d7bfe..66736a74 100644 --- a/taskcluster/test-nodejs_10x_8k-linux-amd64-opt.yml +++ b/taskcluster/test-nodejs_10x_8k-linux-amd64-opt.yml @@ -12,5 +12,5 @@ build: tests_cmdline: "${system.homedir.linux}/DeepSpeech/ds/taskcluster/tc-node-tests.sh 10.x 8k" workerType: "${docker.dsTests}" metadata: - name: "Mozilla Voice STT Linux AMD64 CPU NodeJS 10.x tests (8kHz)" - description: "Testing Mozilla Voice STT for Linux/AMD64 on NodeJS v10.x, CPU only, optimized version (8kHz)" + name: "DeepSpeech Linux AMD64 CPU NodeJS 10.x tests (8kHz)" + description: "Testing DeepSpeech for Linux/AMD64 on NodeJS v10.x, CPU only, optimized version (8kHz)" diff --git a/taskcluster/test-nodejs_10x_8k-linux-amd64-prod_pbmodel-opt.yml b/taskcluster/test-nodejs_10x_8k-linux-amd64-prod_pbmodel-opt.yml index 81d2b16d..002ad53e 100644 --- a/taskcluster/test-nodejs_10x_8k-linux-amd64-prod_pbmodel-opt.yml +++ b/taskcluster/test-nodejs_10x_8k-linux-amd64-prod_pbmodel-opt.yml @@ -10,5 +10,5 @@ build: tests_cmdline: "${system.homedir.linux}/DeepSpeech/ds/taskcluster/tc-node-tests-prod.sh 10.x 8k" workerType: "${docker.dsTests}" metadata: - name: "Mozilla Voice STT Linux AMD64 CPU NodeJS 10.x prod tests (8kHz)" - description: "Testing Mozilla Voice STT for Linux/AMD64 on NodeJS v10.x on prod model, CPU only, optimized version (8kHz)" + name: "DeepSpeech Linux AMD64 CPU NodeJS 10.x prod tests (8kHz)" + description: "Testing DeepSpeech for Linux/AMD64 on NodeJS v10.x on prod model, CPU only, optimized version (8kHz)" diff --git a/taskcluster/test-nodejs_10x_8k_tflite-linux-amd64-prod-opt.yml b/taskcluster/test-nodejs_10x_8k_tflite-linux-amd64-prod-opt.yml index ba54a358..c9cf0178 100644 --- a/taskcluster/test-nodejs_10x_8k_tflite-linux-amd64-prod-opt.yml +++ b/taskcluster/test-nodejs_10x_8k_tflite-linux-amd64-prod-opt.yml @@ -10,5 +10,5 @@ build: tests_cmdline: "${system.homedir.linux}/DeepSpeech/ds/taskcluster/tc-node_tflite-tests-prod.sh 10.x 8k" workerType: "${docker.dsTests}" metadata: - name: "Mozilla Voice STT Linux AMD64 TFLite NodeJS 10.x prod tests (8kHz)" - description: "Testing Mozilla Voice STT for Linux/AMD64 on NodeJS v10.x on prod model, TFLite, optimized version (8kHz)" + name: "DeepSpeech Linux AMD64 TFLite NodeJS 10.x prod tests (8kHz)" + description: "Testing DeepSpeech for Linux/AMD64 on NodeJS v10.x on prod model, TFLite, optimized version (8kHz)" diff --git a/taskcluster/test-nodejs_11x-armbian-arm64-opt.yml b/taskcluster/test-nodejs_11x-armbian-arm64-opt.yml index b6b11afc..f7af3d3b 100644 --- a/taskcluster/test-nodejs_11x-armbian-arm64-opt.yml +++ b/taskcluster/test-nodejs_11x-armbian-arm64-opt.yml @@ -10,5 +10,5 @@ build: args: tests_cmdline: "${system.homedir.linux}/DeepSpeech/ds/taskcluster/tc-node_tflite-tests.sh 11.x 16k" metadata: - name: "Mozilla Voice STT ARMbian ARM64 Cortex-A53 CPU NodeJS 11.x tests" - description: "Testing Mozilla Voice STT for ARMbian ARM64 Cortex-A53 on NodeJS v11.x, CPU only, optimized version" + name: "DeepSpeech ARMbian ARM64 Cortex-A53 CPU NodeJS 11.x tests" + description: "Testing DeepSpeech for ARMbian ARM64 Cortex-A53 on NodeJS v11.x, CPU only, optimized version" diff --git a/taskcluster/test-nodejs_11x-darwin-amd64-opt.yml b/taskcluster/test-nodejs_11x-darwin-amd64-opt.yml index 5a818923..45a6535d 100644 --- a/taskcluster/test-nodejs_11x-darwin-amd64-opt.yml +++ b/taskcluster/test-nodejs_11x-darwin-amd64-opt.yml @@ -11,5 +11,5 @@ build: args: tests_cmdline: "$TASKCLUSTER_TASK_DIR/DeepSpeech/ds/taskcluster/tc-node-tests.sh 11.x 16k" metadata: - name: "Mozilla Voice STT OSX AMD64 CPU NodeJS 11.x tests" - description: "Testing Mozilla Voice STT for OSX/AMD64 on NodeJS v11.x, CPU only, optimized version" + name: "DeepSpeech OSX AMD64 CPU NodeJS 11.x tests" + description: "Testing DeepSpeech for OSX/AMD64 on NodeJS v11.x, CPU only, optimized version" diff --git a/taskcluster/test-nodejs_11x-raspbian-rpi3-opt.yml b/taskcluster/test-nodejs_11x-raspbian-rpi3-opt.yml index aface8ae..570f1300 100644 --- a/taskcluster/test-nodejs_11x-raspbian-rpi3-opt.yml +++ b/taskcluster/test-nodejs_11x-raspbian-rpi3-opt.yml @@ -10,5 +10,5 @@ build: args: tests_cmdline: "${system.homedir.linux}/DeepSpeech/ds/taskcluster/tc-node_tflite-tests.sh 11.x 16k" metadata: - name: "Mozilla Voice STT Raspbian RPi3/ARMv7 CPU NodeJS 11.x tests" - description: "Testing Mozilla Voice STT for Raspbian RPi3/ARMv7 on NodeJS v11.x, CPU only, optimized version" + name: "DeepSpeech Raspbian RPi3/ARMv7 CPU NodeJS 11.x tests" + description: "Testing DeepSpeech for Raspbian RPi3/ARMv7 on NodeJS v11.x, CPU only, optimized version" diff --git a/taskcluster/test-nodejs_11x-win-amd64-opt.yml b/taskcluster/test-nodejs_11x-win-amd64-opt.yml index fb0f3d12..049609a9 100644 --- a/taskcluster/test-nodejs_11x-win-amd64-opt.yml +++ b/taskcluster/test-nodejs_11x-win-amd64-opt.yml @@ -10,5 +10,5 @@ build: args: tests_cmdline: "${system.homedir.win}/DeepSpeech/ds/taskcluster/tc-node-tests.sh 11.x 16k" metadata: - name: "Mozilla Voice STT Windows AMD64 CPU NodeJS 11.x tests" - description: "Testing Mozilla Voice STT for Windows/AMD64 on NodeJS v11.x, CPU only, optimized version" + name: "DeepSpeech Windows AMD64 CPU NodeJS 11.x tests" + description: "Testing DeepSpeech for Windows/AMD64 on NodeJS v11.x, CPU only, optimized version" diff --git a/taskcluster/test-nodejs_11x_16k-linux-amd64-opt.yml b/taskcluster/test-nodejs_11x_16k-linux-amd64-opt.yml index 8a917df9..cb27d005 100644 --- a/taskcluster/test-nodejs_11x_16k-linux-amd64-opt.yml +++ b/taskcluster/test-nodejs_11x_16k-linux-amd64-opt.yml @@ -12,5 +12,5 @@ build: tests_cmdline: "${system.homedir.linux}/DeepSpeech/ds/taskcluster/tc-node-tests.sh 11.x 16k" workerType: "${docker.dsTests}" metadata: - name: "Mozilla Voice STT Linux AMD64 CPU NodeJS 11.x tests (16kHz)" - description: "Testing Mozilla Voice STT for Linux/AMD64 on NodeJS v11.x, CPU only, optimized version (16kHz)" + name: "DeepSpeech Linux AMD64 CPU NodeJS 11.x tests (16kHz)" + description: "Testing DeepSpeech for Linux/AMD64 on NodeJS v11.x, CPU only, optimized version (16kHz)" diff --git a/taskcluster/test-nodejs_11x_16k-linux-amd64-prod_pbmodel-opt.yml b/taskcluster/test-nodejs_11x_16k-linux-amd64-prod_pbmodel-opt.yml index ae3620e2..9f4cd2b0 100644 --- a/taskcluster/test-nodejs_11x_16k-linux-amd64-prod_pbmodel-opt.yml +++ b/taskcluster/test-nodejs_11x_16k-linux-amd64-prod_pbmodel-opt.yml @@ -10,5 +10,5 @@ build: tests_cmdline: "${system.homedir.linux}/DeepSpeech/ds/taskcluster/tc-node-tests-prod.sh 11.x 16k" workerType: "${docker.dsTests}" metadata: - name: "Mozilla Voice STT Linux AMD64 CPU NodeJS 11.x prod tests (16kHz)" - description: "Testing Mozilla Voice STT for Linux/AMD64 on NodeJS v11.x on prod model, CPU only, optimized version (16kHz)" + name: "DeepSpeech Linux AMD64 CPU NodeJS 11.x prod tests (16kHz)" + description: "Testing DeepSpeech for Linux/AMD64 on NodeJS v11.x on prod model, CPU only, optimized version (16kHz)" diff --git a/taskcluster/test-nodejs_11x_16k_tflite-linux-amd64-prod-opt.yml b/taskcluster/test-nodejs_11x_16k_tflite-linux-amd64-prod-opt.yml index bccea715..554b0930 100644 --- a/taskcluster/test-nodejs_11x_16k_tflite-linux-amd64-prod-opt.yml +++ b/taskcluster/test-nodejs_11x_16k_tflite-linux-amd64-prod-opt.yml @@ -10,5 +10,5 @@ build: tests_cmdline: "${system.homedir.linux}/DeepSpeech/ds/taskcluster/tc-node_tflite-tests-prod.sh 11.x 16k" workerType: "${docker.dsTests}" metadata: - name: "Mozilla Voice STT Linux AMD64 TFLite NodeJS 11.x prod tests (16kHz)" - description: "Testing Mozilla Voice STT for Linux/AMD64 on NodeJS v11.x on prod model, TFLite, optimized version (16kHz)" + name: "DeepSpeech Linux AMD64 TFLite NodeJS 11.x prod tests (16kHz)" + description: "Testing DeepSpeech for Linux/AMD64 on NodeJS v11.x on prod model, TFLite, optimized version (16kHz)" diff --git a/taskcluster/test-nodejs_11x_8k-linux-amd64-opt.yml b/taskcluster/test-nodejs_11x_8k-linux-amd64-opt.yml index 3f29bbac..7a69bfb8 100644 --- a/taskcluster/test-nodejs_11x_8k-linux-amd64-opt.yml +++ b/taskcluster/test-nodejs_11x_8k-linux-amd64-opt.yml @@ -12,5 +12,5 @@ build: tests_cmdline: "${system.homedir.linux}/DeepSpeech/ds/taskcluster/tc-node-tests.sh 11.x 8k" workerType: "${docker.dsTests}" metadata: - name: "Mozilla Voice STT Linux AMD64 CPU NodeJS 11.x tests (8kHz)" - description: "Testing Mozilla Voice STT for Linux/AMD64 on NodeJS v11.x, CPU only, optimized version (8kHz)" + name: "DeepSpeech Linux AMD64 CPU NodeJS 11.x tests (8kHz)" + description: "Testing DeepSpeech for Linux/AMD64 on NodeJS v11.x, CPU only, optimized version (8kHz)" diff --git a/taskcluster/test-nodejs_11x_8k-linux-amd64-prod_pbmodel-opt.yml b/taskcluster/test-nodejs_11x_8k-linux-amd64-prod_pbmodel-opt.yml index ecc69818..d48ac49c 100644 --- a/taskcluster/test-nodejs_11x_8k-linux-amd64-prod_pbmodel-opt.yml +++ b/taskcluster/test-nodejs_11x_8k-linux-amd64-prod_pbmodel-opt.yml @@ -10,5 +10,5 @@ build: tests_cmdline: "${system.homedir.linux}/DeepSpeech/ds/taskcluster/tc-node-tests-prod.sh 11.x 8k" workerType: "${docker.dsTests}" metadata: - name: "Mozilla Voice STT Linux AMD64 CPU NodeJS 11.x prod tests (8kHz)" - description: "Testing Mozilla Voice STT for Linux/AMD64 on NodeJS v11.x on prod model, CPU only, optimized version (8kHz)" + name: "DeepSpeech Linux AMD64 CPU NodeJS 11.x prod tests (8kHz)" + description: "Testing DeepSpeech for Linux/AMD64 on NodeJS v11.x on prod model, CPU only, optimized version (8kHz)" diff --git a/taskcluster/test-nodejs_11x_8k_tflite-linux-amd64-prod-opt.yml b/taskcluster/test-nodejs_11x_8k_tflite-linux-amd64-prod-opt.yml index 67760067..c459fbd0 100644 --- a/taskcluster/test-nodejs_11x_8k_tflite-linux-amd64-prod-opt.yml +++ b/taskcluster/test-nodejs_11x_8k_tflite-linux-amd64-prod-opt.yml @@ -10,5 +10,5 @@ build: tests_cmdline: "${system.homedir.linux}/DeepSpeech/ds/taskcluster/tc-node_tflite-tests-prod.sh 11.x 8k" workerType: "${docker.dsTests}" metadata: - name: "Mozilla Voice STT Linux AMD64 TFLite NodeJS 11.x prod tests (8kHz)" - description: "Testing Mozilla Voice STT for Linux/AMD64 on NodeJS v11.x on prod model, TFLite, optimized version (8kHz)" + name: "DeepSpeech Linux AMD64 TFLite NodeJS 11.x prod tests (8kHz)" + description: "Testing DeepSpeech for Linux/AMD64 on NodeJS v11.x on prod model, TFLite, optimized version (8kHz)" diff --git a/taskcluster/test-nodejs_12x-armbian-arm64-opt.yml b/taskcluster/test-nodejs_12x-armbian-arm64-opt.yml index 7dcdc00c..db647ce0 100644 --- a/taskcluster/test-nodejs_12x-armbian-arm64-opt.yml +++ b/taskcluster/test-nodejs_12x-armbian-arm64-opt.yml @@ -10,5 +10,5 @@ build: args: tests_cmdline: "${system.homedir.linux}/DeepSpeech/ds/taskcluster/tc-node_tflite-tests.sh 12.x 16k" metadata: - name: "Mozilla Voice STT ARMbian ARM64 Cortex-A53 CPU NodeJS 12.x tests" - description: "Testing Mozilla Voice STT for ARMbian ARM64 Cortex-A53 on NodeJS v12.x, CPU only, optimized version" + name: "DeepSpeech ARMbian ARM64 Cortex-A53 CPU NodeJS 12.x tests" + description: "Testing DeepSpeech for ARMbian ARM64 Cortex-A53 on NodeJS v12.x, CPU only, optimized version" diff --git a/taskcluster/test-nodejs_12x-darwin-amd64-opt.yml b/taskcluster/test-nodejs_12x-darwin-amd64-opt.yml index dda38dc6..7ec11441 100644 --- a/taskcluster/test-nodejs_12x-darwin-amd64-opt.yml +++ b/taskcluster/test-nodejs_12x-darwin-amd64-opt.yml @@ -11,5 +11,5 @@ build: args: tests_cmdline: "$TASKCLUSTER_TASK_DIR/DeepSpeech/ds/taskcluster/tc-node-tests.sh 12.x 16k" metadata: - name: "Mozilla Voice STT OSX AMD64 CPU NodeJS 12.x tests" - description: "Testing Mozilla Voice STT for OSX/AMD64 on NodeJS v12.x, CPU only, optimized version" + name: "DeepSpeech OSX AMD64 CPU NodeJS 12.x tests" + description: "Testing DeepSpeech for OSX/AMD64 on NodeJS v12.x, CPU only, optimized version" diff --git a/taskcluster/test-nodejs_12x-raspbian-rpi3-opt.yml b/taskcluster/test-nodejs_12x-raspbian-rpi3-opt.yml index 3ff7d537..f49dceac 100644 --- a/taskcluster/test-nodejs_12x-raspbian-rpi3-opt.yml +++ b/taskcluster/test-nodejs_12x-raspbian-rpi3-opt.yml @@ -10,5 +10,5 @@ build: args: tests_cmdline: "${system.homedir.linux}/DeepSpeech/ds/taskcluster/tc-node_tflite-tests.sh 12.x 16k" metadata: - name: "Mozilla Voice STT Raspbian RPi3/ARMv7 CPU NodeJS 12.x tests" - description: "Testing Mozilla Voice STT for Raspbian RPi3/ARMv7 on NodeJS v12.x, CPU only, optimized version" + name: "DeepSpeech Raspbian RPi3/ARMv7 CPU NodeJS 12.x tests" + description: "Testing DeepSpeech for Raspbian RPi3/ARMv7 on NodeJS v12.x, CPU only, optimized version" diff --git a/taskcluster/test-nodejs_12x-win-amd64-opt.yml b/taskcluster/test-nodejs_12x-win-amd64-opt.yml index 1c939087..12baaa17 100644 --- a/taskcluster/test-nodejs_12x-win-amd64-opt.yml +++ b/taskcluster/test-nodejs_12x-win-amd64-opt.yml @@ -10,5 +10,5 @@ build: args: tests_cmdline: "${system.homedir.win}/DeepSpeech/ds/taskcluster/tc-node-tests.sh 12.x 16k" metadata: - name: "Mozilla Voice STT Windows AMD64 CPU NodeJS 12.x tests" - description: "Testing Mozilla Voice STT for Windows/AMD64 on NodeJS v12.x, CPU only, optimized version" + name: "DeepSpeech Windows AMD64 CPU NodeJS 12.x tests" + description: "Testing DeepSpeech for Windows/AMD64 on NodeJS v12.x, CPU only, optimized version" diff --git a/taskcluster/test-nodejs_12x_16k-linux-amd64-opt.yml b/taskcluster/test-nodejs_12x_16k-linux-amd64-opt.yml index 9d2d2427..66968b51 100644 --- a/taskcluster/test-nodejs_12x_16k-linux-amd64-opt.yml +++ b/taskcluster/test-nodejs_12x_16k-linux-amd64-opt.yml @@ -12,5 +12,5 @@ build: tests_cmdline: "${system.homedir.linux}/DeepSpeech/ds/taskcluster/tc-node-tests.sh 12.x 16k" workerType: "${docker.dsTests}" metadata: - name: "Mozilla Voice STT Linux AMD64 CPU NodeJS 12.x tests (16kHz)" - description: "Testing Mozilla Voice STT for Linux/AMD64 on NodeJS v12.x, CPU only, optimized version (16kHz)" + name: "DeepSpeech Linux AMD64 CPU NodeJS 12.x tests (16kHz)" + description: "Testing DeepSpeech for Linux/AMD64 on NodeJS v12.x, CPU only, optimized version (16kHz)" diff --git a/taskcluster/test-nodejs_12x_16k-linux-amd64-prod_pbmodel-opt.yml b/taskcluster/test-nodejs_12x_16k-linux-amd64-prod_pbmodel-opt.yml index c8caeb00..26c84115 100644 --- a/taskcluster/test-nodejs_12x_16k-linux-amd64-prod_pbmodel-opt.yml +++ b/taskcluster/test-nodejs_12x_16k-linux-amd64-prod_pbmodel-opt.yml @@ -10,5 +10,5 @@ build: tests_cmdline: "${system.homedir.linux}/DeepSpeech/ds/taskcluster/tc-node-tests-prod.sh 12.x 16k" workerType: "${docker.dsTests}" metadata: - name: "Mozilla Voice STT Linux AMD64 CPU NodeJS 12.x prod tests (16kHz)" - description: "Testing Mozilla Voice STT for Linux/AMD64 on NodeJS v12.x on prod model, CPU only, optimized version (16kHz)" + name: "DeepSpeech Linux AMD64 CPU NodeJS 12.x prod tests (16kHz)" + description: "Testing DeepSpeech for Linux/AMD64 on NodeJS v12.x on prod model, CPU only, optimized version (16kHz)" diff --git a/taskcluster/test-nodejs_12x_16k_tflite-linux-amd64-prod-opt.yml b/taskcluster/test-nodejs_12x_16k_tflite-linux-amd64-prod-opt.yml index f3f6924d..c8cdefeb 100644 --- a/taskcluster/test-nodejs_12x_16k_tflite-linux-amd64-prod-opt.yml +++ b/taskcluster/test-nodejs_12x_16k_tflite-linux-amd64-prod-opt.yml @@ -10,5 +10,5 @@ build: tests_cmdline: "${system.homedir.linux}/DeepSpeech/ds/taskcluster/tc-node_tflite-tests-prod.sh 12.x 16k" workerType: "${docker.dsTests}" metadata: - name: "Mozilla Voice STT Linux AMD64 TFLite NodeJS 12.x prod tests (16kHz)" - description: "Testing Mozilla Voice STT for Linux/AMD64 on NodeJS v12.x on prod model, TFLite, optimized version (16kHz)" + name: "DeepSpeech Linux AMD64 TFLite NodeJS 12.x prod tests (16kHz)" + description: "Testing DeepSpeech for Linux/AMD64 on NodeJS v12.x on prod model, TFLite, optimized version (16kHz)" diff --git a/taskcluster/test-nodejs_12x_8k-linux-amd64-opt.yml b/taskcluster/test-nodejs_12x_8k-linux-amd64-opt.yml index 1cb0ebbd..d4be2fff 100644 --- a/taskcluster/test-nodejs_12x_8k-linux-amd64-opt.yml +++ b/taskcluster/test-nodejs_12x_8k-linux-amd64-opt.yml @@ -12,5 +12,5 @@ build: tests_cmdline: "${system.homedir.linux}/DeepSpeech/ds/taskcluster/tc-node-tests.sh 12.x 8k" workerType: "${docker.dsTests}" metadata: - name: "Mozilla Voice STT Linux AMD64 CPU NodeJS 12.x tests (8kHz)" - description: "Testing Mozilla Voice STT for Linux/AMD64 on NodeJS v12.x, CPU only, optimized version (8kHz)" + name: "DeepSpeech Linux AMD64 CPU NodeJS 12.x tests (8kHz)" + description: "Testing DeepSpeech for Linux/AMD64 on NodeJS v12.x, CPU only, optimized version (8kHz)" diff --git a/taskcluster/test-nodejs_12x_8k-linux-amd64-prod_pbmodel-opt.yml b/taskcluster/test-nodejs_12x_8k-linux-amd64-prod_pbmodel-opt.yml index 2c49612b..a5a6bd55 100644 --- a/taskcluster/test-nodejs_12x_8k-linux-amd64-prod_pbmodel-opt.yml +++ b/taskcluster/test-nodejs_12x_8k-linux-amd64-prod_pbmodel-opt.yml @@ -10,5 +10,5 @@ build: tests_cmdline: "${system.homedir.linux}/DeepSpeech/ds/taskcluster/tc-node-tests-prod.sh 12.x 8k" workerType: "${docker.dsTests}" metadata: - name: "Mozilla Voice STT Linux AMD64 CPU NodeJS 12.x prod tests (8kHz)" - description: "Testing Mozilla Voice STT for Linux/AMD64 on NodeJS v12.x on prod model, CPU only, optimized version (8kHz)" + name: "DeepSpeech Linux AMD64 CPU NodeJS 12.x prod tests (8kHz)" + description: "Testing DeepSpeech for Linux/AMD64 on NodeJS v12.x on prod model, CPU only, optimized version (8kHz)" diff --git a/taskcluster/test-nodejs_12x_8k_tflite-linux-amd64-prod-opt.yml b/taskcluster/test-nodejs_12x_8k_tflite-linux-amd64-prod-opt.yml index 0dd42e58..3b84e249 100644 --- a/taskcluster/test-nodejs_12x_8k_tflite-linux-amd64-prod-opt.yml +++ b/taskcluster/test-nodejs_12x_8k_tflite-linux-amd64-prod-opt.yml @@ -10,5 +10,5 @@ build: tests_cmdline: "${system.homedir.linux}/DeepSpeech/ds/taskcluster/tc-node_tflite-tests-prod.sh 12.x 8k" workerType: "${docker.dsTests}" metadata: - name: "Mozilla Voice STT Linux AMD64 TFLite NodeJS 12.x prod tests (8kHz)" - description: "Testing Mozilla Voice STT for Linux/AMD64 on NodeJS v12.x on prod model, TFLite, optimized version (8kHz)" + name: "DeepSpeech Linux AMD64 TFLite NodeJS 12.x prod tests (8kHz)" + description: "Testing DeepSpeech for Linux/AMD64 on NodeJS v12.x on prod model, TFLite, optimized version (8kHz)" diff --git a/taskcluster/test-nodejs_13x-armbian-arm64-opt.yml b/taskcluster/test-nodejs_13x-armbian-arm64-opt.yml index c8f4b06e..cadffe01 100644 --- a/taskcluster/test-nodejs_13x-armbian-arm64-opt.yml +++ b/taskcluster/test-nodejs_13x-armbian-arm64-opt.yml @@ -10,5 +10,5 @@ build: args: tests_cmdline: "${system.homedir.linux}/DeepSpeech/ds/taskcluster/tc-node_tflite-tests.sh 13.x 16k" metadata: - name: "Mozilla Voice STT ARMbian ARM64 Cortex-A53 CPU NodeJS 13.x tests" - description: "Testing Mozilla Voice STT for ARMbian ARM64 Cortex-A53 on NodeJS v13.x, CPU only, optimized version" + name: "DeepSpeech ARMbian ARM64 Cortex-A53 CPU NodeJS 13.x tests" + description: "Testing DeepSpeech for ARMbian ARM64 Cortex-A53 on NodeJS v13.x, CPU only, optimized version" diff --git a/taskcluster/test-nodejs_13x-darwin-amd64-opt.yml b/taskcluster/test-nodejs_13x-darwin-amd64-opt.yml index 99ecf187..3823c5ee 100644 --- a/taskcluster/test-nodejs_13x-darwin-amd64-opt.yml +++ b/taskcluster/test-nodejs_13x-darwin-amd64-opt.yml @@ -11,5 +11,5 @@ build: args: tests_cmdline: "$TASKCLUSTER_TASK_DIR/DeepSpeech/ds/taskcluster/tc-node-tests.sh 13.x 16k" metadata: - name: "Mozilla Voice STT OSX AMD64 CPU NodeJS 13.x tests" - description: "Testing Mozilla Voice STT for OSX/AMD64 on NodeJS v13.x, CPU only, optimized version" + name: "DeepSpeech OSX AMD64 CPU NodeJS 13.x tests" + description: "Testing DeepSpeech for OSX/AMD64 on NodeJS v13.x, CPU only, optimized version" diff --git a/taskcluster/test-nodejs_13x-raspbian-rpi3-opt.yml b/taskcluster/test-nodejs_13x-raspbian-rpi3-opt.yml index 2adc934e..37a6a7ec 100644 --- a/taskcluster/test-nodejs_13x-raspbian-rpi3-opt.yml +++ b/taskcluster/test-nodejs_13x-raspbian-rpi3-opt.yml @@ -10,5 +10,5 @@ build: args: tests_cmdline: "${system.homedir.linux}/DeepSpeech/ds/taskcluster/tc-node_tflite-tests.sh 13.x 16k" metadata: - name: "Mozilla Voice STT Raspbian RPi3/ARMv7 CPU NodeJS 13.x tests" - description: "Testing Mozilla Voice STT for Raspbian RPi3/ARMv7 on NodeJS v13.x, CPU only, optimized version" + name: "DeepSpeech Raspbian RPi3/ARMv7 CPU NodeJS 13.x tests" + description: "Testing DeepSpeech for Raspbian RPi3/ARMv7 on NodeJS v13.x, CPU only, optimized version" diff --git a/taskcluster/test-nodejs_13x-win-amd64-opt.yml b/taskcluster/test-nodejs_13x-win-amd64-opt.yml index 49c09ec5..b40d8904 100644 --- a/taskcluster/test-nodejs_13x-win-amd64-opt.yml +++ b/taskcluster/test-nodejs_13x-win-amd64-opt.yml @@ -10,5 +10,5 @@ build: args: tests_cmdline: "${system.homedir.win}/DeepSpeech/ds/taskcluster/tc-node-tests.sh 13.x 16k" metadata: - name: "Mozilla Voice STT Windows AMD64 CPU NodeJS 13.x tests" - description: "Testing Mozilla Voice STT for Windows/AMD64 on NodeJS v13.x, CPU only, optimized version" + name: "DeepSpeech Windows AMD64 CPU NodeJS 13.x tests" + description: "Testing DeepSpeech for Windows/AMD64 on NodeJS v13.x, CPU only, optimized version" diff --git a/taskcluster/test-nodejs_13x_16k-linux-amd64-opt.yml b/taskcluster/test-nodejs_13x_16k-linux-amd64-opt.yml index f8bb8f1a..4e0669a0 100644 --- a/taskcluster/test-nodejs_13x_16k-linux-amd64-opt.yml +++ b/taskcluster/test-nodejs_13x_16k-linux-amd64-opt.yml @@ -12,5 +12,5 @@ build: tests_cmdline: "${system.homedir.linux}/DeepSpeech/ds/taskcluster/tc-node-tests.sh 13.x 16k" workerType: "${docker.dsTests}" metadata: - name: "Mozilla Voice STT Linux AMD64 CPU NodeJS 13.x tests (16kHz)" - description: "Testing Mozilla Voice STT for Linux/AMD64 on NodeJS v13.x, CPU only, optimized version (16kHz)" + name: "DeepSpeech Linux AMD64 CPU NodeJS 13.x tests (16kHz)" + description: "Testing DeepSpeech for Linux/AMD64 on NodeJS v13.x, CPU only, optimized version (16kHz)" diff --git a/taskcluster/test-nodejs_13x_16k-linux-amd64-prod_pbmodel-opt.yml b/taskcluster/test-nodejs_13x_16k-linux-amd64-prod_pbmodel-opt.yml index 31bcde6c..d400b851 100644 --- a/taskcluster/test-nodejs_13x_16k-linux-amd64-prod_pbmodel-opt.yml +++ b/taskcluster/test-nodejs_13x_16k-linux-amd64-prod_pbmodel-opt.yml @@ -10,5 +10,5 @@ build: tests_cmdline: "${system.homedir.linux}/DeepSpeech/ds/taskcluster/tc-node-tests-prod.sh 13.x 16k" workerType: "${docker.dsTests}" metadata: - name: "Mozilla Voice STT Linux AMD64 CPU NodeJS 13.x prod tests (16kHz)" - description: "Testing Mozilla Voice STT for Linux/AMD64 on NodeJS v13.x on prod model, CPU only, optimized version (16kHz)" + name: "DeepSpeech Linux AMD64 CPU NodeJS 13.x prod tests (16kHz)" + description: "Testing DeepSpeech for Linux/AMD64 on NodeJS v13.x on prod model, CPU only, optimized version (16kHz)" diff --git a/taskcluster/test-nodejs_13x_16k_multiarchpkg-linux-amd64-opt.yml b/taskcluster/test-nodejs_13x_16k_multiarchpkg-linux-amd64-opt.yml index 2af1b0f2..75b532ca 100644 --- a/taskcluster/test-nodejs_13x_16k_multiarchpkg-linux-amd64-opt.yml +++ b/taskcluster/test-nodejs_13x_16k_multiarchpkg-linux-amd64-opt.yml @@ -12,5 +12,5 @@ build: tests_cmdline: "${system.homedir.linux}/DeepSpeech/ds/taskcluster/tc-node-tests.sh 13.x 16k" workerType: "${docker.dsTests}" metadata: - name: "Mozilla Voice STT Linux AMD64 CPU NodeJS MultiArch Package 13.x tests (16kHz)" - description: "Testing Mozilla Voice STT for Linux/AMD64 on NodeJS MultiArch Package v13.x, CPU only, optimized version (16kHz)" + name: "DeepSpeech Linux AMD64 CPU NodeJS MultiArch Package 13.x tests (16kHz)" + description: "Testing DeepSpeech for Linux/AMD64 on NodeJS MultiArch Package v13.x, CPU only, optimized version (16kHz)" diff --git a/taskcluster/test-nodejs_13x_16k_multiarchpkg-linux-amd64-prod_pbmodel-opt.yml b/taskcluster/test-nodejs_13x_16k_multiarchpkg-linux-amd64-prod_pbmodel-opt.yml index 8304e0ae..f17aab03 100644 --- a/taskcluster/test-nodejs_13x_16k_multiarchpkg-linux-amd64-prod_pbmodel-opt.yml +++ b/taskcluster/test-nodejs_13x_16k_multiarchpkg-linux-amd64-prod_pbmodel-opt.yml @@ -10,5 +10,5 @@ build: tests_cmdline: "${system.homedir.linux}/DeepSpeech/ds/taskcluster/tc-node-tests-prod.sh 13.x 16k" workerType: "${docker.dsTests}" metadata: - name: "Mozilla Voice STT Linux AMD64 CPU NodeJS MultiArch Package 13.x prod tests (16kHz)" - description: "Testing Mozilla Voice STT for Linux/AMD64 on NodeJS MultiArch Package v13.x on prod model, CPU only, optimized version (16kHz)" + name: "DeepSpeech Linux AMD64 CPU NodeJS MultiArch Package 13.x prod tests (16kHz)" + description: "Testing DeepSpeech for Linux/AMD64 on NodeJS MultiArch Package v13.x on prod model, CPU only, optimized version (16kHz)" diff --git a/taskcluster/test-nodejs_13x_16k_multiarchpkg-linux-tflite-opt.yml b/taskcluster/test-nodejs_13x_16k_multiarchpkg-linux-tflite-opt.yml index fb5b22bc..c9a92652 100644 --- a/taskcluster/test-nodejs_13x_16k_multiarchpkg-linux-tflite-opt.yml +++ b/taskcluster/test-nodejs_13x_16k_multiarchpkg-linux-tflite-opt.yml @@ -12,5 +12,5 @@ build: tests_cmdline: "${system.homedir.linux}/DeepSpeech/ds/taskcluster/tc-node_tflite-tests.sh 13.x 16k" workerType: "${docker.dsTests}" metadata: - name: "Mozilla Voice STT Linux AMD64 TFLite NodeJS MultiArch Package 13.x tests (16kHz)" - description: "Testing Mozilla Voice STT for Linux/AMD64 on NodeJS MultiArch Package v13.x, TFLite only, optimized version (16kHz)" + name: "DeepSpeech Linux AMD64 TFLite NodeJS MultiArch Package 13.x tests (16kHz)" + description: "Testing DeepSpeech for Linux/AMD64 on NodeJS MultiArch Package v13.x, TFLite only, optimized version (16kHz)" diff --git a/taskcluster/test-nodejs_13x_16k_tflite-linux-amd64-prod-opt.yml b/taskcluster/test-nodejs_13x_16k_tflite-linux-amd64-prod-opt.yml index 8e0a5e35..ad2df9ba 100644 --- a/taskcluster/test-nodejs_13x_16k_tflite-linux-amd64-prod-opt.yml +++ b/taskcluster/test-nodejs_13x_16k_tflite-linux-amd64-prod-opt.yml @@ -10,5 +10,5 @@ build: tests_cmdline: "${system.homedir.linux}/DeepSpeech/ds/taskcluster/tc-node_tflite-tests-prod.sh 13.x 16k" workerType: "${docker.dsTests}" metadata: - name: "Mozilla Voice STT Linux AMD64 TFLite NodeJS 13.x prod tests (16kHz)" - description: "Testing Mozilla Voice STT for Linux/AMD64 on NodeJS v13.x on prod model, TFLite, optimized version (16kHz)" + name: "DeepSpeech Linux AMD64 TFLite NodeJS 13.x prod tests (16kHz)" + description: "Testing DeepSpeech for Linux/AMD64 on NodeJS v13.x on prod model, TFLite, optimized version (16kHz)" diff --git a/taskcluster/test-nodejs_13x_8k-linux-amd64-opt.yml b/taskcluster/test-nodejs_13x_8k-linux-amd64-opt.yml index f68a64ac..d95476b7 100644 --- a/taskcluster/test-nodejs_13x_8k-linux-amd64-opt.yml +++ b/taskcluster/test-nodejs_13x_8k-linux-amd64-opt.yml @@ -12,5 +12,5 @@ build: tests_cmdline: "${system.homedir.linux}/DeepSpeech/ds/taskcluster/tc-node-tests.sh 13.x 8k" workerType: "${docker.dsTests}" metadata: - name: "Mozilla Voice STT Linux AMD64 CPU NodeJS 13.x tests (8kHz)" - description: "Testing Mozilla Voice STT for Linux/AMD64 on NodeJS v13.x, CPU only, optimized version (8kHz)" + name: "DeepSpeech Linux AMD64 CPU NodeJS 13.x tests (8kHz)" + description: "Testing DeepSpeech for Linux/AMD64 on NodeJS v13.x, CPU only, optimized version (8kHz)" diff --git a/taskcluster/test-nodejs_13x_8k-linux-amd64-prod_pbmodel-opt.yml b/taskcluster/test-nodejs_13x_8k-linux-amd64-prod_pbmodel-opt.yml index 63555bbf..5fccf9fe 100644 --- a/taskcluster/test-nodejs_13x_8k-linux-amd64-prod_pbmodel-opt.yml +++ b/taskcluster/test-nodejs_13x_8k-linux-amd64-prod_pbmodel-opt.yml @@ -10,5 +10,5 @@ build: tests_cmdline: "${system.homedir.linux}/DeepSpeech/ds/taskcluster/tc-node-tests-prod.sh 13.x 8k" workerType: "${docker.dsTests}" metadata: - name: "Mozilla Voice STT Linux AMD64 CPU NodeJS 13.x prod tests (8kHz)" - description: "Testing Mozilla Voice STT for Linux/AMD64 on NodeJS v13.x on prod model, CPU only, optimized version (8kHz)" + name: "DeepSpeech Linux AMD64 CPU NodeJS 13.x prod tests (8kHz)" + description: "Testing DeepSpeech for Linux/AMD64 on NodeJS v13.x on prod model, CPU only, optimized version (8kHz)" diff --git a/taskcluster/test-nodejs_13x_8k_multiarchpkg-linux-amd64-opt.yml b/taskcluster/test-nodejs_13x_8k_multiarchpkg-linux-amd64-opt.yml index 53dac5f8..9842e811 100644 --- a/taskcluster/test-nodejs_13x_8k_multiarchpkg-linux-amd64-opt.yml +++ b/taskcluster/test-nodejs_13x_8k_multiarchpkg-linux-amd64-opt.yml @@ -12,5 +12,5 @@ build: tests_cmdline: "${system.homedir.linux}/DeepSpeech/ds/taskcluster/tc-node-tests.sh 13.x 8k" workerType: "${docker.dsTests}" metadata: - name: "Mozilla Voice STT Linux AMD64 CPU NodeJS MultiArch Package 13.x tests (8kHz)" - description: "Testing Mozilla Voice STT for Linux/AMD64 on NodeJS MultiArch Package v13.x, CPU only, optimized version (8kHz)" + name: "DeepSpeech Linux AMD64 CPU NodeJS MultiArch Package 13.x tests (8kHz)" + description: "Testing DeepSpeech for Linux/AMD64 on NodeJS MultiArch Package v13.x, CPU only, optimized version (8kHz)" diff --git a/taskcluster/test-nodejs_13x_8k_multiarchpkg-linux-amd64-prod_pbmodel-opt.yml b/taskcluster/test-nodejs_13x_8k_multiarchpkg-linux-amd64-prod_pbmodel-opt.yml index 1adc5f97..fa6c0b06 100644 --- a/taskcluster/test-nodejs_13x_8k_multiarchpkg-linux-amd64-prod_pbmodel-opt.yml +++ b/taskcluster/test-nodejs_13x_8k_multiarchpkg-linux-amd64-prod_pbmodel-opt.yml @@ -10,5 +10,5 @@ build: tests_cmdline: "${system.homedir.linux}/DeepSpeech/ds/taskcluster/tc-node-tests-prod.sh 13.x 8k" workerType: "${docker.dsTests}" metadata: - name: "Mozilla Voice STT Linux AMD64 CPU NodeJS MultiArch Package 13.x prod tests (8kHz)" - description: "Testing Mozilla Voice STT for Linux/AMD64 on NodeJS MultiArch Package v13.x on prod model, CPU only, optimized version (8kHz)" + name: "DeepSpeech Linux AMD64 CPU NodeJS MultiArch Package 13.x prod tests (8kHz)" + description: "Testing DeepSpeech for Linux/AMD64 on NodeJS MultiArch Package v13.x on prod model, CPU only, optimized version (8kHz)" diff --git a/taskcluster/test-nodejs_13x_8k_multiarchpkg-linux-tflite-opt.yml b/taskcluster/test-nodejs_13x_8k_multiarchpkg-linux-tflite-opt.yml index 902f8b89..d9b6818a 100644 --- a/taskcluster/test-nodejs_13x_8k_multiarchpkg-linux-tflite-opt.yml +++ b/taskcluster/test-nodejs_13x_8k_multiarchpkg-linux-tflite-opt.yml @@ -12,5 +12,5 @@ build: tests_cmdline: "${system.homedir.linux}/DeepSpeech/ds/taskcluster/tc-node_tflite-tests.sh 13.x 8k" workerType: "${docker.dsTests}" metadata: - name: "Mozilla Voice STT Linux AMD64 TFLite NodeJS MultiArch Package 13.x tests (8kHz)" - description: "Testing Mozilla Voice STT for Linux/AMD64 on NodeJS MultiArch Package v13.x, TFLite only, optimized version (8kHz)" + name: "DeepSpeech Linux AMD64 TFLite NodeJS MultiArch Package 13.x tests (8kHz)" + description: "Testing DeepSpeech for Linux/AMD64 on NodeJS MultiArch Package v13.x, TFLite only, optimized version (8kHz)" diff --git a/taskcluster/test-nodejs_13x_8k_tflite-linux-amd64-prod-opt.yml b/taskcluster/test-nodejs_13x_8k_tflite-linux-amd64-prod-opt.yml index b493edf2..02d0a11e 100644 --- a/taskcluster/test-nodejs_13x_8k_tflite-linux-amd64-prod-opt.yml +++ b/taskcluster/test-nodejs_13x_8k_tflite-linux-amd64-prod-opt.yml @@ -10,5 +10,5 @@ build: tests_cmdline: "${system.homedir.linux}/DeepSpeech/ds/taskcluster/tc-node_tflite-tests-prod.sh 13.x 8k" workerType: "${docker.dsTests}" metadata: - name: "Mozilla Voice STT Linux AMD64 TFLite NodeJS 13.x prod tests (8kHz)" - description: "Testing Mozilla Voice STT for Linux/AMD64 on NodeJS v13.x on prod model, TFLite, optimized version (8kHz)" + name: "DeepSpeech Linux AMD64 TFLite NodeJS 13.x prod tests (8kHz)" + description: "Testing DeepSpeech for Linux/AMD64 on NodeJS v13.x on prod model, TFLite, optimized version (8kHz)" diff --git a/taskcluster/test-nodejs_13x_multiarchpkg-armbian-arm64-opt.yml b/taskcluster/test-nodejs_13x_multiarchpkg-armbian-arm64-opt.yml index 048ffa07..47f01a89 100644 --- a/taskcluster/test-nodejs_13x_multiarchpkg-armbian-arm64-opt.yml +++ b/taskcluster/test-nodejs_13x_multiarchpkg-armbian-arm64-opt.yml @@ -10,5 +10,5 @@ build: args: tests_cmdline: "${system.homedir.linux}/DeepSpeech/ds/taskcluster/tc-node_tflite-tests.sh 13.x 16k" metadata: - name: "Mozilla Voice STT ARMbian ARM64 Cortex-A53 CPU NodeJS MultiArch Package 13.x tests" - description: "Testing Mozilla Voice STT for ARMbian ARM64 Cortex-A53 on NodeJS MultiArch Package v13.x, CPU only, optimized version" + name: "DeepSpeech ARMbian ARM64 Cortex-A53 CPU NodeJS MultiArch Package 13.x tests" + description: "Testing DeepSpeech for ARMbian ARM64 Cortex-A53 on NodeJS MultiArch Package v13.x, CPU only, optimized version" diff --git a/taskcluster/test-nodejs_13x_multiarchpkg-darwin-amd64-opt.yml b/taskcluster/test-nodejs_13x_multiarchpkg-darwin-amd64-opt.yml index e19f9589..52c24c8f 100644 --- a/taskcluster/test-nodejs_13x_multiarchpkg-darwin-amd64-opt.yml +++ b/taskcluster/test-nodejs_13x_multiarchpkg-darwin-amd64-opt.yml @@ -11,5 +11,5 @@ build: args: tests_cmdline: "$TASKCLUSTER_TASK_DIR/DeepSpeech/ds/taskcluster/tc-node-tests.sh 13.x 16k" metadata: - name: "Mozilla Voice STT OSX AMD64 CPU NodeJS MultiArch Package 13.x tests" - description: "Testing Mozilla Voice STT for OSX/AMD64 on NodeJS MultiArch Package v13.x, CPU only, optimized version" + name: "DeepSpeech OSX AMD64 CPU NodeJS MultiArch Package 13.x tests" + description: "Testing DeepSpeech for OSX/AMD64 on NodeJS MultiArch Package v13.x, CPU only, optimized version" diff --git a/taskcluster/test-nodejs_13x_multiarchpkg-darwin-tflite-opt.yml b/taskcluster/test-nodejs_13x_multiarchpkg-darwin-tflite-opt.yml index ddb678b9..11d64c56 100644 --- a/taskcluster/test-nodejs_13x_multiarchpkg-darwin-tflite-opt.yml +++ b/taskcluster/test-nodejs_13x_multiarchpkg-darwin-tflite-opt.yml @@ -11,5 +11,5 @@ build: args: tests_cmdline: "$TASKCLUSTER_TASK_DIR/DeepSpeech/ds/taskcluster/tc-node_tflite-tests.sh 13.x 16k" metadata: - name: "Mozilla Voice STT OSX AMD64 TFLite NodeJS MultiArch Package 13.x tests" - description: "Testing Mozilla Voice STT for OSX/AMD64 on NodeJS MultiArch Package v13.x, TFLite only, optimized version" + name: "DeepSpeech OSX AMD64 TFLite NodeJS MultiArch Package 13.x tests" + description: "Testing DeepSpeech for OSX/AMD64 on NodeJS MultiArch Package v13.x, TFLite only, optimized version" diff --git a/taskcluster/test-nodejs_13x_multiarchpkg-raspbian-rpi3-opt.yml b/taskcluster/test-nodejs_13x_multiarchpkg-raspbian-rpi3-opt.yml index 56215857..c88bf2ac 100644 --- a/taskcluster/test-nodejs_13x_multiarchpkg-raspbian-rpi3-opt.yml +++ b/taskcluster/test-nodejs_13x_multiarchpkg-raspbian-rpi3-opt.yml @@ -10,5 +10,5 @@ build: args: tests_cmdline: "${system.homedir.linux}/DeepSpeech/ds/taskcluster/tc-node_tflite-tests.sh 13.x 16k" metadata: - name: "Mozilla Voice STT Raspbian RPi3/ARMv7 CPU NodeJS MultiArch Package 13.x tests" - description: "Testing Mozilla Voice STT for Raspbian RPi3/ARMv7 on NodeJS MultiArch Package v13.x, CPU only, optimized version" + name: "DeepSpeech Raspbian RPi3/ARMv7 CPU NodeJS MultiArch Package 13.x tests" + description: "Testing DeepSpeech for Raspbian RPi3/ARMv7 on NodeJS MultiArch Package v13.x, CPU only, optimized version" diff --git a/taskcluster/test-nodejs_13x_multiarchpkg-win-amd64-opt.yml b/taskcluster/test-nodejs_13x_multiarchpkg-win-amd64-opt.yml index a4504731..f7822560 100644 --- a/taskcluster/test-nodejs_13x_multiarchpkg-win-amd64-opt.yml +++ b/taskcluster/test-nodejs_13x_multiarchpkg-win-amd64-opt.yml @@ -10,5 +10,5 @@ build: args: tests_cmdline: "${system.homedir.win}/DeepSpeech/ds/taskcluster/tc-node-tests.sh 13.x 16k" metadata: - name: "Mozilla Voice STT Windows AMD64 CPU NodeJS MultiArch Package 13.x tests" - description: "Testing Mozilla Voice STT for Windows/AMD64 on NodeJS MultiArch Package v13.x, CPU only, optimized version" + name: "DeepSpeech Windows AMD64 CPU NodeJS MultiArch Package 13.x tests" + description: "Testing DeepSpeech for Windows/AMD64 on NodeJS MultiArch Package v13.x, CPU only, optimized version" diff --git a/taskcluster/test-nodejs_13x_multiarchpkg-win-cuda-opt.yml b/taskcluster/test-nodejs_13x_multiarchpkg-win-cuda-opt.yml index bf544f83..499462a4 100644 --- a/taskcluster/test-nodejs_13x_multiarchpkg-win-cuda-opt.yml +++ b/taskcluster/test-nodejs_13x_multiarchpkg-win-cuda-opt.yml @@ -10,5 +10,5 @@ build: args: tests_cmdline: "${system.homedir.win}/DeepSpeech/ds/taskcluster/tc-node-tests.sh 13.x 16k cuda" metadata: - name: "Mozilla Voice STT Windows AMD64 CUDA NodeJS MultiArch Package 13.x tests" - description: "Testing Mozilla Voice STT for Windows/AMD64 on NodeJS MultiArch Package v13.x, CUDA, optimized version" + name: "DeepSpeech Windows AMD64 CUDA NodeJS MultiArch Package 13.x tests" + description: "Testing DeepSpeech for Windows/AMD64 on NodeJS MultiArch Package v13.x, CUDA, optimized version" diff --git a/taskcluster/test-nodejs_13x_multiarchpkg-win-tflite-opt.yml b/taskcluster/test-nodejs_13x_multiarchpkg-win-tflite-opt.yml index 4fd2f73b..7962d62d 100644 --- a/taskcluster/test-nodejs_13x_multiarchpkg-win-tflite-opt.yml +++ b/taskcluster/test-nodejs_13x_multiarchpkg-win-tflite-opt.yml @@ -10,5 +10,5 @@ build: args: tests_cmdline: "${system.homedir.win}/DeepSpeech/ds/taskcluster/tc-node_tflite-tests.sh 13.x 16k" metadata: - name: "Mozilla Voice STT Windows AMD64 TFLite NodeJS MultiArch Package 13.x tests" - description: "Testing Mozilla Voice STT for Windows/AMD64 on NodeJS MultiArch Package v13.x, TFLite only, optimized version" + name: "DeepSpeech Windows AMD64 TFLite NodeJS MultiArch Package 13.x tests" + description: "Testing DeepSpeech for Windows/AMD64 on NodeJS MultiArch Package v13.x, TFLite only, optimized version" diff --git a/taskcluster/test-nodejs_14x-armbian-arm64-opt.yml b/taskcluster/test-nodejs_14x-armbian-arm64-opt.yml index 0c85f1c3..db09c287 100644 --- a/taskcluster/test-nodejs_14x-armbian-arm64-opt.yml +++ b/taskcluster/test-nodejs_14x-armbian-arm64-opt.yml @@ -10,5 +10,5 @@ build: args: tests_cmdline: "${system.homedir.linux}/DeepSpeech/ds/taskcluster/tc-node_tflite-tests.sh 14.x 16k" metadata: - name: "Mozilla Voice STT ARMbian ARM64 Cortex-A53 CPU NodeJS 14.x tests" - description: "Testing Mozilla Voice STT for ARMbian ARM64 Cortex-A53 on NodeJS v14.x, CPU only, optimized version" + name: "DeepSpeech ARMbian ARM64 Cortex-A53 CPU NodeJS 14.x tests" + description: "Testing DeepSpeech for ARMbian ARM64 Cortex-A53 on NodeJS v14.x, CPU only, optimized version" diff --git a/taskcluster/test-nodejs_14x-darwin-amd64-opt.yml b/taskcluster/test-nodejs_14x-darwin-amd64-opt.yml index c74ed9b7..8cf3f96f 100644 --- a/taskcluster/test-nodejs_14x-darwin-amd64-opt.yml +++ b/taskcluster/test-nodejs_14x-darwin-amd64-opt.yml @@ -11,5 +11,5 @@ build: args: tests_cmdline: "$TASKCLUSTER_TASK_DIR/DeepSpeech/ds/taskcluster/tc-node-tests.sh 14.x 16k" metadata: - name: "Mozilla Voice STT OSX AMD64 CPU NodeJS 14.x tests" - description: "Testing Mozilla Voice STT for OSX/AMD64 on NodeJS v14.x, CPU only, optimized version" + name: "DeepSpeech OSX AMD64 CPU NodeJS 14.x tests" + description: "Testing DeepSpeech for OSX/AMD64 on NodeJS v14.x, CPU only, optimized version" diff --git a/taskcluster/test-nodejs_14x-raspbian-rpi3-opt.yml b/taskcluster/test-nodejs_14x-raspbian-rpi3-opt.yml index 6c5025f1..22ab6195 100644 --- a/taskcluster/test-nodejs_14x-raspbian-rpi3-opt.yml +++ b/taskcluster/test-nodejs_14x-raspbian-rpi3-opt.yml @@ -10,5 +10,5 @@ build: args: tests_cmdline: "${system.homedir.linux}/DeepSpeech/ds/taskcluster/tc-node_tflite-tests.sh 14.x 16k" metadata: - name: "Mozilla Voice STT Raspbian RPi3/ARMv7 CPU NodeJS 14.x tests" - description: "Testing Mozilla Voice STT for Raspbian RPi3/ARMv7 on NodeJS v14.x, CPU only, optimized version" + name: "DeepSpeech Raspbian RPi3/ARMv7 CPU NodeJS 14.x tests" + description: "Testing DeepSpeech for Raspbian RPi3/ARMv7 on NodeJS v14.x, CPU only, optimized version" diff --git a/taskcluster/test-nodejs_14x-win-amd64-opt.yml b/taskcluster/test-nodejs_14x-win-amd64-opt.yml index e4ac782d..57a4397f 100644 --- a/taskcluster/test-nodejs_14x-win-amd64-opt.yml +++ b/taskcluster/test-nodejs_14x-win-amd64-opt.yml @@ -10,5 +10,5 @@ build: args: tests_cmdline: "${system.homedir.win}/DeepSpeech/ds/taskcluster/tc-node-tests.sh 14.x 16k" metadata: - name: "Mozilla Voice STT Windows AMD64 CPU NodeJS 14.x tests" - description: "Testing Mozilla Voice STT for Windows/AMD64 on NodeJS v14.x, CPU only, optimized version" + name: "DeepSpeech Windows AMD64 CPU NodeJS 14.x tests" + description: "Testing DeepSpeech for Windows/AMD64 on NodeJS v14.x, CPU only, optimized version" diff --git a/taskcluster/test-nodejs_14x_16k-linux-amd64-opt.yml b/taskcluster/test-nodejs_14x_16k-linux-amd64-opt.yml index 52aedebc..73c4dba3 100644 --- a/taskcluster/test-nodejs_14x_16k-linux-amd64-opt.yml +++ b/taskcluster/test-nodejs_14x_16k-linux-amd64-opt.yml @@ -12,5 +12,5 @@ build: tests_cmdline: "${system.homedir.linux}/DeepSpeech/ds/taskcluster/tc-node-tests.sh 14.x 16k" workerType: "${docker.dsTests}" metadata: - name: "Mozilla Voice STT Linux AMD64 CPU NodeJS 14.x tests (16kHz)" - description: "Testing Mozilla Voice STT for Linux/AMD64 on NodeJS v14.x, CPU only, optimized version (16kHz)" + name: "DeepSpeech Linux AMD64 CPU NodeJS 14.x tests (16kHz)" + description: "Testing DeepSpeech for Linux/AMD64 on NodeJS v14.x, CPU only, optimized version (16kHz)" diff --git a/taskcluster/test-nodejs_14x_16k-linux-amd64-prod_pbmodel-opt.yml b/taskcluster/test-nodejs_14x_16k-linux-amd64-prod_pbmodel-opt.yml index 50d17998..64e1e7ca 100644 --- a/taskcluster/test-nodejs_14x_16k-linux-amd64-prod_pbmodel-opt.yml +++ b/taskcluster/test-nodejs_14x_16k-linux-amd64-prod_pbmodel-opt.yml @@ -10,5 +10,5 @@ build: tests_cmdline: "${system.homedir.linux}/DeepSpeech/ds/taskcluster/tc-node-tests-prod.sh 14.x 16k" workerType: "${docker.dsTests}" metadata: - name: "Mozilla Voice STT Linux AMD64 CPU NodeJS 14.x prod tests (16kHz)" - description: "Testing Mozilla Voice STT for Linux/AMD64 on NodeJS v14.x on prod model, CPU only, optimized version (16kHz)" + name: "DeepSpeech Linux AMD64 CPU NodeJS 14.x prod tests (16kHz)" + description: "Testing DeepSpeech for Linux/AMD64 on NodeJS v14.x on prod model, CPU only, optimized version (16kHz)" diff --git a/taskcluster/test-nodejs_14x_16k_multiarchpkg-linux-amd64-opt.yml b/taskcluster/test-nodejs_14x_16k_multiarchpkg-linux-amd64-opt.yml index 0af337c7..4f0699ee 100644 --- a/taskcluster/test-nodejs_14x_16k_multiarchpkg-linux-amd64-opt.yml +++ b/taskcluster/test-nodejs_14x_16k_multiarchpkg-linux-amd64-opt.yml @@ -12,5 +12,5 @@ build: tests_cmdline: "${system.homedir.linux}/DeepSpeech/ds/taskcluster/tc-node-tests.sh 14.x 16k" workerType: "${docker.dsTests}" metadata: - name: "Mozilla Voice STT Linux AMD64 CPU NodeJS MultiArch Package 14.x tests (16kHz)" - description: "Testing Mozilla Voice STT for Linux/AMD64 on NodeJS MultiArch Package v14.x, CPU only, optimized version (16kHz)" + name: "DeepSpeech Linux AMD64 CPU NodeJS MultiArch Package 14.x tests (16kHz)" + description: "Testing DeepSpeech for Linux/AMD64 on NodeJS MultiArch Package v14.x, CPU only, optimized version (16kHz)" diff --git a/taskcluster/test-nodejs_14x_16k_multiarchpkg-linux-amd64-prod_pbmodel-opt.yml b/taskcluster/test-nodejs_14x_16k_multiarchpkg-linux-amd64-prod_pbmodel-opt.yml index ccfc2be5..f1dcf1f6 100644 --- a/taskcluster/test-nodejs_14x_16k_multiarchpkg-linux-amd64-prod_pbmodel-opt.yml +++ b/taskcluster/test-nodejs_14x_16k_multiarchpkg-linux-amd64-prod_pbmodel-opt.yml @@ -10,5 +10,5 @@ build: tests_cmdline: "${system.homedir.linux}/DeepSpeech/ds/taskcluster/tc-node-tests-prod.sh 14.x 16k" workerType: "${docker.dsTests}" metadata: - name: "Mozilla Voice STT Linux AMD64 CPU NodeJS MultiArch Package 14.x prod tests (16kHz)" - description: "Testing Mozilla Voice STT for Linux/AMD64 on NodeJS MultiArch Package v14.x on prod model, CPU only, optimized version (16kHz)" + name: "DeepSpeech Linux AMD64 CPU NodeJS MultiArch Package 14.x prod tests (16kHz)" + description: "Testing DeepSpeech for Linux/AMD64 on NodeJS MultiArch Package v14.x on prod model, CPU only, optimized version (16kHz)" diff --git a/taskcluster/test-nodejs_14x_16k_multiarchpkg-linux-tflite-opt.yml b/taskcluster/test-nodejs_14x_16k_multiarchpkg-linux-tflite-opt.yml index 427d7712..f88a75c6 100644 --- a/taskcluster/test-nodejs_14x_16k_multiarchpkg-linux-tflite-opt.yml +++ b/taskcluster/test-nodejs_14x_16k_multiarchpkg-linux-tflite-opt.yml @@ -12,5 +12,5 @@ build: tests_cmdline: "${system.homedir.linux}/DeepSpeech/ds/taskcluster/tc-node_tflite-tests.sh 14.x 16k" workerType: "${docker.dsTests}" metadata: - name: "Mozilla Voice STT Linux AMD64 TFLite NodeJS MultiArch Package 14.x tests (16kHz)" - description: "Testing Mozilla Voice STT for Linux/AMD64 on NodeJS MultiArch Package v14.x, TFLite only, optimized version (16kHz)" + name: "DeepSpeech Linux AMD64 TFLite NodeJS MultiArch Package 14.x tests (16kHz)" + description: "Testing DeepSpeech for Linux/AMD64 on NodeJS MultiArch Package v14.x, TFLite only, optimized version (16kHz)" diff --git a/taskcluster/test-nodejs_14x_16k_tflite-linux-amd64-prod-opt.yml b/taskcluster/test-nodejs_14x_16k_tflite-linux-amd64-prod-opt.yml index b0ce749a..1f2cf18b 100644 --- a/taskcluster/test-nodejs_14x_16k_tflite-linux-amd64-prod-opt.yml +++ b/taskcluster/test-nodejs_14x_16k_tflite-linux-amd64-prod-opt.yml @@ -10,5 +10,5 @@ build: tests_cmdline: "${system.homedir.linux}/DeepSpeech/ds/taskcluster/tc-node_tflite-tests-prod.sh 14.x 16k" workerType: "${docker.dsTests}" metadata: - name: "Mozilla Voice STT Linux AMD64 TFLite NodeJS 14.x prod tests (16kHz)" - description: "Testing Mozilla Voice STT for Linux/AMD64 on NodeJS v14.x on prod model, TFLite, optimized version (16kHz)" + name: "DeepSpeech Linux AMD64 TFLite NodeJS 14.x prod tests (16kHz)" + description: "Testing DeepSpeech for Linux/AMD64 on NodeJS v14.x on prod model, TFLite, optimized version (16kHz)" diff --git a/taskcluster/test-nodejs_14x_8k-linux-amd64-opt.yml b/taskcluster/test-nodejs_14x_8k-linux-amd64-opt.yml index 10e74fe0..b1c613b3 100644 --- a/taskcluster/test-nodejs_14x_8k-linux-amd64-opt.yml +++ b/taskcluster/test-nodejs_14x_8k-linux-amd64-opt.yml @@ -12,5 +12,5 @@ build: tests_cmdline: "${system.homedir.linux}/DeepSpeech/ds/taskcluster/tc-node-tests.sh 14.x 8k" workerType: "${docker.dsTests}" metadata: - name: "Mozilla Voice STT Linux AMD64 CPU NodeJS 14.x tests (8kHz)" - description: "Testing Mozilla Voice STT for Linux/AMD64 on NodeJS v14.x, CPU only, optimized version (8kHz)" + name: "DeepSpeech Linux AMD64 CPU NodeJS 14.x tests (8kHz)" + description: "Testing DeepSpeech for Linux/AMD64 on NodeJS v14.x, CPU only, optimized version (8kHz)" diff --git a/taskcluster/test-nodejs_14x_8k-linux-amd64-prod_pbmodel-opt.yml b/taskcluster/test-nodejs_14x_8k-linux-amd64-prod_pbmodel-opt.yml index 36d35075..17d86a4e 100644 --- a/taskcluster/test-nodejs_14x_8k-linux-amd64-prod_pbmodel-opt.yml +++ b/taskcluster/test-nodejs_14x_8k-linux-amd64-prod_pbmodel-opt.yml @@ -10,5 +10,5 @@ build: tests_cmdline: "${system.homedir.linux}/DeepSpeech/ds/taskcluster/tc-node-tests-prod.sh 14.x 8k" workerType: "${docker.dsTests}" metadata: - name: "Mozilla Voice STT Linux AMD64 CPU NodeJS 14.x prod tests (8kHz)" - description: "Testing Mozilla Voice STT for Linux/AMD64 on NodeJS v14.x on prod model, CPU only, optimized version (8kHz)" + name: "DeepSpeech Linux AMD64 CPU NodeJS 14.x prod tests (8kHz)" + description: "Testing DeepSpeech for Linux/AMD64 on NodeJS v14.x on prod model, CPU only, optimized version (8kHz)" diff --git a/taskcluster/test-nodejs_14x_8k_multiarchpkg-linux-amd64-opt.yml b/taskcluster/test-nodejs_14x_8k_multiarchpkg-linux-amd64-opt.yml index 2d71b0d5..f55df623 100644 --- a/taskcluster/test-nodejs_14x_8k_multiarchpkg-linux-amd64-opt.yml +++ b/taskcluster/test-nodejs_14x_8k_multiarchpkg-linux-amd64-opt.yml @@ -12,5 +12,5 @@ build: tests_cmdline: "${system.homedir.linux}/DeepSpeech/ds/taskcluster/tc-node-tests.sh 14.x 8k" workerType: "${docker.dsTests}" metadata: - name: "Mozilla Voice STT Linux AMD64 CPU NodeJS MultiArch Package 14.x tests (8kHz)" - description: "Testing Mozilla Voice STT for Linux/AMD64 on NodeJS MultiArch Package v14.x, CPU only, optimized version (8kHz)" + name: "DeepSpeech Linux AMD64 CPU NodeJS MultiArch Package 14.x tests (8kHz)" + description: "Testing DeepSpeech for Linux/AMD64 on NodeJS MultiArch Package v14.x, CPU only, optimized version (8kHz)" diff --git a/taskcluster/test-nodejs_14x_8k_multiarchpkg-linux-amd64-prod_pbmodel-opt.yml b/taskcluster/test-nodejs_14x_8k_multiarchpkg-linux-amd64-prod_pbmodel-opt.yml index ad224c7d..b3557f66 100644 --- a/taskcluster/test-nodejs_14x_8k_multiarchpkg-linux-amd64-prod_pbmodel-opt.yml +++ b/taskcluster/test-nodejs_14x_8k_multiarchpkg-linux-amd64-prod_pbmodel-opt.yml @@ -10,5 +10,5 @@ build: tests_cmdline: "${system.homedir.linux}/DeepSpeech/ds/taskcluster/tc-node-tests-prod.sh 14.x 8k" workerType: "${docker.dsTests}" metadata: - name: "Mozilla Voice STT Linux AMD64 CPU NodeJS MultiArch Package 14.x prod tests (8kHz)" - description: "Testing Mozilla Voice STT for Linux/AMD64 on NodeJS MultiArch Package v14.x on prod model, CPU only, optimized version (8kHz)" + name: "DeepSpeech Linux AMD64 CPU NodeJS MultiArch Package 14.x prod tests (8kHz)" + description: "Testing DeepSpeech for Linux/AMD64 on NodeJS MultiArch Package v14.x on prod model, CPU only, optimized version (8kHz)" diff --git a/taskcluster/test-nodejs_14x_8k_multiarchpkg-linux-tflite-opt.yml b/taskcluster/test-nodejs_14x_8k_multiarchpkg-linux-tflite-opt.yml index dcd2e5af..809e8859 100644 --- a/taskcluster/test-nodejs_14x_8k_multiarchpkg-linux-tflite-opt.yml +++ b/taskcluster/test-nodejs_14x_8k_multiarchpkg-linux-tflite-opt.yml @@ -12,5 +12,5 @@ build: tests_cmdline: "${system.homedir.linux}/DeepSpeech/ds/taskcluster/tc-node_tflite-tests.sh 14.x 8k" workerType: "${docker.dsTests}" metadata: - name: "Mozilla Voice STT Linux AMD64 TFLite NodeJS MultiArch Package 14.x tests (8kHz)" - description: "Testing Mozilla Voice STT for Linux/AMD64 on NodeJS MultiArch Package v14.x, TFLite only, optimized version (8kHz)" + name: "DeepSpeech Linux AMD64 TFLite NodeJS MultiArch Package 14.x tests (8kHz)" + description: "Testing DeepSpeech for Linux/AMD64 on NodeJS MultiArch Package v14.x, TFLite only, optimized version (8kHz)" diff --git a/taskcluster/test-nodejs_14x_8k_tflite-linux-amd64-prod-opt.yml b/taskcluster/test-nodejs_14x_8k_tflite-linux-amd64-prod-opt.yml index 0a389fa6..511ba1e5 100644 --- a/taskcluster/test-nodejs_14x_8k_tflite-linux-amd64-prod-opt.yml +++ b/taskcluster/test-nodejs_14x_8k_tflite-linux-amd64-prod-opt.yml @@ -10,5 +10,5 @@ build: tests_cmdline: "${system.homedir.linux}/DeepSpeech/ds/taskcluster/tc-node_tflite-tests-prod.sh 14.x 8k" workerType: "${docker.dsTests}" metadata: - name: "Mozilla Voice STT Linux AMD64 TFLite NodeJS 14.x prod tests (8kHz)" - description: "Testing Mozilla Voice STT for Linux/AMD64 on NodeJS v14.x on prod model, TFLite, optimized version (8kHz)" + name: "DeepSpeech Linux AMD64 TFLite NodeJS 14.x prod tests (8kHz)" + description: "Testing DeepSpeech for Linux/AMD64 on NodeJS v14.x on prod model, TFLite, optimized version (8kHz)" diff --git a/taskcluster/test-nodejs_14x_multiarchpkg-armbian-arm64-opt.yml b/taskcluster/test-nodejs_14x_multiarchpkg-armbian-arm64-opt.yml index 8190cfcc..6debe667 100644 --- a/taskcluster/test-nodejs_14x_multiarchpkg-armbian-arm64-opt.yml +++ b/taskcluster/test-nodejs_14x_multiarchpkg-armbian-arm64-opt.yml @@ -10,5 +10,5 @@ build: args: tests_cmdline: "${system.homedir.linux}/DeepSpeech/ds/taskcluster/tc-node_tflite-tests.sh 14.x 16k" metadata: - name: "Mozilla Voice STT ARMbian ARM64 Cortex-A53 CPU NodeJS MultiArch Package 14.x tests" - description: "Testing Mozilla Voice STT for ARMbian ARM64 Cortex-A53 on NodeJS MultiArch Package v14.x, CPU only, optimized version" + name: "DeepSpeech ARMbian ARM64 Cortex-A53 CPU NodeJS MultiArch Package 14.x tests" + description: "Testing DeepSpeech for ARMbian ARM64 Cortex-A53 on NodeJS MultiArch Package v14.x, CPU only, optimized version" diff --git a/taskcluster/test-nodejs_14x_multiarchpkg-darwin-amd64-opt.yml b/taskcluster/test-nodejs_14x_multiarchpkg-darwin-amd64-opt.yml index ee9b9e56..3c7a9cbf 100644 --- a/taskcluster/test-nodejs_14x_multiarchpkg-darwin-amd64-opt.yml +++ b/taskcluster/test-nodejs_14x_multiarchpkg-darwin-amd64-opt.yml @@ -11,5 +11,5 @@ build: args: tests_cmdline: "$TASKCLUSTER_TASK_DIR/DeepSpeech/ds/taskcluster/tc-node-tests.sh 14.x 16k" metadata: - name: "Mozilla Voice STT OSX AMD64 CPU NodeJS MultiArch Package 14.x tests" - description: "Testing Mozilla Voice STT for OSX/AMD64 on NodeJS MultiArch Package v14.x, CPU only, optimized version" + name: "DeepSpeech OSX AMD64 CPU NodeJS MultiArch Package 14.x tests" + description: "Testing DeepSpeech for OSX/AMD64 on NodeJS MultiArch Package v14.x, CPU only, optimized version" diff --git a/taskcluster/test-nodejs_14x_multiarchpkg-darwin-tflite-opt.yml b/taskcluster/test-nodejs_14x_multiarchpkg-darwin-tflite-opt.yml index 1d89e4a1..9d5aa2f1 100644 --- a/taskcluster/test-nodejs_14x_multiarchpkg-darwin-tflite-opt.yml +++ b/taskcluster/test-nodejs_14x_multiarchpkg-darwin-tflite-opt.yml @@ -11,5 +11,5 @@ build: args: tests_cmdline: "$TASKCLUSTER_TASK_DIR/DeepSpeech/ds/taskcluster/tc-node_tflite-tests.sh 14.x 16k" metadata: - name: "Mozilla Voice STT OSX AMD64 TFLite NodeJS MultiArch Package 14.x tests" - description: "Testing Mozilla Voice STT for OSX/AMD64 on NodeJS MultiArch Package v14.x, TFLite only, optimized version" + name: "DeepSpeech OSX AMD64 TFLite NodeJS MultiArch Package 14.x tests" + description: "Testing DeepSpeech for OSX/AMD64 on NodeJS MultiArch Package v14.x, TFLite only, optimized version" diff --git a/taskcluster/test-nodejs_14x_multiarchpkg-raspbian-rpi3-opt.yml b/taskcluster/test-nodejs_14x_multiarchpkg-raspbian-rpi3-opt.yml index f7b7ed10..6fb29de1 100644 --- a/taskcluster/test-nodejs_14x_multiarchpkg-raspbian-rpi3-opt.yml +++ b/taskcluster/test-nodejs_14x_multiarchpkg-raspbian-rpi3-opt.yml @@ -10,5 +10,5 @@ build: args: tests_cmdline: "${system.homedir.linux}/DeepSpeech/ds/taskcluster/tc-node_tflite-tests.sh 14.x 16k" metadata: - name: "Mozilla Voice STT Raspbian RPi3/ARMv7 CPU NodeJS MultiArch Package 14.x tests" - description: "Testing Mozilla Voice STT for Raspbian RPi3/ARMv7 on NodeJS MultiArch Package v14.x, CPU only, optimized version" + name: "DeepSpeech Raspbian RPi3/ARMv7 CPU NodeJS MultiArch Package 14.x tests" + description: "Testing DeepSpeech for Raspbian RPi3/ARMv7 on NodeJS MultiArch Package v14.x, CPU only, optimized version" diff --git a/taskcluster/test-nodejs_14x_multiarchpkg-win-amd64-opt.yml b/taskcluster/test-nodejs_14x_multiarchpkg-win-amd64-opt.yml index bc5fc3d7..bd7de4d9 100644 --- a/taskcluster/test-nodejs_14x_multiarchpkg-win-amd64-opt.yml +++ b/taskcluster/test-nodejs_14x_multiarchpkg-win-amd64-opt.yml @@ -10,5 +10,5 @@ build: args: tests_cmdline: "${system.homedir.win}/DeepSpeech/ds/taskcluster/tc-node-tests.sh 14.x 16k" metadata: - name: "Mozilla Voice STT Windows AMD64 CPU NodeJS MultiArch Package 14.x tests" - description: "Testing Mozilla Voice STT for Windows/AMD64 on NodeJS MultiArch Package v14.x, CPU only, optimized version" + name: "DeepSpeech Windows AMD64 CPU NodeJS MultiArch Package 14.x tests" + description: "Testing DeepSpeech for Windows/AMD64 on NodeJS MultiArch Package v14.x, CPU only, optimized version" diff --git a/taskcluster/test-nodejs_14x_multiarchpkg-win-cuda-opt.yml b/taskcluster/test-nodejs_14x_multiarchpkg-win-cuda-opt.yml index 0b60871f..733afc8f 100644 --- a/taskcluster/test-nodejs_14x_multiarchpkg-win-cuda-opt.yml +++ b/taskcluster/test-nodejs_14x_multiarchpkg-win-cuda-opt.yml @@ -10,5 +10,5 @@ build: args: tests_cmdline: "${system.homedir.win}/DeepSpeech/ds/taskcluster/tc-node-tests.sh 14.x 16k cuda" metadata: - name: "Mozilla Voice STT Windows AMD64 CUDA NodeJS MultiArch Package 14.x tests" - description: "Testing Mozilla Voice STT for Windows/AMD64 on NodeJS MultiArch Package v14.x, CUDA, optimized version" + name: "DeepSpeech Windows AMD64 CUDA NodeJS MultiArch Package 14.x tests" + description: "Testing DeepSpeech for Windows/AMD64 on NodeJS MultiArch Package v14.x, CUDA, optimized version" diff --git a/taskcluster/test-nodejs_14x_multiarchpkg-win-tflite-opt.yml b/taskcluster/test-nodejs_14x_multiarchpkg-win-tflite-opt.yml index 86dd63dd..f2721d6c 100644 --- a/taskcluster/test-nodejs_14x_multiarchpkg-win-tflite-opt.yml +++ b/taskcluster/test-nodejs_14x_multiarchpkg-win-tflite-opt.yml @@ -10,5 +10,5 @@ build: args: tests_cmdline: "${system.homedir.win}/DeepSpeech/ds/taskcluster/tc-node_tflite-tests.sh 14.x 16k" metadata: - name: "Mozilla Voice STT Windows AMD64 TFLite NodeJS MultiArch Package 14.x tests" - description: "Testing Mozilla Voice STT for Windows/AMD64 on NodeJS MultiArch Package v14.x, TFLite only, optimized version" + name: "DeepSpeech Windows AMD64 TFLite NodeJS MultiArch Package 14.x tests" + description: "Testing DeepSpeech for Windows/AMD64 on NodeJS MultiArch Package v14.x, TFLite only, optimized version" diff --git a/taskcluster/test-python_35-darwin-amd64-opt.yml b/taskcluster/test-python_35-darwin-amd64-opt.yml index 3967dbee..73ae70d8 100644 --- a/taskcluster/test-python_35-darwin-amd64-opt.yml +++ b/taskcluster/test-python_35-darwin-amd64-opt.yml @@ -8,5 +8,5 @@ build: args: tests_cmdline: "$TASKCLUSTER_TASK_DIR/DeepSpeech/ds/taskcluster/tc-python-tests.sh 3.5.8:m 16k" metadata: - name: "Mozilla Voice STT OSX AMD64 CPU Python v3.5 tests" - description: "Testing Mozilla Voice STT for OSX/AMD64 on Python v3.5, CPU only, optimized version" + name: "DeepSpeech OSX AMD64 CPU Python v3.5 tests" + description: "Testing DeepSpeech for OSX/AMD64 on Python v3.5, CPU only, optimized version" diff --git a/taskcluster/test-python_35-win-amd64-opt.yml b/taskcluster/test-python_35-win-amd64-opt.yml index 05426a97..f5a0831f 100644 --- a/taskcluster/test-python_35-win-amd64-opt.yml +++ b/taskcluster/test-python_35-win-amd64-opt.yml @@ -10,5 +10,5 @@ build: args: tests_cmdline: "${system.homedir.win}/DeepSpeech/ds/taskcluster/tc-python-tests.sh 3.5.4:m 16k" metadata: - name: "Mozilla Voice STT Windows AMD64 CPU Python v3.5 tests" - description: "Testing Mozilla Voice STT for Windows/AMD64 on Python v3.5, CPU only, optimized version" + name: "DeepSpeech Windows AMD64 CPU Python v3.5 tests" + description: "Testing DeepSpeech for Windows/AMD64 on Python v3.5, CPU only, optimized version" diff --git a/taskcluster/test-python_35-win-cuda-opt.yml b/taskcluster/test-python_35-win-cuda-opt.yml index 29684c02..0c54f0b0 100644 --- a/taskcluster/test-python_35-win-cuda-opt.yml +++ b/taskcluster/test-python_35-win-cuda-opt.yml @@ -10,5 +10,5 @@ build: args: tests_cmdline: "${system.homedir.win}/DeepSpeech/ds/taskcluster/tc-python-tests.sh 3.5.4:m 16k cuda" metadata: - name: "Mozilla Voice STT Windows AMD64 CUDA Python v3.5 tests" - description: "Testing Mozilla Voice STT for Windows/AMD64 on Python v3.5, CUDA, optimized version" + name: "DeepSpeech Windows AMD64 CUDA Python v3.5 tests" + description: "Testing DeepSpeech for Windows/AMD64 on Python v3.5, CUDA, optimized version" diff --git a/taskcluster/test-python_35_16k-linux-amd64-opt.yml b/taskcluster/test-python_35_16k-linux-amd64-opt.yml index 2e4e5d07..67d5371a 100644 --- a/taskcluster/test-python_35_16k-linux-amd64-opt.yml +++ b/taskcluster/test-python_35_16k-linux-amd64-opt.yml @@ -8,5 +8,5 @@ build: tests_cmdline: "${system.homedir.linux}/DeepSpeech/ds/taskcluster/tc-python-tests.sh 3.5.8:m 16k" workerType: "${docker.dsTests}" metadata: - name: "Mozilla Voice STT Linux AMD64 CPU Python v3.5 tests (16kHz)" - description: "Testing Mozilla Voice STT for Linux/AMD64 on Python v3.5, CPU only, optimized version (16kHz)" + name: "DeepSpeech Linux AMD64 CPU Python v3.5 tests (16kHz)" + description: "Testing DeepSpeech for Linux/AMD64 on Python v3.5, CPU only, optimized version (16kHz)" diff --git a/taskcluster/test-python_35_16k-linux-amd64-prod_pbmodel-opt.yml b/taskcluster/test-python_35_16k-linux-amd64-prod_pbmodel-opt.yml index 2178c76d..2e8ec800 100644 --- a/taskcluster/test-python_35_16k-linux-amd64-prod_pbmodel-opt.yml +++ b/taskcluster/test-python_35_16k-linux-amd64-prod_pbmodel-opt.yml @@ -6,5 +6,5 @@ build: tests_cmdline: "${system.homedir.linux}/DeepSpeech/ds/taskcluster/tc-python-tests-prod.sh 3.5.8:m 16k" workerType: "${docker.dsTests}" metadata: - name: "Mozilla Voice STT Linux AMD64 CPU Python v3.5 prod tests (16kHz)" - description: "Testing Mozilla Voice STT for Linux/AMD64 on Python v3.5 on prod model, CPU only, optimized version (16kHz)" + name: "DeepSpeech Linux AMD64 CPU Python v3.5 prod tests (16kHz)" + description: "Testing DeepSpeech for Linux/AMD64 on Python v3.5 on prod model, CPU only, optimized version (16kHz)" diff --git a/taskcluster/test-python_35_8k-linux-amd64-opt.yml b/taskcluster/test-python_35_8k-linux-amd64-opt.yml index 3cef0618..c43b9f03 100644 --- a/taskcluster/test-python_35_8k-linux-amd64-opt.yml +++ b/taskcluster/test-python_35_8k-linux-amd64-opt.yml @@ -8,5 +8,5 @@ build: tests_cmdline: "${system.homedir.linux}/DeepSpeech/ds/taskcluster/tc-python-tests.sh 3.5.8:m 8k" workerType: "${docker.dsTests}" metadata: - name: "Mozilla Voice STT Linux AMD64 CPU Python v3.5 tests (8kHz)" - description: "Testing Mozilla Voice STT for Linux/AMD64 on Python v3.5, CPU only, optimized version (8kHz)" + name: "DeepSpeech Linux AMD64 CPU Python v3.5 tests (8kHz)" + description: "Testing DeepSpeech for Linux/AMD64 on Python v3.5, CPU only, optimized version (8kHz)" diff --git a/taskcluster/test-python_35_8k-linux-amd64-prod_pbmodel-opt.yml b/taskcluster/test-python_35_8k-linux-amd64-prod_pbmodel-opt.yml index 54cb0f1c..a526b966 100644 --- a/taskcluster/test-python_35_8k-linux-amd64-prod_pbmodel-opt.yml +++ b/taskcluster/test-python_35_8k-linux-amd64-prod_pbmodel-opt.yml @@ -6,5 +6,5 @@ build: tests_cmdline: "${system.homedir.linux}/DeepSpeech/ds/taskcluster/tc-python-tests-prod.sh 3.5.8:m 8k" workerType: "${docker.dsTests}" metadata: - name: "Mozilla Voice STT Linux AMD64 CPU Python v3.5 prod tests (8kHz)" - description: "Testing Mozilla Voice STT for Linux/AMD64 on Python v3.5 on prod model, CPU only, optimized version (8kHz)" + name: "DeepSpeech Linux AMD64 CPU Python v3.5 prod tests (8kHz)" + description: "Testing DeepSpeech for Linux/AMD64 on Python v3.5 on prod model, CPU only, optimized version (8kHz)" diff --git a/taskcluster/test-python_35_tflite_16k-darwin-amd64-opt.yml b/taskcluster/test-python_35_tflite_16k-darwin-amd64-opt.yml index 2f85960b..dad87b88 100644 --- a/taskcluster/test-python_35_tflite_16k-darwin-amd64-opt.yml +++ b/taskcluster/test-python_35_tflite_16k-darwin-amd64-opt.yml @@ -8,5 +8,5 @@ build: args: tests_cmdline: "$TASKCLUSTER_TASK_DIR/DeepSpeech/ds/taskcluster/tc-python_tflite-tests.sh 3.5.8:m 16k" metadata: - name: "Mozilla Voice STT OSX AMD64 TFLite Python v3.5 tests (16kHz)" - description: "Testing Mozilla Voice STT for OSX/AMD64 on Python v3.5 TFLite, optimized version (16kHz)" + name: "DeepSpeech OSX AMD64 TFLite Python v3.5 tests (16kHz)" + description: "Testing DeepSpeech for OSX/AMD64 on Python v3.5 TFLite, optimized version (16kHz)" diff --git a/taskcluster/test-python_35_tflite_16k-darwin-amd64-prod-opt.yml b/taskcluster/test-python_35_tflite_16k-darwin-amd64-prod-opt.yml index ab857a5c..d639a54f 100644 --- a/taskcluster/test-python_35_tflite_16k-darwin-amd64-prod-opt.yml +++ b/taskcluster/test-python_35_tflite_16k-darwin-amd64-prod-opt.yml @@ -8,5 +8,5 @@ build: args: tests_cmdline: "$TASKCLUSTER_TASK_DIR/DeepSpeech/ds/taskcluster/tc-python_tflite-tests-prod.sh 3.5.8:m 16k" metadata: - name: "Mozilla Voice STT OSX AMD64 TFLite Python v3.5 prod tests (16kHz)" - description: "Testing Mozilla Voice STT for OSX/AMD64 on Python v3.5 on prod model, TFLite, optimized version (16kHz)" + name: "DeepSpeech OSX AMD64 TFLite Python v3.5 prod tests (16kHz)" + description: "Testing DeepSpeech for OSX/AMD64 on Python v3.5 on prod model, TFLite, optimized version (16kHz)" diff --git a/taskcluster/test-python_35_tflite_16k-linux-amd64-opt.yml b/taskcluster/test-python_35_tflite_16k-linux-amd64-opt.yml index b8388525..0dee11b9 100644 --- a/taskcluster/test-python_35_tflite_16k-linux-amd64-opt.yml +++ b/taskcluster/test-python_35_tflite_16k-linux-amd64-opt.yml @@ -8,5 +8,5 @@ build: tests_cmdline: "${system.homedir.linux}/DeepSpeech/ds/taskcluster/tc-python_tflite-tests.sh 3.5.8:m 16k" workerType: "${docker.dsTests}" metadata: - name: "Mozilla Voice STT Linux AMD64 TFLite Python v3.5 tests (16kHz)" - description: "Testing Mozilla Voice STT for Linux/AMD64 on Python v3.5 TFLite, optimized version (16kHz)" + name: "DeepSpeech Linux AMD64 TFLite Python v3.5 tests (16kHz)" + description: "Testing DeepSpeech for Linux/AMD64 on Python v3.5 TFLite, optimized version (16kHz)" diff --git a/taskcluster/test-python_35_tflite_16k-linux-amd64-prod-opt.yml b/taskcluster/test-python_35_tflite_16k-linux-amd64-prod-opt.yml index 64542ad2..a05a6292 100644 --- a/taskcluster/test-python_35_tflite_16k-linux-amd64-prod-opt.yml +++ b/taskcluster/test-python_35_tflite_16k-linux-amd64-prod-opt.yml @@ -6,5 +6,5 @@ build: tests_cmdline: "${system.homedir.linux}/DeepSpeech/ds/taskcluster/tc-python_tflite-tests-prod.sh 3.5.8:m 16k" workerType: "${docker.dsTests}" metadata: - name: "Mozilla Voice STT Linux AMD64 TFLite Python v3.5 prod tests (16kHz)" - description: "Testing Mozilla Voice STT for Linux/AMD64 on Python v3.5 on prod model, TFLite, optimized version (16kHz)" + name: "DeepSpeech Linux AMD64 TFLite Python v3.5 prod tests (16kHz)" + description: "Testing DeepSpeech for Linux/AMD64 on Python v3.5 on prod model, TFLite, optimized version (16kHz)" diff --git a/taskcluster/test-python_35_tflite_16k-win-amd64-opt.yml b/taskcluster/test-python_35_tflite_16k-win-amd64-opt.yml index b4c14ab4..f3288600 100644 --- a/taskcluster/test-python_35_tflite_16k-win-amd64-opt.yml +++ b/taskcluster/test-python_35_tflite_16k-win-amd64-opt.yml @@ -10,5 +10,5 @@ build: args: tests_cmdline: "${system.homedir.win}/DeepSpeech/ds/taskcluster/tc-python_tflite-tests.sh 3.5.4:m 16k" metadata: - name: "Mozilla Voice STT Windows AMD64 TFLite Python v3.5 tests (16kHz)" - description: "Testing Mozilla Voice STT for Windows/AMD64 on Python v3.5 TFLite, optimized version (16kHz)" + name: "DeepSpeech Windows AMD64 TFLite Python v3.5 tests (16kHz)" + description: "Testing DeepSpeech for Windows/AMD64 on Python v3.5 TFLite, optimized version (16kHz)" diff --git a/taskcluster/test-python_35_tflite_16k-win-amd64-prod-opt.yml b/taskcluster/test-python_35_tflite_16k-win-amd64-prod-opt.yml index 0371a825..05603bd5 100644 --- a/taskcluster/test-python_35_tflite_16k-win-amd64-prod-opt.yml +++ b/taskcluster/test-python_35_tflite_16k-win-amd64-prod-opt.yml @@ -10,5 +10,5 @@ build: args: tests_cmdline: "${system.homedir.win}/DeepSpeech/ds/taskcluster/tc-python_tflite-tests-prod.sh 3.5.4:m 16k" metadata: - name: "Mozilla Voice STT Windows AMD64 TFLite Python v3.5 prod tests (16kHz)" - description: "Testing Mozilla Voice STT for Windows/AMD64 on Python v3.5 on prod model, TFLite, optimized version (16kHz)" + name: "DeepSpeech Windows AMD64 TFLite Python v3.5 prod tests (16kHz)" + description: "Testing DeepSpeech for Windows/AMD64 on Python v3.5 on prod model, TFLite, optimized version (16kHz)" diff --git a/taskcluster/test-python_35_tflite_8k-linux-amd64-prod-opt.yml b/taskcluster/test-python_35_tflite_8k-linux-amd64-prod-opt.yml index 5f7d659f..b656b26d 100644 --- a/taskcluster/test-python_35_tflite_8k-linux-amd64-prod-opt.yml +++ b/taskcluster/test-python_35_tflite_8k-linux-amd64-prod-opt.yml @@ -6,5 +6,5 @@ build: tests_cmdline: "${system.homedir.linux}/DeepSpeech/ds/taskcluster/tc-python_tflite-tests-prod.sh 3.5.8:m 8k" workerType: "${docker.dsTests}" metadata: - name: "Mozilla Voice STT Linux AMD64 TFLite Python v3.5 prod tests (8kHz)" - description: "Testing Mozilla Voice STT for Linux/AMD64 on Python v3.5 on prod model, TFLite, optimized version (8kHz)" + name: "DeepSpeech Linux AMD64 TFLite Python v3.5 prod tests (8kHz)" + description: "Testing DeepSpeech for Linux/AMD64 on Python v3.5 on prod model, TFLite, optimized version (8kHz)" diff --git a/taskcluster/test-python_36-darwin-amd64-opt.yml b/taskcluster/test-python_36-darwin-amd64-opt.yml index 577bd3c8..7675667a 100644 --- a/taskcluster/test-python_36-darwin-amd64-opt.yml +++ b/taskcluster/test-python_36-darwin-amd64-opt.yml @@ -8,5 +8,5 @@ build: args: tests_cmdline: "$TASKCLUSTER_TASK_DIR/DeepSpeech/ds/taskcluster/tc-python-tests.sh 3.6.10:m 16k" metadata: - name: "Mozilla Voice STT OSX AMD64 CPU Python v3.6 tests" - description: "Testing Mozilla Voice STT for OSX/AMD64 on Python v3.6.10:m, CPU only, optimized version" + name: "DeepSpeech OSX AMD64 CPU Python v3.6 tests" + description: "Testing DeepSpeech for OSX/AMD64 on Python v3.6.10:m, CPU only, optimized version" diff --git a/taskcluster/test-python_36-win-amd64-opt.yml b/taskcluster/test-python_36-win-amd64-opt.yml index da03f761..996abb29 100644 --- a/taskcluster/test-python_36-win-amd64-opt.yml +++ b/taskcluster/test-python_36-win-amd64-opt.yml @@ -10,5 +10,5 @@ build: args: tests_cmdline: "${system.homedir.win}/DeepSpeech/ds/taskcluster/tc-python-tests.sh 3.6.8:m 16k" metadata: - name: "Mozilla Voice STT Windows AMD64 CPU Python v3.6 tests" - description: "Testing Mozilla Voice STT for Windows/AMD64 on Python v3.6, CPU only, optimized version" + name: "DeepSpeech Windows AMD64 CPU Python v3.6 tests" + description: "Testing DeepSpeech for Windows/AMD64 on Python v3.6, CPU only, optimized version" diff --git a/taskcluster/test-python_36-win-cuda-opt.yml b/taskcluster/test-python_36-win-cuda-opt.yml index 9cb7092a..640f6a1b 100644 --- a/taskcluster/test-python_36-win-cuda-opt.yml +++ b/taskcluster/test-python_36-win-cuda-opt.yml @@ -10,5 +10,5 @@ build: args: tests_cmdline: "${system.homedir.win}/DeepSpeech/ds/taskcluster/tc-python-tests.sh 3.6.8:m 16k cuda" metadata: - name: "Mozilla Voice STT Windows AMD64 CUDA Python v3.6 tests" - description: "Testing Mozilla Voice STT for Windows/AMD64 on Python v3.6, CUDA, optimized version" + name: "DeepSpeech Windows AMD64 CUDA Python v3.6 tests" + description: "Testing DeepSpeech for Windows/AMD64 on Python v3.6, CUDA, optimized version" diff --git a/taskcluster/test-python_36_16k-linux-amd64-opt.yml b/taskcluster/test-python_36_16k-linux-amd64-opt.yml index 0b7e5bb1..d13a0e0c 100644 --- a/taskcluster/test-python_36_16k-linux-amd64-opt.yml +++ b/taskcluster/test-python_36_16k-linux-amd64-opt.yml @@ -8,5 +8,5 @@ build: tests_cmdline: "${system.homedir.linux}/DeepSpeech/ds/taskcluster/tc-python-tests.sh 3.6.10:m 16k" workerType: "${docker.dsTests}" metadata: - name: "Mozilla Voice STT Linux AMD64 CPU Python v3.6 tests (16kHz)" - description: "Testing Mozilla Voice STT for Linux/AMD64 on Python v3.6, CPU only, optimized version (16kHz)" + name: "DeepSpeech Linux AMD64 CPU Python v3.6 tests (16kHz)" + description: "Testing DeepSpeech for Linux/AMD64 on Python v3.6, CPU only, optimized version (16kHz)" diff --git a/taskcluster/test-python_36_16k-linux-amd64-prod_pbmodel-opt.yml b/taskcluster/test-python_36_16k-linux-amd64-prod_pbmodel-opt.yml index 1a5b6523..14ca3621 100644 --- a/taskcluster/test-python_36_16k-linux-amd64-prod_pbmodel-opt.yml +++ b/taskcluster/test-python_36_16k-linux-amd64-prod_pbmodel-opt.yml @@ -6,5 +6,5 @@ build: tests_cmdline: "${system.homedir.linux}/DeepSpeech/ds/taskcluster/tc-python-tests-prod.sh 3.6.10:m 16k" workerType: "${docker.dsTests}" metadata: - name: "Mozilla Voice STT Linux AMD64 CPU Python v3.6 prod tests (16kHz)" - description: "Testing Mozilla Voice STT for Linux/AMD64 on Python v3.6 on prod model, CPU only, optimized version (16kHz)" + name: "DeepSpeech Linux AMD64 CPU Python v3.6 prod tests (16kHz)" + description: "Testing DeepSpeech for Linux/AMD64 on Python v3.6 on prod model, CPU only, optimized version (16kHz)" diff --git a/taskcluster/test-python_36_8k-linux-amd64-opt.yml b/taskcluster/test-python_36_8k-linux-amd64-opt.yml index fbfaf6b5..176975f9 100644 --- a/taskcluster/test-python_36_8k-linux-amd64-opt.yml +++ b/taskcluster/test-python_36_8k-linux-amd64-opt.yml @@ -8,5 +8,5 @@ build: tests_cmdline: "${system.homedir.linux}/DeepSpeech/ds/taskcluster/tc-python-tests.sh 3.6.10:m 8k" workerType: "${docker.dsTests}" metadata: - name: "Mozilla Voice STT Linux AMD64 CPU Python v3.6 tests (8kHz)" - description: "Testing Mozilla Voice STT for Linux/AMD64 on Python v3.6, CPU only, optimized version (8kHz)" + name: "DeepSpeech Linux AMD64 CPU Python v3.6 tests (8kHz)" + description: "Testing DeepSpeech for Linux/AMD64 on Python v3.6, CPU only, optimized version (8kHz)" diff --git a/taskcluster/test-python_36_8k-linux-amd64-prod_pbmodel-opt.yml b/taskcluster/test-python_36_8k-linux-amd64-prod_pbmodel-opt.yml index 2b99f5e2..b1c333e5 100644 --- a/taskcluster/test-python_36_8k-linux-amd64-prod_pbmodel-opt.yml +++ b/taskcluster/test-python_36_8k-linux-amd64-prod_pbmodel-opt.yml @@ -6,5 +6,5 @@ build: tests_cmdline: "${system.homedir.linux}/DeepSpeech/ds/taskcluster/tc-python-tests-prod.sh 3.6.10:m 8k" workerType: "${docker.dsTests}" metadata: - name: "Mozilla Voice STT Linux AMD64 CPU Python v3.6 prod tests (8kHz)" - description: "Testing Mozilla Voice STT for Linux/AMD64 on Python v3.6 on prod model, CPU only, optimized version (8kHz)" + name: "DeepSpeech Linux AMD64 CPU Python v3.6 prod tests (8kHz)" + description: "Testing DeepSpeech for Linux/AMD64 on Python v3.6 on prod model, CPU only, optimized version (8kHz)" diff --git a/taskcluster/test-python_36_tflite_16k-darwin-amd64-opt.yml b/taskcluster/test-python_36_tflite_16k-darwin-amd64-opt.yml index 3a7bd615..36d1c979 100644 --- a/taskcluster/test-python_36_tflite_16k-darwin-amd64-opt.yml +++ b/taskcluster/test-python_36_tflite_16k-darwin-amd64-opt.yml @@ -8,5 +8,5 @@ build: args: tests_cmdline: "$TASKCLUSTER_TASK_DIR/DeepSpeech/ds/taskcluster/tc-python_tflite-tests.sh 3.6.10:m 16k" metadata: - name: "Mozilla Voice STT OSX AMD64 TFLite Python v3.6 tests (16kHz)" - description: "Testing Mozilla Voice STT for OSX/AMD64 on Python v3.6 TFLite, optimized version (16kHz)" + name: "DeepSpeech OSX AMD64 TFLite Python v3.6 tests (16kHz)" + description: "Testing DeepSpeech for OSX/AMD64 on Python v3.6 TFLite, optimized version (16kHz)" diff --git a/taskcluster/test-python_36_tflite_16k-darwin-amd64-prod-opt.yml b/taskcluster/test-python_36_tflite_16k-darwin-amd64-prod-opt.yml index 2f630a57..567ac3f5 100644 --- a/taskcluster/test-python_36_tflite_16k-darwin-amd64-prod-opt.yml +++ b/taskcluster/test-python_36_tflite_16k-darwin-amd64-prod-opt.yml @@ -8,5 +8,5 @@ build: args: tests_cmdline: "$TASKCLUSTER_TASK_DIR/DeepSpeech/ds/taskcluster/tc-python_tflite-tests-prod.sh 3.6.10:m 16k" metadata: - name: "Mozilla Voice STT OSX AMD64 TFLite Python v3.6 prod tests (16kHz)" - description: "Testing Mozilla Voice STT for OSX/AMD64 on Python v3.6 on prod model, TFLite, optimized version (16kHz)" + name: "DeepSpeech OSX AMD64 TFLite Python v3.6 prod tests (16kHz)" + description: "Testing DeepSpeech for OSX/AMD64 on Python v3.6 on prod model, TFLite, optimized version (16kHz)" diff --git a/taskcluster/test-python_36_tflite_16k-linux-amd64-opt.yml b/taskcluster/test-python_36_tflite_16k-linux-amd64-opt.yml index fc8781d7..eddde81b 100644 --- a/taskcluster/test-python_36_tflite_16k-linux-amd64-opt.yml +++ b/taskcluster/test-python_36_tflite_16k-linux-amd64-opt.yml @@ -8,5 +8,5 @@ build: tests_cmdline: "${system.homedir.linux}/DeepSpeech/ds/taskcluster/tc-python_tflite-tests.sh 3.6.10:m 16k" workerType: "${docker.dsTests}" metadata: - name: "Mozilla Voice STT Linux AMD64 TFLite Python v3.6 tests (16kHz)" - description: "Testing Mozilla Voice STT for Linux/AMD64 on Python v3.6 TFLite, optimized version (16kHz)" + name: "DeepSpeech Linux AMD64 TFLite Python v3.6 tests (16kHz)" + description: "Testing DeepSpeech for Linux/AMD64 on Python v3.6 TFLite, optimized version (16kHz)" diff --git a/taskcluster/test-python_36_tflite_16k-linux-amd64-prod-opt.yml b/taskcluster/test-python_36_tflite_16k-linux-amd64-prod-opt.yml index c742e59d..061bcaf9 100644 --- a/taskcluster/test-python_36_tflite_16k-linux-amd64-prod-opt.yml +++ b/taskcluster/test-python_36_tflite_16k-linux-amd64-prod-opt.yml @@ -6,5 +6,5 @@ build: tests_cmdline: "${system.homedir.linux}/DeepSpeech/ds/taskcluster/tc-python_tflite-tests-prod.sh 3.6.10:m 16k" workerType: "${docker.dsTests}" metadata: - name: "Mozilla Voice STT Linux AMD64 TFLite Python v3.6 prod tests (16kHz)" - description: "Testing Mozilla Voice STT for Linux/AMD64 on Python v3.6 on prod model, TFLite, optimized version (16kHz)" + name: "DeepSpeech Linux AMD64 TFLite Python v3.6 prod tests (16kHz)" + description: "Testing DeepSpeech for Linux/AMD64 on Python v3.6 on prod model, TFLite, optimized version (16kHz)" diff --git a/taskcluster/test-python_36_tflite_16k-win-amd64-opt.yml b/taskcluster/test-python_36_tflite_16k-win-amd64-opt.yml index 16e680bf..2ebf23c2 100644 --- a/taskcluster/test-python_36_tflite_16k-win-amd64-opt.yml +++ b/taskcluster/test-python_36_tflite_16k-win-amd64-opt.yml @@ -10,5 +10,5 @@ build: args: tests_cmdline: "${system.homedir.win}/DeepSpeech/ds/taskcluster/tc-python_tflite-tests.sh 3.6.8:m 16k" metadata: - name: "Mozilla Voice STT Windows AMD64 TFLite Python v3.6 tests (16kHz)" - description: "Testing Mozilla Voice STT for Windows/AMD64 on Python v3.6 TFLite, optimized version (16kHz)" + name: "DeepSpeech Windows AMD64 TFLite Python v3.6 tests (16kHz)" + description: "Testing DeepSpeech for Windows/AMD64 on Python v3.6 TFLite, optimized version (16kHz)" diff --git a/taskcluster/test-python_36_tflite_16k-win-amd64-prod-opt.yml b/taskcluster/test-python_36_tflite_16k-win-amd64-prod-opt.yml index b65c7b6b..a8f02424 100644 --- a/taskcluster/test-python_36_tflite_16k-win-amd64-prod-opt.yml +++ b/taskcluster/test-python_36_tflite_16k-win-amd64-prod-opt.yml @@ -10,5 +10,5 @@ build: args: tests_cmdline: "${system.homedir.win}/DeepSpeech/ds/taskcluster/tc-python_tflite-tests-prod.sh 3.6.8:m 16k" metadata: - name: "Mozilla Voice STT Windows AMD64 TFLite Python v3.6 prod tests (16kHz)" - description: "Testing Mozilla Voice STT for Windows/AMD64 on Python v3.6 on prod model, TFLite, optimized version (16kHz)" + name: "DeepSpeech Windows AMD64 TFLite Python v3.6 prod tests (16kHz)" + description: "Testing DeepSpeech for Windows/AMD64 on Python v3.6 on prod model, TFLite, optimized version (16kHz)" diff --git a/taskcluster/test-python_36_tflite_8k-linux-amd64-prod-opt.yml b/taskcluster/test-python_36_tflite_8k-linux-amd64-prod-opt.yml index 40cca09d..365e21d2 100644 --- a/taskcluster/test-python_36_tflite_8k-linux-amd64-prod-opt.yml +++ b/taskcluster/test-python_36_tflite_8k-linux-amd64-prod-opt.yml @@ -6,5 +6,5 @@ build: tests_cmdline: "${system.homedir.linux}/DeepSpeech/ds/taskcluster/tc-python_tflite-tests-prod.sh 3.6.10:m 8k" workerType: "${docker.dsTests}" metadata: - name: "Mozilla Voice STT Linux AMD64 TFLite Python v3.6 prod tests (8kHz)" - description: "Testing Mozilla Voice STT for Linux/AMD64 on Python v3.6 on prod model, TFLite, optimized version (8kHz)" + name: "DeepSpeech Linux AMD64 TFLite Python v3.6 prod tests (8kHz)" + description: "Testing DeepSpeech for Linux/AMD64 on Python v3.6 on prod model, TFLite, optimized version (8kHz)" diff --git a/taskcluster/test-python_37-darwin-amd64-opt.yml b/taskcluster/test-python_37-darwin-amd64-opt.yml index 4b0fd58b..551f7618 100644 --- a/taskcluster/test-python_37-darwin-amd64-opt.yml +++ b/taskcluster/test-python_37-darwin-amd64-opt.yml @@ -8,5 +8,5 @@ build: args: tests_cmdline: "$TASKCLUSTER_TASK_DIR/DeepSpeech/ds/taskcluster/tc-python-tests.sh 3.7.6:m 16k" metadata: - name: "Mozilla Voice STT OSX AMD64 CPU Python v3.7 tests" - description: "Testing Mozilla Voice STT for OSX/AMD64 on Python v3.7.6:m, CPU only, optimized version" + name: "DeepSpeech OSX AMD64 CPU Python v3.7 tests" + description: "Testing DeepSpeech for OSX/AMD64 on Python v3.7.6:m, CPU only, optimized version" diff --git a/taskcluster/test-python_37-win-amd64-opt.yml b/taskcluster/test-python_37-win-amd64-opt.yml index 3130f06f..13d63d59 100644 --- a/taskcluster/test-python_37-win-amd64-opt.yml +++ b/taskcluster/test-python_37-win-amd64-opt.yml @@ -10,5 +10,5 @@ build: args: tests_cmdline: "${system.homedir.win}/DeepSpeech/ds/taskcluster/tc-python-tests.sh 3.7.6:m 16k" metadata: - name: "Mozilla Voice STT Windows AMD64 CPU Python v3.7 tests" - description: "Testing Mozilla Voice STT for Windows/AMD64 on Python v3.7, CPU only, optimized version" + name: "DeepSpeech Windows AMD64 CPU Python v3.7 tests" + description: "Testing DeepSpeech for Windows/AMD64 on Python v3.7, CPU only, optimized version" diff --git a/taskcluster/test-python_37-win-cuda-opt.yml b/taskcluster/test-python_37-win-cuda-opt.yml index 855ea364..a10a06a4 100644 --- a/taskcluster/test-python_37-win-cuda-opt.yml +++ b/taskcluster/test-python_37-win-cuda-opt.yml @@ -10,5 +10,5 @@ build: args: tests_cmdline: "${system.homedir.win}/DeepSpeech/ds/taskcluster/tc-python-tests.sh 3.7.6:m 16k cuda" metadata: - name: "Mozilla Voice STT Windows AMD64 CUDA Python v3.7 tests" - description: "Testing Mozilla Voice STT for Windows/AMD64 on Python v3.7, CUDA, optimized version" + name: "DeepSpeech Windows AMD64 CUDA Python v3.7 tests" + description: "Testing DeepSpeech for Windows/AMD64 on Python v3.7, CUDA, optimized version" diff --git a/taskcluster/test-python_37_16k-linux-amd64-opt.yml b/taskcluster/test-python_37_16k-linux-amd64-opt.yml index 9d924695..a232cbe2 100644 --- a/taskcluster/test-python_37_16k-linux-amd64-opt.yml +++ b/taskcluster/test-python_37_16k-linux-amd64-opt.yml @@ -8,5 +8,5 @@ build: tests_cmdline: "${system.homedir.linux}/DeepSpeech/ds/taskcluster/tc-python-tests.sh 3.7.6:m 16k" workerType: "${docker.dsTests}" metadata: - name: "Mozilla Voice STT Linux AMD64 CPU Python v3.7 tests (16kHz)" - description: "Testing Mozilla Voice STT for Linux/AMD64 on Python v3.7, CPU only, optimized version (16kHz)" + name: "DeepSpeech Linux AMD64 CPU Python v3.7 tests (16kHz)" + description: "Testing DeepSpeech for Linux/AMD64 on Python v3.7, CPU only, optimized version (16kHz)" diff --git a/taskcluster/test-python_37_16k-linux-amd64-prod_pbmodel-opt.yml b/taskcluster/test-python_37_16k-linux-amd64-prod_pbmodel-opt.yml index d14bd3d4..1ff9a651 100644 --- a/taskcluster/test-python_37_16k-linux-amd64-prod_pbmodel-opt.yml +++ b/taskcluster/test-python_37_16k-linux-amd64-prod_pbmodel-opt.yml @@ -6,5 +6,5 @@ build: tests_cmdline: "${system.homedir.linux}/DeepSpeech/ds/taskcluster/tc-python-tests-prod.sh 3.7.6:m 16k" workerType: "${docker.dsTests}" metadata: - name: "Mozilla Voice STT Linux AMD64 CPU Python v3.7 prod tests (16kHz)" - description: "Testing Mozilla Voice STT for Linux/AMD64 on Python v3.7 on prod model, CPU only, optimized version (16kHz)" + name: "DeepSpeech Linux AMD64 CPU Python v3.7 prod tests (16kHz)" + description: "Testing DeepSpeech for Linux/AMD64 on Python v3.7 on prod model, CPU only, optimized version (16kHz)" diff --git a/taskcluster/test-python_37_8k-linux-amd64-opt.yml b/taskcluster/test-python_37_8k-linux-amd64-opt.yml index ef2c1a73..82609a4f 100644 --- a/taskcluster/test-python_37_8k-linux-amd64-opt.yml +++ b/taskcluster/test-python_37_8k-linux-amd64-opt.yml @@ -8,5 +8,5 @@ build: tests_cmdline: "${system.homedir.linux}/DeepSpeech/ds/taskcluster/tc-python-tests.sh 3.7.6:m 8k" workerType: "${docker.dsTests}" metadata: - name: "Mozilla Voice STT Linux AMD64 CPU Python v3.7 tests (8kHz)" - description: "Testing Mozilla Voice STT for Linux/AMD64 on Python v3.7, CPU only, optimized version (8kHz)" + name: "DeepSpeech Linux AMD64 CPU Python v3.7 tests (8kHz)" + description: "Testing DeepSpeech for Linux/AMD64 on Python v3.7, CPU only, optimized version (8kHz)" diff --git a/taskcluster/test-python_37_8k-linux-amd64-prod_pbmodel-opt.yml b/taskcluster/test-python_37_8k-linux-amd64-prod_pbmodel-opt.yml index d43e9c0b..3b74068b 100644 --- a/taskcluster/test-python_37_8k-linux-amd64-prod_pbmodel-opt.yml +++ b/taskcluster/test-python_37_8k-linux-amd64-prod_pbmodel-opt.yml @@ -6,5 +6,5 @@ build: tests_cmdline: "${system.homedir.linux}/DeepSpeech/ds/taskcluster/tc-python-tests-prod.sh 3.7.6:m 8k" workerType: "${docker.dsTests}" metadata: - name: "Mozilla Voice STT Linux AMD64 CPU Python v3.7 prod tests (8kHz)" - description: "Testing Mozilla Voice STT for Linux/AMD64 on Python v3.7 on prod model, CPU only, optimized version (8kHz)" + name: "DeepSpeech Linux AMD64 CPU Python v3.7 prod tests (8kHz)" + description: "Testing DeepSpeech for Linux/AMD64 on Python v3.7 on prod model, CPU only, optimized version (8kHz)" diff --git a/taskcluster/test-python_37_tflite_16k-darwin-amd64-opt.yml b/taskcluster/test-python_37_tflite_16k-darwin-amd64-opt.yml index 154c376a..b3970009 100644 --- a/taskcluster/test-python_37_tflite_16k-darwin-amd64-opt.yml +++ b/taskcluster/test-python_37_tflite_16k-darwin-amd64-opt.yml @@ -8,5 +8,5 @@ build: args: tests_cmdline: "$TASKCLUSTER_TASK_DIR/DeepSpeech/ds/taskcluster/tc-python_tflite-tests.sh 3.7.6:m 16k" metadata: - name: "Mozilla Voice STT OSX AMD64 TFLite Python v3.7 tests (16kHz)" - description: "Testing Mozilla Voice STT for OSX/AMD64 on Python v3.7 TFLite, optimized version (16kHz)" + name: "DeepSpeech OSX AMD64 TFLite Python v3.7 tests (16kHz)" + description: "Testing DeepSpeech for OSX/AMD64 on Python v3.7 TFLite, optimized version (16kHz)" diff --git a/taskcluster/test-python_37_tflite_16k-darwin-amd64-prod-opt.yml b/taskcluster/test-python_37_tflite_16k-darwin-amd64-prod-opt.yml index 8a2e0a85..9f4e7ea9 100644 --- a/taskcluster/test-python_37_tflite_16k-darwin-amd64-prod-opt.yml +++ b/taskcluster/test-python_37_tflite_16k-darwin-amd64-prod-opt.yml @@ -8,5 +8,5 @@ build: args: tests_cmdline: "$TASKCLUSTER_TASK_DIR/DeepSpeech/ds/taskcluster/tc-python_tflite-tests-prod.sh 3.7.6:m 16k" metadata: - name: "Mozilla Voice STT OSX AMD64 TFLite Python v3.7 prod tests (16kHz)" - description: "Testing Mozilla Voice STT for OSX/AMD64 on Python v3.7 on prod model, TFLite, optimized version (16kHz)" + name: "DeepSpeech OSX AMD64 TFLite Python v3.7 prod tests (16kHz)" + description: "Testing DeepSpeech for OSX/AMD64 on Python v3.7 on prod model, TFLite, optimized version (16kHz)" diff --git a/taskcluster/test-python_37_tflite_16k-linux-amd64-opt.yml b/taskcluster/test-python_37_tflite_16k-linux-amd64-opt.yml index 2c78ca39..38a5b6d5 100644 --- a/taskcluster/test-python_37_tflite_16k-linux-amd64-opt.yml +++ b/taskcluster/test-python_37_tflite_16k-linux-amd64-opt.yml @@ -8,5 +8,5 @@ build: tests_cmdline: "${system.homedir.linux}/DeepSpeech/ds/taskcluster/tc-python_tflite-tests.sh 3.7.6:m 16k" workerType: "${docker.dsTests}" metadata: - name: "Mozilla Voice STT Linux AMD64 TFLite Python v3.7 tests (16kHz)" - description: "Testing Mozilla Voice STT for Linux/AMD64 on Python v3.7 TFLite, optimized version (16kHz)" + name: "DeepSpeech Linux AMD64 TFLite Python v3.7 tests (16kHz)" + description: "Testing DeepSpeech for Linux/AMD64 on Python v3.7 TFLite, optimized version (16kHz)" diff --git a/taskcluster/test-python_37_tflite_16k-linux-amd64-prod-opt.yml b/taskcluster/test-python_37_tflite_16k-linux-amd64-prod-opt.yml index 0a825609..e5949505 100644 --- a/taskcluster/test-python_37_tflite_16k-linux-amd64-prod-opt.yml +++ b/taskcluster/test-python_37_tflite_16k-linux-amd64-prod-opt.yml @@ -6,5 +6,5 @@ build: tests_cmdline: "${system.homedir.linux}/DeepSpeech/ds/taskcluster/tc-python_tflite-tests-prod.sh 3.7.6:m 16k" workerType: "${docker.dsTests}" metadata: - name: "Mozilla Voice STT Linux AMD64 TFLite Python v3.7 prod tests (16kHz)" - description: "Testing Mozilla Voice STT for Linux/AMD64 on Python v3.7 on prod model, TFLite, optimized version (16kHz)" + name: "DeepSpeech Linux AMD64 TFLite Python v3.7 prod tests (16kHz)" + description: "Testing DeepSpeech for Linux/AMD64 on Python v3.7 on prod model, TFLite, optimized version (16kHz)" diff --git a/taskcluster/test-python_37_tflite_16k-win-amd64-opt.yml b/taskcluster/test-python_37_tflite_16k-win-amd64-opt.yml index 479e13ee..95468dcc 100644 --- a/taskcluster/test-python_37_tflite_16k-win-amd64-opt.yml +++ b/taskcluster/test-python_37_tflite_16k-win-amd64-opt.yml @@ -10,5 +10,5 @@ build: args: tests_cmdline: "${system.homedir.win}/DeepSpeech/ds/taskcluster/tc-python_tflite-tests.sh 3.7.6:m 16k" metadata: - name: "Mozilla Voice STT Windows AMD64 TFLite Python v3.7 tests (16kHz)" - description: "Testing Mozilla Voice STT for Windows/AMD64 on Python v3.7 TFLite, optimized version (16kHz)" + name: "DeepSpeech Windows AMD64 TFLite Python v3.7 tests (16kHz)" + description: "Testing DeepSpeech for Windows/AMD64 on Python v3.7 TFLite, optimized version (16kHz)" diff --git a/taskcluster/test-python_37_tflite_16k-win-amd64-prod-opt.yml b/taskcluster/test-python_37_tflite_16k-win-amd64-prod-opt.yml index de9096b5..28787949 100644 --- a/taskcluster/test-python_37_tflite_16k-win-amd64-prod-opt.yml +++ b/taskcluster/test-python_37_tflite_16k-win-amd64-prod-opt.yml @@ -10,5 +10,5 @@ build: args: tests_cmdline: "${system.homedir.win}/DeepSpeech/ds/taskcluster/tc-python_tflite-tests-prod.sh 3.7.6:m 16k" metadata: - name: "Mozilla Voice STT Windows AMD64 TFLite Python v3.7 prod tests (16kHz)" - description: "Testing Mozilla Voice STT for Windows/AMD64 on Python v3.7 on prod model, TFLite, optimized version (16kHz)" + name: "DeepSpeech Windows AMD64 TFLite Python v3.7 prod tests (16kHz)" + description: "Testing DeepSpeech for Windows/AMD64 on Python v3.7 on prod model, TFLite, optimized version (16kHz)" diff --git a/taskcluster/test-python_37_tflite_8k-linux-amd64-prod-opt.yml b/taskcluster/test-python_37_tflite_8k-linux-amd64-prod-opt.yml index 28ef0d5b..66134a14 100644 --- a/taskcluster/test-python_37_tflite_8k-linux-amd64-prod-opt.yml +++ b/taskcluster/test-python_37_tflite_8k-linux-amd64-prod-opt.yml @@ -6,5 +6,5 @@ build: tests_cmdline: "${system.homedir.linux}/DeepSpeech/ds/taskcluster/tc-python_tflite-tests-prod.sh 3.7.6:m 8k" workerType: "${docker.dsTests}" metadata: - name: "Mozilla Voice STT Linux AMD64 TFLite Python v3.7 prod tests (8kHz)" - description: "Testing Mozilla Voice STT for Linux/AMD64 on Python v3.7 on prod model, TFLite, optimized version (8kHz)" + name: "DeepSpeech Linux AMD64 TFLite Python v3.7 prod tests (8kHz)" + description: "Testing DeepSpeech for Linux/AMD64 on Python v3.7 on prod model, TFLite, optimized version (8kHz)" diff --git a/taskcluster/test-python_37m-armbian-arm64-opt.yml b/taskcluster/test-python_37m-armbian-arm64-opt.yml index 81c6ce66..2dc6d511 100644 --- a/taskcluster/test-python_37m-armbian-arm64-opt.yml +++ b/taskcluster/test-python_37m-armbian-arm64-opt.yml @@ -10,5 +10,5 @@ build: args: tests_cmdline: "${system.homedir.linux}/DeepSpeech/ds/taskcluster/tc-python_tflite-tests.sh 3.7.6:m 16k" metadata: - name: "Mozilla Voice STT ARMbian ARM64 Cortex-A53 CPU Python v3.7 tests" - description: "Testing Mozilla Voice STT for ARMbian ARM64 Cortex-A53 on Python v3.7, CPU only, optimized version" + name: "DeepSpeech ARMbian ARM64 Cortex-A53 CPU Python v3.7 tests" + description: "Testing DeepSpeech for ARMbian ARM64 Cortex-A53 on Python v3.7, CPU only, optimized version" diff --git a/taskcluster/test-python_37m-armbian-arm64-prod-opt.yml b/taskcluster/test-python_37m-armbian-arm64-prod-opt.yml index 5751044a..7ad2c71a 100644 --- a/taskcluster/test-python_37m-armbian-arm64-prod-opt.yml +++ b/taskcluster/test-python_37m-armbian-arm64-prod-opt.yml @@ -10,5 +10,5 @@ build: args: tests_cmdline: "${system.homedir.linux}/DeepSpeech/ds/taskcluster/tc-python_tflite-tests-prod.sh 3.7.6:m 16k" metadata: - name: "Mozilla Voice STT ARMbian ARM64 Cortex-A53 CPU Python v3.7 prod tests" - description: "Testing Mozilla Voice STT for ARMbian ARM64 Cortex-A53 on prod model Python v3.7, CPU only, optimized version" + name: "DeepSpeech ARMbian ARM64 Cortex-A53 CPU Python v3.7 prod tests" + description: "Testing DeepSpeech for ARMbian ARM64 Cortex-A53 on prod model Python v3.7, CPU only, optimized version" diff --git a/taskcluster/test-python_37m-raspbian-rpi3-opt.yml b/taskcluster/test-python_37m-raspbian-rpi3-opt.yml index 09027fd0..af9205e0 100644 --- a/taskcluster/test-python_37m-raspbian-rpi3-opt.yml +++ b/taskcluster/test-python_37m-raspbian-rpi3-opt.yml @@ -10,5 +10,5 @@ build: args: tests_cmdline: "${system.homedir.linux}/DeepSpeech/ds/taskcluster/tc-python_tflite-tests.sh 3.7.6:m 16k" metadata: - name: "Mozilla Voice STT Raspbian RPi3/ARMv7 CPU Python v3.7 tests" - description: "Testing Mozilla Voice STT for Raspbian RPi3/ARMv7 on Python v3.7, CPU only, optimized version" + name: "DeepSpeech Raspbian RPi3/ARMv7 CPU Python v3.7 tests" + description: "Testing DeepSpeech for Raspbian RPi3/ARMv7 on Python v3.7, CPU only, optimized version" diff --git a/taskcluster/test-python_37m-raspbian-rpi3-prod-opt.yml b/taskcluster/test-python_37m-raspbian-rpi3-prod-opt.yml index 05dd58dd..4c9d00f7 100644 --- a/taskcluster/test-python_37m-raspbian-rpi3-prod-opt.yml +++ b/taskcluster/test-python_37m-raspbian-rpi3-prod-opt.yml @@ -10,5 +10,5 @@ build: args: tests_cmdline: "${system.homedir.linux}/DeepSpeech/ds/taskcluster/tc-python_tflite-tests-prod.sh 3.7.6:m 16k" metadata: - name: "Mozilla Voice STT Raspbian RPi3/ARMv7 CPU Python v3.7 prod tests" - description: "Testing Mozilla Voice STT for Raspbian RPi3/ARMv7 on prod model Python v3.7, CPU only, optimized version" + name: "DeepSpeech Raspbian RPi3/ARMv7 CPU Python v3.7 prod tests" + description: "Testing DeepSpeech for Raspbian RPi3/ARMv7 on prod model Python v3.7, CPU only, optimized version" diff --git a/taskcluster/test-python_38-darwin-amd64-opt.yml b/taskcluster/test-python_38-darwin-amd64-opt.yml index eacd2cdb..855d71d7 100644 --- a/taskcluster/test-python_38-darwin-amd64-opt.yml +++ b/taskcluster/test-python_38-darwin-amd64-opt.yml @@ -8,5 +8,5 @@ build: args: tests_cmdline: "$TASKCLUSTER_TASK_DIR/DeepSpeech/ds/taskcluster/tc-python-tests.sh 3.8.1: 16k" metadata: - name: "Mozilla Voice STT OSX AMD64 CPU Python v3.8 tests" - description: "Testing Mozilla Voice STT for OSX/AMD64 on Python v3.8.1:m, CPU only, optimized version" + name: "DeepSpeech OSX AMD64 CPU Python v3.8 tests" + description: "Testing DeepSpeech for OSX/AMD64 on Python v3.8.1:m, CPU only, optimized version" diff --git a/taskcluster/test-python_38-win-amd64-opt.yml b/taskcluster/test-python_38-win-amd64-opt.yml index 62358c4a..4100f06a 100644 --- a/taskcluster/test-python_38-win-amd64-opt.yml +++ b/taskcluster/test-python_38-win-amd64-opt.yml @@ -10,5 +10,5 @@ build: args: tests_cmdline: "${system.homedir.win}/DeepSpeech/ds/taskcluster/tc-python-tests.sh 3.8.1: 16k" metadata: - name: "Mozilla Voice STT Windows AMD64 CPU Python v3.8 tests" - description: "Testing Mozilla Voice STT for Windows/AMD64 on Python v3.8, CPU only, optimized version" + name: "DeepSpeech Windows AMD64 CPU Python v3.8 tests" + description: "Testing DeepSpeech for Windows/AMD64 on Python v3.8, CPU only, optimized version" diff --git a/taskcluster/test-python_38-win-cuda-opt.yml b/taskcluster/test-python_38-win-cuda-opt.yml index 54cf356c..73140672 100644 --- a/taskcluster/test-python_38-win-cuda-opt.yml +++ b/taskcluster/test-python_38-win-cuda-opt.yml @@ -10,5 +10,5 @@ build: args: tests_cmdline: "${system.homedir.win}/DeepSpeech/ds/taskcluster/tc-python-tests.sh 3.8.1: 16k cuda" metadata: - name: "Mozilla Voice STT Windows AMD64 CUDA Python v3.8 tests" - description: "Testing Mozilla Voice STT for Windows/AMD64 on Python v3.8, CUDA, optimized version" + name: "DeepSpeech Windows AMD64 CUDA Python v3.8 tests" + description: "Testing DeepSpeech for Windows/AMD64 on Python v3.8, CUDA, optimized version" diff --git a/taskcluster/test-python_38_16k-linux-amd64-opt.yml b/taskcluster/test-python_38_16k-linux-amd64-opt.yml index 640b4614..d58770b9 100644 --- a/taskcluster/test-python_38_16k-linux-amd64-opt.yml +++ b/taskcluster/test-python_38_16k-linux-amd64-opt.yml @@ -8,5 +8,5 @@ build: tests_cmdline: "${system.homedir.linux}/DeepSpeech/ds/taskcluster/tc-python-tests.sh 3.8.1: 16k" workerType: "${docker.dsTests}" metadata: - name: "Mozilla Voice STT Linux AMD64 CPU Python v3.8 tests (16kHz)" - description: "Testing Mozilla Voice STT for Linux/AMD64 on Python v3.8, CPU only, optimized version (16kHz)" + name: "DeepSpeech Linux AMD64 CPU Python v3.8 tests (16kHz)" + description: "Testing DeepSpeech for Linux/AMD64 on Python v3.8, CPU only, optimized version (16kHz)" diff --git a/taskcluster/test-python_38_16k-linux-amd64-prod_pbmodel-opt.yml b/taskcluster/test-python_38_16k-linux-amd64-prod_pbmodel-opt.yml index c33863d1..dd3c8475 100644 --- a/taskcluster/test-python_38_16k-linux-amd64-prod_pbmodel-opt.yml +++ b/taskcluster/test-python_38_16k-linux-amd64-prod_pbmodel-opt.yml @@ -6,5 +6,5 @@ build: tests_cmdline: "${system.homedir.linux}/DeepSpeech/ds/taskcluster/tc-python-tests-prod.sh 3.8.1: 16k" workerType: "${docker.dsTests}" metadata: - name: "Mozilla Voice STT Linux AMD64 CPU Python v3.8 prod tests (16kHz)" - description: "Testing Mozilla Voice STT for Linux/AMD64 on Python v3.8 on prod model, CPU only, optimized version (16kHz)" + name: "DeepSpeech Linux AMD64 CPU Python v3.8 prod tests (16kHz)" + description: "Testing DeepSpeech for Linux/AMD64 on Python v3.8 on prod model, CPU only, optimized version (16kHz)" diff --git a/taskcluster/test-python_38_8k-linux-amd64-opt.yml b/taskcluster/test-python_38_8k-linux-amd64-opt.yml index 28d8ece5..54804a9a 100644 --- a/taskcluster/test-python_38_8k-linux-amd64-opt.yml +++ b/taskcluster/test-python_38_8k-linux-amd64-opt.yml @@ -8,5 +8,5 @@ build: tests_cmdline: "${system.homedir.linux}/DeepSpeech/ds/taskcluster/tc-python-tests.sh 3.8.1: 8k" workerType: "${docker.dsTests}" metadata: - name: "Mozilla Voice STT Linux AMD64 CPU Python v3.8 tests (8kHz)" - description: "Testing Mozilla Voice STT for Linux/AMD64 on Python v3.8, CPU only, optimized version (8kHz)" + name: "DeepSpeech Linux AMD64 CPU Python v3.8 tests (8kHz)" + description: "Testing DeepSpeech for Linux/AMD64 on Python v3.8, CPU only, optimized version (8kHz)" diff --git a/taskcluster/test-python_38_8k-linux-amd64-prod_pbmodel-opt.yml b/taskcluster/test-python_38_8k-linux-amd64-prod_pbmodel-opt.yml index 2f42632e..2c26505c 100644 --- a/taskcluster/test-python_38_8k-linux-amd64-prod_pbmodel-opt.yml +++ b/taskcluster/test-python_38_8k-linux-amd64-prod_pbmodel-opt.yml @@ -6,5 +6,5 @@ build: tests_cmdline: "${system.homedir.linux}/DeepSpeech/ds/taskcluster/tc-python-tests-prod.sh 3.8.1: 8k" workerType: "${docker.dsTests}" metadata: - name: "Mozilla Voice STT Linux AMD64 CPU Python v3.8 prod tests (8kHz)" - description: "Testing Mozilla Voice STT for Linux/AMD64 on Python v3.8 on prod model, CPU only, optimized version (8kHz)" + name: "DeepSpeech Linux AMD64 CPU Python v3.8 prod tests (8kHz)" + description: "Testing DeepSpeech for Linux/AMD64 on Python v3.8 on prod model, CPU only, optimized version (8kHz)" diff --git a/taskcluster/test-python_38_tflite_16k-darwin-amd64-opt.yml b/taskcluster/test-python_38_tflite_16k-darwin-amd64-opt.yml index 9fbe9cbc..8cd55f37 100644 --- a/taskcluster/test-python_38_tflite_16k-darwin-amd64-opt.yml +++ b/taskcluster/test-python_38_tflite_16k-darwin-amd64-opt.yml @@ -8,5 +8,5 @@ build: args: tests_cmdline: "$TASKCLUSTER_TASK_DIR/DeepSpeech/ds/taskcluster/tc-python_tflite-tests.sh 3.8.1: 16k" metadata: - name: "Mozilla Voice STT OSX AMD64 TFLite Python v3.8 tests (16kHz)" - description: "Testing Mozilla Voice STT for OSX/AMD64 on Python v3.8 TFLite, optimized version (16kHz)" + name: "DeepSpeech OSX AMD64 TFLite Python v3.8 tests (16kHz)" + description: "Testing DeepSpeech for OSX/AMD64 on Python v3.8 TFLite, optimized version (16kHz)" diff --git a/taskcluster/test-python_38_tflite_16k-darwin-amd64-prod-opt.yml b/taskcluster/test-python_38_tflite_16k-darwin-amd64-prod-opt.yml index 26ff3c35..7fa393a8 100644 --- a/taskcluster/test-python_38_tflite_16k-darwin-amd64-prod-opt.yml +++ b/taskcluster/test-python_38_tflite_16k-darwin-amd64-prod-opt.yml @@ -8,5 +8,5 @@ build: args: tests_cmdline: "$TASKCLUSTER_TASK_DIR/DeepSpeech/ds/taskcluster/tc-python_tflite-tests-prod.sh 3.8.1: 16k" metadata: - name: "Mozilla Voice STT OSX AMD64 TFLite Python v3.8 prod tests (16kHz)" - description: "Testing Mozilla Voice STT for OSX/AMD64 on Python v3.8 on prod model, TFLite, optimized version (16kHz)" + name: "DeepSpeech OSX AMD64 TFLite Python v3.8 prod tests (16kHz)" + description: "Testing DeepSpeech for OSX/AMD64 on Python v3.8 on prod model, TFLite, optimized version (16kHz)" diff --git a/taskcluster/test-python_38_tflite_16k-linux-amd64-opt.yml b/taskcluster/test-python_38_tflite_16k-linux-amd64-opt.yml index e0b76a72..0700f222 100644 --- a/taskcluster/test-python_38_tflite_16k-linux-amd64-opt.yml +++ b/taskcluster/test-python_38_tflite_16k-linux-amd64-opt.yml @@ -8,5 +8,5 @@ build: tests_cmdline: "${system.homedir.linux}/DeepSpeech/ds/taskcluster/tc-python_tflite-tests.sh 3.8.1: 16k" workerType: "${docker.dsTests}" metadata: - name: "Mozilla Voice STT Linux AMD64 TFLite Python v3.8 tests (16kHz)" - description: "Testing Mozilla Voice STT for Linux/AMD64 on Python v3.8 TFLite, optimized version (16kHz)" + name: "DeepSpeech Linux AMD64 TFLite Python v3.8 tests (16kHz)" + description: "Testing DeepSpeech for Linux/AMD64 on Python v3.8 TFLite, optimized version (16kHz)" diff --git a/taskcluster/test-python_38_tflite_16k-linux-amd64-prod-opt.yml b/taskcluster/test-python_38_tflite_16k-linux-amd64-prod-opt.yml index 6acbf49b..c2b666b2 100644 --- a/taskcluster/test-python_38_tflite_16k-linux-amd64-prod-opt.yml +++ b/taskcluster/test-python_38_tflite_16k-linux-amd64-prod-opt.yml @@ -6,5 +6,5 @@ build: tests_cmdline: "${system.homedir.linux}/DeepSpeech/ds/taskcluster/tc-python_tflite-tests-prod.sh 3.8.1: 16k" workerType: "${docker.dsTests}" metadata: - name: "Mozilla Voice STT Linux AMD64 TFLite Python v3.8 prod tests (16kHz)" - description: "Testing Mozilla Voice STT for Linux/AMD64 on Python v3.8 on prod model, TFLite, optimized version (16kHz)" + name: "DeepSpeech Linux AMD64 TFLite Python v3.8 prod tests (16kHz)" + description: "Testing DeepSpeech for Linux/AMD64 on Python v3.8 on prod model, TFLite, optimized version (16kHz)" diff --git a/taskcluster/test-python_38_tflite_16k-win-amd64-opt.yml b/taskcluster/test-python_38_tflite_16k-win-amd64-opt.yml index 11cd66d5..d00c345c 100644 --- a/taskcluster/test-python_38_tflite_16k-win-amd64-opt.yml +++ b/taskcluster/test-python_38_tflite_16k-win-amd64-opt.yml @@ -10,5 +10,5 @@ build: args: tests_cmdline: "${system.homedir.win}/DeepSpeech/ds/taskcluster/tc-python_tflite-tests.sh 3.8.1: 16k" metadata: - name: "Mozilla Voice STT Windows AMD64 TFLite Python v3.8 tests (16kHz)" - description: "Testing Mozilla Voice STT for Windows/AMD64 on Python v3.8 TFLite, optimized version (16kHz)" + name: "DeepSpeech Windows AMD64 TFLite Python v3.8 tests (16kHz)" + description: "Testing DeepSpeech for Windows/AMD64 on Python v3.8 TFLite, optimized version (16kHz)" diff --git a/taskcluster/test-python_38_tflite_16k-win-amd64-prod-opt.yml b/taskcluster/test-python_38_tflite_16k-win-amd64-prod-opt.yml index dbe2d582..6660d0b2 100644 --- a/taskcluster/test-python_38_tflite_16k-win-amd64-prod-opt.yml +++ b/taskcluster/test-python_38_tflite_16k-win-amd64-prod-opt.yml @@ -10,5 +10,5 @@ build: args: tests_cmdline: "${system.homedir.win}/DeepSpeech/ds/taskcluster/tc-python_tflite-tests-prod.sh 3.8.1: 16k" metadata: - name: "Mozilla Voice STT Windows AMD64 TFLite Python v3.8 prod tests (16kHz)" - description: "Testing Mozilla Voice STT for Windows/AMD64 on Python v3.8 on prod model, TFLite, optimized version (16kHz)" + name: "DeepSpeech Windows AMD64 TFLite Python v3.8 prod tests (16kHz)" + description: "Testing DeepSpeech for Windows/AMD64 on Python v3.8 on prod model, TFLite, optimized version (16kHz)" diff --git a/taskcluster/test-python_38_tflite_8k-linux-amd64-prod-opt.yml b/taskcluster/test-python_38_tflite_8k-linux-amd64-prod-opt.yml index 36bfa27b..44d281df 100644 --- a/taskcluster/test-python_38_tflite_8k-linux-amd64-prod-opt.yml +++ b/taskcluster/test-python_38_tflite_8k-linux-amd64-prod-opt.yml @@ -6,5 +6,5 @@ build: tests_cmdline: "${system.homedir.linux}/DeepSpeech/ds/taskcluster/tc-python_tflite-tests-prod.sh 3.8.1: 8k" workerType: "${docker.dsTests}" metadata: - name: "Mozilla Voice STT Linux AMD64 TFLite Python v3.8 prod tests (8kHz)" - description: "Testing Mozilla Voice STT for Linux/AMD64 on Python v3.8 on prod model, TFLite, optimized version (8kHz)" + name: "DeepSpeech Linux AMD64 TFLite Python v3.8 prod tests (8kHz)" + description: "Testing DeepSpeech for Linux/AMD64 on Python v3.8 on prod model, TFLite, optimized version (8kHz)" diff --git a/taskcluster/test-singleshotinference-linux-amd64-py36m-opt.yml b/taskcluster/test-singleshotinference-linux-amd64-py36m-opt.yml index 6d111517..c84c5c4b 100644 --- a/taskcluster/test-singleshotinference-linux-amd64-py36m-opt.yml +++ b/taskcluster/test-singleshotinference-linux-amd64-py36m-opt.yml @@ -6,5 +6,5 @@ build: tests_cmdline: "${system.homedir.linux}/DeepSpeech/ds/taskcluster/tc-single-shot-inference.sh 3.6.10:m" workerType: "${docker.dsTests}" metadata: - name: "Mozilla Voice STT Linux AMD64 CPU single-shot inference Py3.6" - description: "Single-shot inference a Mozilla Voice STT LDC93S1 checkpoint for Linux/AMD64 using upstream TensorFlow Python 3.6, CPU only, optimized version" + name: "DeepSpeech Linux AMD64 CPU single-shot inference Py3.6" + description: "Single-shot inference a DeepSpeech LDC93S1 checkpoint for Linux/AMD64 using upstream TensorFlow Python 3.6, CPU only, optimized version" diff --git a/taskcluster/test-training-extra_16k-linux-amd64-py35m-opt.yml b/taskcluster/test-training-extra_16k-linux-amd64-py35m-opt.yml index fca4cba7..65273efc 100644 --- a/taskcluster/test-training-extra_16k-linux-amd64-py35m-opt.yml +++ b/taskcluster/test-training-extra_16k-linux-amd64-py35m-opt.yml @@ -9,5 +9,5 @@ build: tests_cmdline: "${system.homedir.linux}/DeepSpeech/ds/taskcluster/tc-train-extra-tests.sh 3.5.8:m 16k" workerType: "${docker.dsTests}" metadata: - name: "Mozilla Voice STT Linux AMD64 CPU 8kHz all training features Py3.7" - description: "Training (all features) a Mozilla Voice STT LDC93S1 model for Linux/AMD64 8kHz Python 3.7, CPU only, optimized version" + name: "DeepSpeech Linux AMD64 CPU 8kHz all training features Py3.7" + description: "Training (all features) a DeepSpeech LDC93S1 model for Linux/AMD64 8kHz Python 3.7, CPU only, optimized version" diff --git a/taskcluster/test-training-extra_16k-linux-amd64-py36m-opt.yml b/taskcluster/test-training-extra_16k-linux-amd64-py36m-opt.yml index 043abc97..95605532 100644 --- a/taskcluster/test-training-extra_16k-linux-amd64-py36m-opt.yml +++ b/taskcluster/test-training-extra_16k-linux-amd64-py36m-opt.yml @@ -9,5 +9,5 @@ build: tests_cmdline: "${system.homedir.linux}/DeepSpeech/ds/taskcluster/tc-train-extra-tests.sh 3.6.10:m 16k" workerType: "${docker.dsTests}" metadata: - name: "Mozilla Voice STT Linux AMD64 CPU 8kHz all training features Py3.7" - description: "Training (all features) a Mozilla Voice STT LDC93S1 model for Linux/AMD64 8kHz Python 3.7, CPU only, optimized version" + name: "DeepSpeech Linux AMD64 CPU 8kHz all training features Py3.7" + description: "Training (all features) a DeepSpeech LDC93S1 model for Linux/AMD64 8kHz Python 3.7, CPU only, optimized version" diff --git a/taskcluster/test-training-extra_16k-linux-amd64-py37m-opt.yml b/taskcluster/test-training-extra_16k-linux-amd64-py37m-opt.yml index b93ad43b..f6d13ebb 100644 --- a/taskcluster/test-training-extra_16k-linux-amd64-py37m-opt.yml +++ b/taskcluster/test-training-extra_16k-linux-amd64-py37m-opt.yml @@ -9,5 +9,5 @@ build: tests_cmdline: "${system.homedir.linux}/DeepSpeech/ds/taskcluster/tc-train-extra-tests.sh 3.7.6:m 16k" workerType: "${docker.dsTests}" metadata: - name: "Mozilla Voice STT Linux AMD64 CPU 8kHz all training features Py3.7" - description: "Training (all features) a Mozilla Voice STT LDC93S1 model for Linux/AMD64 8kHz Python 3.7, CPU only, optimized version" + name: "DeepSpeech Linux AMD64 CPU 8kHz all training features Py3.7" + description: "Training (all features) a DeepSpeech LDC93S1 model for Linux/AMD64 8kHz Python 3.7, CPU only, optimized version" diff --git a/taskcluster/test-training-extra_8k-linux-amd64-py36m-opt.yml b/taskcluster/test-training-extra_8k-linux-amd64-py36m-opt.yml index 24c6894f..a81b314f 100644 --- a/taskcluster/test-training-extra_8k-linux-amd64-py36m-opt.yml +++ b/taskcluster/test-training-extra_8k-linux-amd64-py36m-opt.yml @@ -9,5 +9,5 @@ build: tests_cmdline: "${system.homedir.linux}/DeepSpeech/ds/taskcluster/tc-train-extra-tests.sh 3.6.10:m 8k" workerType: "${docker.dsTests}" metadata: - name: "Mozilla Voice STT Linux AMD64 CPU 8kHz all training features Py3.7" - description: "Training (all features) a Mozilla Voice STT LDC93S1 model for Linux/AMD64 8kHz Python 3.7, CPU only, optimized version" + name: "DeepSpeech Linux AMD64 CPU 8kHz all training features Py3.7" + description: "Training (all features) a DeepSpeech LDC93S1 model for Linux/AMD64 8kHz Python 3.7, CPU only, optimized version" diff --git a/taskcluster/test-training-extra_8k-linux-amd64-py37m-opt.yml b/taskcluster/test-training-extra_8k-linux-amd64-py37m-opt.yml index 8141ffae..326b735c 100644 --- a/taskcluster/test-training-extra_8k-linux-amd64-py37m-opt.yml +++ b/taskcluster/test-training-extra_8k-linux-amd64-py37m-opt.yml @@ -9,5 +9,5 @@ build: tests_cmdline: "${system.homedir.linux}/DeepSpeech/ds/taskcluster/tc-train-extra-tests.sh 3.7.6:m 8k" workerType: "${docker.dsTests}" metadata: - name: "Mozilla Voice STT Linux AMD64 CPU 8kHz all training features Py3.7" - description: "Training (all features) a Mozilla Voice STT LDC93S1 model for Linux/AMD64 8kHz Python 3.7, CPU only, optimized version" + name: "DeepSpeech Linux AMD64 CPU 8kHz all training features Py3.7" + description: "Training (all features) a DeepSpeech LDC93S1 model for Linux/AMD64 8kHz Python 3.7, CPU only, optimized version" diff --git a/taskcluster/test-training-pypi_16k-linux-amd64-py35m-opt.yml b/taskcluster/test-training-pypi_16k-linux-amd64-py35m-opt.yml index 21ec60ff..dc169b6b 100644 --- a/taskcluster/test-training-pypi_16k-linux-amd64-py35m-opt.yml +++ b/taskcluster/test-training-pypi_16k-linux-amd64-py35m-opt.yml @@ -12,5 +12,5 @@ build: tests_cmdline: "${system.homedir.linux}/DeepSpeech/ds/taskcluster/tc-train-tests.sh 3.5.8:m 16k --pypi" workerType: "${docker.dsTests}" metadata: - name: "Mozilla Voice STT Linux AMD64 CPU 16kHz PyPI training Py3.5" - description: "Training a Mozilla Voice STT LDC93S1 model for Linux/AMD64 16kHz Python 3.5, CPU only, optimized version, decoder package from PyPI" + name: "DeepSpeech Linux AMD64 CPU 16kHz PyPI training Py3.5" + description: "Training a DeepSpeech LDC93S1 model for Linux/AMD64 16kHz Python 3.5, CPU only, optimized version, decoder package from PyPI" diff --git a/taskcluster/test-training-pypi_16k-linux-amd64-py36m-opt.yml b/taskcluster/test-training-pypi_16k-linux-amd64-py36m-opt.yml index 63997043..a8d9fca3 100644 --- a/taskcluster/test-training-pypi_16k-linux-amd64-py36m-opt.yml +++ b/taskcluster/test-training-pypi_16k-linux-amd64-py36m-opt.yml @@ -12,5 +12,5 @@ build: tests_cmdline: "${system.homedir.linux}/DeepSpeech/ds/taskcluster/tc-train-tests.sh 3.6.10:m 16k --pypi" workerType: "${docker.dsTests}" metadata: - name: "Mozilla Voice STT Linux AMD64 CPU 16kHz PyPI training Py3.6" - description: "Training a Mozilla Voice STT LDC93S1 model for Linux/AMD64 16kHz Python 3.6, CPU only, optimized version, decoder package from PyPI" + name: "DeepSpeech Linux AMD64 CPU 16kHz PyPI training Py3.6" + description: "Training a DeepSpeech LDC93S1 model for Linux/AMD64 16kHz Python 3.6, CPU only, optimized version, decoder package from PyPI" diff --git a/taskcluster/test-training-pypi_16k-linux-amd64-py37m-opt.yml b/taskcluster/test-training-pypi_16k-linux-amd64-py37m-opt.yml index 5cf9892b..3cfdf99d 100644 --- a/taskcluster/test-training-pypi_16k-linux-amd64-py37m-opt.yml +++ b/taskcluster/test-training-pypi_16k-linux-amd64-py37m-opt.yml @@ -12,5 +12,5 @@ build: tests_cmdline: "${system.homedir.linux}/DeepSpeech/ds/taskcluster/tc-train-tests.sh 3.7.6:m 16k --pypi" workerType: "${docker.dsTests}" metadata: - name: "Mozilla Voice STT Linux AMD64 CPU 16kHz PyPI training Py3.7" - description: "Training a Mozilla Voice STT LDC93S1 model for Linux/AMD64 16kHz Python 3.7, CPU only, optimized version, decoder package from PyPI" + name: "DeepSpeech Linux AMD64 CPU 16kHz PyPI training Py3.7" + description: "Training a DeepSpeech LDC93S1 model for Linux/AMD64 16kHz Python 3.7, CPU only, optimized version, decoder package from PyPI" diff --git a/taskcluster/test-training-pypi_8k-linux-amd64-py36m-opt.yml b/taskcluster/test-training-pypi_8k-linux-amd64-py36m-opt.yml index 3b8f93a6..37ecd686 100644 --- a/taskcluster/test-training-pypi_8k-linux-amd64-py36m-opt.yml +++ b/taskcluster/test-training-pypi_8k-linux-amd64-py36m-opt.yml @@ -12,5 +12,5 @@ build: tests_cmdline: "${system.homedir.linux}/DeepSpeech/ds/taskcluster/tc-train-tests.sh 3.6.10:m 8k --pypi" workerType: "${docker.dsTests}" metadata: - name: "Mozilla Voice STT Linux AMD64 CPU 8kHz PyPI training Py3.6" - description: "Training a Mozilla Voice STT LDC93S1 model for Linux/AMD64 8kHz Python 3.6, CPU only, optimized version, decoder package from PyPI" + name: "DeepSpeech Linux AMD64 CPU 8kHz PyPI training Py3.6" + description: "Training a DeepSpeech LDC93S1 model for Linux/AMD64 8kHz Python 3.6, CPU only, optimized version, decoder package from PyPI" diff --git a/taskcluster/test-training-pypi_8k-linux-amd64-py37m-opt.yml b/taskcluster/test-training-pypi_8k-linux-amd64-py37m-opt.yml index 4669812f..7a74389a 100644 --- a/taskcluster/test-training-pypi_8k-linux-amd64-py37m-opt.yml +++ b/taskcluster/test-training-pypi_8k-linux-amd64-py37m-opt.yml @@ -12,5 +12,5 @@ build: tests_cmdline: "${system.homedir.linux}/DeepSpeech/ds/taskcluster/tc-train-tests.sh 3.7.6:m 8k --pypi" workerType: "${docker.dsTests}" metadata: - name: "Mozilla Voice STT Linux AMD64 CPU 8kHz PyPI training Py3.7" - description: "Training a Mozilla Voice STT LDC93S1 model for Linux/AMD64 8kHz Python 3.7, CPU only, optimized version, decoder package from PyPI" + name: "DeepSpeech Linux AMD64 CPU 8kHz PyPI training Py3.7" + description: "Training a DeepSpeech LDC93S1 model for Linux/AMD64 8kHz Python 3.7, CPU only, optimized version, decoder package from PyPI" diff --git a/taskcluster/test-training-unittests_8k-linux-amd64-py35m-opt.yml b/taskcluster/test-training-unittests_8k-linux-amd64-py35m-opt.yml index 62b6e371..39d23d29 100644 --- a/taskcluster/test-training-unittests_8k-linux-amd64-py35m-opt.yml +++ b/taskcluster/test-training-unittests_8k-linux-amd64-py35m-opt.yml @@ -9,5 +9,5 @@ build: tests_cmdline: "${system.homedir.linux}/DeepSpeech/ds/taskcluster/tc-train-unittests.sh 3.5.8:m" workerType: "${docker.dsTests}" metadata: - name: "Mozilla Voice STT on Linux AMD64 CPU training unittests using Python 3.5" - description: "Training unittests Mozilla Voice STT LDC93S1 model for Linux/AMD64 using Python 3.5, for CPU only, and optimized version" + name: "DeepSpeech on Linux AMD64 CPU training unittests using Python 3.5" + description: "Training unittests DeepSpeech LDC93S1 model for Linux/AMD64 using Python 3.5, for CPU only, and optimized version" diff --git a/taskcluster/test-training-unittests_8k-linux-amd64-py36m-opt.yml b/taskcluster/test-training-unittests_8k-linux-amd64-py36m-opt.yml index 87735cdb..e89afa20 100644 --- a/taskcluster/test-training-unittests_8k-linux-amd64-py36m-opt.yml +++ b/taskcluster/test-training-unittests_8k-linux-amd64-py36m-opt.yml @@ -9,6 +9,6 @@ build: tests_cmdline: "${system.homedir.linux}/DeepSpeech/ds/taskcluster/tc-train-unittests.sh 3.6.10:m" workerType: "${docker.dsTests}" metadata: - name: "Mozilla Voice STT on Linux AMD64 CPU training unittests using Python 3.6" - description: "Training unittests Mozilla Voice STT LDC93S1 model for Linux/AMD64 using Python 3.6, for CPU only, and optimized version" + name: "DeepSpeech on Linux AMD64 CPU training unittests using Python 3.6" + description: "Training unittests DeepSpeech LDC93S1 model for Linux/AMD64 using Python 3.6, for CPU only, and optimized version" diff --git a/taskcluster/test-training-unittests_8k-linux-amd64-py37m-opt.yml b/taskcluster/test-training-unittests_8k-linux-amd64-py37m-opt.yml index c60e971b..a63b434b 100644 --- a/taskcluster/test-training-unittests_8k-linux-amd64-py37m-opt.yml +++ b/taskcluster/test-training-unittests_8k-linux-amd64-py37m-opt.yml @@ -9,5 +9,5 @@ build: tests_cmdline: "${system.homedir.linux}/DeepSpeech/ds/taskcluster/tc-train-unittests.sh 3.7.6:m" workerType: "${docker.dsTests}" metadata: - name: "Mozilla Voice STT on Linux AMD64 CPU training unittests using Python 3.7" - description: "Training unittests Mozilla Voice STT LDC93S1 model for Linux/AMD64 using Python 3.7, for CPU only, and optimized version" + name: "DeepSpeech on Linux AMD64 CPU training unittests using Python 3.7" + description: "Training unittests DeepSpeech LDC93S1 model for Linux/AMD64 using Python 3.7, for CPU only, and optimized version" diff --git a/taskcluster/test-training_16k-linux-amd64-py35m-opt.yml b/taskcluster/test-training_16k-linux-amd64-py35m-opt.yml index 6e94f2ac..b7527391 100644 --- a/taskcluster/test-training_16k-linux-amd64-py35m-opt.yml +++ b/taskcluster/test-training_16k-linux-amd64-py35m-opt.yml @@ -9,5 +9,5 @@ build: tests_cmdline: "${system.homedir.linux}/DeepSpeech/ds/taskcluster/tc-train-tests.sh 3.5.8:m 16k" workerType: "${docker.dsTests}" metadata: - name: "Mozilla Voice STT Linux AMD64 CPU 16kHz basic training Py3.5" - description: "Training a Mozilla Voice STT LDC93S1 model for Linux/AMD64 16kHz Python 3.5, CPU only, optimized version" + name: "DeepSpeech Linux AMD64 CPU 16kHz basic training Py3.5" + description: "Training a DeepSpeech LDC93S1 model for Linux/AMD64 16kHz Python 3.5, CPU only, optimized version" diff --git a/taskcluster/test-training_16k-linux-amd64-py36m-opt.yml b/taskcluster/test-training_16k-linux-amd64-py36m-opt.yml index 972a9a8b..b8a43afc 100644 --- a/taskcluster/test-training_16k-linux-amd64-py36m-opt.yml +++ b/taskcluster/test-training_16k-linux-amd64-py36m-opt.yml @@ -9,5 +9,5 @@ build: tests_cmdline: "${system.homedir.linux}/DeepSpeech/ds/taskcluster/tc-train-tests.sh 3.6.10:m 16k" workerType: "${docker.dsTests}" metadata: - name: "Mozilla Voice STT Linux AMD64 CPU 16kHz basic training Py3.6" - description: "Training a Mozilla Voice STT LDC93S1 model for Linux/AMD64 16kHz Python 3.6, CPU only, optimized version" + name: "DeepSpeech Linux AMD64 CPU 16kHz basic training Py3.6" + description: "Training a DeepSpeech LDC93S1 model for Linux/AMD64 16kHz Python 3.6, CPU only, optimized version" diff --git a/taskcluster/test-training_16k-linux-amd64-py37m-opt.yml b/taskcluster/test-training_16k-linux-amd64-py37m-opt.yml index 72f50ee3..514c3bda 100644 --- a/taskcluster/test-training_16k-linux-amd64-py37m-opt.yml +++ b/taskcluster/test-training_16k-linux-amd64-py37m-opt.yml @@ -9,5 +9,5 @@ build: tests_cmdline: "${system.homedir.linux}/DeepSpeech/ds/taskcluster/tc-train-tests.sh 3.7.6:m 16k" workerType: "${docker.dsTests}" metadata: - name: "Mozilla Voice STT Linux AMD64 CPU 16kHz basic training Py3.7" - description: "Training a Mozilla Voice STT LDC93S1 model for Linux/AMD64 16kHz Python 3.7, CPU only, optimized version" + name: "DeepSpeech Linux AMD64 CPU 16kHz basic training Py3.7" + description: "Training a DeepSpeech LDC93S1 model for Linux/AMD64 16kHz Python 3.7, CPU only, optimized version" diff --git a/taskcluster/test-training_8k-linux-amd64-py36m-opt.yml b/taskcluster/test-training_8k-linux-amd64-py36m-opt.yml index 0add0105..3e3a10a9 100644 --- a/taskcluster/test-training_8k-linux-amd64-py36m-opt.yml +++ b/taskcluster/test-training_8k-linux-amd64-py36m-opt.yml @@ -9,5 +9,5 @@ build: tests_cmdline: "${system.homedir.linux}/DeepSpeech/ds/taskcluster/tc-train-tests.sh 3.6.10:m 8k" workerType: "${docker.dsTests}" metadata: - name: "Mozilla Voice STT Linux AMD64 CPU 8kHz basic training Py3.6" - description: "Training a Mozilla Voice STT LDC93S1 model for Linux/AMD64 8kHz Python 3.6, CPU only, optimized version" + name: "DeepSpeech Linux AMD64 CPU 8kHz basic training Py3.6" + description: "Training a DeepSpeech LDC93S1 model for Linux/AMD64 8kHz Python 3.6, CPU only, optimized version" diff --git a/taskcluster/test-training_8k-linux-amd64-py37m-opt.yml b/taskcluster/test-training_8k-linux-amd64-py37m-opt.yml index ef6d54df..b2f9c9ab 100644 --- a/taskcluster/test-training_8k-linux-amd64-py37m-opt.yml +++ b/taskcluster/test-training_8k-linux-amd64-py37m-opt.yml @@ -9,5 +9,5 @@ build: tests_cmdline: "${system.homedir.linux}/DeepSpeech/ds/taskcluster/tc-train-tests.sh 3.7.6:m 8k" workerType: "${docker.dsTests}" metadata: - name: "Mozilla Voice STT Linux AMD64 CPU 8kHz basic training Py3.7" - description: "Training a Mozilla Voice STT LDC93S1 model for Linux/AMD64 8kHz Python 3.7, CPU only, optimized version" + name: "DeepSpeech Linux AMD64 CPU 8kHz basic training Py3.7" + description: "Training a DeepSpeech LDC93S1 model for Linux/AMD64 8kHz Python 3.7, CPU only, optimized version" diff --git a/taskcluster/test-transfer-linux-amd64-py36m-opt.yml b/taskcluster/test-transfer-linux-amd64-py36m-opt.yml index e5b08e94..85e5fe8c 100644 --- a/taskcluster/test-transfer-linux-amd64-py36m-opt.yml +++ b/taskcluster/test-transfer-linux-amd64-py36m-opt.yml @@ -6,5 +6,5 @@ build: tests_cmdline: "${system.homedir.linux}/DeepSpeech/ds/taskcluster/tc-transfer-tests.sh 3.6.10:m" workerType: "${docker.dsTests}" metadata: - name: "Mozilla Voice STT Linux AMD64 CPU transfer learning Py3.6" - description: "Training a Mozilla Voice STT LDC93S1 model with transfer learning for Linux/AMD64 16kHz Python 3.6, CPU only, optimized version" + name: "DeepSpeech Linux AMD64 CPU transfer learning Py3.6" + description: "Training a DeepSpeech LDC93S1 model with transfer learning for Linux/AMD64 16kHz Python 3.6, CPU only, optimized version" diff --git a/taskcluster/win-amd64-cpu-opt.yml b/taskcluster/win-amd64-cpu-opt.yml index 8aebf5ba..ef903867 100644 --- a/taskcluster/win-amd64-cpu-opt.yml +++ b/taskcluster/win-amd64-cpu-opt.yml @@ -16,5 +16,5 @@ build: nc_asset_name: "native_client.amd64.cpu.win.tar.xz" maxRunTime: 14400 metadata: - name: "Mozilla Voice STT Windows AMD64 CPU" - description: "Building Mozilla Voice STT for Windows AMD64, CPU only, optimized version" + name: "DeepSpeech Windows AMD64 CPU" + description: "Building DeepSpeech for Windows AMD64, CPU only, optimized version" diff --git a/taskcluster/win-amd64-ctc-opt.yml b/taskcluster/win-amd64-ctc-opt.yml index 3f464a1b..0a0f4703 100644 --- a/taskcluster/win-amd64-ctc-opt.yml +++ b/taskcluster/win-amd64-ctc-opt.yml @@ -14,5 +14,5 @@ build: build: 'taskcluster/decoder-build.sh' package: 'taskcluster/decoder-package.sh' metadata: - name: "Mozilla Voice STT CTC Decoder Windows AMD64 CPU" - description: "Building Mozilla Voice STT CTC Decoder for Windows/AMD64, CPU only, optimized version" + name: "DeepSpeech CTC Decoder Windows AMD64 CPU" + description: "Building DeepSpeech CTC Decoder for Windows/AMD64, CPU only, optimized version" diff --git a/taskcluster/win-amd64-gpu-opt.yml b/taskcluster/win-amd64-gpu-opt.yml index 6855533e..61961a2b 100644 --- a/taskcluster/win-amd64-gpu-opt.yml +++ b/taskcluster/win-amd64-gpu-opt.yml @@ -16,5 +16,5 @@ build: nc_asset_name: "native_client.amd64.cuda.win.tar.xz" maxRunTime: 14400 metadata: - name: "Mozilla Voice STT Windows AMD64 CUDA" - description: "Building Mozilla Voice STT for Windows AMD64, CUDA-enabled, optimized version" + name: "DeepSpeech Windows AMD64 CUDA" + description: "Building DeepSpeech for Windows AMD64, CUDA-enabled, optimized version" diff --git a/taskcluster/win-amd64-tflite-opt.yml b/taskcluster/win-amd64-tflite-opt.yml index 1717211d..bafe4b3f 100644 --- a/taskcluster/win-amd64-tflite-opt.yml +++ b/taskcluster/win-amd64-tflite-opt.yml @@ -16,5 +16,5 @@ build: nc_asset_name: "native_client.amd64.tflite.win.tar.xz" maxRunTime: 14400 metadata: - name: "Mozilla Voice STT Windows AMD64 TFLite" - description: "Building Mozilla Voice STT for Windows AMD64, TFLite, optimized version" + name: "DeepSpeech Windows AMD64 TFLite" + description: "Building DeepSpeech for Windows AMD64, TFLite, optimized version"