From 5c3e8f5e79ab93257ba9dd04afa05b411c044fbc Mon Sep 17 00:00:00 2001 From: alchemi5t Date: Thu, 18 Jul 2019 16:59:40 +0530 Subject: [PATCH] Added reference about generate_trie for clarity --- README.md | 2 +- data/README.md | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 34bdf834..36ac2922 100644 --- a/README.md +++ b/README.md @@ -215,7 +215,7 @@ also, if you need some binaries different than current master, like `v0.2.0-alph python3 util/taskcluster.py --branch "v0.2.0-alpha.6" --target "." ``` -The script `taskcluster.py` will download `native_client.tar.xz` (which includes the `deepspeech` binary and associated libraries) and extract it into the current folder. Also, `taskcluster.py` will download binaries for Linux/x86_64 by default, but you can override that behavior with the `--arch` parameter. See the help info with `python util/taskcluster.py -h` for more details. Specific branches of DeepSpeech or TensorFlow can be specified as well. +The script `taskcluster.py` will download `native_client.tar.xz` (which includes the `deepspeech` binary, `generate_trie` and associated libraries) and extract it into the current folder. Also, `taskcluster.py` will download binaries for Linux/x86_64 by default, but you can override that behavior with the `--arch` parameter. See the help info with `python util/taskcluster.py -h` for more details. Specific branches of DeepSpeech or TensorFlow can be specified as well. Note: the following command assumes you [downloaded the pre-trained model](#getting-the-pre-trained-model). diff --git a/data/README.md b/data/README.md index 900ce9ad..10b5262b 100644 --- a/data/README.md +++ b/data/README.md @@ -4,6 +4,6 @@ This directory contains language-specific data files. Most importantly, you will 1. A list of unique characters for the target language (e.g. English) in `data/alphabet.txt` 2. A binary n-gram language model compiled by `kenlm` in `data/lm/lm.binary` -3. A trie model compiled by `generate_trie.cpp` in `data/lm/trie` +3. A trie model compiled by [generate_trie](https://github.com/mozilla/DeepSpeech#using-the-command-line-client) in `data/lm/trie` -For more information on how to create these resources, see `data/lm/README.md` +For more information on how to build these resources from scratch, see `data/lm/README.md`