Skip to content

Commit

Permalink
Merge pull request #1829 from lissyx/bump-v0.4.1
Browse files Browse the repository at this point in the history
Bump VERSION to 0.4.1
  • Loading branch information
lissyx authored Jan 10, 2019
2 parents 1a16088 + 3dc3651 commit 0e40db6
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -73,8 +73,8 @@ git clone https://github.com/mozilla/DeepSpeech
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 [DeepSpeech releases page](https://github.com/mozilla/DeepSpeech/releases). Alternatively, you can run the following command to download and unzip the files in your current directory:

```bash
wget https://github.com/mozilla/DeepSpeech/releases/download/v0.4.0/deepspeech-0.4.0-models.tar.gz
tar xvfz deepspeech-0.4.0-models.tar.gz
wget https://github.com/mozilla/DeepSpeech/releases/download/v0.4.1/deepspeech-0.4.1-models.tar.gz
tar xvfz deepspeech-0.4.1-models.tar.gz
```

## Using the model
Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.4.0
0.4.1
2 changes: 1 addition & 1 deletion examples/ffmpeg_vad_streaming/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
},
"dependencies": {
"argparse": "^1.0.10",
"deepspeech": "^0.4.0",
"deepspeech": "^0.4.1",
"node-vad": "^1.1.1",
"util": "^0.11.1"
},
Expand Down
2 changes: 1 addition & 1 deletion examples/mic_vad_streaming/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
deepspeech~=0.4.0
deepspeech~=0.4.1
pyaudio~=0.2.11
webrtcvad~=2.0.10
halo~=0.0.18
Expand Down
2 changes: 1 addition & 1 deletion examples/vad_transcriber/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
deepspeech==0.4.0
deepspeech==0.4.1
webrtcvad
pyqt5
2 changes: 1 addition & 1 deletion examples/vad_transcriber/wavTranscription.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ Set the aggressiveness mode, to an integer between 0 and 3.

```
(venv) ~/Deepspeech/examples/vad_transcriber
$ python3 audioTranscript_cmd.py --aggressive 1 --audio ./audio/guido-van-rossum.wav --model ./models/0.4.0/
$ python3 audioTranscript_cmd.py --aggressive 1 --audio ./audio/guido-van-rossum.wav --model ./models/0.4.1/
Filename Duration(s) Inference Time(s) Model Load Time(s) LM Load Time(s)
Expand Down

0 comments on commit 0e40db6

Please sign in to comment.