Commit Graph

43 Commits

Author SHA1 Message Date
dabinat
81dd30847c Doc: change cuDNN dependency to 7.6 2020-02-26 11:33:59 -08:00
Reuben Morais
1c69d93b4e Update training docs to mention new CuDNN flags and checkpoint dir flags
X-DeepSpeech: NOBUILD
2020-02-17 17:40:44 +01:00
Reuben Morais
27e2e44400 Remove references to generate_trie from docs
X-DeepSpeech: NOBUILD
2020-02-16 11:36:27 +01:00
Reuben Morais
40f1827a24
Merge pull request #2746 from reuben/example-linenos
Update example line numbers
2020-02-13 17:37:47 +01:00
Reuben Morais
7001a17418 Expose version in a consumable way 2020-02-13 17:34:58 +01:00
Reuben Morais
09224cea46 Update example line numbers 2020-02-12 15:02:52 +01:00
Reuben Morais
1d3b3a31a1 Address review comments and update docs 2020-02-11 19:44:36 +01:00
Reuben Morais
1e2eb96248 Update all API consumers 2020-02-11 19:44:36 +01:00
Alexandre Lissy
00d11e2fec Ensure documentation mentions python3-dev
Fixes #2712
2020-02-04 18:18:41 +01:00
Alexandre Lissy
d9072c2a87 Ensure properly link to TensorFlow r1.15 2020-01-22 10:50:55 +01:00
Reuben Morais
94882fb1c9
Mention use of CuDNN RNN in release checkpoints
X-DeepSpeech: NOBUILD
2020-01-18 18:07:55 +00:00
Carlos Fonseca M
923729d920 Multi-stream support .NET
Adds multi-stream support for the .NET client using the same acoustic model.
2020-01-18 12:35:29 +01:00
Reuben Morais
fc63ce0c04 Bump version to v0.6.1 2020-01-10 15:02:47 +01:00
Alexandre Lissy
4c7d5fb0e1 Publish README/USING/TRAINING to readthedocs
Fixes #2581
2020-01-08 16:56:13 +01:00
Reuben Morais
808b154ef9 Use submodule for building contrib examples into docs 2019-12-10 16:25:01 +01:00
Reuben Morais
03a822b670
Revert "Multi-stream support .NET" 2019-12-10 14:04:39 +01:00
Reuben Morais
a9fff3f866
Merge pull request #2548 from carlfm01/net-streams
Multi-stream support .NET
2019-12-06 19:48:10 +00:00
kdavis-mozilla
3d7dc179e9 Addressed review comments 2019-12-02 14:11:31 +01:00
kdavis-mozilla
f75b9cc926 Updating Geometry 2019-12-02 11:04:27 +01:00
kdavis-mozilla
7d96540d66 Updating Introduction 2019-12-02 08:13:38 +01:00
Carlos Fonseca M
d024c333bc Multi-stream support .NET
Adds multi-stream support for the .NET client using the same acoustic model.
2019-11-29 08:09:17 -06:00
Alexandre Lissy
0ad6c10e8c Update Python example line numbers 2019-11-14 11:13:42 +01:00
Alexandre Lissy
b1d1ef6450 Update JavaScript example line numbers 2019-11-14 10:55:06 +01:00
Alexandre Lissy
849ed712e1 Update Java example line numbers 2019-11-14 10:53:25 +01:00
Alexandre Lissy
20c4ced80b Update C example line numbers 2019-11-14 09:53:07 +01:00
Alexandre Lissy
60cec3722f Add .Net Framework API doc
Fixes #2457
2019-10-23 14:11:45 +02:00
Alexandre Lissy
b536f5761f Add missing doc for new API
X-DeepSpeech: NOBUILD
2019-10-12 17:04:12 +02:00
Alexandre Lissy
d1936c60b3 Refer to examples from doc
Fixes #2338
2019-10-04 12:07:32 +02:00
Alexandre Lissy
2b7ab99478 Fix pylint 2019-09-24 18:22:45 +02:00
Alexandre Lissy
bf7cc1df54 Sphinx doc 2019-09-24 18:22:45 +02:00
Alexandre Lissy
33281c4aac Add TaskCluster documentation generation 2019-09-24 10:55:26 +02:00
b-ak
851fb4ea90 Adding streaming API Support to the GUI Tool
Changes:
1. Added streaming API support to the GUI tool
2. Minor modifciations to how models are loaded upon repeated transcriptions
3. Updated to Deepspeech v0.3.0
4. Image in the documentation changed

