icefall/.flake8
Fangjun Kuang 70e302cf2b
First attempt to add WEB client to the streaming emformer. (#351)
* 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.
2022-05-24 17:16:00 +08:00

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,