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

Commit 3df20fe

Browse files
authored
Merge pull request #2658 from mozilla/bump-v0.6.1
Bump version to v0.6.1
2 parents c024464 + fc63ce0 commit 3df20fe

File tree

3 files changed

+10
-10
lines changed

3 files changed

+10
-10
lines changed

README.rst

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ Project DeepSpeech
1414

1515
DeepSpeech is an open source Speech-To-Text engine, using a model trained by machine learning techniques based on `Baidu's Deep Speech research paper <https://arxiv.org/abs/1412.5567>`_. Project DeepSpeech uses Google's `TensorFlow <https://www.tensorflow.org/>`_ to make the implementation easier.
1616

17-
**NOTE:** This documentation applies to the **master branch** of DeepSpeech only. If you're using a stable release, you must use the documentation for the corresponding version by using GitHub's branch switcher button above.
17+
**NOTE:** This documentation applies to the **v0.6.1 version** of DeepSpeech only. If you're using a stable release, you must use the documentation for the corresponding version by using GitHub's branch switcher button above.
1818

1919
To install and use deepspeech all you have to do is:
2020

@@ -28,15 +28,15 @@ To install and use deepspeech all you have to do is:
2828
pip3 install deepspeech
2929
3030
# Download pre-trained English model and extract
31-
curl -LO https://github.com/mozilla/DeepSpeech/releases/download/v0.6.0/deepspeech-0.6.0-models.tar.gz
32-
tar xvf deepspeech-0.6.0-models.tar.gz
31+
curl -LO https://github.com/mozilla/DeepSpeech/releases/download/v0.6.1/deepspeech-0.6.1-models.tar.gz
32+
tar xvf deepspeech-0.6.1-models.tar.gz
3333
3434
# Download example audio files
35-
curl -LO https://github.com/mozilla/DeepSpeech/releases/download/v0.6.0/audio-0.6.0.tar.gz
36-
tar xvf audio-0.6.0.tar.gz
35+
curl -LO https://github.com/mozilla/DeepSpeech/releases/download/v0.6.1/audio-0.6.1.tar.gz
36+
tar xvf audio-0.6.1.tar.gz
3737
3838
# Transcribe an audio file
39-
deepspeech --model deepspeech-0.6.0-models/output_graph.pbmm --lm deepspeech-0.6.0-models/lm.binary --trie deepspeech-0.6.0-models/trie --audio audio/2830-3980-0043.wav
39+
deepspeech --model deepspeech-0.6.1-models/output_graph.pbmm --lm deepspeech-0.6.1-models/lm.binary --trie deepspeech-0.6.1-models/trie --audio audio/2830-3980-0043.wav
4040
4141
A pre-trained English model is available for use and can be downloaded using `the instructions below <doc/USING.rst#using-a-pre-trained-model>`_. A package with some example audio files is available for download in our `release notes <https://github.com/mozilla/DeepSpeech/releases/latest>`_.
4242

@@ -52,7 +52,7 @@ Quicker inference can be performed using a supported NVIDIA GPU on Linux. See th
5252
pip3 install deepspeech-gpu
5353
5454
# Transcribe an audio file.
55-
deepspeech --model deepspeech-0.6.0-models/output_graph.pbmm --lm deepspeech-0.6.0-models/lm.binary --trie deepspeech-0.6.0-models/trie --audio audio/2830-3980-0043.wav
55+
deepspeech --model deepspeech-0.6.1-models/output_graph.pbmm --lm deepspeech-0.6.1-models/lm.binary --trie deepspeech-0.6.1-models/trie --audio audio/2830-3980-0043.wav
5656
5757
Please ensure you have the required `CUDA dependencies <doc/USING.rst#cuda-dependency>`_.
5858

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
0.6.1-alpha.0
1+
0.6.1

doc/USING.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,8 +32,8 @@ If you want to use the pre-trained English model for performing speech-to-text,
3232

3333
.. code-block:: bash
3434
35-
wget https://github.com/mozilla/DeepSpeech/releases/download/v0.6.0/deepspeech-0.6.0-models.tar.gz
36-
tar xvfz deepspeech-0.6.0-models.tar.gz
35+
wget https://github.com/mozilla/DeepSpeech/releases/download/v0.6.1/deepspeech-0.6.1-models.tar.gz
36+
tar xvfz deepspeech-0.6.1-models.tar.gz
3737
3838
Model compatibility
3939
^^^^^^^^^^^^^^^^^^^

0 commit comments

Comments
 (0)