-
Notifications
You must be signed in to change notification settings - Fork 4k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fixed #993 #1003
Merged
Fixed #993 #1003
Changes from 1 commit
Commits
Show all changes
3 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,14 +7,23 @@ Project DeepSpeech is an open source Speech-To-Text engine. It uses a model trai | |
|
||
![Usage](images/usage.gif) | ||
|
||
Pre-built binaries that can be used for performing inference with a trained model can be installed with `pip`. Proper setup using virtual environment is recommended and you can find that documented [below](#using-the-python-package). You can then use the `deepspeech` binary to do speech-to-text on an audio file: | ||
Pre-built binaries that can be used for performing inference with a trained model can be installed with `pip`. Proper setup using virtual environment is recommended and you can find that documented [below](#using-the-python-package). | ||
|
||
Once installed you can then use the `deepspeech` binary to do speech-to-text on an audio file: | ||
|
||
```bash | ||
pip install deepspeech | ||
deepspeech output_model.pb my_audio_file.wav alphabet.txt | ||
``` | ||
|
||
See the output of `deepspeech -h` for more information. | ||
Alternatively, quicker inference can be performed using a supported NVIDIA GPU. (See the release notes to find which GPU's are supported.) This is done by instead installing the GPU specific package: | ||
|
||
```bash | ||
pip install deepspeech-gpu | ||
deepspeech output_model.pb my_audio_file.wav alphabet.txt | ||
``` | ||
|
||
See the output of `deepspeech -h` for more information on the use of `deepspeech`. | ||
|
||
**Table of Contents** | ||
|
||
|
@@ -88,6 +97,17 @@ If it is already installed, you can also update it: | |
$ pip install --upgrade deepspeech | ||
``` | ||
|
||
Alternatively, if you have a supported NVIDIA GPU (See the release notes to find which GPU's are supported.), you can install the GPU specific package as follows: | ||
|
||
``` | ||
pip install deepspeech-gpu | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Include the |
||
``` | ||
|
||
or update it as folllows: | ||
``` | ||
$ pip install --upgrade deepspeech-gpu | ||
``` | ||
|
||
In both cases, it should take care of intalling all the required dependencies. Once it is done, you should be able to call the sample binary using `deepspeech` on your command-line. | ||
|
||
```bash | ||
|
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Please also mention that it's Linux only.