├── .gitignore ├── LICENSE ├── README.md ├── config.py ├── data_gen.py ├── demo.py ├── egs └── aishell │ ├── RESULTS │ ├── cmd.sh │ ├── conf │ ├── decode.config │ ├── mfcc.conf │ ├── mfcc_hires.conf │ ├── online_cmvn.conf │ ├── online_pitch.conf │ └── pitch.conf │ ├── local │ ├── aishell_data_prep.sh │ ├── aishell_prepare_dict.sh │ ├── aishell_train_lms.sh │ ├── chain │ │ ├── run_tdnn.sh │ │ └── tuning │ │ │ ├── run_tdnn_1a.sh │ │ │ └── run_tdnn_2a.sh │ ├── download_and_untar.sh │ ├── nnet3 │ │ ├── run_ivector_common.sh │ │ ├── run_tdnn.sh │ │ └── tuning │ │ │ ├── run_tdnn_1a.sh │ │ │ └── run_tdnn_2a.sh │ ├── score.sh │ ├── wer_hyp_filter │ ├── wer_output_filter │ └── wer_ref_filter │ ├── path.sh │ ├── run.sh │ ├── steps │ └── utils ├── extract.py ├── models.py ├── pre_process.py ├── print_stats.py ├── requirements.txt ├── train.py └── utils.py /.gitignore: -------------------------------------------------------------------------------- 1 | .idea 2 | __pycache__/ -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foamliu/Listen-Attend-Spell-v2/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foamliu/Listen-Attend-Spell-v2/HEAD/README.md -------------------------------------------------------------------------------- /config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foamliu/Listen-Attend-Spell-v2/HEAD/config.py -------------------------------------------------------------------------------- /data_gen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foamliu/Listen-Attend-Spell-v2/HEAD/data_gen.py -------------------------------------------------------------------------------- /demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foamliu/Listen-Attend-Spell-v2/HEAD/demo.py -------------------------------------------------------------------------------- /egs/aishell/RESULTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foamliu/Listen-Attend-Spell-v2/HEAD/egs/aishell/RESULTS -------------------------------------------------------------------------------- /egs/aishell/cmd.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foamliu/Listen-Attend-Spell-v2/HEAD/egs/aishell/cmd.sh -------------------------------------------------------------------------------- /egs/aishell/conf/decode.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foamliu/Listen-Attend-Spell-v2/HEAD/egs/aishell/conf/decode.config -------------------------------------------------------------------------------- /egs/aishell/conf/mfcc.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foamliu/Listen-Attend-Spell-v2/HEAD/egs/aishell/conf/mfcc.conf -------------------------------------------------------------------------------- /egs/aishell/conf/mfcc_hires.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foamliu/Listen-Attend-Spell-v2/HEAD/egs/aishell/conf/mfcc_hires.conf -------------------------------------------------------------------------------- /egs/aishell/conf/online_cmvn.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foamliu/Listen-Attend-Spell-v2/HEAD/egs/aishell/conf/online_cmvn.conf -------------------------------------------------------------------------------- /egs/aishell/conf/online_pitch.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foamliu/Listen-Attend-Spell-v2/HEAD/egs/aishell/conf/online_pitch.conf -------------------------------------------------------------------------------- /egs/aishell/conf/pitch.conf: -------------------------------------------------------------------------------- 1 | --sample-frequency=16000 2 | -------------------------------------------------------------------------------- /egs/aishell/local/aishell_data_prep.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foamliu/Listen-Attend-Spell-v2/HEAD/egs/aishell/local/aishell_data_prep.sh -------------------------------------------------------------------------------- /egs/aishell/local/aishell_prepare_dict.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foamliu/Listen-Attend-Spell-v2/HEAD/egs/aishell/local/aishell_prepare_dict.sh -------------------------------------------------------------------------------- /egs/aishell/local/aishell_train_lms.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foamliu/Listen-Attend-Spell-v2/HEAD/egs/aishell/local/aishell_train_lms.sh -------------------------------------------------------------------------------- /egs/aishell/local/chain/run_tdnn.sh: -------------------------------------------------------------------------------- 1 | tuning/run_tdnn_1a.sh -------------------------------------------------------------------------------- /egs/aishell/local/chain/tuning/run_tdnn_1a.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foamliu/Listen-Attend-Spell-v2/HEAD/egs/aishell/local/chain/tuning/run_tdnn_1a.sh -------------------------------------------------------------------------------- /egs/aishell/local/chain/tuning/run_tdnn_2a.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foamliu/Listen-Attend-Spell-v2/HEAD/egs/aishell/local/chain/tuning/run_tdnn_2a.sh -------------------------------------------------------------------------------- /egs/aishell/local/download_and_untar.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foamliu/Listen-Attend-Spell-v2/HEAD/egs/aishell/local/download_and_untar.sh -------------------------------------------------------------------------------- /egs/aishell/local/nnet3/run_ivector_common.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foamliu/Listen-Attend-Spell-v2/HEAD/egs/aishell/local/nnet3/run_ivector_common.sh -------------------------------------------------------------------------------- /egs/aishell/local/nnet3/run_tdnn.sh: -------------------------------------------------------------------------------- 1 | tuning/run_tdnn_1a.sh -------------------------------------------------------------------------------- /egs/aishell/local/nnet3/tuning/run_tdnn_1a.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foamliu/Listen-Attend-Spell-v2/HEAD/egs/aishell/local/nnet3/tuning/run_tdnn_1a.sh -------------------------------------------------------------------------------- /egs/aishell/local/nnet3/tuning/run_tdnn_2a.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foamliu/Listen-Attend-Spell-v2/HEAD/egs/aishell/local/nnet3/tuning/run_tdnn_2a.sh -------------------------------------------------------------------------------- /egs/aishell/local/score.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foamliu/Listen-Attend-Spell-v2/HEAD/egs/aishell/local/score.sh -------------------------------------------------------------------------------- /egs/aishell/local/wer_hyp_filter: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foamliu/Listen-Attend-Spell-v2/HEAD/egs/aishell/local/wer_hyp_filter -------------------------------------------------------------------------------- /egs/aishell/local/wer_output_filter: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foamliu/Listen-Attend-Spell-v2/HEAD/egs/aishell/local/wer_output_filter -------------------------------------------------------------------------------- /egs/aishell/local/wer_ref_filter: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foamliu/Listen-Attend-Spell-v2/HEAD/egs/aishell/local/wer_ref_filter -------------------------------------------------------------------------------- /egs/aishell/path.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foamliu/Listen-Attend-Spell-v2/HEAD/egs/aishell/path.sh -------------------------------------------------------------------------------- /egs/aishell/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foamliu/Listen-Attend-Spell-v2/HEAD/egs/aishell/run.sh -------------------------------------------------------------------------------- /egs/aishell/steps: -------------------------------------------------------------------------------- 1 | ../../wsj/s5/steps -------------------------------------------------------------------------------- /egs/aishell/utils: -------------------------------------------------------------------------------- 1 | ../../wsj/s5/utils -------------------------------------------------------------------------------- /extract.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foamliu/Listen-Attend-Spell-v2/HEAD/extract.py -------------------------------------------------------------------------------- /models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foamliu/Listen-Attend-Spell-v2/HEAD/models.py -------------------------------------------------------------------------------- /pre_process.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foamliu/Listen-Attend-Spell-v2/HEAD/pre_process.py -------------------------------------------------------------------------------- /print_stats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foamliu/Listen-Attend-Spell-v2/HEAD/print_stats.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | librosa=0.6.3 -------------------------------------------------------------------------------- /train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foamliu/Listen-Attend-Spell-v2/HEAD/train.py -------------------------------------------------------------------------------- /utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foamliu/Listen-Attend-Spell-v2/HEAD/utils.py --------------------------------------------------------------------------------