Skip to content

Commit f2e9c85

Browse files
committed
Bump VERSION to 0.9.3
1 parent 056f5a4 commit f2e9c85

File tree

4 files changed

+13
-13
lines changed

4 files changed

+13
-13
lines changed

doc/TRAINING.rst

+2-2
Original file line numberDiff line numberDiff line change
@@ -15,11 +15,11 @@ Prerequisites for training a model
1515
Getting the training code
1616
^^^^^^^^^^^^^^^^^^^^^^^^^
1717

18-
Clone the latest released stable branch from Github (e.g. 0.9.2, check `here <https://github.com/mozilla/DeepSpeech/releases>`_):
18+
Clone the latest released stable branch from Github (e.g. 0.9.3, check `here <https://github.com/mozilla/DeepSpeech/releases>`_):
1919

2020
.. code-block:: bash
2121
22-
git clone --branch v0.9.2 https://github.com/mozilla/DeepSpeech
22+
git clone --branch v0.9.3 https://github.com/mozilla/DeepSpeech
2323
2424
If you plan on committing code or you want to report bugs, please use the master branch.
2525

doc/USING.rst

+4-4
Original file line numberDiff line numberDiff line change
@@ -37,8 +37,8 @@ If you want to use the pre-trained English model for performing speech-to-text,
3737

3838
.. code-block:: bash
3939
40-
wget https://github.com/mozilla/DeepSpeech/releases/download/v0.9.2/deepspeech-0.9.2-models.pbmm
41-
wget https://github.com/mozilla/DeepSpeech/releases/download/v0.9.2/deepspeech-0.9.2-models.scorer
40+
wget https://github.com/mozilla/DeepSpeech/releases/download/v0.9.3/deepspeech-0.9.3-models.pbmm
41+
wget https://github.com/mozilla/DeepSpeech/releases/download/v0.9.3/deepspeech-0.9.3-models.scorer
4242
4343
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 ``deepspeech``. These files are also compatible with CUDA enabled clients and language bindings. These packages are usually called ``deepspeech-gpu``. 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 ``deepspeech-tflite``. On Android and Raspberry Pi, we only publish TensorFlow Lite enabled packages, and they are simply called ``deepspeech``. You can see a full list of supported platforms and which TensorFlow runtime is supported at :ref:`supported-platforms-inference`.
4444

@@ -136,7 +136,7 @@ Note: the following command assumes you `downloaded the pre-trained model <#gett
136136

137137
.. code-block:: bash
138138
139-
deepspeech --model deepspeech-0.9.2-models.pbmm --scorer deepspeech-0.9.2-models.scorer --audio my_audio_file.wav
139+
deepspeech --model deepspeech-0.9.3-models.pbmm --scorer deepspeech-0.9.3-models.scorer --audio my_audio_file.wav
140140
141141
The ``--scorer`` argument is optional, and represents an external language model to be used when transcribing the audio.
142142

@@ -200,7 +200,7 @@ Note: the following command assumes you `downloaded the pre-trained model <#gett
200200

201201
.. code-block:: bash
202202
203-
./deepspeech --model deepspeech-0.9.2-models.pbmm --scorer deepspeech-0.9.2-models.scorer --audio audio_input.wav
203+
./deepspeech --model deepspeech-0.9.3-models.pbmm --scorer deepspeech-0.9.3-models.scorer --audio audio_input.wav
204204
205205
See the help output with ``./deepspeech -h`` for more details.
206206

doc/index.rst

+6-6
Original file line numberDiff line numberDiff line change
@@ -20,15 +20,15 @@ To install and use DeepSpeech all you have to do is:
2020
pip3 install deepspeech
2121
2222
# Download pre-trained English model files
23-
curl -LO https://github.com/mozilla/DeepSpeech/releases/download/v0.9.2/deepspeech-0.9.2-models.pbmm
24-
curl -LO https://github.com/mozilla/DeepSpeech/releases/download/v0.9.2/deepspeech-0.9.2-models.scorer
23+
curl -LO https://github.com/mozilla/DeepSpeech/releases/download/v0.9.3/deepspeech-0.9.3-models.pbmm
24+
curl -LO https://github.com/mozilla/DeepSpeech/releases/download/v0.9.3/deepspeech-0.9.3-models.scorer
2525
2626
# Download example audio files
27-
curl -LO https://github.com/mozilla/DeepSpeech/releases/download/v0.9.2/audio-0.9.2.tar.gz
28-
tar xvf audio-0.9.2.tar.gz
27+
curl -LO https://github.com/mozilla/DeepSpeech/releases/download/v0.9.3/audio-0.9.3.tar.gz
28+
tar xvf audio-0.9.3.tar.gz
2929
3030
# Transcribe an audio file
31-
deepspeech --model deepspeech-0.9.2-models.pbmm --scorer deepspeech-0.9.2-models.scorer --audio audio/2830-3980-0043.wav
31+
deepspeech --model deepspeech-0.9.3-models.pbmm --scorer deepspeech-0.9.3-models.scorer --audio audio/2830-3980-0043.wav
3232
3333
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>`_.
3434

@@ -44,7 +44,7 @@ Quicker inference can be performed using a supported NVIDIA GPU on Linux. See th
4444
pip3 install deepspeech-gpu
4545
4646
# Transcribe an audio file.
47-
deepspeech --model deepspeech-0.9.2-models.pbmm --scorer deepspeech-0.9.2-models.scorer --audio audio/2830-3980-0043.wav
47+
deepspeech --model deepspeech-0.9.3-models.pbmm --scorer deepspeech-0.9.3-models.scorer --audio audio/2830-3980-0043.wav
4848
4949
Please ensure you have the required :ref:`CUDA dependencies <cuda-inference-deps>`.
5050

training/deepspeech_training/VERSION

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
0.9.2
1+
0.9.3

0 commit comments

Comments
 (0)