diff --git a/ISSUE_TEMPLATE.md b/ISSUE_TEMPLATE.md index 08345c3a..5b42ee74 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/deep-speech). +For support and discussions, please use our [Discourse forums](https://discourse.mozilla.org/c/mozilla-voice-stt). 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 45e950fe..e7f08eb8 100644 --- a/Makefile +++ b/Makefile @@ -1,4 +1,4 @@ -MOZILLA_VOICE_STT_REPO ?= https://github.com/mozilla/DeepSpeech.git +MOZILLA_VOICE_STT_REPO ?= https://github.com/mozilla/STT.git MOZILLA_VOICE_STT_SHA ?= origin/master Dockerfile%: Dockerfile%.tmpl diff --git a/README.rst b/README.rst index 2b4729c9..68b856b0 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/DeepSpeech/master/badge.svg - :target: https://community-tc.services.mozilla.com/api/github/v1/repository/mozilla/DeepSpeech/master/latest +.. 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 :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 d72a7418..ea93626e 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 479cbe68..fccec9e8 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/DeepSpeech.git + git clone https://github.com/mozilla/STT.git git submodule sync tensorflow/ git submodule update --init tensorflow/ diff --git a/doc/Decoder.rst b/doc/Decoder.rst index 9f238197..1c145e93 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 841c8577..50a8db60 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/DeepSpeech/releases/... + curl -LO http://github.com/mozilla/STT/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 be0b3c8d..e3e9480c 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/DeepSpeech + git clone https://github.com/mozilla/STT Creating a virtual environment ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ diff --git a/doc/USING.rst b/doc/USING.rst index 83bcc321..095a61d1 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/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 + 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 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.7.4-models.pbmm --scorer deepspeech-0.7.4-models.scorer --audio my_audio_file.wav + mozilla_voice_stt --model deepspeech-0.8.1-models.pbmm --scorer deepspeech-0.8.1-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/DeepSpeech/releases). +Alternatively you may manually download the ``native_client.tar.xz`` from the [releases](https://github.com/mozilla/STT/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.7.4-models.pbmm --scorer deepspeech-0.7.4-models.scorer --audio audio_input.wav + ./mozilla_voice_stt --model deepspeech-0.8.1-models.pbmm --scorer deepspeech-0.8.1-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 22857514..2a62a07c 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/DeepSpeech/blob/v{}/%s'.format(release), +extlinks = {'github': ('https://github.com/mozilla/STT/blob/v{}/%s'.format(release), '%s')} diff --git a/doc/index.rst b/doc/index.rst index b9657df1..5b76358f 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/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 + 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 # Download example audio files - 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 + 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 # Transcribe an audio file - mozilla_voice_stt --model deepspeech-0.7.4-models.pbmm --scorer deepspeech-0.7.4-models.scorer --audio audio/2830-3980-0043.wav + mozilla_voice_stt --model deepspeech-0.8.1-models.pbmm --scorer deepspeech-0.8.1-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.7.4-models.pbmm --scorer deepspeech-0.7.4-models.scorer --audio audio/2830-3980-0043.wav + mozilla_voice_stt --model deepspeech-0.8.1-models.pbmm --scorer deepspeech-0.8.1-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 26db5b96..5db9eb28 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/DeepSpeech``. +We need to clone ``mozilla/STT``. .. code-block:: bash - git clone https://github.com/mozilla/DeepSpeech + git clone https://github.com/mozilla/STT 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 93a6f6ea..51925787 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/DeepSpeech + http://github.com/mozilla/STT 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 89ebc594..8554ff50 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/DeepSpeech](https://github.com/mozilla/DeepSpeech). +Full project description and documentation on GitHub: [https://github.com/mozilla/STT](https://github.com/mozilla/STT). diff --git a/native_client/java/libmozillavoicestt/build.gradle b/native_client/java/libmozillavoicestt/build.gradle index 2906d06e..02a71d68 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/DeepSpeech' + url 'https://github.com/mozilla/STT' licenses { license { @@ -102,9 +102,9 @@ uploadArchives { } scm { - connection 'https://github.com/mozilla/DeepSpeech.git' - developerConnection 'https://github.com/mozilla/DeepSpeech.git' - url 'https://github.com/mozilla/DeepSpeech' + connection 'https://github.com/mozilla/STT.git' + developerConnection 'https://github.com/mozilla/STT.git' + url 'https://github.com/mozilla/STT' } } diff --git a/native_client/javascript/package.json.in b/native_client/javascript/package.json.in index 6e9599e5..47aa45b1 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/DeepSpeech/tree/v$(PROJECT_VERSION)#project-deepspeech", + "homepage": "https://github.com/mozilla/STT/tree/v$(PROJECT_VERSION)#project-deepspeech", "files": [ "README.md", "client.js", @@ -18,11 +18,11 @@ "lib/*" ], "bugs": { - "url": "https://github.com/mozilla/DeepSpeech/issues" + "url": "https://github.com/mozilla/STT/issues" }, "repository" : { "type" : "git", - "url" : "git://github.com/mozilla/DeepSpeech.git" + "url" : "git://github.com/mozilla/STT.git" }, "binary": { "module_name" : "deepspeech", diff --git a/native_client/python/setup.py b/native_client/python/setup.py index e0f0ca13..72122f8b 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/DeepSpeech', + url='https://github.com/mozilla/STT', project_urls={ - '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', + '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', }, 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 bd460745..d583ec93 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.7.4-models", ofType: "tflite")! - let scorerPath = Bundle.main.path(forResource: "deepspeech-0.7.4-models", ofType: "scorer")! + 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")! model = try! MozillaVoiceSttModel(modelPath: modelPath) try! model.enableExternalScorer(scorerPath: scorerPath) diff --git a/native_client/tflitemodelstate.cc b/native_client/tflitemodelstate.cc index 9d8d9ddb..4daeffd0 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/DeepSpeech/blob/" + << "https://github.com/mozilla/STT/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 0d785986..53f3fc32 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/DeepSpeech/blob/" + << "https://github.com/mozilla/STT/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 22775d38..b617fee1 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/DeepSpeech', + url='https://github.com/mozilla/STT', 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 69e513e1..a541a1be 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: "DeepSpeech Android ARM64" - description: "Building DeepSpeech for Android ARM64, optimized version" + name: "Mozilla Voice STT Android ARM64" + description: "Building Mozilla Voice STT for Android ARM64, optimized version" diff --git a/taskcluster/android-armv7-cpu-opt.yml b/taskcluster/android-armv7-cpu-opt.yml index 11c7901f..801a4e9b 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: "DeepSpeech Android ARMv7" - description: "Building DeepSpeech for Android ARMv7, optimized version" + name: "Mozilla Voice STT Android ARMv7" + description: "Building Mozilla Voice STT for Android ARMv7, optimized version" diff --git a/taskcluster/android-java-opt.yml b/taskcluster/android-java-opt.yml index 2b3d9cc3..b757d0ef 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: "DeepSpeech Android APK (ARM64+ARMv7+x86_64)" - description: "Building DeepSpeech for Android APK (ARM64+ARMv7+x86_64), optimized version" + name: "Mozilla Voice STT Android APK (ARM64+ARMv7+x86_64)" + description: "Building Mozilla Voice STT 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 4ff8c8c5..339dcbf8 100644 --- a/taskcluster/android-x86_64-cpu-opt.yml +++ b/taskcluster/android-x86_64-cpu-opt.yml @@ -15,5 +15,5 @@ build: nc_asset_name: "native_client.x86_64.cpu.android.tar.xz" workerType: "${docker.dsBuild}" metadata: - name: "DeepSpeech Android x86_64" - description: "Building DeepSpeech for Android x86_64, optimized version" + name: "Mozilla Voice STT Android x86_64" + description: "Building Mozilla Voice STT for Android x86_64, optimized version" diff --git a/taskcluster/darwin-amd64-cpu-opt.yml b/taskcluster/darwin-amd64-cpu-opt.yml index 2b894c4a..0a9115e4 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: "DeepSpeech OSX AMD64 CPU" - description: "Building DeepSpeech for OSX AMD64, CPU only, optimized version" + name: "Mozilla Voice STT OSX AMD64 CPU" + description: "Building Mozilla Voice STT for OSX AMD64, CPU only, optimized version" diff --git a/taskcluster/darwin-amd64-ctc-opt.yml b/taskcluster/darwin-amd64-ctc-opt.yml index faf981ab..ea5a6c21 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: "DeepSpeech CTC Decoder OSX AMD64 CPU" - description: "Building DeepSpeech CTC Decoder for OSX AMD64, CPU only, optimized version" + name: "Mozilla Voice STT CTC Decoder OSX AMD64 CPU" + description: "Building Mozilla Voice STT 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 031159ca..5fc23734 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: "DeepSpeech OSX AMD64 TFLite" - description: "Building DeepSpeech for OSX AMD64, TFLite, optimized version" + name: "Mozilla Voice STT OSX AMD64 TFLite" + description: "Building Mozilla Voice STT for OSX AMD64, TFLite, optimized version" diff --git a/taskcluster/docker-image-build.yml b/taskcluster/docker-image-build.yml index bf00ffbd..20151830 100644 --- a/taskcluster/docker-image-build.yml +++ b/taskcluster/docker-image-build.yml @@ -3,5 +3,5 @@ build: dockerfile: "Dockerfile.build" workerType: "${docker.dsBuild}" metadata: - name: "DeepSpeech Docker build" - description: "Testing |docker build| of DeepSpeech build image" + name: "Mozilla Voice STT Docker build" + description: "Testing |docker build| of Mozilla Voice STT build image" diff --git a/taskcluster/docker-image-train.yml b/taskcluster/docker-image-train.yml index 407ab646..26ded8f5 100644 --- a/taskcluster/docker-image-train.yml +++ b/taskcluster/docker-image-train.yml @@ -3,5 +3,5 @@ build: dockerfile: "Dockerfile.train" workerType: "${docker.dsBuild}" metadata: - name: "DeepSpeech Docker train" - description: "Testing |docker build| of DeepSpeech train image" + name: "Mozilla Voice STT Docker train" + description: "Testing |docker build| of Mozilla Voice STT train image" diff --git a/taskcluster/docs.yml b/taskcluster/docs.yml index e51eb88e..0c5cc76b 100644 --- a/taskcluster/docs.yml +++ b/taskcluster/docs.yml @@ -13,5 +13,5 @@ build: package: "taskcluster/docs-package.sh" workerType: "${docker.smallTask}" metadata: - name: "DeepSpeech API Documentation" - description: "Building DeepSpeech API Documentation" + name: "Mozilla Voice STT API Documentation" + description: "Building Mozilla Voice STT API Documentation" diff --git a/taskcluster/examples-base.tyml b/taskcluster/examples-base.tyml index 0282fc80..582cfacd 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/DeepSpeech/releases/download/v0.4.1/audio-0.4.1.tar.gz" + DEEPSPEECH_AUDIO: "https://github.com/mozilla/STT/releases/download/v0.8.1/audio-0.8.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 c3a42570..0cfd0a96 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: "DeepSpeech examples: ElectronJS/React on NodeJS v12.x" - description: "DeepSpeech examples: ElectronJS/React on NodeJS v12.x" + name: "Mozilla Voice STT examples: ElectronJS/React on NodeJS v12.x" + description: "Mozilla Voice STT 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 6b00c1d5..18b985b9 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: "DeepSpeech examples: ffmpeg VAD Streaming NodeJS v10.x" - description: "DeepSpeech examples: ffmpeg VAD Streaming NodeJS v10.x" + name: "Mozilla Voice STT examples: ffmpeg VAD Streaming NodeJS v10.x" + description: "Mozilla Voice STT 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 24e81f34..11240207 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: "DeepSpeech examples: ffmpeg VAD Streaming NodeJS v12.x" - description: "DeepSpeech examples: ffmpeg VAD Streaming NodeJS v12.x" + name: "Mozilla Voice STT examples: ffmpeg VAD Streaming NodeJS v12.x" + description: "Mozilla Voice STT 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 98e825a9..05638210 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: "DeepSpeech examples: mic VAD streaming Py3.6" - description: "DeepSpeech examples: mic VAD streaming Python 3.6" + name: "Mozilla Voice STT examples: mic VAD streaming Py3.6" + description: "Mozilla Voice STT 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 59773509..8bb0c8fd 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: "DeepSpeech examples: mic VAD streaming Py3.7" - description: "DeepSpeech examples: mic VAD streaming Python 3.7" + name: "Mozilla Voice STT examples: mic VAD streaming Py3.7" + description: "Mozilla Voice STT examples: mic VAD streaming Python 3.7" diff --git a/taskcluster/examples-nodejs_wav-node10.yml b/taskcluster/examples-nodejs_wav-node10.yml index 36c8a3cc..3a2983bd 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: "DeepSpeech examples: NodeJS WAV NodeJS v10.x" - description: "DeepSpeech examples: NodeJS WAV NodeJS v10.x" + name: "Mozilla Voice STT examples: NodeJS WAV NodeJS v10.x" + description: "Mozilla Voice STT examples: NodeJS WAV NodeJS v10.x" diff --git a/taskcluster/examples-nodejs_wav-node12.yml b/taskcluster/examples-nodejs_wav-node12.yml index 2ec849f0..4ed666d5 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: "DeepSpeech examples: NodeJS WAV NodeJS v12.x" - description: "DeepSpeech examples: NodeJS WAV NodeJS v12.x" + name: "Mozilla Voice STT examples: NodeJS WAV NodeJS v12.x" + description: "Mozilla Voice STT examples: NodeJS WAV NodeJS v12.x" diff --git a/taskcluster/examples-vad_transcriber-py35.yml b/taskcluster/examples-vad_transcriber-py35.yml index ebf891af..d79ccd12 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: "DeepSpeech examples: VAD transcriber Py3.5" - description: "DeepSpeech examples: VAD transcriberaming Python 3.5" + name: "Mozilla Voice STT examples: VAD transcriber Py3.5" + description: "Mozilla Voice STT examples: VAD transcriberaming Python 3.5" diff --git a/taskcluster/examples-vad_transcriber-py36.yml b/taskcluster/examples-vad_transcriber-py36.yml index a7cdfd48..f72b13ae 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: "DeepSpeech examples: VAD transcriber Py3.6" - description: "DeepSpeech examples: VAD transcriberaming Python 3.6" + name: "Mozilla Voice STT examples: VAD transcriber Py3.6" + description: "Mozilla Voice STT examples: VAD transcriberaming Python 3.6" diff --git a/taskcluster/examples-vad_transcriber-py37.yml b/taskcluster/examples-vad_transcriber-py37.yml index c5c4eeca..f368310a 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: "DeepSpeech examples: VAD transcriber Py3.7" - description: "DeepSpeech examples: VAD transcriberaming Python 3.7" + name: "Mozilla Voice STT examples: VAD transcriber Py3.7" + description: "Mozilla Voice STT examples: VAD transcriberaming Python 3.7" diff --git a/taskcluster/examples-vad_transcriber-py38.yml b/taskcluster/examples-vad_transcriber-py38.yml index 5542ef43..ee87b146 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: "DeepSpeech examples: VAD transcriber Py3.8" - description: "DeepSpeech examples: VAD transcriberaming Python 3.8" + name: "Mozilla Voice STT examples: VAD transcriber Py3.8" + description: "Mozilla Voice STT examples: VAD transcriberaming Python 3.8" diff --git a/taskcluster/ios-arm64-tflite-opt.yml b/taskcluster/ios-arm64-tflite-opt.yml index 98dd581c..f127b1e0 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: "DeepSpeech iOS ARM64 TFLite" - description: "Building DeepSpeech for iOS ARM64, TFLite, optimized version" + name: "Mozilla Voice STT iOS ARM64 TFLite" + description: "Building Mozilla Voice STT 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 5809e1a1..71d0065a 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: "DeepSpeech iOS x86_64 TFLite" - description: "Building DeepSpeech for iOS x86_64, TFLite, optimized version" + name: "Mozilla Voice STT iOS x86_64 TFLite" + description: "Building Mozilla Voice STT for iOS x86_64, TFLite, optimized version" diff --git a/taskcluster/linux-amd64-cpu-opt.yml b/taskcluster/linux-amd64-cpu-opt.yml index ac77ea80..3c17eeb8 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: "DeepSpeech Linux AMD64 CPU" - description: "Building DeepSpeech for Linux/AMD64, CPU only, optimized version" + name: "Mozilla Voice STT Linux AMD64 CPU" + description: "Building Mozilla Voice STT for Linux/AMD64, CPU only, optimized version" diff --git a/taskcluster/linux-amd64-ctc-opt.yml b/taskcluster/linux-amd64-ctc-opt.yml index 3b518b87..cfebf204 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: "DeepSpeech CTC Decoder Linux AMD64 CPU" - description: "Building DeepSpeech CTC Decoder for Linux/AMD64, CPU only, optimized version" + name: "Mozilla Voice STT CTC Decoder Linux AMD64 CPU" + description: "Building Mozilla Voice STT 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 d301cf46..114591c1 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: "DeepSpeech Linux AMD64 CUDA" - description: "Building DeepSpeech for Linux/AMD64, CUDA-enabled, optimized version" + name: "Mozilla Voice STT Linux AMD64 CUDA" + description: "Building Mozilla Voice STT for Linux/AMD64, CUDA-enabled, optimized version" diff --git a/taskcluster/linux-amd64-tflite-opt.yml b/taskcluster/linux-amd64-tflite-opt.yml index 9b83788e..043b5136 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: "DeepSpeech Linux AMD64 TFLite" - description: "Building DeepSpeech for Linux/AMD64, TFLite, optimized version" + name: "Mozilla Voice STT Linux AMD64 TFLite" + description: "Building Mozilla Voice STT for Linux/AMD64, TFLite, optimized version" diff --git a/taskcluster/linux-arm64-cpu-opt.yml b/taskcluster/linux-arm64-cpu-opt.yml index 5eb88618..ba640c7c 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: "DeepSpeech Linux ARM64 Cortex-A53 CPU" - description: "Building DeepSpeech for Linux ARM64 Cortex-A53, CPU only, optimized version" + name: "Mozilla Voice STT Linux ARM64 Cortex-A53 CPU" + description: "Building Mozilla Voice STT 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 dbf19c6c..e0513d86 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: "DeepSpeech Linux RPi3/ARMv7 CPU" - description: "Building DeepSpeech for Linux RPi3 ARMv7, CPU only, optimized version" + name: "Mozilla Voice STT Linux RPi3/ARMv7 CPU" + description: "Building Mozilla Voice STT for Linux RPi3 ARMv7, CPU only, optimized version" diff --git a/taskcluster/node-package-cpu.yml b/taskcluster/node-package-cpu.yml index bcb838c4..f9cb1cb4 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: "DeepSpeech NodeJS CPU package" - description: "Packaging DeepSpeech CPU for registry" + name: "Mozilla Voice STT NodeJS CPU package" + description: "Packaging Mozilla Voice STT CPU for registry" diff --git a/taskcluster/node-package-gpu.yml b/taskcluster/node-package-gpu.yml index 26c65b5e..1f26a968 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: "DeepSpeech NodeJS GPU package" - description: "Packaging DeepSpeech GPU for registry" + name: "Mozilla Voice STT NodeJS GPU package" + description: "Packaging Mozilla Voice STT GPU for registry" diff --git a/taskcluster/node-package-tflite.yml b/taskcluster/node-package-tflite.yml index 4cad0f88..1f920057 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: "DeepSpeech NodeJS TFLite package" - description: "Packaging DeepSpeech TFLite for registry" + name: "Mozilla Voice STT NodeJS TFLite package" + description: "Packaging Mozilla Voice STT TFLite for registry" diff --git a/taskcluster/scriptworker-task-github.yml b/taskcluster/scriptworker-task-github.yml index 74388b52..b81426ba 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: "DeepSpeech GitHub Packages" - description: "Trigger Uploading of DeepSpeech Packages to GitHub release page" + name: "Mozilla Voice STT GitHub Packages" + description: "Trigger Uploading of Mozilla Voice STT Packages to GitHub release page" diff --git a/taskcluster/scriptworker-task-jcenter.yml b/taskcluster/scriptworker-task-jcenter.yml index d66d08a1..6af462b4 100644 --- a/taskcluster/scriptworker-task-jcenter.yml +++ b/taskcluster/scriptworker-task-jcenter.yml @@ -16,5 +16,5 @@ build: - "android-java-opt" nuget: [] metadata: - name: "DeepSpeech Android lib Packages" - description: "Trigger Uploading of DeepSpeech Android lib to JCenter registry" + name: "Mozilla Voice STT Android lib Packages" + description: "Trigger Uploading of Mozilla Voice STT Android lib to JCenter registry" diff --git a/taskcluster/scriptworker-task-npm.yml b/taskcluster/scriptworker-task-npm.yml index 89f414d4..b063e200 100644 --- a/taskcluster/scriptworker-task-npm.yml +++ b/taskcluster/scriptworker-task-npm.yml @@ -23,5 +23,5 @@ build: - "node-package-tflite" nuget: [] metadata: - name: "DeepSpeech NPM Packages" - description: "Trigger Uploading of DeepSpeech Packages to NPM registry" + name: "Mozilla Voice STT NPM Packages" + description: "Trigger Uploading of Mozilla Voice STT Packages to NPM registry" diff --git a/taskcluster/scriptworker-task-nuget.yml b/taskcluster/scriptworker-task-nuget.yml index 0720067c..8b7675d8 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: "DeepSpeech NuGet Packages" - description: "Trigger Uploading of DeepSpeech .Net Framework bindings to NuGet" + name: "Mozilla Voice STT NuGet Packages" + description: "Trigger Uploading of Mozilla Voice STT .Net Framework bindings to NuGet" diff --git a/taskcluster/scriptworker-task-pypi.yml b/taskcluster/scriptworker-task-pypi.yml index 988384c5..021c65af 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: "DeepSpeech PyPi Packages" - description: "Trigger Uploading of DeepSpeech Packages to PyPi" + name: "Mozilla Voice STT PyPi Packages" + description: "Trigger Uploading of Mozilla Voice STT Packages to PyPi" diff --git a/taskcluster/scriptworker-task-readthedocs.yml b/taskcluster/scriptworker-task-readthedocs.yml index db9cd772..d7ca04ba 100644 --- a/taskcluster/scriptworker-task-readthedocs.yml +++ b/taskcluster/scriptworker-task-readthedocs.yml @@ -15,5 +15,5 @@ build: javascript: [] nuget: [] metadata: - name: "DeepSpeech ReadTheDocs build & version update" + name: "Mozilla Voice STT 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 a682e960..f839d40f 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: "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" + 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" diff --git a/taskcluster/test-apk-android-25-x86_64-opt.yml b/taskcluster/test-apk-android-25-x86_64-opt.yml index 56132961..32b4e4da 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: "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" + 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" diff --git a/taskcluster/test-apk-android-26-x86_64-opt.yml b/taskcluster/test-apk-android-26-x86_64-opt.yml index 62f33cf8..ae90c482 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: "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" + 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" diff --git a/taskcluster/test-apk-android-28-x86_64-opt.yml b/taskcluster/test-apk-android-28-x86_64-opt.yml index e1d790f7..8bdd9f66 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: "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" + 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" diff --git a/taskcluster/test-apk-android-29-x86_64-opt.yml b/taskcluster/test-apk-android-29-x86_64-opt.yml index efabecec..67e14255 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: "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" + 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" diff --git a/taskcluster/test-apk-android-30-x86_64-opt.yml b/taskcluster/test-apk-android-30-x86_64-opt.yml index 12fed734..3838acfe 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: "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" + 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" diff --git a/taskcluster/test-augmentations-linux-amd64-py36m-opt.yml b/taskcluster/test-augmentations-linux-amd64-py36m-opt.yml index e05640d1..aa092bfa 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: "DeepSpeech Linux AMD64 CPU signal augmentations Py3.6" + name: "Mozilla Voice STT 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 f8634afd..e63ef786 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: "DeepSpeech Android 7.0 ARM64 Google Pixel C++ tests" - description: "Testing DeepSpeech C++ for Android 7.0 ARM64 Google Pixel, optimized version" + 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" diff --git a/taskcluster/test-cpp-android-24-armv7-opt.yml b/taskcluster/test-cpp-android-24-armv7-opt.yml index c81bba47..e14b0a20 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: "DeepSpeech Android 7.0 ARMv7 Google Pixel C++ tests" - description: "Testing DeepSpeech C++ for Android 7.0 ARMv7 Google Pixel, optimized version" + 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" diff --git a/taskcluster/test-cpp-android-25-arm64-opt.yml b/taskcluster/test-cpp-android-25-arm64-opt.yml index ae002cef..6f7d36e9 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: "DeepSpeech Android 7.1 ARM64 Google Pixel C++ tests" - description: "Testing DeepSpeech C++ for Android 7.1 ARM64 Google Pixel, optimized version" + 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" diff --git a/taskcluster/test-cpp-android-25-armv7-opt.yml b/taskcluster/test-cpp-android-25-armv7-opt.yml index fa8c5f8d..062697b6 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: "DeepSpeech Android 7.1 ARMv7 Google Pixel C++ tests" - description: "Testing DeepSpeech C++ for Android 7.1 ARMv7 Google Pixel, optimized version" + 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" diff --git a/taskcluster/test-cpp-linux-amd64-prod_pbmodel-opt.yml b/taskcluster/test-cpp-linux-amd64-prod_pbmodel-opt.yml index c5019231..c2a7dff5 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: "DeepSpeech Linux AMD64 CPU C++ prod tests" - description: "Testing DeepSpeech C++ for Linux/AMD64 on prod model, CPU only, optimized version" + 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" diff --git a/taskcluster/test-cpp_16k-armbian-arm64-opt.yml b/taskcluster/test-cpp_16k-armbian-arm64-opt.yml index 919daa0d..8dce52db 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: "DeepSpeech ARMbian ARM64 Cortex-A53 CPU C++ tests (16kHz)" - description: "Testing DeepSpeech C++ for ARMbian ARM64 Cortex-A53, CPU only, optimized version (16kHz)" + 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)" diff --git a/taskcluster/test-cpp_16k-darwin-amd64-opt.yml b/taskcluster/test-cpp_16k-darwin-amd64-opt.yml index 45a8b3b4..0bba4b96 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: "DeepSpeech OSX AMD64 CPU C++ tests (16kHz)" - description: "Testing DeepSpeech C++ for OSX/AMD64, CPU only, optimized version (16kHz)" + name: "Mozilla Voice STT OSX AMD64 CPU C++ tests (16kHz)" + description: "Testing Mozilla Voice STT 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 35d95838..6d7b47fd 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: "DeepSpeech Linux AMD64 CPU C++ tests (16kHz)" - description: "Testing DeepSpeech C++ for Linux/AMD64, CPU only, optimized version (16kHz)" + name: "Mozilla Voice STT Linux AMD64 CPU C++ tests (16kHz)" + description: "Testing Mozilla Voice STT 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 1c0cf156..8275dd9c 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: "DeepSpeech Raspbian RPi3/ARMv7 CPU C++ tests (16kHz)" - description: "Testing DeepSpeech C++ for Raspbian RPi3/ARMv7, CPU only, optimized version (16kHz)" + 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)" diff --git a/taskcluster/test-cpp_16k-win-amd64-opt.yml b/taskcluster/test-cpp_16k-win-amd64-opt.yml index 7a2c89fb..faa69aed 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: "DeepSpeech Windows AMD64 CPU C++ tests (16kHz)" - description: "Testing DeepSpeech C++ for Windows/AMD64, CPU only, optimized version (16kHz)" + name: "Mozilla Voice STT Windows AMD64 CPU C++ tests (16kHz)" + description: "Testing Mozilla Voice STT 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 6685832a..bea8dc32 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: "DeepSpeech Windows AMD64 CUDA C++ tests (16kHz)" - description: "Testing DeepSpeech C++ for Windows/AMD64, CUDA, optimized version (16kHz)" + name: "Mozilla Voice STT Windows AMD64 CUDA C++ tests (16kHz)" + description: "Testing Mozilla Voice STT 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 be050c63..7d5517eb 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: "DeepSpeech OSX AMD64 TFlite C++ tests (16kHz)" - description: "Testing DeepSpeech C++ for OSX/AMD64, TFLite, optimized version (16kHz)" + name: "Mozilla Voice STT OSX AMD64 TFlite C++ tests (16kHz)" + description: "Testing Mozilla Voice STT 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 bead6046..f2714aa0 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: "DeepSpeech Linux AMD64 TFLite C++ tests (16kHz)" - description: "Testing DeepSpeech C++ for Linux/AMD64, TFLite, optimized version (16kHz)" + name: "Mozilla Voice STT Linux AMD64 TFLite C++ tests (16kHz)" + description: "Testing Mozilla Voice STT 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 15abcf3b..e2abd09e 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: "DeepSpeech Windows AMD64 TFLite C++ tests (16kHz)" - description: "Testing DeepSpeech C++ for Windows/AMD64, TFLite, optimized version (16kHz)" + name: "Mozilla Voice STT Windows AMD64 TFLite C++ tests (16kHz)" + description: "Testing Mozilla Voice STT 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 e0c73476..5ca7f28b 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: "DeepSpeech Linux AMD64 CPU C++ tests (8kHz)" - description: "Testing DeepSpeech C++ for Linux/AMD64, CPU only, optimized version (8kHz)" + name: "Mozilla Voice STT Linux AMD64 CPU C++ tests (8kHz)" + description: "Testing Mozilla Voice STT 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 fc7bb2a2..738edf9c 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: "DeepSpeech Linux AMD64 TFLite C++ tests (16kHz)" - description: "Testing DeepSpeech C++ for Linux/AMD64, TFLite, optimized version (16kHz)" + name: "Mozilla Voice STT Linux AMD64 TFLite C++ tests (16kHz)" + description: "Testing Mozilla Voice STT 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 91cf9fc2..5f33aead 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: "DeepSpeech Linux AMD64 TFLite C++ prod tests" - description: "Testing DeepSpeech C++ for Linux/AMD64 on prod model, TFLite, optimized version" + 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" diff --git a/taskcluster/test-electronjs_v5.0-darwin-amd64-opt.yml b/taskcluster/test-electronjs_v5.0-darwin-amd64-opt.yml index 8c2e3e16..f2d0d119 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: "DeepSpeech OSX AMD64 CPU ElectronJS v5.0 tests" - description: "Testing DeepSpeech for OSX/AMD64 on ElectronJS v5.0, CPU only, optimized version" + 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" diff --git a/taskcluster/test-electronjs_v5.0-win-amd64-opt.yml b/taskcluster/test-electronjs_v5.0-win-amd64-opt.yml index dca60813..dfe9ca5e 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: "DeepSpeech Windows AMD64 CPU ElectronJS v5.0 tests" - description: "Testing DeepSpeech for Windows/AMD64 on ElectronJS v5.0, CPU only, optimized version" + 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" 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 8b362864..668aae6f 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: "DeepSpeech Linux AMD64 CPU ElectronJS v5.0 tests (16kHz)" - description: "Testing DeepSpeech for Linux/AMD64 on ElectronJS v5.0, CPU only, optimized version (16kHz)" + 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)" 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 5ecd4ed4..6a58ca5c 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: "DeepSpeech Linux AMD64 CPU ElectronJS v5.0 tests (8kHz)" - description: "Testing DeepSpeech for Linux/AMD64 on ElectronJS v5.0, CPU only, optimized version (8kHz)" + 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)" diff --git a/taskcluster/test-electronjs_v6.0-darwin-amd64-opt.yml b/taskcluster/test-electronjs_v6.0-darwin-amd64-opt.yml index 08c02306..e2bc2050 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: "DeepSpeech OSX AMD64 CPU ElectronJS v6.0 tests" - description: "Testing DeepSpeech for OSX/AMD64 on ElectronJS v6.0, CPU only, optimized version" + 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" diff --git a/taskcluster/test-electronjs_v6.0-win-amd64-opt.yml b/taskcluster/test-electronjs_v6.0-win-amd64-opt.yml index 10556ebc..5ee20505 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: "DeepSpeech Windows AMD64 CPU ElectronJS v6.0 tests" - description: "Testing DeepSpeech for Windows/AMD64 on ElectronJS v6.0, CPU only, optimized version" + 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" 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 d8a9d7ef..38a61e3f 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: "DeepSpeech Linux AMD64 CPU ElectronJS v6.0 tests (16kHz)" - description: "Testing DeepSpeech for Linux/AMD64 on ElectronJS v6.0, CPU only, optimized version (16kHz)" + 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)" 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 b7f5ca3f..3a1350cf 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: "DeepSpeech Linux AMD64 CPU ElectronJS v6.0 tests (8kHz)" - description: "Testing DeepSpeech for Linux/AMD64 on ElectronJS v6.0, CPU only, optimized version (8kHz)" + 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)" diff --git a/taskcluster/test-electronjs_v6.1-darwin-amd64-opt.yml b/taskcluster/test-electronjs_v6.1-darwin-amd64-opt.yml index 3d0bf2de..f8e43def 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: "DeepSpeech OSX AMD64 CPU ElectronJS v6.1 tests" - description: "Testing DeepSpeech for OSX/AMD64 on ElectronJS v6.1, CPU only, optimized version" + 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" diff --git a/taskcluster/test-electronjs_v6.1-win-amd64-opt.yml b/taskcluster/test-electronjs_v6.1-win-amd64-opt.yml index a27e2e58..7e24a5a2 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: "DeepSpeech Windows AMD64 CPU ElectronJS v6.1 tests" - description: "Testing DeepSpeech for Windows/AMD64 on ElectronJS v6.1, CPU only, optimized version" + 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" 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 dcbd5799..7e238f2d 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: "DeepSpeech Linux AMD64 CPU ElectronJS v6.1 tests (16kHz)" - description: "Testing DeepSpeech for Linux/AMD64 on ElectronJS v6.1, CPU only, optimized version (16kHz)" + 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)" 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 45c965ab..88767b86 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: "DeepSpeech Linux AMD64 CPU ElectronJS v6.1 tests (8kHz)" - description: "Testing DeepSpeech for Linux/AMD64 on ElectronJS v6.1, CPU only, optimized version (8kHz)" + 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)" diff --git a/taskcluster/test-electronjs_v7.0-darwin-amd64-opt.yml b/taskcluster/test-electronjs_v7.0-darwin-amd64-opt.yml index 8f6340bb..23c27ac5 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: "DeepSpeech OSX AMD64 CPU ElectronJS v7.0 tests" - description: "Testing DeepSpeech for OSX/AMD64 on ElectronJS v7.0, CPU only, optimized version" + 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" diff --git a/taskcluster/test-electronjs_v7.0-win-amd64-opt.yml b/taskcluster/test-electronjs_v7.0-win-amd64-opt.yml index e0a8ccbe..a467bd13 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: "DeepSpeech Windows AMD64 CPU ElectronJS v7.0 tests" - description: "Testing DeepSpeech for Windows/AMD64 on ElectronJS v7.0, CPU only, optimized version" + 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" 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 fb793d8d..e68759fd 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: "DeepSpeech Linux AMD64 CPU ElectronJS v7.0 tests (16kHz)" - description: "Testing DeepSpeech for Linux/AMD64 on ElectronJS v7.0, CPU only, optimized version (16kHz)" + 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)" 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 5562c0a9..b7a4d100 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: "DeepSpeech Linux AMD64 CPU ElectronJS v7.0 tests (8kHz)" - description: "Testing DeepSpeech for Linux/AMD64 on ElectronJS v7.0, CPU only, optimized version (8kHz)" + 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)" diff --git a/taskcluster/test-electronjs_v7.1-darwin-amd64-opt.yml b/taskcluster/test-electronjs_v7.1-darwin-amd64-opt.yml index 7c2fdfcd..b6012524 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: "DeepSpeech OSX AMD64 CPU ElectronJS v7.1 tests" - description: "Testing DeepSpeech for OSX/AMD64 on ElectronJS v7.1, CPU only, optimized version" + 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" diff --git a/taskcluster/test-electronjs_v7.1-win-amd64-opt.yml b/taskcluster/test-electronjs_v7.1-win-amd64-opt.yml index da3c5586..60a80f4a 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: "DeepSpeech Windows AMD64 CPU ElectronJS v7.1 tests" - description: "Testing DeepSpeech for Windows/AMD64 on ElectronJS v7.1, CPU only, optimized version" + 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" 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 ffcc3000..f6f33746 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: "DeepSpeech Linux AMD64 CPU ElectronJS v7.1 tests (16kHz)" - description: "Testing DeepSpeech for Linux/AMD64 on ElectronJS v7.1, CPU only, optimized version (16kHz)" + 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)" 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 4e5976aa..da32a8bf 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: "DeepSpeech Linux AMD64 CPU ElectronJS v7.1 tests (8kHz)" - description: "Testing DeepSpeech for Linux/AMD64 on ElectronJS v7.1, CPU only, optimized version (8kHz)" + 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)" diff --git a/taskcluster/test-electronjs_v8.0-darwin-amd64-opt.yml b/taskcluster/test-electronjs_v8.0-darwin-amd64-opt.yml index efd57f69..18f53ba9 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: "DeepSpeech OSX AMD64 CPU ElectronJS v8.0 tests" - description: "Testing DeepSpeech for OSX/AMD64 on ElectronJS v8.0, CPU only, optimized version" + 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" diff --git a/taskcluster/test-electronjs_v8.0-win-amd64-opt.yml b/taskcluster/test-electronjs_v8.0-win-amd64-opt.yml index 5c33a767..9a246fe2 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: "DeepSpeech Windows AMD64 CPU ElectronJS v8.0 tests" - description: "Testing DeepSpeech for Windows/AMD64 on ElectronJS v8.0, CPU only, optimized version" + 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" 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 579fce59..4ae666b1 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: "DeepSpeech Linux AMD64 CPU ElectronJS v8.0 tests (16kHz)" - description: "Testing DeepSpeech for Linux/AMD64 on ElectronJS v8.0, CPU only, optimized version (16kHz)" + 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)" 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 e8ff0815..a502b22a 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: "DeepSpeech Linux AMD64 CPU ElectronJS v8.0 tests (8kHz)" - description: "Testing DeepSpeech for Linux/AMD64 on ElectronJS v8.0, CPU only, optimized version (8kHz)" + 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)" 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 d086e347..4f5e9263 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: "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" + 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" 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 ac35c001..c1bb92a5 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: "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" + 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" 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 5d2531f0..3348316b 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: "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" + 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" diff --git a/taskcluster/test-electronjs_v9.0-darwin-amd64-opt.yml b/taskcluster/test-electronjs_v9.0-darwin-amd64-opt.yml index 2c9ce143..fd028966 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: "DeepSpeech OSX AMD64 CPU ElectronJS v9.0 tests" - description: "Testing DeepSpeech for OSX/AMD64 on ElectronJS v9.0, CPU only, optimized version" + 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" diff --git a/taskcluster/test-electronjs_v9.0-win-amd64-opt.yml b/taskcluster/test-electronjs_v9.0-win-amd64-opt.yml index 66bd7b1f..dc672414 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: "DeepSpeech Windows AMD64 CPU ElectronJS v9.0 tests" - description: "Testing DeepSpeech for Windows/AMD64 on ElectronJS v9.0, CPU only, optimized version" + 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" 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 fe676063..3ad246a4 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: "DeepSpeech Linux AMD64 CPU ElectronJS v9.0 tests (16kHz)" - description: "Testing DeepSpeech for Linux/AMD64 on ElectronJS v9.0, CPU only, optimized version (16kHz)" + 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)" 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 90595402..dde11f76 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: "DeepSpeech Linux AMD64 CPU ElectronJS v9.0 tests (8kHz)" - description: "Testing DeepSpeech for Linux/AMD64 on ElectronJS v9.0, CPU only, optimized version (8kHz)" + 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)" 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 0b6d51f3..4e4b713b 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: "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" + 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" 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 957a0281..875d5cee 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: "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" + 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" 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 4de742c3..4c3dcee0 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: "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" + 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" diff --git a/taskcluster/test-electronjs_v9.1-darwin-amd64-opt.yml b/taskcluster/test-electronjs_v9.1-darwin-amd64-opt.yml index 3a1a7b29..f1de63e3 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.0.1 16k" metadata: - name: "DeepSpeech OSX AMD64 CPU ElectronJS v9.1 tests" - description: "Testing DeepSpeech for OSX/AMD64 on ElectronJS v9.1, CPU only, optimized version" + 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" diff --git a/taskcluster/test-electronjs_v9.1-win-amd64-opt.yml b/taskcluster/test-electronjs_v9.1-win-amd64-opt.yml index be83c3b3..7ae1e02d 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.0.1 16k" metadata: - name: "DeepSpeech Windows AMD64 CPU ElectronJS v9.1 tests" - description: "Testing DeepSpeech for Windows/AMD64 on ElectronJS v9.1, CPU only, optimized version" + 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" 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 beb9cefa..6e627bb2 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.0.1 16k" workerType: "${docker.dsTests}" metadata: - 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)" + 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)" 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 3b16ef0e..97083a30 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.0.1 8k" workerType: "${docker.dsTests}" metadata: - 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)" + 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)" 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 3a547a7f..c498f8a6 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.0.1 16k" metadata: - 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" + 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" 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 e9ab02da..b6bb64e4 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.0.1 16k cuda" metadata: - 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" + 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" 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 e2521f4b..c7b408ff 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.0.1 16k" metadata: - 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" + 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" diff --git a/taskcluster/test-evaluate_tflite-linux-amd64-py36m-opt.yml b/taskcluster/test-evaluate_tflite-linux-amd64-py36m-opt.yml index dfa3023f..006554e2 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: "DeepSpeech Linux AMD64 CPU evaluate_tflite.py Py3.6 (16kHz)" + name: "Mozilla Voice STT 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 df789683..f5ce8e3f 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: "DeepSpeech Windows AMD64 CPU .Net Framework tests" - description: "Testing DeepSpeech .Net Framework for Windows/AMD64, CPU only, optimized version" + name: "Mozilla Voice STT Windows AMD64 CPU .Net Framework tests" + description: "Testing Mozilla Voice STT .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 c23664d7..ee7fd37e 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: "DeepSpeech Windows AMD64 CUDA .Net Framework tests" - description: "Testing DeepSpeech .Net Framework for Windows/AMD64, CUDA, optimized version" + name: "Mozilla Voice STT Windows AMD64 CUDA .Net Framework tests" + description: "Testing Mozilla Voice STT .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 327bf685..3e053fe4 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: "DeepSpeech Windows AMD64 TFLite .Net Framework tests" - description: "Testing DeepSpeech .Net Framework for Windows/AMD64, TFLite, optimized version" + name: "Mozilla Voice STT Windows AMD64 TFLite .Net Framework tests" + description: "Testing Mozilla Voice STT .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 8c3cf5ac..23ca1a7f 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: "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" + 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" diff --git a/taskcluster/test-nodejs_10x-darwin-amd64-opt.yml b/taskcluster/test-nodejs_10x-darwin-amd64-opt.yml index f1ea4abd..fa401723 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: "DeepSpeech OSX AMD64 CPU NodeJS 10.x tests" - description: "Testing DeepSpeech for OSX/AMD64 on NodeJS v10.x, CPU only, optimized version" + 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" diff --git a/taskcluster/test-nodejs_10x-raspbian-rpi3-opt.yml b/taskcluster/test-nodejs_10x-raspbian-rpi3-opt.yml index d1867591..c9b3461c 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: "DeepSpeech Raspbian RPi3/ARMv7 CPU NodeJS 10.x tests" - description: "Testing DeepSpeech for Raspbian RPi3/ARMv7 on NodeJS v10.x, CPU only, optimized version" + 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" diff --git a/taskcluster/test-nodejs_10x-win-amd64-opt.yml b/taskcluster/test-nodejs_10x-win-amd64-opt.yml index b1b03b0d..20d22fdb 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: "DeepSpeech Windows AMD64 CPU NodeJS 10.x tests" - description: "Testing DeepSpeech for Windows/AMD64 on NodeJS v10.x, CPU only, optimized version" + 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" diff --git a/taskcluster/test-nodejs_10x_16k-linux-amd64-opt.yml b/taskcluster/test-nodejs_10x_16k-linux-amd64-opt.yml index 7f6d104c..4b496d05 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: "DeepSpeech Linux AMD64 CPU NodeJS 10.x tests (16kHz)" - description: "Testing DeepSpeech for Linux/AMD64 on NodeJS v10.x, CPU only, optimized version (16kHz)" + 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)" 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 6e09e3c2..05aa27b6 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: "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)" + 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)" 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 1f8513f5..56305a0d 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: "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)" + 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)" diff --git a/taskcluster/test-nodejs_10x_8k-linux-amd64-opt.yml b/taskcluster/test-nodejs_10x_8k-linux-amd64-opt.yml index 66736a74..253d7bfe 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: "DeepSpeech Linux AMD64 CPU NodeJS 10.x tests (8kHz)" - description: "Testing DeepSpeech for Linux/AMD64 on NodeJS v10.x, CPU only, optimized version (8kHz)" + 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)" 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 002ad53e..81d2b16d 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: "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)" + 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)" 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 c9cf0178..ba54a358 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: "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)" + 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)" diff --git a/taskcluster/test-nodejs_11x-armbian-arm64-opt.yml b/taskcluster/test-nodejs_11x-armbian-arm64-opt.yml index f7af3d3b..b6b11afc 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: "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" + 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" diff --git a/taskcluster/test-nodejs_11x-darwin-amd64-opt.yml b/taskcluster/test-nodejs_11x-darwin-amd64-opt.yml index 45a6535d..5a818923 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: "DeepSpeech OSX AMD64 CPU NodeJS 11.x tests" - description: "Testing DeepSpeech for OSX/AMD64 on NodeJS v11.x, CPU only, optimized version" + 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" diff --git a/taskcluster/test-nodejs_11x-raspbian-rpi3-opt.yml b/taskcluster/test-nodejs_11x-raspbian-rpi3-opt.yml index 570f1300..aface8ae 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: "DeepSpeech Raspbian RPi3/ARMv7 CPU NodeJS 11.x tests" - description: "Testing DeepSpeech for Raspbian RPi3/ARMv7 on NodeJS v11.x, CPU only, optimized version" + 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" diff --git a/taskcluster/test-nodejs_11x-win-amd64-opt.yml b/taskcluster/test-nodejs_11x-win-amd64-opt.yml index 049609a9..fb0f3d12 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: "DeepSpeech Windows AMD64 CPU NodeJS 11.x tests" - description: "Testing DeepSpeech for Windows/AMD64 on NodeJS v11.x, CPU only, optimized version" + 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" diff --git a/taskcluster/test-nodejs_11x_16k-linux-amd64-opt.yml b/taskcluster/test-nodejs_11x_16k-linux-amd64-opt.yml index cb27d005..8a917df9 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: "DeepSpeech Linux AMD64 CPU NodeJS 11.x tests (16kHz)" - description: "Testing DeepSpeech for Linux/AMD64 on NodeJS v11.x, CPU only, optimized version (16kHz)" + 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)" 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 9f4cd2b0..ae3620e2 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: "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)" + 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)" 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 554b0930..bccea715 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: "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)" + 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)" diff --git a/taskcluster/test-nodejs_11x_8k-linux-amd64-opt.yml b/taskcluster/test-nodejs_11x_8k-linux-amd64-opt.yml index 7a69bfb8..3f29bbac 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: "DeepSpeech Linux AMD64 CPU NodeJS 11.x tests (8kHz)" - description: "Testing DeepSpeech for Linux/AMD64 on NodeJS v11.x, CPU only, optimized version (8kHz)" + 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)" 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 d48ac49c..ecc69818 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: "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)" + 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)" 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 c459fbd0..67760067 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: "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)" + 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)" diff --git a/taskcluster/test-nodejs_12x-armbian-arm64-opt.yml b/taskcluster/test-nodejs_12x-armbian-arm64-opt.yml index db647ce0..7dcdc00c 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: "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" + 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" diff --git a/taskcluster/test-nodejs_12x-darwin-amd64-opt.yml b/taskcluster/test-nodejs_12x-darwin-amd64-opt.yml index 7ec11441..dda38dc6 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: "DeepSpeech OSX AMD64 CPU NodeJS 12.x tests" - description: "Testing DeepSpeech for OSX/AMD64 on NodeJS v12.x, CPU only, optimized version" + 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" diff --git a/taskcluster/test-nodejs_12x-raspbian-rpi3-opt.yml b/taskcluster/test-nodejs_12x-raspbian-rpi3-opt.yml index f49dceac..3ff7d537 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: "DeepSpeech Raspbian RPi3/ARMv7 CPU NodeJS 12.x tests" - description: "Testing DeepSpeech for Raspbian RPi3/ARMv7 on NodeJS v12.x, CPU only, optimized version" + 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" diff --git a/taskcluster/test-nodejs_12x-win-amd64-opt.yml b/taskcluster/test-nodejs_12x-win-amd64-opt.yml index 12baaa17..1c939087 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: "DeepSpeech Windows AMD64 CPU NodeJS 12.x tests" - description: "Testing DeepSpeech for Windows/AMD64 on NodeJS v12.x, CPU only, optimized version" + 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" diff --git a/taskcluster/test-nodejs_12x_16k-linux-amd64-opt.yml b/taskcluster/test-nodejs_12x_16k-linux-amd64-opt.yml index 66968b51..9d2d2427 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: "DeepSpeech Linux AMD64 CPU NodeJS 12.x tests (16kHz)" - description: "Testing DeepSpeech for Linux/AMD64 on NodeJS v12.x, CPU only, optimized version (16kHz)" + 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)" 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 26c84115..c8caeb00 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: "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)" + 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)" 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 c8cdefeb..f3f6924d 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: "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)" + 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)" diff --git a/taskcluster/test-nodejs_12x_8k-linux-amd64-opt.yml b/taskcluster/test-nodejs_12x_8k-linux-amd64-opt.yml index d4be2fff..1cb0ebbd 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: "DeepSpeech Linux AMD64 CPU NodeJS 12.x tests (8kHz)" - description: "Testing DeepSpeech for Linux/AMD64 on NodeJS v12.x, CPU only, optimized version (8kHz)" + 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)" 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 a5a6bd55..2c49612b 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: "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)" + 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)" 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 3b84e249..0dd42e58 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: "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)" + 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)" diff --git a/taskcluster/test-nodejs_13x-armbian-arm64-opt.yml b/taskcluster/test-nodejs_13x-armbian-arm64-opt.yml index cadffe01..c8f4b06e 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: "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" + 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" diff --git a/taskcluster/test-nodejs_13x-darwin-amd64-opt.yml b/taskcluster/test-nodejs_13x-darwin-amd64-opt.yml index 3823c5ee..99ecf187 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: "DeepSpeech OSX AMD64 CPU NodeJS 13.x tests" - description: "Testing DeepSpeech for OSX/AMD64 on NodeJS v13.x, CPU only, optimized version" + 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" diff --git a/taskcluster/test-nodejs_13x-raspbian-rpi3-opt.yml b/taskcluster/test-nodejs_13x-raspbian-rpi3-opt.yml index 37a6a7ec..2adc934e 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: "DeepSpeech Raspbian RPi3/ARMv7 CPU NodeJS 13.x tests" - description: "Testing DeepSpeech for Raspbian RPi3/ARMv7 on NodeJS v13.x, CPU only, optimized version" + 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" diff --git a/taskcluster/test-nodejs_13x-win-amd64-opt.yml b/taskcluster/test-nodejs_13x-win-amd64-opt.yml index b40d8904..49c09ec5 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: "DeepSpeech Windows AMD64 CPU NodeJS 13.x tests" - description: "Testing DeepSpeech for Windows/AMD64 on NodeJS v13.x, CPU only, optimized version" + 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" diff --git a/taskcluster/test-nodejs_13x_16k-linux-amd64-opt.yml b/taskcluster/test-nodejs_13x_16k-linux-amd64-opt.yml index 4e0669a0..f8bb8f1a 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: "DeepSpeech Linux AMD64 CPU NodeJS 13.x tests (16kHz)" - description: "Testing DeepSpeech for Linux/AMD64 on NodeJS v13.x, CPU only, optimized version (16kHz)" + 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)" 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 d400b851..31bcde6c 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: "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)" + 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)" 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 75b532ca..2af1b0f2 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: "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)" + 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)" 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 f17aab03..8304e0ae 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: "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)" + 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)" 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 c9a92652..fb5b22bc 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: "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)" + 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)" 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 ad2df9ba..8e0a5e35 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: "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)" + 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)" diff --git a/taskcluster/test-nodejs_13x_8k-linux-amd64-opt.yml b/taskcluster/test-nodejs_13x_8k-linux-amd64-opt.yml index d95476b7..f68a64ac 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: "DeepSpeech Linux AMD64 CPU NodeJS 13.x tests (8kHz)" - description: "Testing DeepSpeech for Linux/AMD64 on NodeJS v13.x, CPU only, optimized version (8kHz)" + 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)" 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 5fccf9fe..63555bbf 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: "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)" + 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)" 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 9842e811..53dac5f8 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: "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)" + 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)" 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 fa6c0b06..1adc5f97 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: "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)" + 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)" 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 d9b6818a..902f8b89 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: "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)" + 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)" 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 02d0a11e..b493edf2 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: "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)" + 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)" diff --git a/taskcluster/test-nodejs_13x_multiarchpkg-armbian-arm64-opt.yml b/taskcluster/test-nodejs_13x_multiarchpkg-armbian-arm64-opt.yml index 47f01a89..048ffa07 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: "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" + 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" diff --git a/taskcluster/test-nodejs_13x_multiarchpkg-darwin-amd64-opt.yml b/taskcluster/test-nodejs_13x_multiarchpkg-darwin-amd64-opt.yml index 52c24c8f..e19f9589 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: "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" + 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" diff --git a/taskcluster/test-nodejs_13x_multiarchpkg-darwin-tflite-opt.yml b/taskcluster/test-nodejs_13x_multiarchpkg-darwin-tflite-opt.yml index 11d64c56..ddb678b9 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: "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" + 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" diff --git a/taskcluster/test-nodejs_13x_multiarchpkg-raspbian-rpi3-opt.yml b/taskcluster/test-nodejs_13x_multiarchpkg-raspbian-rpi3-opt.yml index c88bf2ac..56215857 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: "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" + 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" diff --git a/taskcluster/test-nodejs_13x_multiarchpkg-win-amd64-opt.yml b/taskcluster/test-nodejs_13x_multiarchpkg-win-amd64-opt.yml index f7822560..a4504731 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: "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" + 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" diff --git a/taskcluster/test-nodejs_13x_multiarchpkg-win-cuda-opt.yml b/taskcluster/test-nodejs_13x_multiarchpkg-win-cuda-opt.yml index 499462a4..bf544f83 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: "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" + 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" diff --git a/taskcluster/test-nodejs_13x_multiarchpkg-win-tflite-opt.yml b/taskcluster/test-nodejs_13x_multiarchpkg-win-tflite-opt.yml index 7962d62d..4fd2f73b 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: "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" + 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" diff --git a/taskcluster/test-nodejs_14x-armbian-arm64-opt.yml b/taskcluster/test-nodejs_14x-armbian-arm64-opt.yml index db09c287..0c85f1c3 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: "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" + 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" diff --git a/taskcluster/test-nodejs_14x-darwin-amd64-opt.yml b/taskcluster/test-nodejs_14x-darwin-amd64-opt.yml index 8cf3f96f..c74ed9b7 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: "DeepSpeech OSX AMD64 CPU NodeJS 14.x tests" - description: "Testing DeepSpeech for OSX/AMD64 on NodeJS v14.x, CPU only, optimized version" + 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" diff --git a/taskcluster/test-nodejs_14x-raspbian-rpi3-opt.yml b/taskcluster/test-nodejs_14x-raspbian-rpi3-opt.yml index 22ab6195..6c5025f1 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: "DeepSpeech Raspbian RPi3/ARMv7 CPU NodeJS 14.x tests" - description: "Testing DeepSpeech for Raspbian RPi3/ARMv7 on NodeJS v14.x, CPU only, optimized version" + 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" diff --git a/taskcluster/test-nodejs_14x-win-amd64-opt.yml b/taskcluster/test-nodejs_14x-win-amd64-opt.yml index 57a4397f..e4ac782d 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: "DeepSpeech Windows AMD64 CPU NodeJS 14.x tests" - description: "Testing DeepSpeech for Windows/AMD64 on NodeJS v14.x, CPU only, optimized version" + 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" diff --git a/taskcluster/test-nodejs_14x_16k-linux-amd64-opt.yml b/taskcluster/test-nodejs_14x_16k-linux-amd64-opt.yml index 73c4dba3..52aedebc 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: "DeepSpeech Linux AMD64 CPU NodeJS 14.x tests (16kHz)" - description: "Testing DeepSpeech for Linux/AMD64 on NodeJS v14.x, CPU only, optimized version (16kHz)" + 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)" 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 64e1e7ca..50d17998 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: "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)" + 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)" 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 4f0699ee..0af337c7 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: "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)" + 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)" 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 f1dcf1f6..ccfc2be5 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: "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)" + 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)" 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 f88a75c6..427d7712 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: "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)" + 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)" 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 1f2cf18b..b0ce749a 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: "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)" + 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)" diff --git a/taskcluster/test-nodejs_14x_8k-linux-amd64-opt.yml b/taskcluster/test-nodejs_14x_8k-linux-amd64-opt.yml index b1c613b3..10e74fe0 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: "DeepSpeech Linux AMD64 CPU NodeJS 14.x tests (8kHz)" - description: "Testing DeepSpeech for Linux/AMD64 on NodeJS v14.x, CPU only, optimized version (8kHz)" + 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)" 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 17d86a4e..36d35075 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: "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)" + 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)" 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 f55df623..2d71b0d5 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: "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)" + 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)" 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 b3557f66..ad224c7d 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: "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)" + 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)" 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 809e8859..dcd2e5af 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: "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)" + 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)" 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 511ba1e5..0a389fa6 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: "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)" + 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)" diff --git a/taskcluster/test-nodejs_14x_multiarchpkg-armbian-arm64-opt.yml b/taskcluster/test-nodejs_14x_multiarchpkg-armbian-arm64-opt.yml index 6debe667..8190cfcc 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: "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" + 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" diff --git a/taskcluster/test-nodejs_14x_multiarchpkg-darwin-amd64-opt.yml b/taskcluster/test-nodejs_14x_multiarchpkg-darwin-amd64-opt.yml index 3c7a9cbf..ee9b9e56 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: "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" + 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" diff --git a/taskcluster/test-nodejs_14x_multiarchpkg-darwin-tflite-opt.yml b/taskcluster/test-nodejs_14x_multiarchpkg-darwin-tflite-opt.yml index 9d5aa2f1..1d89e4a1 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: "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" + 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" diff --git a/taskcluster/test-nodejs_14x_multiarchpkg-raspbian-rpi3-opt.yml b/taskcluster/test-nodejs_14x_multiarchpkg-raspbian-rpi3-opt.yml index 6fb29de1..f7b7ed10 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: "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" + 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" diff --git a/taskcluster/test-nodejs_14x_multiarchpkg-win-amd64-opt.yml b/taskcluster/test-nodejs_14x_multiarchpkg-win-amd64-opt.yml index bd7de4d9..bc5fc3d7 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: "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" + 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" diff --git a/taskcluster/test-nodejs_14x_multiarchpkg-win-cuda-opt.yml b/taskcluster/test-nodejs_14x_multiarchpkg-win-cuda-opt.yml index 733afc8f..0b60871f 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: "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" + 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" diff --git a/taskcluster/test-nodejs_14x_multiarchpkg-win-tflite-opt.yml b/taskcluster/test-nodejs_14x_multiarchpkg-win-tflite-opt.yml index f2721d6c..86dd63dd 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: "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" + 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" diff --git a/taskcluster/test-python_35-darwin-amd64-opt.yml b/taskcluster/test-python_35-darwin-amd64-opt.yml index 73ae70d8..3967dbee 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: "DeepSpeech OSX AMD64 CPU Python v3.5 tests" - description: "Testing DeepSpeech for OSX/AMD64 on Python v3.5, CPU only, optimized version" + 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" diff --git a/taskcluster/test-python_35-win-amd64-opt.yml b/taskcluster/test-python_35-win-amd64-opt.yml index f5a0831f..05426a97 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: "DeepSpeech Windows AMD64 CPU Python v3.5 tests" - description: "Testing DeepSpeech for Windows/AMD64 on Python v3.5, CPU only, optimized version" + 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" diff --git a/taskcluster/test-python_35-win-cuda-opt.yml b/taskcluster/test-python_35-win-cuda-opt.yml index 0c54f0b0..29684c02 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: "DeepSpeech Windows AMD64 CUDA Python v3.5 tests" - description: "Testing DeepSpeech for Windows/AMD64 on Python v3.5, CUDA, optimized version" + 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" diff --git a/taskcluster/test-python_35_16k-linux-amd64-opt.yml b/taskcluster/test-python_35_16k-linux-amd64-opt.yml index 67d5371a..2e4e5d07 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: "DeepSpeech Linux AMD64 CPU Python v3.5 tests (16kHz)" - description: "Testing DeepSpeech for Linux/AMD64 on Python v3.5, CPU only, optimized version (16kHz)" + 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)" 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 2e8ec800..2178c76d 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: "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)" + 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)" diff --git a/taskcluster/test-python_35_8k-linux-amd64-opt.yml b/taskcluster/test-python_35_8k-linux-amd64-opt.yml index c43b9f03..3cef0618 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: "DeepSpeech Linux AMD64 CPU Python v3.5 tests (8kHz)" - description: "Testing DeepSpeech for Linux/AMD64 on Python v3.5, CPU only, optimized version (8kHz)" + 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)" 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 a526b966..54cb0f1c 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: "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)" + 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)" 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 dad87b88..2f85960b 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: "DeepSpeech OSX AMD64 TFLite Python v3.5 tests (16kHz)" - description: "Testing DeepSpeech for OSX/AMD64 on Python v3.5 TFLite, optimized version (16kHz)" + 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)" 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 d639a54f..ab857a5c 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: "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)" + 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)" 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 0dee11b9..b8388525 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: "DeepSpeech Linux AMD64 TFLite Python v3.5 tests (16kHz)" - description: "Testing DeepSpeech for Linux/AMD64 on Python v3.5 TFLite, optimized version (16kHz)" + 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)" 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 a05a6292..64542ad2 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: "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)" + 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)" 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 f3288600..b4c14ab4 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: "DeepSpeech Windows AMD64 TFLite Python v3.5 tests (16kHz)" - description: "Testing DeepSpeech for Windows/AMD64 on Python v3.5 TFLite, optimized version (16kHz)" + 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)" 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 05603bd5..0371a825 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: "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)" + 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)" 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 b656b26d..5f7d659f 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: "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)" + 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)" diff --git a/taskcluster/test-python_36-darwin-amd64-opt.yml b/taskcluster/test-python_36-darwin-amd64-opt.yml index 7675667a..577bd3c8 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: "DeepSpeech OSX AMD64 CPU Python v3.6 tests" - description: "Testing DeepSpeech for OSX/AMD64 on Python v3.6.10:m, CPU only, optimized version" + 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" diff --git a/taskcluster/test-python_36-win-amd64-opt.yml b/taskcluster/test-python_36-win-amd64-opt.yml index 996abb29..da03f761 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: "DeepSpeech Windows AMD64 CPU Python v3.6 tests" - description: "Testing DeepSpeech for Windows/AMD64 on Python v3.6, CPU only, optimized version" + 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" diff --git a/taskcluster/test-python_36-win-cuda-opt.yml b/taskcluster/test-python_36-win-cuda-opt.yml index 640f6a1b..9cb7092a 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: "DeepSpeech Windows AMD64 CUDA Python v3.6 tests" - description: "Testing DeepSpeech for Windows/AMD64 on Python v3.6, CUDA, optimized version" + 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" diff --git a/taskcluster/test-python_36_16k-linux-amd64-opt.yml b/taskcluster/test-python_36_16k-linux-amd64-opt.yml index d13a0e0c..0b7e5bb1 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: "DeepSpeech Linux AMD64 CPU Python v3.6 tests (16kHz)" - description: "Testing DeepSpeech for Linux/AMD64 on Python v3.6, CPU only, optimized version (16kHz)" + 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)" 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 14ca3621..1a5b6523 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: "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)" + 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)" diff --git a/taskcluster/test-python_36_8k-linux-amd64-opt.yml b/taskcluster/test-python_36_8k-linux-amd64-opt.yml index 176975f9..fbfaf6b5 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: "DeepSpeech Linux AMD64 CPU Python v3.6 tests (8kHz)" - description: "Testing DeepSpeech for Linux/AMD64 on Python v3.6, CPU only, optimized version (8kHz)" + 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)" 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 b1c333e5..2b99f5e2 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: "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)" + 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)" 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 36d1c979..3a7bd615 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: "DeepSpeech OSX AMD64 TFLite Python v3.6 tests (16kHz)" - description: "Testing DeepSpeech for OSX/AMD64 on Python v3.6 TFLite, optimized version (16kHz)" + 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)" 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 567ac3f5..2f630a57 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: "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)" + 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)" 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 eddde81b..fc8781d7 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: "DeepSpeech Linux AMD64 TFLite Python v3.6 tests (16kHz)" - description: "Testing DeepSpeech for Linux/AMD64 on Python v3.6 TFLite, optimized version (16kHz)" + 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)" 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 061bcaf9..c742e59d 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: "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)" + 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)" 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 2ebf23c2..16e680bf 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: "DeepSpeech Windows AMD64 TFLite Python v3.6 tests (16kHz)" - description: "Testing DeepSpeech for Windows/AMD64 on Python v3.6 TFLite, optimized version (16kHz)" + 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)" 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 a8f02424..b65c7b6b 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: "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)" + 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)" 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 365e21d2..40cca09d 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: "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)" + 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)" diff --git a/taskcluster/test-python_37-darwin-amd64-opt.yml b/taskcluster/test-python_37-darwin-amd64-opt.yml index 551f7618..4b0fd58b 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: "DeepSpeech OSX AMD64 CPU Python v3.7 tests" - description: "Testing DeepSpeech for OSX/AMD64 on Python v3.7.6:m, CPU only, optimized version" + 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" diff --git a/taskcluster/test-python_37-win-amd64-opt.yml b/taskcluster/test-python_37-win-amd64-opt.yml index 13d63d59..3130f06f 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: "DeepSpeech Windows AMD64 CPU Python v3.7 tests" - description: "Testing DeepSpeech for Windows/AMD64 on Python v3.7, CPU only, optimized version" + 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" diff --git a/taskcluster/test-python_37-win-cuda-opt.yml b/taskcluster/test-python_37-win-cuda-opt.yml index a10a06a4..855ea364 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: "DeepSpeech Windows AMD64 CUDA Python v3.7 tests" - description: "Testing DeepSpeech for Windows/AMD64 on Python v3.7, CUDA, optimized version" + 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" diff --git a/taskcluster/test-python_37_16k-linux-amd64-opt.yml b/taskcluster/test-python_37_16k-linux-amd64-opt.yml index a232cbe2..9d924695 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: "DeepSpeech Linux AMD64 CPU Python v3.7 tests (16kHz)" - description: "Testing DeepSpeech for Linux/AMD64 on Python v3.7, CPU only, optimized version (16kHz)" + 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)" 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 1ff9a651..d14bd3d4 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: "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)" + 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)" diff --git a/taskcluster/test-python_37_8k-linux-amd64-opt.yml b/taskcluster/test-python_37_8k-linux-amd64-opt.yml index 82609a4f..ef2c1a73 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: "DeepSpeech Linux AMD64 CPU Python v3.7 tests (8kHz)" - description: "Testing DeepSpeech for Linux/AMD64 on Python v3.7, CPU only, optimized version (8kHz)" + 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)" 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 3b74068b..d43e9c0b 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: "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)" + 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)" 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 b3970009..154c376a 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: "DeepSpeech OSX AMD64 TFLite Python v3.7 tests (16kHz)" - description: "Testing DeepSpeech for OSX/AMD64 on Python v3.7 TFLite, optimized version (16kHz)" + 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)" 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 9f4e7ea9..8a2e0a85 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: "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)" + 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)" 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 38a5b6d5..2c78ca39 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: "DeepSpeech Linux AMD64 TFLite Python v3.7 tests (16kHz)" - description: "Testing DeepSpeech for Linux/AMD64 on Python v3.7 TFLite, optimized version (16kHz)" + 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)" 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 e5949505..0a825609 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: "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)" + 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)" 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 95468dcc..479e13ee 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: "DeepSpeech Windows AMD64 TFLite Python v3.7 tests (16kHz)" - description: "Testing DeepSpeech for Windows/AMD64 on Python v3.7 TFLite, optimized version (16kHz)" + 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)" 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 28787949..de9096b5 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: "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)" + 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)" 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 66134a14..28ef0d5b 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: "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)" + 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)" diff --git a/taskcluster/test-python_37m-armbian-arm64-opt.yml b/taskcluster/test-python_37m-armbian-arm64-opt.yml index 2dc6d511..81c6ce66 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: "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" + 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" diff --git a/taskcluster/test-python_37m-armbian-arm64-prod-opt.yml b/taskcluster/test-python_37m-armbian-arm64-prod-opt.yml index 7ad2c71a..5751044a 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: "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" + 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" diff --git a/taskcluster/test-python_37m-raspbian-rpi3-opt.yml b/taskcluster/test-python_37m-raspbian-rpi3-opt.yml index af9205e0..09027fd0 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: "DeepSpeech Raspbian RPi3/ARMv7 CPU Python v3.7 tests" - description: "Testing DeepSpeech for Raspbian RPi3/ARMv7 on Python v3.7, CPU only, optimized version" + 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" diff --git a/taskcluster/test-python_37m-raspbian-rpi3-prod-opt.yml b/taskcluster/test-python_37m-raspbian-rpi3-prod-opt.yml index 4c9d00f7..05dd58dd 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: "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" + 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" diff --git a/taskcluster/test-python_38-darwin-amd64-opt.yml b/taskcluster/test-python_38-darwin-amd64-opt.yml index 855d71d7..eacd2cdb 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: "DeepSpeech OSX AMD64 CPU Python v3.8 tests" - description: "Testing DeepSpeech for OSX/AMD64 on Python v3.8.1:m, CPU only, optimized version" + 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" diff --git a/taskcluster/test-python_38-win-amd64-opt.yml b/taskcluster/test-python_38-win-amd64-opt.yml index 4100f06a..62358c4a 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: "DeepSpeech Windows AMD64 CPU Python v3.8 tests" - description: "Testing DeepSpeech for Windows/AMD64 on Python v3.8, CPU only, optimized version" + 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" diff --git a/taskcluster/test-python_38-win-cuda-opt.yml b/taskcluster/test-python_38-win-cuda-opt.yml index 73140672..54cf356c 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: "DeepSpeech Windows AMD64 CUDA Python v3.8 tests" - description: "Testing DeepSpeech for Windows/AMD64 on Python v3.8, CUDA, optimized version" + 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" diff --git a/taskcluster/test-python_38_16k-linux-amd64-opt.yml b/taskcluster/test-python_38_16k-linux-amd64-opt.yml index d58770b9..640b4614 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: "DeepSpeech Linux AMD64 CPU Python v3.8 tests (16kHz)" - description: "Testing DeepSpeech for Linux/AMD64 on Python v3.8, CPU only, optimized version (16kHz)" + 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)" 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 dd3c8475..c33863d1 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: "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)" + 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)" diff --git a/taskcluster/test-python_38_8k-linux-amd64-opt.yml b/taskcluster/test-python_38_8k-linux-amd64-opt.yml index 54804a9a..28d8ece5 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: "DeepSpeech Linux AMD64 CPU Python v3.8 tests (8kHz)" - description: "Testing DeepSpeech for Linux/AMD64 on Python v3.8, CPU only, optimized version (8kHz)" + 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)" 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 2c26505c..2f42632e 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: "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)" + 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)" 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 8cd55f37..9fbe9cbc 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: "DeepSpeech OSX AMD64 TFLite Python v3.8 tests (16kHz)" - description: "Testing DeepSpeech for OSX/AMD64 on Python v3.8 TFLite, optimized version (16kHz)" + 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)" 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 7fa393a8..26ff3c35 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: "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)" + 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)" 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 0700f222..e0b76a72 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: "DeepSpeech Linux AMD64 TFLite Python v3.8 tests (16kHz)" - description: "Testing DeepSpeech for Linux/AMD64 on Python v3.8 TFLite, optimized version (16kHz)" + 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)" 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 c2b666b2..6acbf49b 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: "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)" + 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)" 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 d00c345c..11cd66d5 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: "DeepSpeech Windows AMD64 TFLite Python v3.8 tests (16kHz)" - description: "Testing DeepSpeech for Windows/AMD64 on Python v3.8 TFLite, optimized version (16kHz)" + 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)" 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 6660d0b2..dbe2d582 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: "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)" + 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)" 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 44d281df..36bfa27b 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: "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)" + 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)" diff --git a/taskcluster/test-singleshotinference-linux-amd64-py36m-opt.yml b/taskcluster/test-singleshotinference-linux-amd64-py36m-opt.yml index c84c5c4b..6d111517 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: "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" + 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" 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 65273efc..fca4cba7 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: "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" + 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" 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 95605532..043abc97 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: "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" + 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" 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 f6d13ebb..b93ad43b 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: "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" + 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" 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 a81b314f..24c6894f 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: "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" + 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" 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 326b735c..8141ffae 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: "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" + 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" 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 dc169b6b..21ec60ff 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: "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" + 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" 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 a8d9fca3..63997043 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: "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" + 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" 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 3cfdf99d..5cf9892b 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: "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" + 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" 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 37ecd686..3b8f93a6 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: "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" + 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" 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 7a74389a..4669812f 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: "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" + 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" 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 39d23d29..62b6e371 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: "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" + 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" 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 e89afa20..87735cdb 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: "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" + 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" 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 a63b434b..c60e971b 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: "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" + 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" diff --git a/taskcluster/test-training_16k-linux-amd64-py35m-opt.yml b/taskcluster/test-training_16k-linux-amd64-py35m-opt.yml index b7527391..6e94f2ac 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: "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" + 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" diff --git a/taskcluster/test-training_16k-linux-amd64-py36m-opt.yml b/taskcluster/test-training_16k-linux-amd64-py36m-opt.yml index b8a43afc..972a9a8b 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: "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" + 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" diff --git a/taskcluster/test-training_16k-linux-amd64-py37m-opt.yml b/taskcluster/test-training_16k-linux-amd64-py37m-opt.yml index 514c3bda..72f50ee3 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: "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" + 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" diff --git a/taskcluster/test-training_8k-linux-amd64-py36m-opt.yml b/taskcluster/test-training_8k-linux-amd64-py36m-opt.yml index 3e3a10a9..0add0105 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: "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" + 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" diff --git a/taskcluster/test-training_8k-linux-amd64-py37m-opt.yml b/taskcluster/test-training_8k-linux-amd64-py37m-opt.yml index b2f9c9ab..ef6d54df 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: "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" + 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" diff --git a/taskcluster/test-transfer-linux-amd64-py36m-opt.yml b/taskcluster/test-transfer-linux-amd64-py36m-opt.yml index 85e5fe8c..e5b08e94 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: "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" + 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" diff --git a/taskcluster/win-amd64-cpu-opt.yml b/taskcluster/win-amd64-cpu-opt.yml index ef903867..8aebf5ba 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: "DeepSpeech Windows AMD64 CPU" - description: "Building DeepSpeech for Windows AMD64, CPU only, optimized version" + name: "Mozilla Voice STT Windows AMD64 CPU" + description: "Building Mozilla Voice STT for Windows AMD64, CPU only, optimized version" diff --git a/taskcluster/win-amd64-ctc-opt.yml b/taskcluster/win-amd64-ctc-opt.yml index 0a0f4703..3f464a1b 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: "DeepSpeech CTC Decoder Windows AMD64 CPU" - description: "Building DeepSpeech CTC Decoder for Windows/AMD64, CPU only, optimized version" + name: "Mozilla Voice STT CTC Decoder Windows AMD64 CPU" + description: "Building Mozilla Voice STT 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 61961a2b..6855533e 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: "DeepSpeech Windows AMD64 CUDA" - description: "Building DeepSpeech for Windows AMD64, CUDA-enabled, optimized version" + name: "Mozilla Voice STT Windows AMD64 CUDA" + description: "Building Mozilla Voice STT for Windows AMD64, CUDA-enabled, optimized version" diff --git a/taskcluster/win-amd64-tflite-opt.yml b/taskcluster/win-amd64-tflite-opt.yml index bafe4b3f..1717211d 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: "DeepSpeech Windows AMD64 TFLite" - description: "Building DeepSpeech for Windows AMD64, TFLite, optimized version" + name: "Mozilla Voice STT Windows AMD64 TFLite" + description: "Building Mozilla Voice STT for Windows AMD64, TFLite, optimized version"