mirror of
https://github.com/k2-fsa/icefall.git
synced 2025-08-08 09:32:20 +00:00
* First upload of model average codes. * minor fix * update decode file * update .flake8 * rename pruned_transducer_stateless3 to pruned_transducer_stateless4 * change epoch number counter starting from 1 instead of 0 * minor fix of pruned_transducer_stateless4/train.py * refactor the checkpoint.py * minor fix, update docs, and modify the epoch number to count from 1 in the pruned_transducer_stateless4/decode.py * update author info * add docs of the scaling in function average_checkpoints_with_averaged_model
24 lines
675 B
INI
24 lines
675 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/pruned_transducer_stateless4/*.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
|