This commit is contained in:
Alexandre Lissy 2020-08-12 13:45:16 +02:00
Родитель 3a8c45cb61
Коммит 9bca7a9044
289 изменённых файлов: 584 добавлений и 584 удалений

Просмотреть файл

@ -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:

Просмотреть файл

@ -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

Просмотреть файл

@ -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 <http://deepspeech.readthedocs.io/?badge=latest>`_.
For the latest release, including pre-trained models and checkpoints, `see the latest release on GitHub <https://github.com/mozilla/DeepSpeech/releases/latest>`_.
For the latest release, including pre-trained models and checkpoints, `see the latest release on GitHub <https://github.com/mozilla/STT/releases/latest>`_.
For contribution guidelines, see `CONTRIBUTING.rst <CONTRIBUTING.rst>`_.

Просмотреть файл

@ -5,8 +5,8 @@ Contact/Getting Help
There are several ways to contact us or to get help:
#. `Discourse Forums <https://discourse.mozilla.org/c/deep-speech>`_ - The `Deep Speech category on Discourse <https://discourse.mozilla.org/c/deep-speech>`_ 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 <https://github.com/mozilla/deepspeech/issues>`_ to see if there is an existing issue about your problem.
#. `Discourse Forums <https://discourse.mozilla.org/c/mozilla-voice-stt>`_ - The `Deep Speech category on Discourse <https://discourse.mozilla.org/c/mozilla-voice-stt>`_ 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 <https://github.com/mozilla/STT/issues>`_ to see if there is an existing issue about your problem.
#. `Matrix chat <https://chat.mozilla.org/#/room/#machinelearning:mozilla.org>`_ - If your question is not addressed by either the `FAQ <https://github.com/mozilla/DeepSpeech/wiki#frequently-asked-questions>`_ or `Discourse Forums <https://discourse.mozilla.org/c/deep-speech>`_\ , you can contact us on the ``#machinelearning`` channel on `Mozilla Matrix <https://chat.mozilla.org/#/room/#machinelearning:mozilla.org>`_\ ; people there can try to answer/help
#. `Matrix chat <https://chat.mozilla.org/#/room/#machinelearning:mozilla.org>`_ - If your question is not addressed by either the `FAQ <https://github.com/mozilla/STT/wiki#frequently-asked-questions>`_ or `Discourse Forums <https://discourse.mozilla.org/c/mozilla-voice-stt>`_\ , you can contact us on the ``#machinelearning`` channel on `Mozilla Matrix <https://chat.mozilla.org/#/room/#machinelearning:mozilla.org>`_\ ; people there can try to answer/help
#. `Create a new issue <https://github.com/mozilla/deepspeech/issues>`_ - 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 <https://github.com/mozilla/STT/issues>`_ - 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.

Просмотреть файл

@ -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/

Просмотреть файл

@ -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 <https://kheafield.com/code/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 <https://github.com/mozilla/DeepSpeech/releases/latest>`_, 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 <https://github.com/mozilla/STT/releases/latest>`_, but modifying them to use different datasets or language model construction parameters should be simple.
Decoding modes

Просмотреть файл

@ -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 <https://github.com/mozilla/DeepSpeech/releases/latest>`_. 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 <https://github.com/mozilla/STT/releases/latest>`_. 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

Просмотреть файл

@ -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
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

Просмотреть файл

@ -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 <https://github.com/mozilla/DeepSpeech/releases>`_. 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 <https://github.com/mozilla/STT/releases>`_. 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 <https://www.tensorflow.org/lite/>`_. 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 <https://github.com/mozilla/DeepSpeech/releases>`_ to find which GPUs are supported. Please ensure you have the required `CUDA dependency <#cuda-dependency>`_.
See the `release notes <https://github.com/mozilla/STT/releases>`_ 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 <https://github.com/mozilla/DeepSpeech/releases>`_ to find which GPUs are supported. Please ensure you have the required `CUDA dependency <#cuda-dependency>`_.
See the `release notes <https://github.com/mozilla/STT/releases>`_ to find which GPUs are supported. Please ensure you have the required `CUDA dependency <#cuda-dependency>`_.
See the :ref:`TypeScript client <js-api-example>` 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.

Просмотреть файл

@ -202,5 +202,5 @@ texinfo_documents = [
# Example configuration for intersphinx: refer to the Python standard library.
intersphinx_mapping = {'https://docs.python.org/': None}
extlinks = {'github': ('https://github.com/mozilla/DeepSpeech/blob/v{}/%s'.format(release),
extlinks = {'github': ('https://github.com/mozilla/STT/blob/v{}/%s'.format(release),
'%s')}

Просмотреть файл

@ -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 <usage-docs>`. For the latest release, including pre-trained models and checkpoints, `see the GitHub releases page <https://github.com/mozilla/DeepSpeech/releases/latest>`_.
A pre-trained English model is available for use and can be downloaded following the instructions in :ref:`the usage docs <usage-docs>`. For the latest release, including pre-trained models and checkpoints, `see the GitHub releases page <https://github.com/mozilla/STT/releases/latest>`_.
Quicker inference can be performed using a supported NVIDIA GPU on Linux. See the `release notes <https://github.com/mozilla/DeepSpeech/releases/latest>`_ 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 <https://github.com/mozilla/STT/releases/latest>`_ 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 <cuda-deps>`.

Просмотреть файл

@ -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/ <https://github.com/mozilla/DeepSpeech/tree/master/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/ <https://github.com/mozilla/STT/tree/master/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.

Просмотреть файл

@ -7,7 +7,7 @@
<authors>Mozilla</authors>
<owners>Mozilla</owners>
<license type="expression">MPL-2.0</license>
<projectUrl>http://github.com/mozilla/DeepSpeech</projectUrl>
<projectUrl>http://github.com/mozilla/STT</projectUrl>
<requireLicenseAcceptance>false</requireLicenseAcceptance>
<description>A library for running inference with a Mozilla Voice STT model</description>
<copyright>Copyright (c) 2019 Mozilla Corporation</copyright>

Просмотреть файл

@ -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).

Просмотреть файл

@ -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'
}
}

