diff --git a/ISSUE_TEMPLATE.md b/ISSUE_TEMPLATE.md index 08345c3ad9..5b42ee748f 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 45e950fec0..e7f08eb84d 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 2b4729c9c1..68b856b036 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 d72a7418a1..ea93626e82 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 479cbe6830..fccec9e832 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 9f2381976c..1c145e93f4 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 841c857761..50a8db603c 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 be0b3c8d32..e3e9480cfd 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 83bcc32107..095a61d108 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 228575144d..2a62a07c95 100644 --- a/doc/conf.py +++ b/doc/conf.py @@ -202,5 +202,5 @@ # 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 b9657df199..5b76358f01 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 26db5b96ce..5db9eb286c 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 93a6f6ea16..5192578793 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 89ebc59431..8554ff50f2 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 2906d06e96..02a71d68d4 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 6e9599e52d..47aa45b160 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 e0f0ca138c..72122f8bd4 100755 --- a/native_client/python/setup.py +++ b/native_client/python/setup.py @@ -75,12 +75,12 @@ def libs_split(a): 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 bd46074550..d583ec9338 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 9d8d9ddbac..4daeffd07e 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 0d78598640..53f3fc32d0 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 22775d3869..b617fee1d0 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 69e513e191..a541a1be59 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 11c7901f22..801a4e9b4c 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 2b3d9cc365..b757d0ef70 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 4ff8c8c577..339dcbf83f 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 2b894c4a67..0a9115e4d8 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 faf981abeb..ea5a6c21c4 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 031159ca2b..5fc23734bc 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 bf00ffbde0..2015183032 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 407ab64602..26ded8f5ca 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 e51eb88efa..0c5cc76b06 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 0282fc80e0..582cfacdd0 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 c3a4257095..0cfd0a9681 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 6b00c1d501..18b985b9e4 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 24e81f34de..112402079e 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 98e825a9f8..05638210e4 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 5977350902..8bb0c8fd20 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 36c8a3cc56..3a2983bddb 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 2ec849f078..4ed666d5fc 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 ebf891af82..d79ccd12dc 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 a7cdfd480c..f72b13ae41 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 c5c4eecab2..f368310ac7 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 5542ef4396..ee87b146e1 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 98dd581cd7..f127b1e044 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 5809e1a1f5..71d0065a39 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 ac77ea80e1..3c17eeb8b8 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 3b518b8781..cfebf20486 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 d301cf4648..114591c13c 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 9b83788e90..043b513625 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 5eb88618f9..ba640c7c80 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 dbf19c6c75..e0513d862f 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 bcb838c435..f9cb1cb45f 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 26c65b5ed6..1f26a9680f 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 4cad0f8823..1f920057c9 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 74388b5210..b81426ba3d 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 d66d08a1f8..6af462b42d 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 89f414d4f4..b063e20053 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 0720067ca0..8b7675d80b 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 988384c553..021c65af3e 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 db9cd7725e..d7ca04ba73 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 a682e96052..f839d40f7d 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 56132961d0..32b4e4daa8 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 62f33cf82c..ae90c482cc 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 e1d790f7db..8bdd9f6643 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 efabececd6..67e1425573 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 12fed734c6..3838acfe41 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 e05640d10b..aa092bfa11 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 f8634afd62..e63ef78605 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 c81bba47e9..e14b0a20be 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 ae002cef2d..6f7d36e9e8 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 fa8c5f8dc4..062697b602 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 c50192318c..c2a7dff5bf 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 919daa0d1b..8dce52dbf2 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 45a8b3b413..0bba4b96e2 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 35d9583894..6d7b47fdd5 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 1c0cf1568e..8275dd9c0a 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 7a2c89fb2d..faa69aed28 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 6685832a22..bea8dc328b 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 be050c6390..7d5517eb9c 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 bead60462f..f2714aa068 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 15abcf3be0..e2abd09ee4 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 e0c7347688..5ca7f28bf7 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 fc7bb2a22a..738edf9c4b 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 91cf9fc2c8..5f33aeadfe 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 8c2e3e163b..f2d0d119ad 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 dca6081391..dfe9ca5e49 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 8b36286431..668aae6f53 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 5ecd4ed4f1..6a58ca5c0c 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 08c02306d9..e2bc205030 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 10556ebc5e..5ee205053c 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 d8a9d7efb6..38a61e3fc5 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 b7f5ca3f2d..3a1350cf58 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 3d0bf2deb8..f8e43defaf 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 a27e2e58d4..7e24a5a2b8 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 dcbd5799d3..7e238f2dec 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 45c965abd5..88767b8699 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 8f6340bbac..23c27ac504 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 e0a8ccbe64..a467bd13a7 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 fb793d8d3c..e68759fd82 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 5562c0a9fc..b7a4d1002b 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 7c2fdfcdf4..b6012524ea 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 da3c558645..60a80f4a6e 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 ffcc3000ce..f6f3374641 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 4e5976aa5c..da32a8bf90 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 efd57f6964..18f53ba937 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 5c33a7671b..9a246fe280 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 579fce5964..4ae666b133 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 e8ff0815ec..a502b22ad8 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 d086e347bd..4f5e92630d 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 ac35c00123..c1bb92a58c 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 5d2531f05a..3348316b08 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 2c9ce143e8..fd02896646 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 66bd7b1f40..dc67241444 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 fe676063da..3ad246a4e1 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 9059540294..dde11f7602 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 0b6d51f361..4e4b713b68 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 957a028150..875d5ceeda 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 4de742c39c..4c3dcee016 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 3a1a7b298b..f1de63e3c5 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 be83c3b33c..7ae1e02ded 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 beb9cefab7..6e627bb222 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 3b16ef0ed8..97083a3031 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 3a547a7fe2..c498f8a6b3 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 e9ab02da10..b6bb64e477 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 e2521f4b74..c7b408fff8 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 dfa3023f18..006554e267 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 df78968343..f5ce8e3f41 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 c23664d7c7..ee7fd37efc 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 327bf6859d..3e053fe402 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 8c3cf5ac7b..23ca1a7fc2 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 f1ea4abdf4..fa401723ff 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 d18675918b..c9b3461c93 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 b1b03b0d14..20d22fdbd3 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 7f6d104cde..4b496d0590 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 6e09e3c25d..05aa27b672 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 1f8513f50e..56305a0dfa 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 66736a744a..253d7bfe15 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 002ad53e58..81d2b16dd7 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 c9cf01788f..ba54a35899 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 f7af3d3b1f..b6b11afce7 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 45a6535d94..5a81892331 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 570f130043..aface8aeeb 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 049609a914..fb0f3d12a4 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 cb27d005b5..8a917df9cf 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 9f4cd2b06d..ae3620e25f 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 554b093027..bccea71569 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 7a69bfb891..3f29bbacdb 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 d48ac49c58..ecc69818bb 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 c459fbd057..67760067c0 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 db647ce0cd..7dcdc00c7b 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 7ec1144190..dda38dc68c 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 f49dceac93..3ff7d53709 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 12baaa1746..1c939087ce 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 66968b5104..9d2d24270f 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 26c841159c..c8caeb00f6 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 c8cdefeb5e..f3f6924d73 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 d4be2fff58..1cb0ebbd79 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 a5a6bd55e6..2c49612be3 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 3b84e2491d..0dd42e5876 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 cadffe014d..c8f4b06e21 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 3823c5ee08..99ecf187ab 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 37a6a7ec8e..2adc934e3c 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 b40d890423..49c09ec543 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 4e0669a055..f8bb8f1ad2 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 d400b851a4..31bcde6c44 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 75b532caff..2af1b0f259 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 f17aab03fc..8304e0aef3 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 c9a9265207..fb5b22bc7f 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 ad2df9ba5a..8e0a5e35ec 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 d95476b7a6..f68a64ac34 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 5fccf9fe5a..63555bbf50 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 9842e811dc..53dac5f89a 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 fa6c0b0659..1adc5f97b2 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 d9b6818a73..902f8b8900 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 02d0a11e64..b493edf2de 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 47f01a89bf..048ffa0709 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 52c24c8fcc..e19f958903 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 11d64c56f8..ddb678b9d8 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 c88bf2aca7..562158574b 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 f78225602d..a450473109 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 499462a4a5..bf544f83c7 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 7962d62d31..4fd2f73b00 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 db09c287a3..0c85f1c3dd 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 8cf3f96f91..c74ed9b774 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 22ab61958c..6c5025f17a 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 57a4397f56..e4ac782d36 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 73c4dba371..52aedebc56 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 64e1e7cab1..50d1799806 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 4f0699ee39..0af337c7b3 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 f1dcf1f6da..ccfc2be50f 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 f88a75c637..427d7712d8 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 1f2cf18b48..b0ce749a17 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 b1c613b3fe..10e74fe03d 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 17d86a4eb4..36d35075f5 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 f55df62312..2d71b0d5fc 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 b3557f66ca..ad224c7d15 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 809e8859ef..dcd2e5af7d 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 511ba1e5c2..0a389fa617 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 6debe6674a..8190cfcc4d 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 3c7a9cbfff..ee9b9e5689 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 9d5aa2f186..1d89e4a110 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 6fb29de1d0..f7b7ed1004 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 bd7de4d9de..bc5fc3d78c 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 733afc8f7e..0b60871f9f 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 f2721d6c43..86dd63dd74 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 73ae70d8ee..3967dbee32 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 f5a0831f7b..05426a97ed 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 0c54f0b05a..29684c0248 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 67d5371a20..2e4e5d0791 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 2e8ec800fa..2178c76d0c 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 c43b9f0390..3cef061865 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 a526b96675..54cb0f1c33 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 dad87b885f..2f85960b69 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 d639a54fc3..ab857a5ce4 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 0dee11b977..b838852587 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 a05a6292ef..64542ad2d6 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 f328860010..b4c14ab4cc 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 05603bd560..0371a82503 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 b656b26d6b..5f7d659f52 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 7675667a99..577bd3c842 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 996abb290d..da03f76198 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 640f6a1bdc..9cb7092a2b 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 d13a0e0c92..0b7e5bb154 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 14ca3621b7..1a5b6523dd 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 176975f920..fbfaf6b5c2 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 b1c333e522..2b99f5e270 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 36d1c97980..3a7bd615d4 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 567ac3f52b..2f630a574f 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 eddde81b9e..fc8781d73c 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 061bcaf950..c742e59d66 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 2ebf23c239..16e680bfe3 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 a8f02424cc..b65c7b6b58 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 365e21d2ac..40cca09def 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 551f761868..4b0fd58bf4 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 13d63d59af..3130f06fa5 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 a10a06a4ac..855ea364a6 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 a232cbe266..9d92469535 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 1ff9a651b0..d14bd3d414 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 82609a4fcb..ef2c1a7313 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 3b74068b37..d43e9c0b8d 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 b397000932..154c376af4 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 9f4e7ea938..8a2e0a853d 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 38a5b6d5a5..2c78ca397d 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 e5949505a3..0a825609d9 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 95468dccc7..479e13ee75 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 2878794983..de9096b52d 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 66134a14ca..28ef0d5b39 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 2dc6d51102..81c6ce66ac 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 7ad2c71aa6..5751044aef 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 af9205e04c..09027fd07d 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 4c9d00f76a..05dd58dd54 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 855d71d754..eacd2cdb93 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 4100f06a2b..62358c4a2d 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 7314067228..54cf356cc0 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 d58770b9d7..640b46140f 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 dd3c8475fe..c33863d110 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 54804a9a2a..28d8ece598 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 2c26505c1f..2f42632ea2 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 8cd55f37f0..9fbe9cbc6b 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 7fa393a8e6..26ff3c35cf 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 0700f22202..e0b76a7206 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 c2b666b2f9..6acbf49bf5 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 d00c345c1b..11cd66d5cd 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 6660d0b205..dbe2d582ba 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 44d281df5b..36bfa27b77 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 c84c5c4ba1..6d11151787 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 65273efc88..fca4cba7c3 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 9560553244..043abc977d 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 f6d13ebbff..b93ad43b39 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 a81b314f7a..24c6894f6d 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 326b735cdc..8141ffae12 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 dc169b6b6a..21ec60ff85 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 a8d9fca386..6399704367 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 3cfdf99d41..5cf9892b32 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 37ecd68645..3b8f93a60e 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 7a74389ac6..4669812ff1 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 39d23d291f..62b6e3719c 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 e89afa20b6..87735cdb47 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 a63b434bbf..c60e971ba3 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 b7527391a9..6e94f2ac9c 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 b8a43afcdb..972a9a8b72 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 514c3bdaaa..72f50ee3dd 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 3e3a10a94e..0add01054c 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 b2f9c9ab9b..ef6d54dff0 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 85e5fe8c87..e5b08e9418 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 ef90386773..8aebf5bab1 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 0a0f4703e6..3f464a1b5c 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 61961a2b74..6855533ec7 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 bafe4b3f82..1717211d6a 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"