mirror of
https://github.com/k2-fsa/icefall.git
synced 2025-08-08 09:32:20 +00:00
* Minor fix to conformer-mmi * Minor fixes * Fix decode.py * add training files * train with ctc warmup * add pruned_transducer_stateless7_mmi * add zipformer_mmi/mmi_decode.py, using HP as decoding graph * add mmi_decode.py * remove pruned_transducer_stateless7_mmi * rename zipformer_mmi/train_with_ctc.py as zipformer_mmi/train.py * remove unused method * rename mmi_decode.py * add export.py pretrained.py jit_pretrained.py ... * add RESULTS.md * add CI test * add docs * add README.md Co-authored-by: pkufool <wkang.pku@gmail.com>
34 lines
930 B
INI
34 lines
930 B
INI
[flake8]
|
|
show-source=true
|
|
statistics=true
|
|
max-line-length = 88
|
|
per-file-ignores =
|
|
# line too long
|
|
icefall/diagnostics.py: E501,
|
|
egs/*/ASR/*/conformer.py: E501,
|
|
egs/*/ASR/pruned_transducer_stateless*/*.py: E501,
|
|
egs/*/ASR/*/optim.py: E501,
|
|
egs/*/ASR/*/scaling.py: E501,
|
|
egs/librispeech/ASR/lstm_transducer_stateless*/*.py: E501, E203
|
|
egs/librispeech/ASR/conv_emformer_transducer_stateless*/*.py: E501, E203
|
|
egs/librispeech/ASR/conformer_ctc*/*py: E501,
|
|
egs/librispeech/ASR/zipformer_mmi/*.py: E501, E203
|
|
egs/librispeech/ASR/RESULTS.md: E999,
|
|
|
|
# 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
|
|
|
|
ignore =
|
|
# E203 white space before ":"
|
|
E203,
|
|
# W503 line break before binary operator
|
|
W503,
|
|
# E226 missing whitespace around arithmetic operator
|
|
E226,
|