Skip to content
This repository was archived by the owner on Jun 19, 2025. It is now read-only.

Commit ab8bd3e

Browse files
committed
Bump VERSION to 0.9.1
1 parent 7cdb5b1 commit ab8bd3e

File tree

5 files changed

+15
-15
lines changed

5 files changed

+15
-15
lines changed

doc/TRAINING.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,11 +12,11 @@ Prerequisites for training a model
1212
Getting the training code
1313
^^^^^^^^^^^^^^^^^^^^^^^^^
1414

15-
Clone the latest released stable branch from Github (e.g. 0.8.2, check `here <https://github.com/mozilla/DeepSpeech/releases>`_):
15+
Clone the latest released stable branch from Github (e.g. 0.9.1, check `here <https://github.com/mozilla/DeepSpeech/releases>`_):
1616

1717
.. code-block:: bash
1818
19-
git clone --branch v0.8.2 https://github.com/mozilla/DeepSpeech
19+
git clone --branch v0.9.1 https://github.com/mozilla/DeepSpeech
2020
2121
If you plan on committing code or you want to report bugs, please use the master branch.
2222

doc/USING.rst

Lines changed: 4 additions & 4 deletions
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.7.4/deepspeech-0.7.4-models.pbmm
41-
wget https://github.com/mozilla/DeepSpeech/releases/download/v0.7.4/deepspeech-0.7.4-models.scorer
40+
wget https://github.com/mozilla/DeepSpeech/releases/download/v0.9.1/deepspeech-0.9.1-models.pbmm
41+
wget https://github.com/mozilla/DeepSpeech/releases/download/v0.9.1/deepspeech-0.9.1-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.7.4-models.pbmm --scorer deepspeech-0.7.4-models.scorer --audio my_audio_file.wav
139+
deepspeech --model deepspeech-0.9.1-models.pbmm --scorer deepspeech-0.9.1-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.7.4-models.pbmm --scorer deepspeech-0.7.4-models.scorer --audio audio_input.wav
203+
./deepspeech --model deepspeech-0.9.1-models.pbmm --scorer deepspeech-0.9.1-models.scorer --audio audio_input.wav
204204
205205
See the help output with ``./deepspeech -h`` for more details.
206206

doc/index.rst

Lines changed: 6 additions & 6 deletions
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.7.4/deepspeech-0.7.4-models.pbmm
24-
curl -LO https://github.com/mozilla/DeepSpeech/releases/download/v0.7.4/deepspeech-0.7.4-models.scorer
23+
curl -LO https://github.com/mozilla/DeepSpeech/releases/download/v0.9.1/deepspeech-0.9.1-models.pbmm
24+
curl -LO https://github.com/mozilla/DeepSpeech/releases/download/v0.9.1/deepspeech-0.9.1-models.scorer
2525
2626
# Download example audio files
27-
curl -LO https://github.com/mozilla/DeepSpeech/releases/download/v0.7.4/audio-0.7.4.tar.gz
28-
tar xvf audio-0.7.4.tar.gz
27+
curl -LO https://github.com/mozilla/DeepSpeech/releases/download/v0.9.1/audio-0.9.1.tar.gz
28+
tar xvf audio-0.9.1.tar.gz
2929
3030
# Transcribe an audio file
31-
deepspeech --model deepspeech-0.7.4-models.pbmm --scorer deepspeech-0.7.4-models.scorer --audio audio/2830-3980-0043.wav
31+
deepspeech --model deepspeech-0.9.1-models.pbmm --scorer deepspeech-0.9.1-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.7.4-models.pbmm --scorer deepspeech-0.7.4-models.scorer --audio audio/2830-3980-0043.wav
47+
deepspeech --model deepspeech-0.9.1-models.pbmm --scorer deepspeech-0.9.1-models.scorer --audio audio/2830-3980-0043.wav
4848
4949
Please ensure you have the required :ref:`CUDA dependencies <cuda-deps>`.
5050

native_client/swift/deepspeech_ios_test/SpeechRecognitionImpl.swift

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,8 @@ class SpeechRecognitionImpl : NSObject, AVCaptureAudioDataOutputSampleBufferDele
2626
private var audioData = Data()
2727

2828
override init() {
29-
let modelPath = Bundle.main.path(forResource: "deepspeech-0.7.4-models", ofType: "tflite")!
30-
let scorerPath = Bundle.main.path(forResource: "deepspeech-0.7.4-models", ofType: "scorer")!
29+
let modelPath = Bundle.main.path(forResource: "deepspeech-0.9.1-models", ofType: "tflite")!
30+
let scorerPath = Bundle.main.path(forResource: "deepspeech-0.9.1-models", ofType: "scorer")!
3131

3232
model = try! DeepSpeechModel(modelPath: modelPath)
3333
try! model.enableExternalScorer(scorerPath: scorerPath)
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
0.9.0
1+
0.9.1

0 commit comments

Comments
 (0)