Changes v2:
1. Added streaming support to cmd interface also
2018-11-17 00:00:16 +05:30
bhargav-ak
89620bc448 Transcribing longer audio clips
Prerequisites
-------------
~/Deepspeech$ sudo apt install virtualenv
~/Deepspeech$ cd examples/vad_transcriber
~/Deepspeech/examples/vad_transcriber$ virtualenv -p python3 venv
~/Deepspeech/examples/vad_transcriber$ source venv/bin/activate
(venv) ~/Deepspeech/examples/vad_transcriber$ pip3 install -r requirements.txt

Command line tool
-----------------
The command line tool processes a wav file of any duration and returns a trancript
which will the saved in the same directory as the input audio file.

(venv) ~/Deepspeech/examples/vad_transcriber
$ python3 audioTranscript_cmd.py --aggressive 1 --audio ./audio/guido-van-rossum.wav --model ./models/0.2.0/

Minimalistic GUI
----------------
The GUI tool does the same job as the CLI tool. The VAD is fixed at an aggressiveness of 1.
The output is displayed in the transcription window and saved into the directory as the input
audio file as well.

(venv) ~/Deepspeech/examples/vad_transcriber
$ python3 audioTranscript_gui.py

Changes(v1):
1. Using Deepspeech python module instead of subprocess
2. Moved VAD code to a module
3. Moved all files to bin/ and renamed README.md to Audio_Transcription.md

Changes(v2):
Renamed files

Changes (v2.1):
1. Refactoring between CMD and GUI code
2. Documenting pre-requisites with a virtualenv
3. Loading model only once per long wav file
4. CMD and GUI tool do the same job, perform VAD and consolidate the output.
5. Chunks are not saved in the disk. Using a numpy interger array to store them.

Changes (v2.2):
1. Argparse module for command line arguments
2. Everything in virtualenv, with a requirements.txt
3. Older APIs aligned with 0.2.0 release
4. Moved all files into examples/vad_transcriber

Changes (v2.3)
1. Updated requirements.txt
2018-10-03 02:29:26 +05:30
Reuben Morais
498b66867e Switch docs theme from alabaster to classic 2017-08-29 21:33:16 +02:00
Graham Voysey
388d04beab updated requirements.txt and moved to project root 2017-03-22 17:06:43 -04:00
Pannous
d399fad9d5 ammended https://github.com/kpu/kenlm/archive/master.zip 2017-02-28 15:51:40 +01:00
Reuben Morais
dad0b53a3b Add missing math contexts in DeepSpeech.rst 2017-02-03 09:16:30 -02:00
Reuben Morais
ee50d82f8c Add requirements.txt so readthedocs.org can import our code 2017-02-02 23:42:36 -02:00
Reuben Morais
af8d3ed675 Add Sphinx configuration files, documentation index and makefiles 2017-02-02 23:42:36 -02:00
Reuben Morais
56eee9adaf Convert documentation to Sphinx RST 2017-02-02 23:42:36 -02:00
Reuben Morais
dc13d4be06 Remove readme2tex infrastructure 2017-02-02 23:42:25 -02:00
Tilman Kamp
fe1abe90cc Math support for markdown documents 2017-01-28 18:23:16 -02:00
Reuben Morais
88f0e3543b Add extended documentation to doc/ directory 2017-01-28 18:22:23 -02:00