Просмотреть файл

@ -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",

Просмотреть файл

@ -75,12 +75,12 @@ def main():
package_dir={'mozilla_voice_stt': '.'},
cmdclass={'build': BuildExtFirst},
license='MPL-2.0',
url='https://github.com/mozilla/DeepSpeech',
url='https://github.com/mozilla/STT',
project_urls={
'Documentation': 'https://github.com/mozilla/DeepSpeech/tree/v{}#project-deepspeech'.format(project_version),
'Tracker': 'https://github.com/mozilla/DeepSpeech/issues',
'Repository': 'https://github.com/mozilla/DeepSpeech/tree/v{}'.format(project_version),
'Discussions': 'https://discourse.mozilla.org/c/deep-speech',
'Documentation': 'https://github.com/mozilla/STT/tree/v{}#project-deepspeech'.format(project_version),
'Tracker': 'https://github.com/mozilla/STT/issues',
'Repository': 'https://github.com/mozilla/STT/tree/v{}'.format(project_version),
'Discussions': 'https://discourse.mozilla.org/c/mozilla-voice-stt',
},
ext_modules=[ds_ext],
py_modules=['mozilla_voice_stt', 'mozilla_voice_stt.client', 'mozilla_voice_stt.impl'],

Просмотреть файл

@ -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)

Просмотреть файл

@ -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;

Просмотреть файл

@ -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;

Просмотреть файл

@ -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.

Просмотреть файл

@ -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"

Просмотреть файл

@ -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"

Просмотреть файл

@ -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"

Просмотреть файл

@ -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"

Просмотреть файл

@ -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"

Просмотреть файл

@ -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"

Просмотреть файл

@ -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"

Просмотреть файл

@ -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"

Просмотреть файл

@ -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"

Просмотреть файл

@ -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"

Просмотреть файл

@ -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"

Просмотреть файл

@ -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"

Просмотреть файл

@ -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"

Просмотреть файл

@ -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"

Просмотреть файл

@ -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"

Просмотреть файл

@ -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"

Просмотреть файл

@ -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"

Просмотреть файл

@ -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"

Просмотреть файл

@ -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"

Просмотреть файл

@ -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"

Просмотреть файл

@ -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"

Просмотреть файл

@ -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"

Просмотреть файл

@ -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"

Просмотреть файл

@ -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"

Просмотреть файл

@ -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"

Просмотреть файл

@ -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"

Просмотреть файл

@ -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"

Просмотреть файл

@ -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"

Просмотреть файл

@ -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"

Просмотреть файл

@ -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"

Просмотреть файл

@ -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"

Просмотреть файл

@ -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"

Просмотреть файл

@ -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"

Просмотреть файл

@ -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"

Просмотреть файл

@ -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"

Просмотреть файл

@ -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"

Просмотреть файл

@ -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"

Просмотреть файл

@ -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"

Просмотреть файл

@ -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"

Просмотреть файл

@ -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"

Просмотреть файл

@ -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"

Просмотреть файл

@ -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"

Просмотреть файл

@ -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"

Просмотреть файл

@ -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"

Просмотреть файл

@ -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"

Просмотреть файл

@ -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"

Просмотреть файл

@ -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"

Просмотреть файл

@ -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"

Просмотреть файл

@ -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"

Просмотреть файл

@ -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"

Просмотреть файл

@ -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"

Просмотреть файл

@ -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)"

Просмотреть файл

@ -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)"

Просмотреть файл

@ -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)"

Просмотреть файл

@ -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)"

Просмотреть файл

@ -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)"

Просмотреть файл

@ -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)"

Просмотреть файл

@ -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)"

Просмотреть файл

@ -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)"

Просмотреть файл

@ -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)"

Просмотреть файл

@ -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)"

Просмотреть файл

@ -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)"

Просмотреть файл

@ -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"

Просмотреть файл

@ -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"

Просмотреть файл

@ -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"

Просмотреть файл

@ -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)"

Просмотреть файл

@ -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)"

Просмотреть файл

@ -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"

Просмотреть файл

@ -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"

Просмотреть файл

@ -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)"

Просмотреть файл

@ -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)"

Просмотреть файл

@ -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"

Просмотреть файл

@ -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"

Просмотреть файл

@ -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)"

Просмотреть файл

@ -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)"

Просмотреть файл

@ -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"

Просмотреть файл

@ -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"

Просмотреть файл

@ -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)"

Просмотреть файл

@ -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)"

Некоторые файлы не были показаны из-за слишком большого количества измененных файлов Показать больше