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

Commit fa883eb

Browse files
authored
Merge pull request #3240 from lissyx/bump-v0.8.1
Bump VERSION to 0.8.1
2 parents 395f7d0 + 8e7d6cb commit fa883eb

File tree

5 files changed

+14
-14
lines changed

5 files changed

+14
-14
lines changed

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.8.0/deepspeech-0.8.0-models.pbmm
41-
wget https://github.com/mozilla/DeepSpeech/releases/download/v0.8.0/deepspeech-0.8.0-models.scorer
40+
wget https://github.com/mozilla/DeepSpeech/releases/download/v0.8.1/deepspeech-0.8.1-models.pbmm
41+
wget https://github.com/mozilla/DeepSpeech/releases/download/v0.8.1/deepspeech-0.8.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.8.0-models.pbmm --scorer deepspeech-0.8.0-models.scorer --audio my_audio_file.wav
139+
deepspeech --model deepspeech-0.8.1-models.pbmm --scorer deepspeech-0.8.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.8.0-models.pbmm --scorer deepspeech-0.8.0-models.scorer --audio audio_input.wav
203+
./deepspeech --model deepspeech-0.8.1-models.pbmm --scorer deepspeech-0.8.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.8.0/deepspeech-0.8.0-models.pbmm
24-
curl -LO https://github.com/mozilla/DeepSpeech/releases/download/v0.8.0/deepspeech-0.8.0-models.scorer
23+
curl -LO https://github.com/mozilla/DeepSpeech/releases/download/v0.8.1/deepspeech-0.8.1-models.pbmm
24+
curl -LO https://github.com/mozilla/DeepSpeech/releases/download/v0.8.1/deepspeech-0.8.1-models.scorer
2525
2626
# Download example audio files
27-
curl -LO https://github.com/mozilla/DeepSpeech/releases/download/v0.8.0/audio-0.8.0.tar.gz
28-
tar xvf audio-0.8.0.tar.gz
27+
curl -LO https://github.com/mozilla/DeepSpeech/releases/download/v0.8.1/audio-0.8.1.tar.gz
28+
tar xvf audio-0.8.1.tar.gz
2929
3030
# Transcribe an audio file
31-
deepspeech --model deepspeech-0.8.0-models.pbmm --scorer deepspeech-0.8.0-models.scorer --audio audio/2830-3980-0043.wav
31+
deepspeech --model deepspeech-0.8.1-models.pbmm --scorer deepspeech-0.8.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.8.0-models.pbmm --scorer deepspeech-0.8.0-models.scorer --audio audio/2830-3980-0043.wav
47+
deepspeech --model deepspeech-0.8.1-models.pbmm --scorer deepspeech-0.8.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/dotnet/DeepSpeechWPF/App.xaml.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ protected override void OnStartup(StartupEventArgs e)
2020
{
2121
//Register instance of DeepSpeech
2222
DeepSpeechClient.DeepSpeech deepSpeechClient =
23-
new DeepSpeechClient.DeepSpeech("deepspeech-0.8.0-models.pbmm");
23+
new DeepSpeechClient.DeepSpeech("deepspeech-0.8.1-models.pbmm");
2424

2525
SimpleIoc.Default.Register<IDeepSpeech>(() => deepSpeechClient);
2626
SimpleIoc.Default.Register<MainWindowViewModel>();

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.8.0-models", ofType: "tflite")!
30-
let scorerPath = Bundle.main.path(forResource: "deepspeech-0.8.0-models", ofType: "scorer")!
29+
let modelPath = Bundle.main.path(forResource: "deepspeech-0.8.1-models", ofType: "tflite")!
30+
let scorerPath = Bundle.main.path(forResource: "deepspeech-0.8.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.8.0
1+
0.8.1

0 commit comments

Comments
 (0)