| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
TensorFlowASR implements some automatic speech recognition architectures such as DeepSpeech2, Jasper, RNN Transducer, ContextNet, Conformer, etc. These models can be converted to TFLite to reduce memory and computation for deployment 😄
For training and testing, you should use git clone for installing necessary packages from other authors (ctc_decoders, rnnt_loss, etc.)
NOTE ONLY FOR APPLE SILICON: TensorFlowASR requires python >= 3.12
See the requirements.[extra].txt files for extra dependencies
git clone https://github.com/TensorSpeech/TensorFlowASR.git
cd TensorFlowASR
./setup.sh [apple|tpu|gpu] [dev]Running in a container
docker-compose up -dFYI: Keras builtin training uses infinite dataset, which avoids the potential last partial batch.
See examples for some predefined ASR models and results
See augmentations
After converting to tflite, the tflite model is like a function that transforms directly from an audio signal to text and tokens
See the results on each example folder, e.g. ./examples/models//transducer/conformer/results/sentencepiece/README.md
| Name | Source | Hours |
|---|---|---|
| LibriSpeech | LibriSpeech | 970h |
| Common Voice | https://commonvoice.mozilla.org | 1932h |
| Name | Source | Hours |
|---|---|---|
| Vivos | https://ailab.hcmus.edu.vn/vivos | 15h |
| InfoRe Technology 1 | InfoRe1 (passwd: BroughtToYouByInfoRe) | 25h |
| InfoRe Technology 2 (used in VLSP2019) | InfoRe2 (passwd: BroughtToYouByInfoRe) | 415h |
| VietBud500 | https://huggingface.co/datasets/linhtran92/viet_bud500 | 500h |
Huy Le Nguyen
Email: nlhuy.cs.16@gmail.com
| Back | FazBrowse Home | New Git URL |