mirror of
https://github.com/k2-fsa/icefall.git
synced 2025-08-08 09:32:20 +00:00
* Begin to add web client for streaming recognition. * First attempt to add WEB interface for emformer model. * Minor fixes. * Begin to add recorder. * Support recognition from real-time recordings.
35 lines
1020 B
INI
35 lines
1020 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/gigaspeech/ASR/pruned_transducer_stateless2/*.py: E501,
|
|
egs/librispeech/ASR/pruned_transducer_stateless4/*.py: E501,
|
|
egs/librispeech/ASR/*/optim.py: E501,
|
|
egs/librispeech/ASR/*/scaling.py: E501,
|
|
egs/tedlium3/ASR/*/beam_search.py: E226,
|
|
egs/tedlium3/ASR/*/pretrained.py: E226,
|
|
egs/tedlium3/ASR/*/decode.py: E226,
|
|
|
|
# invalid escape sequence (cause by tex formular), W605
|
|
icefall/utils.py: E501, W605
|
|
|
|
exclude =
|
|
.git,
|
|
**/data/**,
|
|
icefall/shared/make_kn_lm.py,
|
|
egs/librispeech/ASR/transducer_emformer/train.py,
|
|
icefall/__init__.py
|
|
|
|
ignore =
|
|
# E203 whitespace before ':'
|
|
E203,
|
|
# W503 line break before binary operator
|
|
W503,
|