mirror of
https://github.com/k2-fsa/icefall.git
synced 2025-08-08 09:32:20 +00:00
* Copy files for editing. * Use librispeech + gigaspeech with modified conformer. * Support specifying number of workers for on-the-fly feature extraction. * Feature extraction code for GigaSpeech. * Combine XL splits lazily during training. * Fix warnings in decoding. * Add decoding code for GigaSpeech. * Fix decoding the gigaspeech dataset. We have to use the decoder/joiner networks for the GigaSpeech dataset. * Disable speed perturbe for XL subset. * Compute the Nbest oracle WER for RNN-T decoding. * Minor fixes. * Minor fixes. * Add results. * Update results. * Update CI. * Update results. * Fix style issues. * Update results. * Fix style issues.
23 lines
610 B
INI
23 lines
610 B
INI
[flake8]
|
|
show-source=true
|
|
statistics=true
|
|
max-line-length = 80
|
|
per-file-ignores =
|
|
# line too long
|
|
egs/librispeech/ASR/*/conformer.py: E501,
|
|
egs/aishell/ASR/*/conformer.py: E501,
|
|
egs/tedlium3/ASR/*/conformer.py: E501,
|
|
egs/gigaspeech/ASR/*/conformer.py: E501,
|
|
egs/librispeech/ASR/pruned_transducer_stateless2/*.py: E501,
|
|
egs/librispeech/ASR/*/optim.py: E501,
|
|
egs/librispeech/ASR/*/scaling.py: E501,
|
|
|
|
# invalid escape sequence (cause by tex formular), W605
|
|
icefall/utils.py: E501, W605
|
|
|
|
exclude =
|
|
.git,
|
|
**/data/**,
|
|
icefall/shared/make_kn_lm.py,
|
|
icefall/__init__.py
|