Merge pull request #1650 from mozilla/issue1649

Fixed #1649 (Update README's for 0.3.0)
This commit is contained in:
Kelly Davis 2018-10-15 17:10:20 +02:00 committed by GitHub
commit c7e6759293
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 4 additions and 4 deletions

View File

@ -69,7 +69,7 @@ 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: 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 ```bash
wget -O - https://github.com/mozilla/DeepSpeech/releases/download/v0.2.0/deepspeech-0.2.0-models.tar.gz | tar xvfz - wget -O - https://github.com/mozilla/DeepSpeech/releases/download/v0.3.0/deepspeech-0.3.0-models.tar.gz | tar xvfz -
``` ```
## Using the model ## Using the model

View File

@ -26,7 +26,7 @@ Set the aggressiveness mode, to an integer between 0 and 3.
``` ```
(venv) ~/Deepspeech/examples/vad_transcriber (venv) ~/Deepspeech/examples/vad_transcriber
$ python3 audioTranscript_cmd.py --aggressive 1 --audio ./audio/guido-van-rossum.wav --model ./models/0.2.0/ $ python3 audioTranscript_cmd.py --aggressive 1 --audio ./audio/guido-van-rossum.wav --model ./models/0.3.0/
Filename Duration(s) Inference Time(s) Model Load Time(s) LM Load Time(s) Filename Duration(s) Inference Time(s) Model Load Time(s) LM Load Time(s)
@ -58,4 +58,4 @@ In such a scenario, the GUI tool will not work. The following steps is known to
(venv) ~/Deepspeech/examples/vad_transcriber$ export PYTHONPATH=/usr/lib/python3/dist-packages/ (venv) ~/Deepspeech/examples/vad_transcriber$ export PYTHONPATH=/usr/lib/python3/dist-packages/
(venv) ~/Deepspeech/examples/vad_transcriber$ python3 audioTranscript_gui.py (venv) ~/Deepspeech/examples/vad_transcriber$ python3 audioTranscript_gui.py
``` ```

View File

@ -133,4 +133,4 @@ make package
make npm-pack make npm-pack
``` ```
This will create the package `deepspeech-0.2.0.tgz` in `native_client/javascript`. This will create the package `deepspeech-0.3.0.tgz` in `native_client/javascript`.