├── ASR ├── ESPNet │ ├── .coveragerc │ ├── .dockerignore │ ├── .gitignore │ ├── .gitmodules │ ├── .mergify.yml │ ├── CONTRIBUTING.md │ ├── LICENSE │ ├── README.md │ ├── ci │ │ ├── doc.sh │ │ ├── install.sh │ │ ├── install_kaldi.sh │ │ ├── test_flake8.sh │ │ ├── test_integration.sh │ │ ├── test_python.sh │ │ └── test_shell.sh │ ├── doc │ │ ├── .gitignore │ │ ├── Makefile │ │ ├── README.md │ │ ├── apis │ │ │ ├── espnet2_bin.rst │ │ │ ├── espnet_bin.rst │ │ │ ├── utils_py.rst │ │ │ └── utils_sh.rst │ │ ├── argparse2rst.py │ │ ├── conf.py │ │ ├── docker.md │ │ ├── espnet2_distributed.md │ │ ├── espnet2_task.md │ │ ├── espnet2_training_option.md │ │ ├── espnet2_tutorial.md │ │ ├── faq.md │ │ ├── image │ │ │ └── espnet_logo1.png │ │ ├── index.rst │ │ ├── installation.md │ │ ├── make.bat │ │ ├── module2rst.py │ │ ├── parallelization.md │ │ ├── tutorial.md │ │ └── usage2rst.sh │ ├── docker │ │ ├── .gitignore │ │ ├── README.md │ │ ├── build.sh │ │ ├── prebuilt │ │ │ ├── Dockerfile │ │ │ ├── devel │ │ │ │ ├── Dockerfile │ │ │ │ └── gpu │ │ │ │ │ ├── 10.0 │ │ │ │ │ └── cudnn7 │ │ │ │ │ │ └── Dockerfile │ │ │ │ │ ├── 10.1 │ │ │ │ │ └── cudnn7 │ │ │ │ │ │ └── Dockerfile │ │ │ │ │ ├── 8.0 │ │ │ │ │ └── cudnn7 │ │ │ │ │ │ └── Dockerfile │ │ │ │ │ ├── 9.0 │ │ │ │ │ └── cudnn7 │ │ │ │ │ │ └── Dockerfile │ │ │ │ │ ├── 9.1 │ │ │ │ │ └── cudnn7 │ │ │ │ │ │ └── Dockerfile │ │ │ │ │ └── 9.2 │ │ │ │ │ └── cudnn7 │ │ │ │ │ └── Dockerfile │ │ │ ├── local │ │ │ │ └── Dockerfile │ │ │ └── runtime │ │ │ │ └── Dockerfile │ │ └── run.sh │ ├── egs │ │ ├── README.md │ │ ├── aidatatang_200zh │ │ │ └── asr1 │ │ │ │ ├── RESULTS.md │ │ │ │ ├── cmd.sh │ │ │ │ ├── conf │ │ │ │ ├── decode.yaml │ │ │ │ ├── fbank.conf │ │ │ │ ├── gpu.conf │ │ │ │ ├── lm.yaml │ │ │ │ ├── pitch.conf │ │ │ │ ├── queue.conf │ │ │ │ ├── slurm.conf │ │ │ │ ├── specaug.yaml │ │ │ │ ├── train.yaml │ │ │ │ └── tuning │ │ │ │ │ ├── decode_pytorch_transformer.yaml │ │ │ │ │ ├── decode_rnn.yaml │ │ │ │ │ ├── train_pytorch_conformer_kernel15.yaml │ │ │ │ │ ├── train_pytorch_conformer_kernel31.yaml │ │ │ │ │ ├── train_pytorch_transformer.yaml │ │ │ │ │ └── train_rnn.yaml │ │ │ │ ├── local │ │ │ │ ├── data_prep.sh │ │ │ │ └── download_and_untar.sh │ │ │ │ ├── path.sh │ │ │ │ ├── run.sh │ │ │ │ ├── steps │ │ │ │ └── utils │ │ ├── aishell │ │ │ └── asr1 │ │ │ │ ├── .gitignore │ │ │ │ ├── RESULTS.md │ │ │ │ ├── cmd.sh │ │ │ │ ├── conf │ │ │ │ ├── decode.yaml │ │ │ │ ├── fbank.conf │ │ │ │ ├── gpu.conf │ │ │ │ ├── lm.yaml │ │ │ │ ├── pitch.conf │ │ │ │ ├── queue.conf │ │ │ │ ├── slurm.conf │ │ │ │ ├── specaug.yaml │ │ │ │ ├── train.yaml │ │ │ │ └── tuning │ │ │ │ │ ├── decode_pytorch_transformer.yaml │ │ │ │ │ ├── decode_rnn.yaml │ │ │ │ │ ├── train_pytorch_conformer_kernel15.yaml │ │ │ │ │ ├── train_pytorch_conformer_kernel31.yaml │ │ │ │ │ ├── train_pytorch_disentangled_transformer.yaml │ │ │ │ │ ├── train_pytorch_transformer.yaml │ │ │ │ │ ├── train_rnn.yaml │ │ │ │ │ └── transducer │ │ │ │ │ ├── decode_default.yaml │ │ │ │ │ ├── train_conformer-rnn_transducer.yaml │ │ │ │ │ ├── train_conformer-rnn_transducer_aux_ngpu4.yaml │ │ │ │ │ ├── train_transducer.yaml │ │ │ │ │ └── train_transducer_aux.yaml │ │ │ │ ├── local │ │ │ │ ├── aishell_data_prep.sh │ │ │ │ └── download_and_untar.sh │ │ │ │ ├── notebooks │ │ │ │ ├── aishell.ipynb │ │ │ │ └── utils.py │ │ │ │ ├── path.sh │ │ │ │ ├── run.sh │ │ │ │ ├── steps │ │ │ │ └── utils │ │ ├── aishell2 │ │ │ └── asr1 │ │ │ │ ├── RESULTS.md │ │ │ │ ├── cmd.sh │ │ │ │ ├── conf │ │ │ │ ├── decode.yaml │ │ │ │ ├── fbank.conf │ │ │ │ ├── gpu.conf │ │ │ │ ├── lm.yaml │ │ │ │ ├── pitch.conf │ │ │ │ ├── queue.conf │ │ │ │ ├── slurm.conf │ │ │ │ ├── train.yaml │ │ │ │ └── tuning │ │ │ │ │ ├── decode_pytorch_transformer.yaml │ │ │ │ │ ├── decode_rnn.yaml │ │ │ │ │ ├── train_pytorch_transformer.yaml │ │ │ │ │ └── train_rnn.yaml │ │ │ │ ├── local │ │ │ │ └── prepare_data.sh │ │ │ │ ├── path.sh │ │ │ │ ├── run.sh │ │ │ │ ├── steps │ │ │ │ └── utils │ │ ├── ami │ │ │ └── asr1 │ │ │ │ ├── RESULTS_ihm.md │ │ │ │ ├── cmd.sh │ │ │ │ ├── conf │ │ │ │ ├── ami_beamformit.cfg │ │ │ │ ├── decode.yaml │ │ │ │ ├── fbank.conf │ │ │ │ ├── gpu.conf │ │ │ │ ├── lm.yaml │ │ │ │ ├── pitch.conf │ │ │ │ ├── queue.conf │ │ │ │ ├── slurm.conf │ │ │ │ ├── train.yaml │ │ │ │ └── tuning │ │ │ │ │ ├── decode.yaml │ │ │ │ │ ├── decode_rnn.yaml │ │ │ │ │ ├── decode_transformer.yaml │ │ │ │ │ ├── train.yaml │ │ │ │ │ ├── train_rnn.yaml │ │ │ │ │ └── train_transformer.yaml │ │ │ │ ├── local │ │ │ │ ├── ami_beamform.sh │ │ │ │ ├── ami_download.sh │ │ │ │ ├── ami_ihm_data_prep.sh │ │ │ │ ├── ami_ihm_scoring_data_prep.sh │ │ │ │ ├── ami_mdm_data_prep.sh │ │ │ │ ├── ami_mdm_scoring_data_prep.sh │ │ │ │ ├── ami_sdm_data_prep.sh │ │ │ │ ├── ami_sdm_scoring_data_prep.sh │ │ │ │ ├── ami_split_segments.pl │ │ │ │ ├── ami_text_prep.sh │ │ │ │ ├── ami_xml2text.sh │ │ │ │ ├── beamformit.sh │ │ │ │ ├── convert2stm.pl │ │ │ │ ├── split_REAMDE.txt │ │ │ │ ├── split_dev.orig │ │ │ │ ├── split_eval.orig │ │ │ │ └── split_train.orig │ │ │ │ ├── path.sh │ │ │ │ ├── run.sh │ │ │ │ ├── steps │ │ │ │ └── utils │ │ ├── an4 │ │ │ ├── asr1 │ │ │ │ ├── RESULTS │ │ │ │ ├── cmd.sh │ │ │ │ ├── conf │ │ │ │ │ ├── decode_ctcweight0.5.yaml │ │ │ │ │ ├── decode_ctcweight1.0.yaml │ │ │ │ │ ├── decode_v2_ctcweight0.5.yaml │ │ │ │ │ ├── decode_v2_ctcweight1.0.yaml │ │ │ │ │ ├── fbank.conf │ │ │ │ │ ├── gpu.conf │ │ │ │ │ ├── lm.yaml │ │ │ │ │ ├── lm_seq_rnn.yaml │ │ │ │ │ ├── lm_transformer.yaml │ │ │ │ │ ├── pitch.conf │ │ │ │ │ ├── queue.conf │ │ │ │ │ ├── slurm.conf │ │ │ │ │ ├── train_mtlalpha0.5.yaml │ │ │ │ │ └── train_mtlalpha1.0.yaml │ │ │ │ ├── local │ │ │ │ │ ├── data_prep.py │ │ │ │ │ └── download_and_untar.sh │ │ │ │ ├── path.sh │ │ │ │ ├── run.sh │ │ │ │ ├── steps │ │ │ │ └── utils │ │ │ └── tts1 │ │ │ │ ├── cmd.sh │ │ │ │ ├── conf │ │ │ │ ├── decode.yaml │ │ │ │ ├── gpu.conf │ │ │ │ ├── slurm.conf │ │ │ │ └── train_pytorch_tacotron2.yaml │ │ │ │ ├── local │ │ │ │ ├── path.sh │ │ │ │ ├── run.sh │ │ │ │ ├── steps │ │ │ │ └── utils │ │ ├── arctic │ │ │ ├── README.md │ │ │ ├── tts1 │ │ │ │ ├── RESULTS.md │ │ │ │ ├── cmd.sh │ │ │ │ ├── conf │ │ │ │ │ ├── decode.yaml │ │ │ │ │ ├── gpu.conf │ │ │ │ │ ├── queue.conf │ │ │ │ │ ├── slurm.conf │ │ │ │ │ ├── train_pytorch_tacotron2.v3.finetune.yaml │ │ │ │ │ └── train_pytorch_transformer.v1.single.finetune.yaml │ │ │ │ ├── local │ │ │ │ │ ├── clean_text.py │ │ │ │ │ ├── data_download.sh │ │ │ │ │ ├── data_prep.sh │ │ │ │ │ └── pretrained_model_download.sh │ │ │ │ ├── path.sh │ │ │ │ ├── run.sh │ │ │ │ ├── steps │ │ │ │ └── utils │ │ │ └── vc1 │ │ │ │ ├── README.md │ │ │ │ ├── cmd.sh │ │ │ │ ├── conf │ │ │ │ ├── bdl.f0 │ │ │ │ ├── clb.f0 │ │ │ │ ├── decode.yaml │ │ │ │ ├── fbank.conf │ │ │ │ ├── gpu.conf │ │ │ │ ├── ob_eval │ │ │ │ │ └── decode_asr.yaml │ │ │ │ ├── pitch.conf │ │ │ │ ├── queue.conf │ │ │ │ ├── rms.f0 │ │ │ │ ├── slt.f0 │ │ │ │ ├── slurm.conf │ │ │ │ ├── specaug.yaml │ │ │ │ ├── train_pytorch_tacotron2.nopt.single.yaml │ │ │ │ ├── train_pytorch_tacotron2.tts_pt.single.yaml │ │ │ │ ├── train_pytorch_transformer.nopt.n80.single.yaml │ │ │ │ ├── train_pytorch_transformer.nopt.single.yaml │ │ │ │ ├── train_pytorch_transformer.tts_pt.n80.single.yaml │ │ │ │ ├── train_pytorch_transformer.tts_pt.single.yaml │ │ │ │ └── tuning │ │ │ │ │ ├── train_pytorch_tacotron2.nopt.v1.1.single.yaml │ │ │ │ │ ├── train_pytorch_tacotron2.tts_pt.v1.single.yaml │ │ │ │ │ ├── train_pytorch_transformer.nopt.v1.1.n80.single.yaml │ │ │ │ │ ├── train_pytorch_transformer.nopt.v1.1.single.yaml │ │ │ │ │ ├── train_pytorch_transformer.tts_pt.v1.1.n80.single.yaml │ │ │ │ │ └── train_pytorch_transformer.tts_pt.v1.1.single.yaml │ │ │ │ ├── local │ │ │ │ ├── clean_text.py │ │ │ │ ├── data_download.sh │ │ │ │ ├── data_prep.sh │ │ │ │ ├── ob_eval │ │ │ │ │ ├── data_prep_for_asr.sh │ │ │ │ │ └── evaluate.sh │ │ │ │ └── pretrained_model_download.sh │ │ │ │ ├── path.sh │ │ │ │ ├── run.sh │ │ │ │ ├── steps │ │ │ │ └── utils │ │ ├── aurora4 │ │ │ └── asr1 │ │ │ │ ├── RESULTS.md │ │ │ │ ├── cmd.sh │ │ │ │ ├── conf │ │ │ │ ├── decode.yaml │ │ │ │ ├── fbank.conf │ │ │ │ ├── gpu.conf │ │ │ │ ├── lm.yaml │ │ │ │ ├── pitch.conf │ │ │ │ ├── queue.conf │ │ │ │ ├── slurm.conf │ │ │ │ ├── specaug.yaml │ │ │ │ ├── train.yaml │ │ │ │ └── tuning │ │ │ │ │ ├── decode_pytorch_transformer.yaml │ │ │ │ │ ├── decode_rnn.yaml │ │ │ │ │ ├── train_pytorch_conformer_kernel15.yaml │ │ │ │ │ ├── train_pytorch_transformer.yaml │ │ │ │ │ └── train_rnn.yaml │ │ │ │ ├── local │ │ │ │ ├── aurora2flist.pl │ │ │ │ ├── aurora4_data_prep.sh │ │ │ │ ├── aurora4_format_data.sh │ │ │ │ ├── find_transcripts.pl │ │ │ │ ├── flist2scp.pl │ │ │ │ ├── flist2scp_12.pl │ │ │ │ ├── ndx2flist.pl │ │ │ │ ├── normalize_transcript.pl │ │ │ │ ├── score_sclite.sh │ │ │ │ ├── wsj_data_prep.sh │ │ │ │ └── wsj_format_data.sh │ │ │ │ ├── path.sh │ │ │ │ ├── run.sh │ │ │ │ ├── steps │ │ │ │ └── utils │ │ ├── babel │ │ │ └── asr1 │ │ │ │ ├── README.md │ │ │ │ ├── RESULTS │ │ │ │ ├── cmd.sh │ │ │ │ ├── conf │ │ │ │ ├── decode.yaml │ │ │ │ ├── fbank.conf │ │ │ │ ├── gpu.conf │ │ │ │ ├── lang.conf │ │ │ │ ├── lists │ │ │ │ ├── lm.yaml │ │ │ │ ├── pitch.conf │ │ │ │ ├── queue.conf │ │ │ │ ├── slurm.conf │ │ │ │ └── train.yaml │ │ │ │ ├── local │ │ │ │ ├── make_corpus_subset.sh │ │ │ │ ├── prepare_acoustic_training_data.pl │ │ │ │ ├── prepare_data.sh │ │ │ │ ├── run_all.sh │ │ │ │ └── setup_languages.sh │ │ │ │ ├── path.sh │ │ │ │ ├── run.sh │ │ │ │ ├── setup_experiment.sh │ │ │ │ ├── steps │ │ │ │ └── utils │ │ ├── blizzard17 │ │ │ └── tts1 │ │ │ │ ├── cmd.sh │ │ │ │ ├── conf │ │ │ │ ├── decode.yaml │ │ │ │ ├── gpu.conf │ │ │ │ ├── queue.conf │ │ │ │ ├── slurm.conf │ │ │ │ ├── train_pytorch_tacotron2.yaml │ │ │ │ └── tuning │ │ │ │ │ └── train_pytorch_tacotron2.tuning.lab3-rev3.yaml │ │ │ │ ├── local │ │ │ │ ├── data_prep.sh │ │ │ │ ├── download.sh │ │ │ │ ├── make_lab_w_punc.py │ │ │ │ ├── make_lab_w_punc.sh │ │ │ │ ├── make_lab_wo_sil.py │ │ │ │ └── make_lab_wo_sil.sh │ │ │ │ ├── path.sh │ │ │ │ ├── run.sh │ │ │ │ ├── steps │ │ │ │ └── utils │ │ ├── chime4 │ │ │ ├── asr1 │ │ │ │ ├── RESULTS.md │ │ │ │ ├── cmd.sh │ │ │ │ ├── conf │ │ │ │ │ ├── chime4.cfg │ │ │ │ │ ├── decode.yaml │ │ │ │ │ ├── fbank.conf │ │ │ │ │ ├── gpu.conf │ │ │ │ │ ├── lm.yaml │ │ │ │ │ ├── pitch.conf │ │ │ │ │ ├── queue.conf │ │ │ │ │ ├── slurm.conf │ │ │ │ │ ├── specaug.yaml │ │ │ │ │ ├── train.yaml │ │ │ │ │ └── tuning │ │ │ │ │ │ ├── decode_pytorch_transformer.yaml │ │ │ │ │ │ ├── decode_rnn.yaml │ │ │ │ │ │ ├── train_pytorch_conformer_kernel15.yaml │ │ │ │ │ │ ├── train_pytorch_transformer.yaml │ │ │ │ │ │ └── train_rnn.yaml │ │ │ │ ├── local │ │ │ │ │ ├── bth_chime4_data_prep.sh │ │ │ │ │ ├── clean_chime4_format_data.sh │ │ │ │ │ ├── clean_wsj0_data_prep.sh │ │ │ │ │ ├── cstr_ndx2flist.pl │ │ │ │ │ ├── find_noisy_transcripts.pl │ │ │ │ │ ├── find_transcripts.pl │ │ │ │ │ ├── flist2scp.pl │ │ │ │ │ ├── make_stft.sh │ │ │ │ │ ├── ndx2flist.pl │ │ │ │ │ ├── normalize_transcript.pl │ │ │ │ │ ├── real_enhan_chime4_data_prep.sh │ │ │ │ │ ├── real_noisy_chime4_data_prep.sh │ │ │ │ │ ├── run_beamform_2ch_track.sh │ │ │ │ │ ├── run_beamform_6ch_track.sh │ │ │ │ │ ├── show_enhance_results.sh │ │ │ │ │ ├── simu_enhan_chime4_data_prep.sh │ │ │ │ │ ├── simu_noisy_chime4_data_prep.sh │ │ │ │ │ ├── wsj_data_prep.sh │ │ │ │ │ └── wsj_format_data.sh │ │ │ │ ├── path.sh │ │ │ │ ├── run.sh │ │ │ │ ├── steps │ │ │ │ └── utils │ │ │ └── asr1_multich │ │ │ │ ├── README.md │ │ │ │ ├── RESULTS.md │ │ │ │ ├── cmd.sh │ │ │ │ ├── conf │ │ │ │ ├── chime4.cfg │ │ │ │ ├── decode.yaml │ │ │ │ ├── lm.yaml │ │ │ │ ├── preprocess.json │ │ │ │ └── train.yaml │ │ │ │ ├── local │ │ │ │ ├── path.sh │ │ │ │ ├── run.sh │ │ │ │ ├── steps │ │ │ │ └── utils │ │ ├── chime5 │ │ │ └── asr1 │ │ │ │ ├── RESULTS.md │ │ │ │ ├── cmd.sh │ │ │ │ ├── conf │ │ │ │ ├── beamformit.cfg │ │ │ │ ├── decode.yaml │ │ │ │ ├── fbank.conf │ │ │ │ ├── gpu.conf │ │ │ │ ├── lm.yaml │ │ │ │ ├── pitch.conf │ │ │ │ ├── queue.conf │ │ │ │ ├── slurm.conf │ │ │ │ └── train.yaml │ │ │ │ ├── local │ │ │ │ ├── json2text.py │ │ │ │ ├── prepare_data.sh │ │ │ │ └── run_beamformit.sh │ │ │ │ ├── path.sh │ │ │ │ ├── run.sh │ │ │ │ ├── steps │ │ │ │ └── utils │ │ ├── chime6 │ │ │ └── asr1 │ │ │ │ ├── RESULTS.md │ │ │ │ ├── cmd.sh │ │ │ │ ├── conf │ │ │ │ ├── beamformit.cfg │ │ │ │ ├── decode.yaml │ │ │ │ ├── fbank.conf │ │ │ │ ├── gpu.conf │ │ │ │ ├── mfcc.conf │ │ │ │ ├── pitch.conf │ │ │ │ ├── queue.conf │ │ │ │ ├── slurm.conf │ │ │ │ ├── specaug.yaml │ │ │ │ ├── train.yaml │ │ │ │ └── tuning │ │ │ │ │ ├── train_transducer.yaml │ │ │ │ │ └── train_transformer-rnn_transducer.yaml │ │ │ │ ├── local │ │ │ │ ├── check_tools.sh │ │ │ │ ├── distant_audio_list │ │ │ │ ├── extract_noises.py │ │ │ │ ├── generate_chime6_data.sh │ │ │ │ ├── install_pb_chime5.sh │ │ │ │ ├── json2text.py │ │ │ │ ├── make_noise_list.py │ │ │ │ ├── prepare_baseline_chime6_data.sh │ │ │ │ ├── prepare_data.sh │ │ │ │ ├── prepare_dict.sh │ │ │ │ ├── run_gss.sh │ │ │ │ ├── train_lms_srilm.sh │ │ │ │ └── wer_output_filter │ │ │ │ ├── path.sh │ │ │ │ ├── run.sh │ │ │ │ ├── steps │ │ │ │ └── utils │ │ ├── cmu_wilderness │ │ │ └── README.txt │ │ ├── commonvoice │ │ │ └── asr1 │ │ │ │ ├── RESULTS.md │ │ │ │ ├── cmd.sh │ │ │ │ ├── conf │ │ │ │ ├── decode.yaml │ │ │ │ ├── fbank.conf │ │ │ │ ├── gpu.conf │ │ │ │ ├── lm.yaml │ │ │ │ ├── no_preprocess.yaml │ │ │ │ ├── pitch.conf │ │ │ │ ├── queue.conf │ │ │ │ ├── slurm.conf │ │ │ │ ├── specaug.yaml │ │ │ │ ├── train.yaml │ │ │ │ └── tuning │ │ │ │ │ ├── decode.yaml │ │ │ │ │ ├── decode_rnn.yaml │ │ │ │ │ ├── decode_transfromer.yaml │ │ │ │ │ ├── train_conformer.yaml │ │ │ │ │ ├── train_conformer_large.yaml │ │ │ │ │ ├── train_conformer_med.yaml │ │ │ │ │ ├── train_conformer_small.yaml │ │ │ │ │ ├── train_rnn.yaml │ │ │ │ │ ├── train_transformer.yaml │ │ │ │ │ └── transducer │ │ │ │ │ ├── cs_train_conformer-rnn_transducer.yaml │ │ │ │ │ ├── cy_train_conformer-rnn_transducer.yaml │ │ │ │ │ └── decode_default.yaml │ │ │ │ ├── local │ │ │ │ ├── data_prep.pl │ │ │ │ └── download_and_untar.sh │ │ │ │ ├── path.sh │ │ │ │ ├── run.sh │ │ │ │ ├── steps │ │ │ │ └── utils │ │ ├── csj │ │ │ ├── align1 │ │ │ │ ├── cmd.sh │ │ │ │ ├── conf │ │ │ │ │ ├── fbank.conf │ │ │ │ │ └── pitch.conf │ │ │ │ ├── local │ │ │ │ │ ├── csj_eval_data_prep.sh │ │ │ │ │ ├── csj_make_trans │ │ │ │ │ ├── csj_rm_tag.py │ │ │ │ │ ├── csj_rm_tag_sp_space.sh │ │ │ │ │ ├── download_model.sh │ │ │ │ │ └── gather_transcript.py │ │ │ │ ├── path.sh │ │ │ │ ├── run.sh │ │ │ │ ├── steps │ │ │ │ └── utils │ │ │ └── asr1 │ │ │ │ ├── RESULTS.md │ │ │ │ ├── cmd.sh │ │ │ │ ├── conf │ │ │ │ ├── decode.yaml │ │ │ │ ├── fbank.conf │ │ │ │ ├── gpu.conf │ │ │ │ ├── lm.yaml │ │ │ │ ├── no_preprocess.yaml │ │ │ │ ├── pitch.conf │ │ │ │ ├── queue.conf │ │ │ │ ├── slurm.conf │ │ │ │ ├── specaug.yaml │ │ │ │ ├── train.yaml │ │ │ │ └── tuning │ │ │ │ │ ├── decode_pytorch_transformer.yaml │ │ │ │ │ ├── decode_pytorch_transformer_maskctc.yaml │ │ │ │ │ ├── decode_rnn.yaml │ │ │ │ │ ├── ld_conv │ │ │ │ │ ├── train_pytorch_DC.yaml │ │ │ │ │ ├── train_pytorch_DC2D.yaml │ │ │ │ │ ├── train_pytorch_LC.yaml │ │ │ │ │ ├── train_pytorch_LC2D.yaml │ │ │ │ │ ├── train_pytorch_SA-DC.yaml │ │ │ │ │ ├── train_pytorch_SA-DC2D.yaml │ │ │ │ │ ├── train_pytorch_SA-LC.yaml │ │ │ │ │ ├── train_pytorch_SA-LC2D.yaml │ │ │ │ │ └── train_pytorch_SA.yaml │ │ │ │ │ ├── train_pytorch_transformer.yaml │ │ │ │ │ ├── train_pytorch_transformer_maskctc.yaml │ │ │ │ │ └── train_rnn.yaml │ │ │ │ ├── local │ │ │ │ ├── csj_data_prep.sh │ │ │ │ ├── csj_eval_data_prep.sh │ │ │ │ ├── csj_make_trans │ │ │ │ │ ├── csj2kaldi4m.pl │ │ │ │ │ ├── csj_autorun.sh │ │ │ │ │ ├── csjconnect.pl │ │ │ │ │ ├── kana2phone │ │ │ │ │ └── vocab2dic.pl │ │ │ │ ├── csj_rm_tag.py │ │ │ │ ├── csj_rm_tag_sp_space.sh │ │ │ │ ├── run_spm.sh │ │ │ │ └── score_sclite.sh │ │ │ │ ├── path.sh │ │ │ │ ├── run.sh │ │ │ │ ├── steps │ │ │ │ └── utils │ │ ├── csmsc │ │ │ └── tts1 │ │ │ │ ├── RESULTS.md │ │ │ │ ├── cmd.sh │ │ │ │ ├── conf │ │ │ │ ├── decode.yaml │ │ │ │ ├── gpu.conf │ │ │ │ ├── queue.conf │ │ │ │ ├── slurm.conf │ │ │ │ ├── train_pytorch_tacotron2.yaml │ │ │ │ ├── train_pytorch_transformer.yaml │ │ │ │ └── tuning │ │ │ │ │ ├── train_fastspeech.v3.single.yaml │ │ │ │ │ ├── train_pytorch_tacotron2.v3.yaml │ │ │ │ │ ├── train_pytorch_transformer.v1.single.yaml │ │ │ │ │ └── train_pytorch_transformer.v1.yaml │ │ │ │ ├── local │ │ │ │ ├── data_download.sh │ │ │ │ └── data_prep.sh │ │ │ │ ├── path.sh │ │ │ │ ├── run.sh │ │ │ │ ├── steps │ │ │ │ └── utils │ │ ├── dipco │ │ │ └── asr1 │ │ │ │ ├── RESULTS.md │ │ │ │ ├── cmd.sh │ │ │ │ ├── conf │ │ │ │ ├── beamformit.cfg │ │ │ │ ├── decode.yaml │ │ │ │ ├── fbank.conf │ │ │ │ ├── gpu.conf │ │ │ │ ├── lm.yaml │ │ │ │ ├── pitch.conf │ │ │ │ ├── queue.conf │ │ │ │ ├── slurm.conf │ │ │ │ ├── train.yaml │ │ │ │ └── tuning │ │ │ │ │ ├── decode_rnn.yaml │ │ │ │ │ ├── train_rnn.yaml │ │ │ │ │ └── train_rnn2.yaml │ │ │ │ ├── local │ │ │ │ ├── download_data.sh │ │ │ │ ├── json2text.py │ │ │ │ ├── prepare_data.sh │ │ │ │ └── run_beamformit.sh │ │ │ │ ├── path.sh │ │ │ │ ├── run.sh │ │ │ │ ├── steps │ │ │ │ └── utils │ │ ├── dirha_wsj │ │ │ └── asr1 │ │ │ │ ├── RESULTS.md │ │ │ │ ├── cmd.sh │ │ │ │ ├── conf │ │ │ │ ├── decode.yaml │ │ │ │ ├── fbank.conf │ │ │ │ ├── gpu.conf │ │ │ │ ├── lm.yaml │ │ │ │ ├── no_preprocess.yaml │ │ │ │ ├── pitch.conf │ │ │ │ ├── queue.conf │ │ │ │ ├── slurm.conf │ │ │ │ ├── specaug.yaml │ │ │ │ ├── train.yaml │ │ │ │ └── tuning │ │ │ │ │ ├── decode_rnn.yaml │ │ │ │ │ └── train_rnn.yaml │ │ │ │ ├── local │ │ │ │ ├── cstr_ndx2flist.pl │ │ │ │ ├── dirha_data_prep.sh │ │ │ │ ├── find_transcripts.pl │ │ │ │ ├── flist2scp.pl │ │ │ │ ├── format_data.sh │ │ │ │ ├── ndx2flist.pl │ │ │ │ ├── normalize_transcript.pl │ │ │ │ ├── tools │ │ │ │ │ ├── Data_Contamination.m │ │ │ │ │ ├── create_folder_str.m │ │ │ │ │ ├── find_files.m │ │ │ │ │ ├── linear_shift.m │ │ │ │ │ ├── read_sphere.m │ │ │ │ │ └── readsph.m │ │ │ │ ├── wsj_data_prep.sh │ │ │ │ └── wsj_format_data.sh │ │ │ │ ├── path.sh │ │ │ │ ├── run.sh │ │ │ │ ├── steps │ │ │ │ └── utils │ │ ├── fisher_callhome_spanish │ │ │ ├── asr1 │ │ │ │ ├── RESULTS │ │ │ │ ├── cmd.sh │ │ │ │ ├── conf │ │ │ │ │ ├── decode.yaml │ │ │ │ │ ├── fbank.conf │ │ │ │ │ ├── gpu.conf │ │ │ │ │ ├── lm.yaml │ │ │ │ │ ├── pitch.conf │ │ │ │ │ ├── queue.conf │ │ │ │ │ ├── slurm.conf │ │ │ │ │ └── train.yaml │ │ │ │ ├── local │ │ │ │ │ ├── callhome_create_splits.sh │ │ │ │ │ ├── callhome_data_prep.sh │ │ │ │ │ ├── callhome_make_spk2gender.py │ │ │ │ │ ├── callhome_make_trans.pl │ │ │ │ │ ├── create_splits.sh │ │ │ │ │ ├── fsp_data_prep.sh │ │ │ │ │ ├── fsp_make_spk2gender.py │ │ │ │ │ ├── fsp_make_trans.pl │ │ │ │ │ └── splits │ │ │ │ │ │ ├── dev │ │ │ │ │ │ ├── split_callhome │ │ │ │ │ │ ├── dev │ │ │ │ │ │ ├── test │ │ │ │ │ │ └── train │ │ │ │ │ │ ├── split_fisher │ │ │ │ │ │ ├── dev │ │ │ │ │ │ ├── dev2 │ │ │ │ │ │ ├── test │ │ │ │ │ │ └── train │ │ │ │ │ │ ├── test │ │ │ │ │ │ └── train │ │ │ │ ├── path.sh │ │ │ │ ├── run.sh │ │ │ │ ├── steps │ │ │ │ └── utils │ │ │ ├── asr1b │ │ │ │ ├── README.md │ │ │ │ ├── RESULTS.md │ │ │ │ ├── cmd.sh │ │ │ │ ├── conf │ │ │ │ │ ├── decode.yaml │ │ │ │ │ ├── fbank.conf │ │ │ │ │ ├── gpu.conf │ │ │ │ │ ├── lm.yaml │ │ │ │ │ ├── pitch.conf │ │ │ │ │ ├── queue.conf │ │ │ │ │ ├── slurm.conf │ │ │ │ │ ├── specaug.yaml │ │ │ │ │ ├── train.yaml │ │ │ │ │ └── tuning │ │ │ │ │ │ ├── decode_pytorch_transformer.yaml │ │ │ │ │ │ ├── decode_pytorch_transformer_nolm.yaml │ │ │ │ │ │ ├── decode_rnn.yaml │ │ │ │ │ │ ├── decode_rnn_char.yaml │ │ │ │ │ │ ├── lm.yaml │ │ │ │ │ │ ├── train_pytorch_conformer.yaml │ │ │ │ │ │ ├── train_pytorch_transformer.yaml │ │ │ │ │ │ ├── train_rnn.yaml │ │ │ │ │ │ └── train_rnn_char.yaml │ │ │ │ ├── local │ │ │ │ ├── path.sh │ │ │ │ ├── run.sh │ │ │ │ ├── steps │ │ │ │ └── utils │ │ │ ├── mt1 │ │ │ │ ├── RESULTS.md │ │ │ │ ├── cmd.sh │ │ │ │ ├── conf │ │ │ │ │ ├── decode.yaml │ │ │ │ │ ├── gpu.conf │ │ │ │ │ ├── queue.conf │ │ │ │ │ ├── slurm.conf │ │ │ │ │ ├── train.yaml │ │ │ │ │ └── tuning │ │ │ │ │ │ ├── decode_pytorch_transformer.2en.yaml │ │ │ │ │ │ ├── decode_pytorch_transformer.yaml │ │ │ │ │ │ ├── decode_pytorch_transformer_char.yaml │ │ │ │ │ │ ├── decode_rnn.yaml │ │ │ │ │ │ ├── decode_rnn_char.yaml │ │ │ │ │ │ ├── train_pytorch_transformer.yaml │ │ │ │ │ │ ├── train_pytorch_transformer_char.yaml │ │ │ │ │ │ ├── train_rnn_char.yaml │ │ │ │ │ │ └── train_rnn_spm.yaml │ │ │ │ ├── local │ │ │ │ ├── path.sh │ │ │ │ ├── run.sh │ │ │ │ ├── steps │ │ │ │ └── utils │ │ │ └── st1 │ │ │ │ ├── RESULTS.md │ │ │ │ ├── cmd.sh │ │ │ │ ├── conf │ │ │ │ ├── decode.yaml │ │ │ │ ├── fbank.conf │ │ │ │ ├── gpu.conf │ │ │ │ ├── pitch.conf │ │ │ │ ├── specaug.yaml │ │ │ │ ├── train.yaml │ │ │ │ └── tuning │ │ │ │ │ ├── decode_pytorch_transformer.yaml │ │ │ │ │ ├── decode_pytorch_transformer_pretrain.yaml │ │ │ │ │ ├── decode_rnn.yaml │ │ │ │ │ ├── decode_rnn_char.yaml │ │ │ │ │ ├── train_pytorch_conformer.yaml │ │ │ │ │ ├── train_pytorch_transformer.yaml │ │ │ │ │ ├── train_pytorch_transformer_ctcasr0.2_mt0.2.yaml │ │ │ │ │ ├── train_pytorch_transformer_ctcasr0.3.yaml │ │ │ │ │ ├── train_rnn.yaml │ │ │ │ │ └── train_rnn_char.yaml │ │ │ │ ├── local │ │ │ │ ├── callhome_create_splits.sh │ │ │ │ ├── callhome_data_prep.sh │ │ │ │ ├── callhome_make_spk2gender.py │ │ │ │ ├── callhome_make_trans.pl │ │ │ │ ├── concat_short_utt.py │ │ │ │ ├── create_splits.sh │ │ │ │ ├── divide_lang.sh │ │ │ │ ├── fsp_data_prep.sh │ │ │ │ ├── fsp_make_spk2gender.py │ │ │ │ ├── fsp_make_trans.pl │ │ │ │ ├── normalize_punctuation.pl │ │ │ │ ├── normalize_trans.sh │ │ │ │ ├── score_bleu.sh │ │ │ │ └── splits │ │ │ │ │ ├── split_callhome │ │ │ │ │ ├── devtest │ │ │ │ │ ├── evltest │ │ │ │ │ └── train │ │ │ │ │ └── split_fisher │ │ │ │ │ ├── dev │ │ │ │ │ ├── dev2 │ │ │ │ │ ├── test │ │ │ │ │ └── train │ │ │ │ ├── path.sh │ │ │ │ ├── run.sh │ │ │ │ ├── steps │ │ │ │ └── utils │ │ ├── fisher_swbd │ │ │ └── asr1 │ │ │ │ ├── cmd.sh │ │ │ │ ├── conf │ │ │ │ ├── MSU_single_letter.txt │ │ │ │ ├── decode.yaml │ │ │ │ ├── fbank.conf │ │ │ │ ├── gpu.conf │ │ │ │ ├── lm.yaml │ │ │ │ ├── pitch.conf │ │ │ │ ├── queue.conf │ │ │ │ ├── slurm.conf │ │ │ │ └── train.yaml │ │ │ │ ├── local │ │ │ │ ├── dict.patch │ │ │ │ ├── eval2000_data_prep.sh │ │ │ │ ├── extend_segments.pl │ │ │ │ ├── fisher_data_prep.sh │ │ │ │ ├── fisher_swbd_prepare_dict.sh │ │ │ │ ├── format_acronyms_dict.py │ │ │ │ ├── map_acronyms_transcripts.py │ │ │ │ ├── rt03_data_prep.sh │ │ │ │ ├── score_sclite.sh │ │ │ │ ├── swbd1_data_download.sh │ │ │ │ ├── swbd1_data_prep.sh │ │ │ │ └── swbd1_map_words.pl │ │ │ │ ├── path.sh │ │ │ │ ├── run.sh │ │ │ │ ├── steps │ │ │ │ └── utils │ │ ├── hkust │ │ │ └── asr1 │ │ │ │ ├── RESULTS.md │ │ │ │ ├── cmd.sh │ │ │ │ ├── conf │ │ │ │ ├── decode.yaml │ │ │ │ ├── fbank.conf │ │ │ │ ├── gpu.conf │ │ │ │ ├── lm.yaml │ │ │ │ ├── pitch.conf │ │ │ │ ├── queue.conf │ │ │ │ ├── slurm.conf │ │ │ │ ├── train.yaml │ │ │ │ └── tuning │ │ │ │ │ ├── decode_pytorch_transformer.yaml │ │ │ │ │ ├── decode_rnn.yaml │ │ │ │ │ ├── train_pytorch_transformer.yaml │ │ │ │ │ └── train_rnn.yaml │ │ │ │ ├── local │ │ │ │ ├── hkust_data_prep.sh │ │ │ │ ├── hkust_format_data.sh │ │ │ │ ├── hkust_normalize.pl │ │ │ │ └── hkust_segment.py │ │ │ │ ├── path.sh │ │ │ │ ├── run.sh │ │ │ │ ├── steps │ │ │ │ └── utils │ │ ├── how2 │ │ │ ├── asr1 │ │ │ │ ├── RESULTS.md │ │ │ │ ├── cmd.sh │ │ │ │ ├── conf │ │ │ │ │ ├── decode.yaml │ │ │ │ │ ├── gpu.conf │ │ │ │ │ ├── lm.yaml │ │ │ │ │ ├── queue.conf │ │ │ │ │ ├── slurm.conf │ │ │ │ │ ├── specaug.yaml │ │ │ │ │ ├── train.yaml │ │ │ │ │ └── tuning │ │ │ │ │ │ ├── decode_pytorch_transformer.yaml │ │ │ │ │ │ ├── decode_rnn.yaml │ │ │ │ │ │ ├── lm.yaml │ │ │ │ │ │ ├── train_pytorch_transformer.yaml │ │ │ │ │ │ ├── train_pytorch_transformer_long.yaml │ │ │ │ │ │ ├── train_rnn.yaml │ │ │ │ │ │ └── train_rnn_long.yaml │ │ │ │ ├── local │ │ │ │ ├── path.sh │ │ │ │ ├── run.sh │ │ │ │ ├── steps │ │ │ │ └── utils │ │ │ ├── mt1 │ │ │ │ ├── RESULTS.md │ │ │ │ ├── cmd.sh │ │ │ │ ├── conf │ │ │ │ │ ├── decode.yaml │ │ │ │ │ ├── gpu.conf │ │ │ │ │ ├── queue.conf │ │ │ │ │ ├── slurm.conf │ │ │ │ │ ├── train.yaml │ │ │ │ │ └── tuning │ │ │ │ │ │ ├── decode_pytorch_transformer.lc.rm.yaml │ │ │ │ │ │ ├── decode_pytorch_transformer.tc.yaml │ │ │ │ │ │ ├── decode_rnn.yaml │ │ │ │ │ │ ├── train_pytorch_transformer.yaml │ │ │ │ │ │ └── train_rnn.yaml │ │ │ │ ├── local │ │ │ │ ├── path.sh │ │ │ │ ├── run.sh │ │ │ │ ├── steps │ │ │ │ └── utils │ │ │ └── st1 │ │ │ │ ├── RESULTS.md │ │ │ │ ├── cmd.sh │ │ │ │ ├── conf │ │ │ │ ├── decode.yaml │ │ │ │ ├── gpu.conf │ │ │ │ ├── queue.conf │ │ │ │ ├── slurm.conf │ │ │ │ ├── specaug.yaml │ │ │ │ ├── train.yaml │ │ │ │ └── tuning │ │ │ │ │ ├── decode_pytorch_transformer.yaml │ │ │ │ │ ├── decode_rnn.yaml │ │ │ │ │ ├── train_pytorch_transformer.yaml │ │ │ │ │ ├── train_pytorch_transformer_ctc_asr0.2_mt0.2.yaml │ │ │ │ │ ├── train_pytorch_transformer_ctc_asr0.3.yaml │ │ │ │ │ ├── train_pytorch_transformer_short.yaml │ │ │ │ │ ├── train_pytorch_transformer_short_long.yaml │ │ │ │ │ ├── train_rnn.yaml │ │ │ │ │ └── train_rnn_long.yaml │ │ │ │ ├── local │ │ │ │ ├── data_prep.sh │ │ │ │ └── data_prep_test.sh │ │ │ │ ├── path.sh │ │ │ │ ├── run.sh │ │ │ │ ├── steps │ │ │ │ └── utils │ │ ├── hub4_spanish │ │ │ └── asr1 │ │ │ │ ├── RESULTS │ │ │ │ ├── cmd.sh │ │ │ │ ├── conf │ │ │ │ ├── decode.yaml │ │ │ │ ├── fbank.conf │ │ │ │ ├── gpu.conf │ │ │ │ ├── pitch.conf │ │ │ │ ├── queue.conf │ │ │ │ ├── slurm.conf │ │ │ │ └── train.yaml │ │ │ │ ├── dev.list │ │ │ │ ├── local │ │ │ │ ├── parse_sgm.pl │ │ │ │ ├── prepare_data.sh │ │ │ │ ├── prepare_test_text.pl │ │ │ │ ├── prepare_training_text.pl │ │ │ │ └── write_kaldi_files.pl │ │ │ │ ├── path.sh │ │ │ │ ├── run.sh │ │ │ │ ├── steps │ │ │ │ └── utils │ │ ├── iwslt16 │ │ │ └── mt1 │ │ │ │ ├── RESULTS.md │ │ │ │ ├── cmd.sh │ │ │ │ ├── conf │ │ │ │ ├── decode.yaml │ │ │ │ ├── gpu.conf │ │ │ │ ├── queue.conf │ │ │ │ ├── slurm.conf │ │ │ │ ├── train.yaml │ │ │ │ └── tuning │ │ │ │ │ ├── decode_pytorch_transformer.yaml │ │ │ │ │ ├── decode_rnn.yaml │ │ │ │ │ ├── train_pytorch_transformer.yaml │ │ │ │ │ └── train_rnn.yaml │ │ │ │ ├── local │ │ │ │ ├── clean_corpus.sh │ │ │ │ ├── compute_bleu.sh │ │ │ │ ├── data_prep.sh │ │ │ │ ├── download_and_untar.sh │ │ │ │ ├── extract_recog_text.py │ │ │ │ ├── generate_json.py │ │ │ │ ├── generate_json.sh │ │ │ │ ├── generate_vocab.py │ │ │ │ ├── tokenize.sh │ │ │ │ ├── train_and_apply_bpe.sh │ │ │ │ └── truecasing.sh │ │ │ │ ├── path.sh │ │ │ │ ├── run.sh │ │ │ │ ├── steps │ │ │ │ └── utils │ │ ├── iwslt18 │ │ │ ├── asr1 │ │ │ │ ├── RESULTS.md │ │ │ │ ├── cmd.sh │ │ │ │ ├── conf │ │ │ │ │ ├── decode.yaml │ │ │ │ │ ├── fbank.conf │ │ │ │ │ ├── gpu.conf │ │ │ │ │ ├── lm.yaml │ │ │ │ │ ├── pitch.conf │ │ │ │ │ ├── queue.conf │ │ │ │ │ ├── slurm.conf │ │ │ │ │ ├── specaug.yaml │ │ │ │ │ ├── train.yaml │ │ │ │ │ └── tuning │ │ │ │ │ │ ├── decode_pytorch_transformer.yaml │ │ │ │ │ │ ├── decode_pytorch_transformer_nolm.yaml │ │ │ │ │ │ ├── decode_rnn_char.yaml │ │ │ │ │ │ ├── decode_rnn_spm.yaml │ │ │ │ │ │ ├── lm_char.yaml │ │ │ │ │ │ ├── lm_spm.yaml │ │ │ │ │ │ ├── train_pytorch_transformer.yaml │ │ │ │ │ │ ├── train_rnn_char.yaml │ │ │ │ │ │ └── train_rnn_spm.yaml │ │ │ │ ├── local │ │ │ │ ├── path.sh │ │ │ │ ├── run.sh │ │ │ │ ├── steps │ │ │ │ └── utils │ │ │ ├── mt1 │ │ │ │ ├── RESULTS │ │ │ │ ├── cmd.sh │ │ │ │ ├── conf │ │ │ │ │ ├── decode.yaml │ │ │ │ │ ├── gpu.conf │ │ │ │ │ ├── queue.conf │ │ │ │ │ ├── slurm.conf │ │ │ │ │ ├── train.yaml │ │ │ │ │ └── tuning │ │ │ │ │ │ ├── decode_rnn_char.yaml │ │ │ │ │ │ ├── decode_rnn_spm.yaml │ │ │ │ │ │ ├── train_rnn_char.yaml │ │ │ │ │ │ └── train_rnn_spm.yaml │ │ │ │ ├── local │ │ │ │ ├── path.sh │ │ │ │ ├── run.sh │ │ │ │ ├── steps │ │ │ │ └── utils │ │ │ └── st1 │ │ │ │ ├── RESULTS │ │ │ │ ├── cmd.sh │ │ │ │ ├── conf │ │ │ │ ├── decode.yaml │ │ │ │ ├── fbank.conf │ │ │ │ ├── gpu.conf │ │ │ │ ├── pitch.conf │ │ │ │ ├── queue.conf │ │ │ │ ├── slurm.conf │ │ │ │ ├── train.yaml │ │ │ │ └── tuning │ │ │ │ │ ├── decode_rnn_char.yaml │ │ │ │ │ ├── decode_rnn_spm.yaml │ │ │ │ │ ├── train_rnn_char.yaml │ │ │ │ │ └── train_rnn_spm.yaml │ │ │ │ ├── local │ │ │ │ ├── ctm2segments.py │ │ │ │ ├── data2json.sh │ │ │ │ ├── data_prep_eval.sh │ │ │ │ ├── data_prep_train.sh │ │ │ │ ├── divide_lang.sh │ │ │ │ ├── download_and_untar.sh │ │ │ │ ├── join_suffix.py │ │ │ │ ├── json2trn_reorder.py │ │ │ │ ├── normalize_punctuation.pl │ │ │ │ ├── parse_xml.py │ │ │ │ ├── reorder_text.py │ │ │ │ ├── score_bleu_reseg.sh │ │ │ │ ├── score_sclite_reseg.sh │ │ │ │ └── wrap-xml.perl │ │ │ │ ├── path.sh │ │ │ │ ├── run.sh │ │ │ │ ├── steps │ │ │ │ └── utils │ │ ├── iwslt19 │ │ │ ├── asr1 │ │ │ │ ├── cmd.sh │ │ │ │ ├── conf │ │ │ │ │ ├── decode.yaml │ │ │ │ │ ├── fbank.conf │ │ │ │ │ ├── gpu.conf │ │ │ │ │ ├── lm.yaml │ │ │ │ │ ├── pitch.conf │ │ │ │ │ ├── queue.conf │ │ │ │ │ ├── slurm.conf │ │ │ │ │ ├── specaug.yaml │ │ │ │ │ ├── train.yaml │ │ │ │ │ └── tuning │ │ │ │ │ │ ├── decode_pytorch_transformer.yaml │ │ │ │ │ │ ├── decode_rnn.yaml │ │ │ │ │ │ ├── lm.yaml │ │ │ │ │ │ ├── train_pytorch_transformer.yaml │ │ │ │ │ │ └── train_rnn.yaml │ │ │ │ ├── local │ │ │ │ ├── path.sh │ │ │ │ ├── run.sh │ │ │ │ ├── steps │ │ │ │ └── utils │ │ │ └── st1 │ │ │ │ ├── cmd.sh │ │ │ │ ├── conf │ │ │ │ ├── decode.yaml │ │ │ │ ├── fbank.conf │ │ │ │ ├── gpu.conf │ │ │ │ ├── pitch.conf │ │ │ │ ├── queue.conf │ │ │ │ ├── slurm.conf │ │ │ │ ├── specaug.yaml │ │ │ │ ├── train.yaml │ │ │ │ └── tuning │ │ │ │ │ ├── decode_pytorch_transformer.yaml │ │ │ │ │ ├── decode_rnn.yaml │ │ │ │ │ ├── train_pytorch_transformer.yaml │ │ │ │ │ └── train_rnn.yaml │ │ │ │ ├── local │ │ │ │ ├── copy_data_dir.sh │ │ │ │ ├── filter_offlimit.py │ │ │ │ ├── join_suffix.py │ │ │ │ ├── offlimit_list │ │ │ │ └── score_sclite.sh │ │ │ │ ├── path.sh │ │ │ │ ├── run.sh │ │ │ │ ├── steps │ │ │ │ └── utils │ │ ├── iwslt21 │ │ │ ├── asr1 │ │ │ │ ├── RESULTS.md │ │ │ │ ├── cmd.sh │ │ │ │ ├── conf │ │ │ │ │ ├── decode.yaml │ │ │ │ │ ├── fbank.conf │ │ │ │ │ ├── gpu.conf │ │ │ │ │ ├── lm.yaml │ │ │ │ │ ├── pitch.conf │ │ │ │ │ ├── queue.conf │ │ │ │ │ ├── slurm.conf │ │ │ │ │ ├── specaug.yaml │ │ │ │ │ ├── train.yaml │ │ │ │ │ └── tuning │ │ │ │ │ │ ├── decode_pytorch_transformer.yaml │ │ │ │ │ │ ├── lm.yaml │ │ │ │ │ │ ├── train_pytorch_conformer_large.yaml │ │ │ │ │ │ ├── train_pytorch_conformer_large_librispeech_like.yaml │ │ │ │ │ │ └── train_pytorch_conformer_large_mustc_like.yaml │ │ │ │ ├── local │ │ │ │ │ ├── copy_data_dir.sh │ │ │ │ │ ├── data2json.sh │ │ │ │ │ ├── data_prep_eval_iwslt.sh │ │ │ │ │ ├── data_prep_wmt20.sh │ │ │ │ │ ├── download_and_untar_iwslt.sh │ │ │ │ │ ├── filter_offlimit.py │ │ │ │ │ ├── filter_parentheses.py │ │ │ │ │ ├── join_suffix.py │ │ │ │ │ ├── json2trn_reorder.py │ │ │ │ │ ├── merge_short_segments.py │ │ │ │ │ ├── offlimit_list │ │ │ │ │ ├── parse_xml.py │ │ │ │ │ ├── score_bleu_reseg.sh │ │ │ │ │ ├── score_sclite_reseg.sh │ │ │ │ │ └── wrap-xml.perl │ │ │ │ ├── path.sh │ │ │ │ ├── run.sh │ │ │ │ ├── steps │ │ │ │ └── utils │ │ │ ├── mt1 │ │ │ │ ├── cmd.sh │ │ │ │ ├── conf │ │ │ │ │ ├── gpu.conf │ │ │ │ │ ├── queue.conf │ │ │ │ │ ├── slurm.conf │ │ │ │ │ └── tuning │ │ │ │ │ │ ├── decode_pytorch_transformer_lc.rm.yaml │ │ │ │ │ │ ├── decode_pytorch_transformer_tc.yaml │ │ │ │ │ │ └── train_pytorch_transformer_base.yaml │ │ │ │ ├── local │ │ │ │ ├── path.sh │ │ │ │ └── run.sh │ │ │ ├── punc1 │ │ │ │ ├── cmd.sh │ │ │ │ ├── conf │ │ │ │ ├── local │ │ │ │ ├── path.sh │ │ │ │ ├── run.sh │ │ │ │ ├── steps │ │ │ │ └── utils │ │ │ └── st1 │ │ │ │ ├── cmd.sh │ │ │ │ ├── conf │ │ │ │ ├── decode.yaml │ │ │ │ ├── fbank.conf │ │ │ │ ├── gpu.conf │ │ │ │ ├── pitch.conf │ │ │ │ ├── queue.conf │ │ │ │ ├── slurm.conf │ │ │ │ ├── specaug.yaml │ │ │ │ ├── train.yaml │ │ │ │ └── tuning │ │ │ │ │ ├── decode_pytorch_transformer_beam4.yaml │ │ │ │ │ └── train_pytorch_conformer_large.yaml │ │ │ │ ├── local │ │ │ │ ├── path.sh │ │ │ │ ├── run.sh │ │ │ │ ├── steps │ │ │ │ └── utils │ │ ├── iwslt21_low_resource │ │ │ ├── asr1 │ │ │ │ ├── cmd.sh │ │ │ │ ├── conf │ │ │ │ │ ├── decode.yaml │ │ │ │ │ ├── fbank.conf │ │ │ │ │ ├── gpu.conf │ │ │ │ │ ├── lm.yaml │ │ │ │ │ ├── pitch.conf │ │ │ │ │ ├── queue.conf │ │ │ │ │ ├── slurm.conf │ │ │ │ │ ├── specaug.yaml │ │ │ │ │ ├── train.yaml │ │ │ │ │ └── tuning │ │ │ │ │ │ ├── decode_pytorch_transformer.yaml │ │ │ │ │ │ ├── decode_rnn.yaml │ │ │ │ │ │ ├── lm.yaml │ │ │ │ │ │ ├── train_pytorch_transformer.yaml │ │ │ │ │ │ └── train_rnn.yaml │ │ │ │ ├── local │ │ │ │ │ ├── data_prep.py │ │ │ │ │ ├── data_prep.sh │ │ │ │ │ └── divide_lang.sh │ │ │ │ ├── path.sh │ │ │ │ ├── run.sh │ │ │ │ ├── steps │ │ │ │ └── utils │ │ │ └── st1 │ │ │ │ ├── cmd.sh │ │ │ │ ├── conf │ │ │ │ ├── decode.yaml │ │ │ │ ├── fbank.conf │ │ │ │ ├── gpu.conf │ │ │ │ ├── lm.yaml │ │ │ │ ├── pitch.conf │ │ │ │ ├── queue.conf │ │ │ │ ├── slurm.conf │ │ │ │ ├── specaug.yaml │ │ │ │ ├── train.yaml │ │ │ │ └── tuning │ │ │ │ │ ├── decode_pytorch_transformer.en-de.yaml │ │ │ │ │ ├── train_pytorch_transformer_ctcasr0.3.yaml │ │ │ │ │ └── train_pytorch_transformer_short.yaml │ │ │ │ ├── local │ │ │ │ ├── data_prep.py │ │ │ │ └── data_prep.sh │ │ │ │ ├── path.sh │ │ │ │ ├── run.sh │ │ │ │ ├── steps │ │ │ │ └── utils │ │ ├── jesc │ │ │ └── mt1 │ │ │ │ ├── RESULTS │ │ │ │ ├── cmd.sh │ │ │ │ ├── conf │ │ │ │ ├── decode.yaml │ │ │ │ ├── gpu.conf │ │ │ │ ├── queue.conf │ │ │ │ ├── slurm.conf │ │ │ │ ├── train.yaml │ │ │ │ └── tuning │ │ │ │ │ ├── decode_rnn_char.yaml │ │ │ │ │ ├── decode_rnn_spm.yaml │ │ │ │ │ ├── train_rnn_char.yaml │ │ │ │ │ └── train_rnn_spm.yaml │ │ │ │ ├── local │ │ │ │ ├── data2json.sh │ │ │ │ ├── download_data.sh │ │ │ │ ├── remove_punctuation.pl │ │ │ │ ├── score_bleu.sh │ │ │ │ └── update_json.sh │ │ │ │ ├── path.sh │ │ │ │ ├── run.sh │ │ │ │ ├── steps │ │ │ │ └── utils │ │ ├── jnas │ │ │ ├── README.md │ │ │ ├── asr1 │ │ │ │ ├── RESULTS │ │ │ │ ├── cmd.sh │ │ │ │ ├── conf │ │ │ │ │ ├── fbank.conf │ │ │ │ │ ├── gpu.conf │ │ │ │ │ ├── pitch.conf │ │ │ │ │ ├── queue.conf │ │ │ │ │ ├── slurm.conf │ │ │ │ │ └── train_speakers.txt │ │ │ │ ├── local │ │ │ │ │ ├── clean_text.py │ │ │ │ │ ├── filter_text.py │ │ │ │ │ ├── jnas_eval_prep.sh │ │ │ │ │ ├── jnas_train_prep.sh │ │ │ │ │ ├── make_eval_trans.py │ │ │ │ │ ├── make_train_trans.py │ │ │ │ │ ├── split_tr_dt.sh │ │ │ │ │ └── update_json.sh │ │ │ │ ├── path.sh │ │ │ │ ├── run.sh │ │ │ │ ├── steps │ │ │ │ └── utils │ │ │ └── tts1 │ │ │ │ ├── RESULTS.md │ │ │ │ ├── cmd.sh │ │ │ │ ├── conf │ │ │ │ ├── decode.yaml │ │ │ │ ├── gpu.conf │ │ │ │ ├── mfcc.conf │ │ │ │ ├── queue.conf │ │ │ │ ├── slurm.conf │ │ │ │ ├── train_pytorch_tacotron2+spkemb.yaml │ │ │ │ ├── train_pytorch_transformer+spkemb.yaml │ │ │ │ ├── train_speakers.txt │ │ │ │ └── vad.conf │ │ │ │ ├── local │ │ │ │ ├── path.sh │ │ │ │ ├── run.sh │ │ │ │ ├── sid │ │ │ │ ├── steps │ │ │ │ └── utils │ │ ├── jsalt18e2e │ │ │ └── asr1 │ │ │ │ ├── cmd.sh │ │ │ │ ├── conf │ │ │ │ ├── decode.yaml │ │ │ │ ├── fbank.conf │ │ │ │ ├── gpu.conf │ │ │ │ ├── pitch.conf │ │ │ │ ├── queue.conf │ │ │ │ ├── slurm.conf │ │ │ │ └── train.yaml │ │ │ │ ├── local │ │ │ │ └── run_spm.sh │ │ │ │ ├── path.sh │ │ │ │ ├── run.sh │ │ │ │ ├── steps │ │ │ │ └── utils │ │ ├── jsut │ │ │ ├── README.md │ │ │ ├── asr1 │ │ │ │ ├── RESULTS.md │ │ │ │ ├── cmd.sh │ │ │ │ ├── conf │ │ │ │ │ ├── decode.yaml │ │ │ │ │ ├── fbank_16k.conf │ │ │ │ │ ├── gpu.conf │ │ │ │ │ ├── lm.yaml │ │ │ │ │ ├── pitch_16k.conf │ │ │ │ │ ├── queue.conf │ │ │ │ │ ├── slurm.conf │ │ │ │ │ ├── specaug.yaml │ │ │ │ │ ├── train.yaml │ │ │ │ │ └── tuning │ │ │ │ │ │ ├── decode_pytorch_transformer.yaml │ │ │ │ │ │ ├── decode_rnn.yaml │ │ │ │ │ │ ├── train_pytorch_conformer.yaml │ │ │ │ │ │ ├── train_pytorch_transformer.v1.yaml │ │ │ │ │ │ ├── train_pytorch_transformer.v2.yaml │ │ │ │ │ │ └── train_rnn.yaml │ │ │ │ ├── local │ │ │ │ │ ├── change_sampling_rate.sh │ │ │ │ │ ├── data_prep.sh │ │ │ │ │ └── download.sh │ │ │ │ ├── path.sh │ │ │ │ ├── run.sh │ │ │ │ ├── steps │ │ │ │ └── utils │ │ │ └── tts1 │ │ │ │ ├── RESULTS.md │ │ │ │ ├── cmd.sh │ │ │ │ ├── conf │ │ │ │ ├── decode.yaml │ │ │ │ ├── gpu.conf │ │ │ │ ├── queue.conf │ │ │ │ ├── slurm.conf │ │ │ │ ├── train_pytorch_tacotron2.yaml │ │ │ │ ├── train_pytorch_transformer.yaml │ │ │ │ └── tuning │ │ │ │ │ └── train_fastspeech.v1.yaml │ │ │ │ ├── local │ │ │ │ ├── clean_text.py │ │ │ │ ├── data_prep.sh │ │ │ │ ├── download.sh │ │ │ │ └── prep_segments.py │ │ │ │ ├── path.sh │ │ │ │ ├── run.sh │ │ │ │ ├── steps │ │ │ │ └── utils │ │ ├── jvs │ │ │ ├── README.md │ │ │ └── tts1 │ │ │ │ ├── RESULTS.md │ │ │ │ ├── cmd.sh │ │ │ │ ├── conf │ │ │ │ ├── decode.yaml │ │ │ │ ├── gpu.conf │ │ │ │ ├── queue.conf │ │ │ │ ├── slurm.conf │ │ │ │ ├── train_pytorch_tacotron2.finetune.yaml │ │ │ │ └── train_pytorch_transformer.finetune.yaml │ │ │ │ ├── local │ │ │ │ ├── clean_text.py │ │ │ │ ├── data_download.sh │ │ │ │ ├── data_prep.sh │ │ │ │ └── pretrained_model_download.sh │ │ │ │ ├── path.sh │ │ │ │ ├── run.sh │ │ │ │ ├── steps │ │ │ │ └── utils │ │ ├── ksponspeech │ │ │ └── asr1 │ │ │ │ ├── RESULTS.md │ │ │ │ ├── cmd.sh │ │ │ │ ├── conf │ │ │ │ ├── decode.yaml │ │ │ │ ├── fbank.conf │ │ │ │ ├── gpu.conf │ │ │ │ ├── lm.yaml │ │ │ │ ├── no_preprocess.yaml │ │ │ │ ├── pitch.conf │ │ │ │ ├── queue.conf │ │ │ │ ├── slurm.conf │ │ │ │ ├── specaug.yaml │ │ │ │ ├── train.yaml │ │ │ │ └── tuning │ │ │ │ │ ├── decode_pytorch_transformer.yaml │ │ │ │ │ ├── decode_pytorch_transformer_large.yaml │ │ │ │ │ ├── decode_rnn.yaml │ │ │ │ │ ├── lm.yaml │ │ │ │ │ ├── lm_large.yaml │ │ │ │ │ ├── lm_transformer.yaml │ │ │ │ │ ├── train_pytorch_conformer_large.yaml │ │ │ │ │ ├── train_pytorch_transformer.yaml │ │ │ │ │ ├── train_pytorch_transformer_large_ngpu4.yaml │ │ │ │ │ ├── train_pytorch_transformer_lr5.0_ag8.v2.yaml │ │ │ │ │ └── train_rnn.yaml │ │ │ │ ├── local │ │ │ │ ├── data_prep.sh │ │ │ │ ├── get_space_normalized_hyps.py │ │ │ │ ├── get_transcriptions.py │ │ │ │ ├── lowercase.perl │ │ │ │ ├── remove_punctuation.pl │ │ │ │ ├── score_sclite.sh │ │ │ │ └── trans_prep.sh │ │ │ │ ├── path.sh │ │ │ │ ├── run.sh │ │ │ │ ├── steps │ │ │ │ └── utils │ │ ├── li10 │ │ │ └── asr1 │ │ │ │ ├── RESULTS.md │ │ │ │ ├── cmd.sh │ │ │ │ ├── conf │ │ │ │ ├── decode.yaml │ │ │ │ ├── fbank.conf │ │ │ │ ├── gpu.conf │ │ │ │ ├── pitch.conf │ │ │ │ ├── queue.conf │ │ │ │ ├── slurm.conf │ │ │ │ ├── train.yaml │ │ │ │ └── tuning │ │ │ │ │ ├── decode_pytorch_transformer.yaml │ │ │ │ │ ├── decode_rnn.yaml │ │ │ │ │ ├── train_pytorch_transformer.yaml │ │ │ │ │ └── train_rnn.yaml │ │ │ │ ├── path.sh │ │ │ │ ├── run.sh │ │ │ │ ├── steps │ │ │ │ └── utils │ │ ├── li42 │ │ │ └── asr1 │ │ │ │ ├── RESULTS.md │ │ │ │ ├── cmd.sh │ │ │ │ ├── conf │ │ │ │ ├── decode.yaml │ │ │ │ ├── fbank.conf │ │ │ │ ├── gpu.conf │ │ │ │ ├── pitch.conf │ │ │ │ ├── queue.conf │ │ │ │ ├── slurm.conf │ │ │ │ ├── train.yaml │ │ │ │ └── tuning │ │ │ │ │ ├── decode_pytorch_transformer.yaml │ │ │ │ │ ├── decode_rnn.yaml │ │ │ │ │ ├── train_pytorch_transformer.yaml │ │ │ │ │ └── train_rnn.yaml │ │ │ │ ├── path.sh │ │ │ │ ├── run.sh │ │ │ │ ├── steps │ │ │ │ └── utils │ │ ├── libri_css │ │ │ └── asr1 │ │ │ │ ├── RESULTS.md │ │ │ │ ├── cmd.sh │ │ │ │ ├── conf │ │ │ │ ├── fbank.conf │ │ │ │ ├── mfcc_hires.conf │ │ │ │ ├── pitch.conf │ │ │ │ ├── queue.conf │ │ │ │ ├── slurm.conf │ │ │ │ └── specaug.yaml │ │ │ │ ├── diarization │ │ │ │ ├── README │ │ │ │ ├── VB_diarization.py │ │ │ │ ├── calc_cossim_scores.py │ │ │ │ ├── cluster.sh │ │ │ │ ├── make_rttm.py │ │ │ │ ├── nnet3 │ │ │ │ │ └── xvector │ │ │ │ │ │ ├── extract_xvectors.sh │ │ │ │ │ │ └── score_plda.sh │ │ │ │ ├── scluster.sh │ │ │ │ ├── score_cossim.sh │ │ │ │ ├── spec_clust.py │ │ │ │ ├── vb_hmm_xvector.py │ │ │ │ └── vb_hmm_xvector.sh │ │ │ │ ├── local │ │ │ │ ├── best_wer_matching.py │ │ │ │ ├── convert_rttm_to_utt2spk_and_segments.py │ │ │ │ ├── data_download.sh │ │ │ │ ├── data_prep_mono.sh │ │ │ │ ├── diarize.sh │ │ │ │ ├── download_asr.sh │ │ │ │ ├── download_xvector.sh │ │ │ │ ├── get_perspeaker_output.py │ │ │ │ ├── multispeaker_score.sh │ │ │ │ ├── nnet3 │ │ │ │ │ └── xvector │ │ │ │ │ │ └── prepare_feats.sh │ │ │ │ ├── prepare_data.py │ │ │ │ ├── score.sh │ │ │ │ ├── score_reco_diarized.sh │ │ │ │ ├── score_reco_oracle.sh │ │ │ │ ├── segment.sh │ │ │ │ ├── segment_diarize_oracle.sh │ │ │ │ ├── segmentation │ │ │ │ │ └── apply_webrtcvad.py │ │ │ │ └── wer_output_filter │ │ │ │ ├── path.sh │ │ │ │ ├── run.sh │ │ │ │ ├── sid │ │ │ │ ├── steps │ │ │ │ └── utils │ │ ├── libri_trans │ │ │ ├── asr1 │ │ │ │ ├── RESULTS.md │ │ │ │ ├── cmd.sh │ │ │ │ ├── conf │ │ │ │ │ ├── decode.yaml │ │ │ │ │ ├── fbank.conf │ │ │ │ │ ├── gpu.conf │ │ │ │ │ ├── lm.yaml │ │ │ │ │ ├── pitch.conf │ │ │ │ │ ├── queue.conf │ │ │ │ │ ├── slurm.conf │ │ │ │ │ ├── specaug.yaml │ │ │ │ │ ├── train.yaml │ │ │ │ │ └── tuning │ │ │ │ │ │ ├── decode_pytorch_transformer_bpe.yaml │ │ │ │ │ │ ├── decode_pytorch_transformer_char.yaml │ │ │ │ │ │ ├── decode_rnn_bpe.yaml │ │ │ │ │ │ ├── decode_rnn_char.yaml │ │ │ │ │ │ ├── lm_char.yaml │ │ │ │ │ │ ├── train_pytorch_transformer_bpe.yaml │ │ │ │ │ │ ├── train_pytorch_transformer_bpe_long.yaml │ │ │ │ │ │ ├── train_pytorch_transformer_char.yaml │ │ │ │ │ │ ├── train_rnn_bpe.yaml │ │ │ │ │ │ └── train_rnn_char.yaml │ │ │ │ ├── local │ │ │ │ ├── path.sh │ │ │ │ ├── run.sh │ │ │ │ ├── steps │ │ │ │ └── utils │ │ │ ├── mt1 │ │ │ │ ├── RESULTS.md │ │ │ │ ├── cmd.sh │ │ │ │ ├── conf │ │ │ │ │ ├── decode.yaml │ │ │ │ │ ├── gpu.conf │ │ │ │ │ ├── queue.conf │ │ │ │ │ ├── slurm.conf │ │ │ │ │ ├── train.yaml │ │ │ │ │ └── tuning │ │ │ │ │ │ ├── decode_pytorch_transformer_bpe.yaml │ │ │ │ │ │ ├── decode_pytorch_transformer_char.yaml │ │ │ │ │ │ ├── decode_rnn_char.yaml │ │ │ │ │ │ ├── decode_rnn_spm.yaml │ │ │ │ │ │ ├── train_pytorch_transformer_bpe.yaml │ │ │ │ │ │ ├── train_pytorch_transformer_char.yaml │ │ │ │ │ │ ├── train_rnn_char.yaml │ │ │ │ │ │ └── train_rnn_spm.yaml │ │ │ │ ├── local │ │ │ │ ├── path.sh │ │ │ │ ├── run.sh │ │ │ │ ├── steps │ │ │ │ └── utils │ │ │ └── st1 │ │ │ │ ├── RESULTS.md │ │ │ │ ├── cmd.sh │ │ │ │ ├── conf │ │ │ │ ├── decode.yaml │ │ │ │ ├── fbank.conf │ │ │ │ ├── gpu.conf │ │ │ │ ├── pitch.conf │ │ │ │ ├── queue.conf │ │ │ │ ├── slurm.conf │ │ │ │ ├── specaug.yaml │ │ │ │ ├── train.yaml │ │ │ │ └── tuning │ │ │ │ │ ├── decode_pytorch_transformer_bpe.yaml │ │ │ │ │ ├── decode_pytorch_transformer_bpe_pretrain.yaml │ │ │ │ │ ├── decode_pytorch_transformer_char.yaml │ │ │ │ │ ├── decode_rnn_char.yaml │ │ │ │ │ ├── train_pytorch_transformer_bpe.yaml │ │ │ │ │ ├── train_pytorch_transformer_bpe_ctc_asr0.2_mt0.2.yaml │ │ │ │ │ ├── train_pytorch_transformer_bpe_ctc_asr0.2_mt0.2_short_long.yaml │ │ │ │ │ ├── train_pytorch_transformer_bpe_ctc_asr0.3.yaml │ │ │ │ │ ├── train_pytorch_transformer_bpe_short.yaml │ │ │ │ │ ├── train_pytorch_transformer_bpe_short_long.yaml │ │ │ │ │ ├── train_pytorch_transformer_char_short.yaml │ │ │ │ │ └── train_rnn_char.yaml │ │ │ │ ├── local │ │ │ │ ├── data_prep.sh │ │ │ │ └── normalize_punctuation.pl │ │ │ │ ├── path.sh │ │ │ │ ├── run.sh │ │ │ │ ├── steps │ │ │ │ └── utils │ │ ├── librispeech │ │ │ ├── asr1 │ │ │ │ ├── RESULTS.md │ │ │ │ ├── cmd.sh │ │ │ │ ├── conf │ │ │ │ │ ├── decode.yaml │ │ │ │ │ ├── fbank.conf │ │ │ │ │ ├── gpu.conf │ │ │ │ │ ├── lm.yaml │ │ │ │ │ ├── pitch.conf │ │ │ │ │ ├── queue.conf │ │ │ │ │ ├── slurm.conf │ │ │ │ │ ├── specaug.yaml │ │ │ │ │ ├── train.yaml │ │ │ │ │ └── tuning │ │ │ │ │ │ ├── decode_pytorch_transformer.yaml │ │ │ │ │ │ ├── decode_pytorch_transformer_large.yaml │ │ │ │ │ │ ├── decode_rnn.yaml │ │ │ │ │ │ ├── ld_conv │ │ │ │ │ │ ├── train_pytorch_DC.yaml │ │ │ │ │ │ ├── train_pytorch_DC2D.yaml │ │ │ │ │ │ ├── train_pytorch_LC.yaml │ │ │ │ │ │ ├── train_pytorch_LC2D.yaml │ │ │ │ │ │ ├── train_pytorch_SA-DC.yaml │ │ │ │ │ │ ├── train_pytorch_SA-DC2D.yaml │ │ │ │ │ │ ├── train_pytorch_SA-LC.yaml │ │ │ │ │ │ ├── train_pytorch_SA-LC2D.yaml │ │ │ │ │ │ └── train_pytorch_SA.yaml │ │ │ │ │ │ ├── lm.yaml │ │ │ │ │ │ ├── lm_large.yaml │ │ │ │ │ │ ├── lm_transformer.yaml │ │ │ │ │ │ ├── train_pytorch_conformer_large.yaml │ │ │ │ │ │ ├── train_pytorch_transformer.yaml │ │ │ │ │ │ ├── train_pytorch_transformer_large_ngpu4.yaml │ │ │ │ │ │ ├── train_pytorch_transformer_lr5.0_ag8.v2.yaml │ │ │ │ │ │ └── train_rnn.yaml │ │ │ │ ├── local │ │ │ │ │ ├── data_prep.sh │ │ │ │ │ └── download_and_untar.sh │ │ │ │ ├── path.sh │ │ │ │ ├── run.sh │ │ │ │ ├── steps │ │ │ │ └── utils │ │ │ └── tts1 │ │ │ │ └── README.md │ │ ├── libritts │ │ │ └── tts1 │ │ │ │ ├── RESULTS.md │ │ │ │ ├── cmd.sh │ │ │ │ ├── conf │ │ │ │ ├── decode.yaml │ │ │ │ ├── gpu.conf │ │ │ │ ├── mfcc.conf │ │ │ │ ├── queue.conf │ │ │ │ ├── slurm.conf │ │ │ │ ├── train_pytorch_tacotron2+spkemb.yaml │ │ │ │ ├── train_pytorch_transformer+spkemb.yaml │ │ │ │ └── vad.conf │ │ │ │ ├── local │ │ │ │ ├── data_prep.sh │ │ │ │ ├── download_and_untar.sh │ │ │ │ └── update_json.sh │ │ │ │ ├── path.sh │ │ │ │ ├── run.sh │ │ │ │ ├── sid │ │ │ │ ├── steps │ │ │ │ └── utils │ │ ├── ljspeech │ │ │ ├── README.md │ │ │ ├── asr1 │ │ │ │ ├── RESULTS.md │ │ │ │ ├── cmd.sh │ │ │ │ ├── conf │ │ │ │ │ ├── decode_ctcweight0.5.yaml │ │ │ │ │ ├── decode_ctcweight1.0.yaml │ │ │ │ │ ├── fbank.conf │ │ │ │ │ ├── gpu.conf │ │ │ │ │ ├── lm.yaml │ │ │ │ │ ├── pitch.conf │ │ │ │ │ ├── queue.conf │ │ │ │ │ ├── slurm.conf │ │ │ │ │ ├── specaug.yaml │ │ │ │ │ ├── train_mtlalpha0.5.yaml │ │ │ │ │ └── train_mtlalpha1.0.yaml │ │ │ │ ├── local │ │ │ │ ├── path.sh │ │ │ │ ├── run.sh │ │ │ │ ├── steps │ │ │ │ └── utils │ │ │ ├── tts1 │ │ │ │ ├── RESULTS.md │ │ │ │ ├── cmd.sh │ │ │ │ ├── conf │ │ │ │ │ ├── decode.yaml │ │ │ │ │ ├── decode_for_knowledge_dist.yaml │ │ │ │ │ ├── fbank.conf │ │ │ │ │ ├── gpu.conf │ │ │ │ │ ├── ob_eval │ │ │ │ │ │ └── decode_asr.yaml │ │ │ │ │ ├── pitch.conf │ │ │ │ │ ├── queue.conf │ │ │ │ │ ├── slurm.conf │ │ │ │ │ ├── specaug.yaml │ │ │ │ │ ├── train_pytorch_tacotron2.yaml │ │ │ │ │ ├── train_pytorch_transformer.yaml │ │ │ │ │ └── tuning │ │ │ │ │ │ ├── decode_fastspeech.yaml │ │ │ │ │ │ ├── train_fastspeech.v1.yaml │ │ │ │ │ │ ├── train_fastspeech.v2.yaml │ │ │ │ │ │ ├── train_fastspeech.v3.yaml │ │ │ │ │ │ ├── train_fastspeech.v4.single.yaml │ │ │ │ │ │ ├── train_fastspeech.v4.yaml │ │ │ │ │ │ ├── train_pytorch_tacotron2.v1.yaml │ │ │ │ │ │ ├── train_pytorch_tacotron2.v2.yaml │ │ │ │ │ │ ├── train_pytorch_tacotron2.v3.yaml │ │ │ │ │ │ ├── train_pytorch_tacotron2.v4.yaml │ │ │ │ │ │ ├── train_pytorch_transformer.v1.single.yaml │ │ │ │ │ │ ├── train_pytorch_transformer.v1.yaml │ │ │ │ │ │ ├── train_pytorch_transformer.v2.yaml │ │ │ │ │ │ ├── train_pytorch_transformer.v3.single.yaml │ │ │ │ │ │ └── train_pytorch_transformer.v3.yaml │ │ │ │ ├── local │ │ │ │ │ ├── clean_text.py │ │ │ │ │ ├── data_download.sh │ │ │ │ │ ├── data_prep.sh │ │ │ │ │ ├── filter_by_focus_rate.py │ │ │ │ │ ├── ob_eval │ │ │ │ │ │ ├── data_prep_for_asr.sh │ │ │ │ │ │ └── evaluate_cer.sh │ │ │ │ │ ├── setup_knowledge_dist.sh │ │ │ │ │ └── update_json.sh │ │ │ │ ├── path.sh │ │ │ │ ├── run.sh │ │ │ │ ├── steps │ │ │ │ └── utils │ │ │ └── tts2 │ │ │ │ ├── RESULTS │ │ │ │ ├── cmd.sh │ │ │ │ ├── conf │ │ │ │ ├── decode.yaml │ │ │ │ ├── gpu.conf │ │ │ │ ├── queue.conf │ │ │ │ ├── slurm.conf │ │ │ │ └── train_pytorch_tacotron2+cbhg.yaml │ │ │ │ ├── local │ │ │ │ ├── path.sh │ │ │ │ ├── run.sh │ │ │ │ ├── steps │ │ │ │ └── utils │ │ ├── m_ailabs │ │ │ └── tts1 │ │ │ │ ├── RESULTS.md │ │ │ │ ├── cmd.sh │ │ │ │ ├── conf │ │ │ │ ├── decode.yaml │ │ │ │ ├── gpu.conf │ │ │ │ ├── queue.conf │ │ │ │ ├── slurm.conf │ │ │ │ ├── train_pytorch_tacotron2.yaml │ │ │ │ ├── train_pytorch_transformer.yaml │ │ │ │ └── tuning │ │ │ │ │ ├── train_fastspeech.v2.single.yaml │ │ │ │ │ ├── train_pytorch_tacotron2.v1.yaml │ │ │ │ │ ├── train_pytorch_tacotron2.v2.yaml │ │ │ │ │ ├── train_pytorch_tacotron2.v3.yaml │ │ │ │ │ ├── train_pytorch_transformer.v1.single.yaml │ │ │ │ │ ├── train_pytorch_transformer.v1.yaml │ │ │ │ │ └── train_pytorch_transformer.v2.yaml │ │ │ │ ├── local │ │ │ │ ├── data_prep.sh │ │ │ │ ├── download.sh │ │ │ │ ├── parse_text.py │ │ │ │ └── update_json.sh │ │ │ │ ├── path.sh │ │ │ │ ├── run.sh │ │ │ │ ├── steps │ │ │ │ └── utils │ │ ├── mboshi_french │ │ │ └── st1 │ │ │ │ ├── RESULTS.md │ │ │ │ ├── cmd.sh │ │ │ │ ├── conf │ │ │ │ ├── decode.yaml │ │ │ │ ├── fbank.conf │ │ │ │ ├── gpu.conf │ │ │ │ ├── pitch.conf │ │ │ │ ├── specaug.yaml │ │ │ │ ├── train.yaml │ │ │ │ └── tuning │ │ │ │ │ ├── decode_pytorch_transformer.yaml │ │ │ │ │ ├── decode_rnn.yaml │ │ │ │ │ ├── train_pytorch_conformer_kernel15_half.yaml │ │ │ │ │ ├── train_pytorch_transformer.yaml │ │ │ │ │ └── train_rnn.yaml │ │ │ │ ├── local │ │ │ │ └── data_prep.sh │ │ │ │ ├── path.sh │ │ │ │ ├── run.sh │ │ │ │ ├── steps │ │ │ │ └── utils │ │ ├── mgb2 │ │ │ └── asr1 │ │ │ │ ├── RESULTS.md │ │ │ │ ├── cmd.sh │ │ │ │ ├── conf │ │ │ │ ├── decode.yaml │ │ │ │ ├── fbank.conf │ │ │ │ ├── gpu.conf │ │ │ │ ├── lm.yaml │ │ │ │ ├── lm_transformer.yaml │ │ │ │ ├── pitch.conf │ │ │ │ ├── queue.conf │ │ │ │ ├── slurm.conf │ │ │ │ ├── specaug.yaml │ │ │ │ ├── train.yaml │ │ │ │ └── tuning │ │ │ │ │ ├── train_pytorch_transformer_large_ngpu4.yaml │ │ │ │ │ └── train_rnn.yaml │ │ │ │ ├── local │ │ │ │ ├── add_to_datadir.py │ │ │ │ ├── check_tools.sh │ │ │ │ ├── join_suffix.py │ │ │ │ ├── mgb_data_prep.sh │ │ │ │ ├── mgb_extract_data.sh │ │ │ │ ├── process_xml.py │ │ │ │ ├── text_segmenting.py │ │ │ │ └── xml2stm.py │ │ │ │ ├── path.sh │ │ │ │ └── run.sh │ │ ├── mini_an4 │ │ │ ├── asr1 │ │ │ │ ├── RESULTS │ │ │ │ ├── cmd.sh │ │ │ │ ├── conf │ │ │ │ │ ├── decode.yaml │ │ │ │ │ ├── decode_mulenc2.yaml │ │ │ │ │ ├── decode_no_ctc.yaml │ │ │ │ │ ├── decode_pure_ctc.yaml │ │ │ │ │ ├── decode_transducer.yaml │ │ │ │ │ ├── decode_v2.yaml │ │ │ │ │ ├── fbank.conf │ │ │ │ │ ├── gpu.conf │ │ │ │ │ ├── lm.yaml │ │ │ │ │ ├── lm_transformer.yaml │ │ │ │ │ ├── pitch.conf │ │ │ │ │ ├── preprocess.yaml │ │ │ │ │ ├── queue.conf │ │ │ │ │ ├── slurm.conf │ │ │ │ │ ├── train.yaml │ │ │ │ │ ├── train_conformer.yaml │ │ │ │ │ ├── train_conformer_pure_ctc.yaml │ │ │ │ │ ├── train_conformer_transducer.yaml │ │ │ │ │ ├── train_mulenc2.yaml │ │ │ │ │ ├── train_multispkr.yaml │ │ │ │ │ ├── train_multispkr_transformer.yaml │ │ │ │ │ ├── train_no_ctc.yaml │ │ │ │ │ ├── train_pure_ctc.yaml │ │ │ │ │ ├── train_transducer.yaml │ │ │ │ │ ├── train_transducer_pre_init_enc.yaml │ │ │ │ │ ├── train_transducer_pre_init_lm.yaml │ │ │ │ │ ├── train_transformer.yaml │ │ │ │ │ ├── train_transformer_no_ctc.yaml │ │ │ │ │ ├── train_transformer_pure_ctc.yaml │ │ │ │ │ └── train_transformer_transducer.yaml │ │ │ │ ├── downloads.tar.gz │ │ │ │ ├── local │ │ │ │ │ └── data_prep.py │ │ │ │ ├── path.sh │ │ │ │ ├── run.sh │ │ │ │ ├── steps │ │ │ │ └── utils │ │ │ ├── asr_mix1 │ │ │ │ ├── RESULTS │ │ │ │ ├── cmd.sh │ │ │ │ ├── conf │ │ │ │ ├── downloads.tar.gz │ │ │ │ ├── local │ │ │ │ │ ├── data2json.sh │ │ │ │ │ └── data_prep.py │ │ │ │ ├── path.sh │ │ │ │ ├── run.sh │ │ │ │ ├── steps │ │ │ │ └── utils │ │ │ ├── mt1 │ │ │ │ ├── cmd.sh │ │ │ │ ├── conf │ │ │ │ │ ├── decode.yaml │ │ │ │ │ ├── gpu.conf │ │ │ │ │ ├── queue.conf │ │ │ │ │ ├── slurm.conf │ │ │ │ │ ├── train.yaml │ │ │ │ │ └── train_transformer.yaml │ │ │ │ ├── local │ │ │ │ ├── path.sh │ │ │ │ ├── run.sh │ │ │ │ ├── steps │ │ │ │ └── utils │ │ │ ├── st1 │ │ │ │ ├── cmd.sh │ │ │ │ ├── conf │ │ │ │ │ ├── decode.yaml │ │ │ │ │ ├── fbank.conf │ │ │ │ │ ├── gpu.conf │ │ │ │ │ ├── pitch.conf │ │ │ │ │ ├── preprocess.yaml │ │ │ │ │ ├── queue.conf │ │ │ │ │ ├── slurm.conf │ │ │ │ │ ├── train.yaml │ │ │ │ │ ├── train_asr0.2_mt0.2.yaml │ │ │ │ │ ├── train_asr0.3.yaml │ │ │ │ │ ├── train_conformer_asr0.2_mt0.2.yaml │ │ │ │ │ ├── train_ctc_asr0.3.yaml │ │ │ │ │ ├── train_mt0.3.yaml │ │ │ │ │ ├── train_transformer.yaml │ │ │ │ │ ├── train_transformer_asr0.2_mt0.2.yaml │ │ │ │ │ ├── train_transformer_asr0.3.yaml │ │ │ │ │ ├── train_transformer_ctc_asr0.3.yaml │ │ │ │ │ └── train_transformer_mt0.3.yaml │ │ │ │ ├── local │ │ │ │ ├── path.sh │ │ │ │ ├── run.sh │ │ │ │ ├── steps │ │ │ │ └── utils │ │ │ └── tts1 │ │ │ │ ├── cmd.sh │ │ │ │ ├── conf │ │ │ │ ├── gpu.conf │ │ │ │ ├── mini_decode.yaml │ │ │ │ ├── slurm.conf │ │ │ │ └── train_pytorch_mini_tacotron2.yaml │ │ │ │ ├── downloads.tar.gz │ │ │ │ ├── local │ │ │ │ ├── path.sh │ │ │ │ ├── run.sh │ │ │ │ ├── steps │ │ │ │ └── utils │ │ ├── must_c │ │ │ ├── asr1 │ │ │ │ ├── RESULTS.md │ │ │ │ ├── cmd.sh │ │ │ │ ├── conf │ │ │ │ │ ├── decode.yaml │ │ │ │ │ ├── fbank.conf │ │ │ │ │ ├── gpu.conf │ │ │ │ │ ├── lm.yaml │ │ │ │ │ ├── pitch.conf │ │ │ │ │ ├── queue.conf │ │ │ │ │ ├── slurm.conf │ │ │ │ │ ├── specaug.yaml │ │ │ │ │ ├── train.yaml │ │ │ │ │ └── tuning │ │ │ │ │ │ ├── decode_pytorch_transformer.yaml │ │ │ │ │ │ ├── decode_rnn.yaml │ │ │ │ │ │ ├── lm.yaml │ │ │ │ │ │ ├── train_pytorch_transformer.yaml │ │ │ │ │ │ └── train_rnn.yaml │ │ │ │ ├── local │ │ │ │ ├── path.sh │ │ │ │ ├── run.sh │ │ │ │ ├── steps │ │ │ │ └── utils │ │ │ ├── mt1 │ │ │ │ ├── RESULTS.md │ │ │ │ ├── cmd.sh │ │ │ │ ├── conf │ │ │ │ │ ├── decode.yaml │ │ │ │ │ ├── gpu.conf │ │ │ │ │ ├── queue.conf │ │ │ │ │ ├── slurm.conf │ │ │ │ │ ├── train.yaml │ │ │ │ │ └── tuning │ │ │ │ │ │ ├── decode_pytorch_transformer.2en.lc.rm.yaml │ │ │ │ │ │ ├── decode_pytorch_transformer.2en.tc.yaml │ │ │ │ │ │ ├── decode_pytorch_transformer.en-de.lc.rm.yaml │ │ │ │ │ │ ├── decode_pytorch_transformer.en-de.tc.yaml │ │ │ │ │ │ ├── decode_pytorch_transformer.en-es.lc.rm.yaml │ │ │ │ │ │ ├── decode_pytorch_transformer.en-es.tc.yaml │ │ │ │ │ │ ├── decode_pytorch_transformer.en-fr.lc.rm.yaml │ │ │ │ │ │ ├── decode_pytorch_transformer.en-fr.tc.yaml │ │ │ │ │ │ ├── decode_pytorch_transformer.en-it.lc.rm.yaml │ │ │ │ │ │ ├── decode_pytorch_transformer.en-it.tc.yaml │ │ │ │ │ │ ├── decode_pytorch_transformer.en-nl.lc.rm.yaml │ │ │ │ │ │ ├── decode_pytorch_transformer.en-nl.tc.yaml │ │ │ │ │ │ ├── decode_pytorch_transformer.en-pt.lc.rm.yaml │ │ │ │ │ │ ├── decode_pytorch_transformer.en-pt.tc.yaml │ │ │ │ │ │ ├── decode_pytorch_transformer.en-ro.lc.rm.yaml │ │ │ │ │ │ ├── decode_pytorch_transformer.en-ro.tc.yaml │ │ │ │ │ │ ├── decode_pytorch_transformer.en-ru.lc.rm.yaml │ │ │ │ │ │ ├── decode_pytorch_transformer.en-ru.tc.yaml │ │ │ │ │ │ ├── decode_rnn.yaml │ │ │ │ │ │ ├── train_pytorch_transformer.yaml │ │ │ │ │ │ └── train_rnn.yaml │ │ │ │ ├── local │ │ │ │ ├── path.sh │ │ │ │ ├── run.sh │ │ │ │ ├── steps │ │ │ │ └── utils │ │ │ └── st1 │ │ │ │ ├── RESULTS.md │ │ │ │ ├── cmd.sh │ │ │ │ ├── conf │ │ │ │ ├── decode.yaml │ │ │ │ ├── fbank.conf │ │ │ │ ├── gpu.conf │ │ │ │ ├── pitch.conf │ │ │ │ ├── queue.conf │ │ │ │ ├── slurm.conf │ │ │ │ ├── specaug.yaml │ │ │ │ ├── train.yaml │ │ │ │ └── tuning │ │ │ │ │ ├── decode_pytorch_transformer.en-de.yaml │ │ │ │ │ ├── decode_pytorch_transformer.en-es.yaml │ │ │ │ │ ├── decode_pytorch_transformer.en-fr.yaml │ │ │ │ │ ├── decode_pytorch_transformer.en-it.yaml │ │ │ │ │ ├── decode_pytorch_transformer.en-nl.yaml │ │ │ │ │ ├── decode_pytorch_transformer.en-pt.yaml │ │ │ │ │ ├── decode_pytorch_transformer.en-ro.yaml │ │ │ │ │ ├── decode_pytorch_transformer.en-ru.yaml │ │ │ │ │ ├── decode_pytorch_transformer.yaml │ │ │ │ │ ├── decode_rnn.yaml │ │ │ │ │ ├── train_pytorch_transformer.yaml │ │ │ │ │ ├── train_pytorch_transformer_short.yaml │ │ │ │ │ ├── train_pytorch_transformer_short_long.yaml │ │ │ │ │ └── train_rnn.yaml │ │ │ │ ├── local │ │ │ │ ├── data_prep.sh │ │ │ │ └── download_and_untar.sh │ │ │ │ ├── path.sh │ │ │ │ ├── run.sh │ │ │ │ ├── steps │ │ │ │ └── utils │ │ ├── must_c_v2 │ │ │ ├── asr1 │ │ │ │ ├── cmd.sh │ │ │ │ ├── conf │ │ │ │ │ ├── decode.yaml │ │ │ │ │ ├── fbank.conf │ │ │ │ │ ├── gpu.conf │ │ │ │ │ ├── lm.yaml │ │ │ │ │ ├── pitch.conf │ │ │ │ │ ├── queue.conf │ │ │ │ │ ├── slurm.conf │ │ │ │ │ ├── specaug.yaml │ │ │ │ │ ├── train.yaml │ │ │ │ │ └── tuning │ │ │ │ │ │ ├── decode_pytorch_transformer.yaml │ │ │ │ │ │ ├── decode_pytorch_transformer_nolm.yaml │ │ │ │ │ │ ├── lm.yaml │ │ │ │ │ │ └── train_pytorch_transformer.yaml │ │ │ │ ├── local │ │ │ │ ├── path.sh │ │ │ │ ├── run.sh │ │ │ │ ├── steps │ │ │ │ └── utils │ │ │ ├── mt1 │ │ │ │ ├── cmd.sh │ │ │ │ ├── conf │ │ │ │ │ ├── decode.yaml │ │ │ │ │ ├── gpu.conf │ │ │ │ │ ├── queue.conf │ │ │ │ │ ├── slurm.conf │ │ │ │ │ ├── train.yaml │ │ │ │ │ └── tuning │ │ │ │ │ │ ├── decode_pytorch_transformer.en-de.lc.rm.yaml │ │ │ │ │ │ ├── decode_pytorch_transformer.en-de.tc.yaml │ │ │ │ │ │ └── train_pytorch_transformer.yaml │ │ │ │ ├── local │ │ │ │ ├── path.sh │ │ │ │ ├── run.sh │ │ │ │ ├── steps │ │ │ │ └── utils │ │ │ └── st1 │ │ │ │ ├── cmd.sh │ │ │ │ ├── conf │ │ │ │ ├── decode.yaml │ │ │ │ ├── fbank.conf │ │ │ │ ├── gpu.conf │ │ │ │ ├── lm.yaml │ │ │ │ ├── pitch.conf │ │ │ │ ├── queue.conf │ │ │ │ ├── slurm.conf │ │ │ │ ├── specaug.yaml │ │ │ │ ├── train.yaml │ │ │ │ └── tuning │ │ │ │ │ ├── decode_pytorch_transformer.en-de.yaml │ │ │ │ │ ├── train_pytorch_transformer_ctcasr0.3.yaml │ │ │ │ │ └── train_pytorch_transformer_short.yaml │ │ │ │ ├── local │ │ │ │ ├── path.sh │ │ │ │ ├── run.sh │ │ │ │ ├── steps │ │ │ │ └── utils │ │ ├── polyphone_swiss_french │ │ │ └── asr1 │ │ │ │ ├── RESULTS.md │ │ │ │ ├── cmd.sh │ │ │ │ ├── conf │ │ │ │ ├── dataprep.yaml │ │ │ │ ├── decode.yaml │ │ │ │ ├── fbank.conf │ │ │ │ ├── gpu.conf │ │ │ │ ├── lm.yaml │ │ │ │ ├── pitch.conf │ │ │ │ ├── queue.conf │ │ │ │ ├── slurm.conf │ │ │ │ ├── specaug.yaml │ │ │ │ ├── train.yaml │ │ │ │ └── tuning │ │ │ │ │ ├── decode_pytorch_transformer_large.yaml │ │ │ │ │ ├── default_lm.yaml │ │ │ │ │ ├── train_pytorch_conformer_large_ngpu8.yaml │ │ │ │ │ ├── train_pytorch_transformer_large_ngpu4.yaml │ │ │ │ │ ├── train_pytorch_transformer_large_ngpu8.yaml │ │ │ │ │ ├── transducer │ │ │ │ │ ├── decode_default.yaml │ │ │ │ │ └── train_conformer-rnn_transducer.yaml │ │ │ │ │ └── transformer_lm.yaml │ │ │ │ ├── local │ │ │ │ ├── data_prep.py │ │ │ │ ├── dev.lst │ │ │ │ ├── test.lst │ │ │ │ └── train.lst │ │ │ │ ├── path.sh │ │ │ │ ├── run.sh │ │ │ │ ├── steps │ │ │ │ └── utils │ │ ├── puebla_nahuatl │ │ │ ├── asr1 │ │ │ │ ├── RESULTS.md │ │ │ │ ├── cmd.sh │ │ │ │ ├── conf │ │ │ │ │ ├── decode.yaml │ │ │ │ │ ├── fbank.conf │ │ │ │ │ ├── gpu.conf │ │ │ │ │ ├── lm.yaml │ │ │ │ │ ├── no_preprocess.yaml │ │ │ │ │ ├── pitch.conf │ │ │ │ │ ├── queue.conf │ │ │ │ │ ├── slurm.conf │ │ │ │ │ ├── specaug.yaml │ │ │ │ │ ├── train.yaml │ │ │ │ │ └── tuning │ │ │ │ │ │ ├── decode_pytorch_transformer.yaml │ │ │ │ │ │ ├── decode_rnn.yaml │ │ │ │ │ │ ├── train_pytorch_conformer_kernel15.yaml │ │ │ │ │ │ ├── train_pytorch_transformer.yaml │ │ │ │ │ │ └── train_rnn.yaml │ │ │ │ ├── local │ │ │ │ │ ├── construct_dataset.py │ │ │ │ │ ├── data_prep.py │ │ │ │ │ └── download_and_untar.sh │ │ │ │ ├── path.sh │ │ │ │ ├── run.sh │ │ │ │ ├── steps │ │ │ │ └── utils │ │ │ └── st1 │ │ │ │ ├── cmd.sh │ │ │ │ ├── conf │ │ │ │ ├── decode.yaml │ │ │ │ ├── fbank.conf │ │ │ │ ├── gpu.conf │ │ │ │ ├── pitch.conf │ │ │ │ ├── queue.conf │ │ │ │ ├── slurm.conf │ │ │ │ ├── specaug.yaml │ │ │ │ ├── train.yaml │ │ │ │ └── tuning │ │ │ │ │ ├── decode_pytorch_transformer.yaml │ │ │ │ │ ├── decode_rnn.yaml │ │ │ │ │ ├── train_pytorch_transformer.yaml │ │ │ │ │ ├── train_pytorch_transformer_short.yaml │ │ │ │ │ ├── train_pytorch_transformer_short_long.yaml │ │ │ │ │ └── train_rnn.yaml │ │ │ │ ├── local │ │ │ │ ├── data_prep.py │ │ │ │ ├── divide_lang.sh │ │ │ │ ├── download_and_untar.sh │ │ │ │ └── get_duration.sh │ │ │ │ ├── path.sh │ │ │ │ ├── run.sh │ │ │ │ ├── steps │ │ │ │ └── utils │ │ ├── reverb │ │ │ ├── asr1 │ │ │ │ ├── RESULTS │ │ │ │ ├── cmd.sh │ │ │ │ ├── conf │ │ │ │ │ ├── decode.yaml │ │ │ │ │ ├── fbank.conf │ │ │ │ │ ├── gpu.conf │ │ │ │ │ ├── lm.yaml │ │ │ │ │ ├── pitch.conf │ │ │ │ │ ├── queue.conf │ │ │ │ │ ├── reverb_beamformit.cfg │ │ │ │ │ ├── slurm.conf │ │ │ │ │ └── train.yaml │ │ │ │ ├── local │ │ │ │ │ ├── Generate_mcTrainData_cut.m │ │ │ │ │ ├── compute_se_scores.sh │ │ │ │ │ ├── download_se_eval_tool.sh │ │ │ │ │ ├── filterjson.py │ │ │ │ │ ├── find_transcripts.pl │ │ │ │ │ ├── find_transcripts_singledot.pl │ │ │ │ │ ├── find_transcripts_txt.pl │ │ │ │ │ ├── flist2scp.pl │ │ │ │ │ ├── generate_data.sh │ │ │ │ │ ├── get_results.sh │ │ │ │ │ ├── mlf2text.pl │ │ │ │ │ ├── ndx2flist.pl │ │ │ │ │ ├── normalize_transcript.pl │ │ │ │ │ ├── prepare_real_data.sh │ │ │ │ │ ├── prepare_simu_data.sh │ │ │ │ │ ├── run_beamform.sh │ │ │ │ │ ├── run_wpe.py │ │ │ │ │ ├── run_wpe.sh │ │ │ │ │ ├── score_RealData.patch │ │ │ │ │ ├── score_SimData.patch │ │ │ │ │ ├── score_for_reverb.sh │ │ │ │ │ ├── score_for_reverb_cln.sh │ │ │ │ │ ├── wsj_data_prep.sh │ │ │ │ │ └── wsj_format_data.sh │ │ │ │ ├── path.sh │ │ │ │ ├── run.sh │ │ │ │ ├── steps │ │ │ │ └── utils │ │ │ └── asr1_multich │ │ │ │ ├── README.md │ │ │ │ ├── RESULTS.md │ │ │ │ ├── cmd.sh │ │ │ │ ├── conf │ │ │ │ ├── decode.yaml │ │ │ │ ├── fbank.conf │ │ │ │ ├── gpu.conf │ │ │ │ ├── lm.yaml │ │ │ │ ├── pitch.conf │ │ │ │ ├── preprocess.json │ │ │ │ ├── queue.conf │ │ │ │ ├── slurm.conf │ │ │ │ └── train.yaml │ │ │ │ ├── local │ │ │ │ ├── Generate_mcTrainData_cut.m │ │ │ │ ├── compute_se_scores.sh │ │ │ │ ├── compute_se_scores_multich.sh │ │ │ │ ├── download_se_eval_tool.sh │ │ │ │ ├── evaltools │ │ │ │ │ ├── prog │ │ │ │ │ │ ├── score_real_scp.m │ │ │ │ │ │ └── score_sim_scp.m │ │ │ │ │ ├── score_RealData_scp.m │ │ │ │ │ ├── score_STOI_scp.m │ │ │ │ │ └── score_SimData_scp.m │ │ │ │ ├── filterjson.py │ │ │ │ ├── find_transcripts.pl │ │ │ │ ├── find_transcripts_singledot.pl │ │ │ │ ├── find_transcripts_txt.pl │ │ │ │ ├── flist2scp.pl │ │ │ │ ├── generate_data.sh │ │ │ │ ├── get_results.sh │ │ │ │ ├── mlf2text.pl │ │ │ │ ├── ndx2flist.pl │ │ │ │ ├── normalize_transcript.pl │ │ │ │ ├── prepare_real_data.sh │ │ │ │ ├── prepare_simu_data.sh │ │ │ │ ├── run_beamform.sh │ │ │ │ ├── run_wpe.py │ │ │ │ ├── run_wpe.sh │ │ │ │ ├── score_RealData.patch │ │ │ │ ├── score_SimData.patch │ │ │ │ ├── score_for_reverb.sh │ │ │ │ ├── score_for_reverb_cln.sh │ │ │ │ ├── wsj_data_prep.sh │ │ │ │ └── wsj_format_data.sh │ │ │ │ ├── path.sh │ │ │ │ ├── run.sh │ │ │ │ ├── steps │ │ │ │ └── utils │ │ ├── ru_open_stt │ │ │ └── asr1 │ │ │ │ ├── RESULTS.md │ │ │ │ ├── cmd.sh │ │ │ │ ├── conf │ │ │ │ ├── decode.yaml │ │ │ │ ├── fbank.conf │ │ │ │ ├── gpu.conf │ │ │ │ ├── lm.yaml │ │ │ │ ├── lm_transformer_large.yaml │ │ │ │ ├── pitch.conf │ │ │ │ ├── queue.conf │ │ │ │ ├── slurm.conf │ │ │ │ ├── specaug.yaml │ │ │ │ ├── train.yaml │ │ │ │ └── tuning │ │ │ │ │ ├── train_pytorch_conformer_large.yaml │ │ │ │ │ └── train_pytorch_transformer_large_ngpu4.yaml │ │ │ │ ├── local │ │ │ │ ├── ru_open_stt_download_data.sh │ │ │ │ └── ru_open_stt_prepare_data.py │ │ │ │ ├── path.sh │ │ │ │ ├── run.sh │ │ │ │ ├── steps │ │ │ │ └── utils │ │ ├── swbd │ │ │ └── asr1 │ │ │ │ ├── RESULTS.md │ │ │ │ ├── cmd.sh │ │ │ │ ├── conf │ │ │ │ ├── decode.yaml │ │ │ │ ├── fbank.conf │ │ │ │ ├── gpu.conf │ │ │ │ ├── lm.yaml │ │ │ │ ├── pitch.conf │ │ │ │ ├── queue.conf │ │ │ │ ├── slurm.conf │ │ │ │ ├── specaug.yaml │ │ │ │ ├── train.yaml │ │ │ │ └── tuning │ │ │ │ │ ├── decode_pytorch_transformer.yaml │ │ │ │ │ ├── decode_rnn.yaml │ │ │ │ │ ├── lm.yaml │ │ │ │ │ ├── lm_transformer.yaml │ │ │ │ │ ├── train_pytorch_conformer.yaml │ │ │ │ │ ├── train_pytorch_conformer_lr5.yaml │ │ │ │ │ ├── train_pytorch_transformer.yaml │ │ │ │ │ └── train_rnn.yaml │ │ │ │ ├── local │ │ │ │ ├── MSU_single_letter.txt │ │ │ │ ├── dict.patch │ │ │ │ ├── eval2000_data_prep.sh │ │ │ │ ├── extend_segments.pl │ │ │ │ ├── fisher_data_prep.sh │ │ │ │ ├── format_acronyms_dict.py │ │ │ │ ├── map_acronyms_transcripts.py │ │ │ │ ├── rt03_data_prep.sh │ │ │ │ ├── score_sclite.sh │ │ │ │ ├── swbd1_data_download.sh │ │ │ │ ├── swbd1_data_prep.sh │ │ │ │ ├── swbd1_fix_speakerid.pl │ │ │ │ ├── swbd1_map_words.pl │ │ │ │ └── swbd1_prepare_dict.sh │ │ │ │ ├── path.sh │ │ │ │ ├── run.sh │ │ │ │ ├── steps │ │ │ │ └── utils │ │ ├── tedlium2 │ │ │ ├── align1 │ │ │ │ ├── cmd.sh │ │ │ │ ├── conf │ │ │ │ │ ├── fbank.conf │ │ │ │ │ └── pitch.conf │ │ │ │ ├── local │ │ │ │ │ ├── download_data.sh │ │ │ │ │ ├── download_model.sh │ │ │ │ │ ├── join_suffix.py │ │ │ │ │ └── prepare_data.sh │ │ │ │ ├── path.sh │ │ │ │ ├── run.sh │ │ │ │ ├── steps │ │ │ │ └── utils │ │ │ └── asr1 │ │ │ │ ├── RESULTS.md │ │ │ │ ├── cmd.sh │ │ │ │ ├── conf │ │ │ │ ├── decode.yaml │ │ │ │ ├── fbank.conf │ │ │ │ ├── gpu.conf │ │ │ │ ├── lm.yaml │ │ │ │ ├── pitch.conf │ │ │ │ ├── queue.conf │ │ │ │ ├── slurm.conf │ │ │ │ ├── specaug.yaml │ │ │ │ ├── train.yaml │ │ │ │ └── tuning │ │ │ │ │ ├── decode_pytorch_transformer.yaml │ │ │ │ │ ├── decode_pytorch_transformer_maskctc.yaml │ │ │ │ │ ├── decode_rnn.yaml │ │ │ │ │ ├── train_pytorch_conformer_large_kernel15_lr2.0.yaml │ │ │ │ │ ├── train_pytorch_conformer_maskctc.yaml │ │ │ │ │ ├── train_pytorch_transformer.v1.yaml │ │ │ │ │ ├── train_pytorch_transformer.v2.yaml │ │ │ │ │ ├── train_pytorch_transformer_maskctc.yaml │ │ │ │ │ └── train_rnn.yaml │ │ │ │ ├── local │ │ │ │ ├── download_data.sh │ │ │ │ ├── join_suffix.py │ │ │ │ └── prepare_data.sh │ │ │ │ ├── path.sh │ │ │ │ ├── run.sh │ │ │ │ ├── steps │ │ │ │ └── utils │ │ ├── tedlium3 │ │ │ └── asr1 │ │ │ │ ├── RESULTS.md │ │ │ │ ├── cmd.sh │ │ │ │ ├── conf │ │ │ │ ├── decode.yaml │ │ │ │ ├── fbank.conf │ │ │ │ ├── gpu.conf │ │ │ │ ├── lm.yaml │ │ │ │ ├── lm_transformer.yaml │ │ │ │ ├── pitch.conf │ │ │ │ ├── queue.conf │ │ │ │ ├── slurm.conf │ │ │ │ ├── specaug.yaml │ │ │ │ ├── train.yaml │ │ │ │ └── tuning │ │ │ │ │ ├── train_conformer.yaml │ │ │ │ │ ├── train_rnn.yaml │ │ │ │ │ └── train_transformer.yaml │ │ │ │ ├── local │ │ │ │ ├── download_data.sh │ │ │ │ ├── join_suffix.py │ │ │ │ └── prepare_data.sh │ │ │ │ ├── path.sh │ │ │ │ ├── run.sh │ │ │ │ ├── steps │ │ │ │ └── utils │ │ ├── timit │ │ │ └── asr1 │ │ │ │ ├── RESULTS.md │ │ │ │ ├── cmd.sh │ │ │ │ ├── conf │ │ │ │ ├── decode.yaml │ │ │ │ ├── dev_spk.list │ │ │ │ ├── fbank.conf │ │ │ │ ├── gpu.conf │ │ │ │ ├── mfcc.conf │ │ │ │ ├── phones.60-48-39.map │ │ │ │ ├── pitch.conf │ │ │ │ ├── queue.conf │ │ │ │ ├── slurm.conf │ │ │ │ ├── test_spk.list │ │ │ │ ├── train.yaml │ │ │ │ └── tuning │ │ │ │ │ ├── train.yaml │ │ │ │ │ └── train2.yaml │ │ │ │ ├── local │ │ │ │ ├── timit_data_prep.sh │ │ │ │ ├── timit_format_data.sh │ │ │ │ └── timit_norm_trans.pl │ │ │ │ ├── path.sh │ │ │ │ ├── run.sh │ │ │ │ ├── steps │ │ │ │ └── utils │ │ ├── timit_ssc │ │ │ └── ssr1 │ │ │ │ ├── RESULTS.md │ │ │ │ ├── cmd.sh │ │ │ │ ├── conf │ │ │ │ ├── decode.yaml │ │ │ │ ├── gpu.conf │ │ │ │ ├── lm.yaml │ │ │ │ ├── no_preprocess.yaml │ │ │ │ ├── queue.conf │ │ │ │ ├── slurm.conf │ │ │ │ ├── specaug.yaml │ │ │ │ ├── train.yaml │ │ │ │ └── tuning │ │ │ │ │ ├── decode_pytorch_transformer.yaml │ │ │ │ │ ├── decode_rnn.yaml │ │ │ │ │ ├── train_pytorch_transformer.yaml │ │ │ │ │ ├── train_pytorch_transformer_d6-2048.yaml │ │ │ │ │ └── train_rnn.yaml │ │ │ │ ├── local │ │ │ │ ├── featprepare.py │ │ │ │ └── ssc_data_prepare.sh │ │ │ │ ├── path.sh │ │ │ │ ├── run.sh │ │ │ │ ├── steps │ │ │ │ └── utils │ │ ├── tweb │ │ │ ├── README.md │ │ │ └── tts1 │ │ │ │ ├── RESULTS.md │ │ │ │ ├── cmd.sh │ │ │ │ ├── conf │ │ │ │ ├── decode.yaml │ │ │ │ ├── gpu.conf │ │ │ │ ├── queue.conf │ │ │ │ ├── slurm.conf │ │ │ │ ├── train_pytorch_tacotron2.yaml │ │ │ │ ├── train_pytorch_transformer.yaml │ │ │ │ └── tuning │ │ │ │ │ ├── train_pytorch_tacotron2.v3.yaml │ │ │ │ │ ├── train_pytorch_transformer.v1.single.yaml │ │ │ │ │ └── train_pytorch_transformer.v1.yaml │ │ │ │ ├── local │ │ │ │ ├── clean_text.py │ │ │ │ └── data_prep.sh │ │ │ │ ├── path.sh │ │ │ │ ├── run.sh │ │ │ │ ├── steps │ │ │ │ └── utils │ │ ├── vais1000 │ │ │ └── tts1 │ │ │ │ ├── RESULTS.md │ │ │ │ ├── cmd.sh │ │ │ │ ├── conf │ │ │ │ ├── decode.yaml │ │ │ │ ├── gpu.conf │ │ │ │ ├── queue.conf │ │ │ │ ├── slurm.conf │ │ │ │ ├── train_fastspeech.yaml │ │ │ │ ├── train_transformer.yaml │ │ │ │ └── tuning │ │ │ │ │ ├── train_fastspeech.v1.yaml │ │ │ │ │ ├── train_fastspeech.v2.yaml │ │ │ │ │ └── train_pytorch_transformer.v1.yaml │ │ │ │ ├── local │ │ │ │ ├── clean_text.py │ │ │ │ ├── data_prep.sh │ │ │ │ └── download.sh │ │ │ │ ├── path.sh │ │ │ │ ├── run.sh │ │ │ │ ├── steps │ │ │ │ └── utils │ │ ├── vcc20 │ │ │ ├── README.md │ │ │ ├── asr+tts-big.png │ │ │ ├── tts1_en_de │ │ │ │ ├── README.md │ │ │ │ ├── cmd.sh │ │ │ │ ├── conf │ │ │ │ │ ├── decode.yaml │ │ │ │ │ ├── gpu.conf │ │ │ │ │ ├── mfcc.conf │ │ │ │ │ ├── queue.conf │ │ │ │ │ ├── slurm.conf │ │ │ │ │ ├── train_pytorch_transformer+spkemb.yaml │ │ │ │ │ └── vad.conf │ │ │ │ ├── local │ │ │ │ │ ├── clean_text_mailabs.py │ │ │ │ │ ├── data_prep.sh │ │ │ │ │ ├── download.sh │ │ │ │ │ └── update_json.sh │ │ │ │ ├── path.sh │ │ │ │ ├── run.sh │ │ │ │ ├── sid │ │ │ │ ├── steps │ │ │ │ └── utils │ │ │ ├── tts1_en_fi │ │ │ │ ├── README.md │ │ │ │ ├── cmd.sh │ │ │ │ ├── conf │ │ │ │ │ ├── decode.yaml │ │ │ │ │ ├── gpu.conf │ │ │ │ │ ├── mfcc.conf │ │ │ │ │ ├── queue.conf │ │ │ │ │ ├── slurm.conf │ │ │ │ │ ├── train_pytorch_transformer+spkemb.yaml │ │ │ │ │ └── vad.conf │ │ │ │ ├── local │ │ │ │ │ ├── clean_text_css10.py │ │ │ │ │ ├── clean_text_mailabs.py │ │ │ │ │ ├── data_prep_css10_fi.sh │ │ │ │ │ ├── data_prep_mailabs.sh │ │ │ │ │ ├── download.sh │ │ │ │ │ └── update_json.sh │ │ │ │ ├── path.sh │ │ │ │ ├── run.sh │ │ │ │ ├── sid │ │ │ │ ├── steps │ │ │ │ └── utils │ │ │ ├── tts1_en_zh │ │ │ │ ├── README.md │ │ │ │ ├── cmd.sh │ │ │ │ ├── conf │ │ │ │ │ ├── decode.yaml │ │ │ │ │ ├── gpu.conf │ │ │ │ │ ├── mfcc.conf │ │ │ │ │ ├── queue.conf │ │ │ │ │ ├── slurm.conf │ │ │ │ │ ├── train_pytorch_transformer+spkemb.yaml │ │ │ │ │ └── vad.conf │ │ │ │ ├── local │ │ │ │ │ ├── clean_text_mailabs.py │ │ │ │ │ ├── data_prep_csmsc.sh │ │ │ │ │ ├── data_prep_mailabs.sh │ │ │ │ │ ├── download_csmsc.sh │ │ │ │ │ ├── download_mailabs.sh │ │ │ │ │ └── update_json.sh │ │ │ │ ├── path.sh │ │ │ │ ├── run.sh │ │ │ │ ├── sid │ │ │ │ ├── steps │ │ │ │ └── utils │ │ │ ├── vc1_task1 │ │ │ │ ├── README.md │ │ │ │ ├── cmd.sh │ │ │ │ ├── conf │ │ │ │ │ ├── TEF1.f0 │ │ │ │ │ ├── TEF2.f0 │ │ │ │ │ ├── TEM1.f0 │ │ │ │ │ ├── TEM2.f0 │ │ │ │ │ ├── decode.yaml │ │ │ │ │ ├── decode_asr.yaml │ │ │ │ │ ├── fbank.conf │ │ │ │ │ ├── gpu.conf │ │ │ │ │ ├── mfcc.conf │ │ │ │ │ ├── ob_eval │ │ │ │ │ │ └── decode_asr.yaml │ │ │ │ │ ├── pitch.conf │ │ │ │ │ ├── queue.conf │ │ │ │ │ ├── slurm.conf │ │ │ │ │ ├── specaug.yaml │ │ │ │ │ ├── train_pytorch_transformer+spkemb.yaml │ │ │ │ │ └── vad.conf │ │ │ │ ├── local │ │ │ │ │ ├── clean_text_asr_result.py │ │ │ │ │ ├── data_download.sh │ │ │ │ │ ├── data_prep_for_asr_english.sh │ │ │ │ │ ├── data_prep_task1.sh │ │ │ │ │ ├── lists │ │ │ │ │ │ ├── E_dev_list.txt │ │ │ │ │ │ ├── E_train_list.txt │ │ │ │ │ │ ├── F_dev_list.txt │ │ │ │ │ │ ├── F_train_list.txt │ │ │ │ │ │ ├── G_dev_list.txt │ │ │ │ │ │ ├── G_train_list.txt │ │ │ │ │ │ ├── M_dev_list.txt │ │ │ │ │ │ ├── M_train_list.txt │ │ │ │ │ │ └── eval_list.txt │ │ │ │ │ ├── ob_eval │ │ │ │ │ │ ├── data_prep_for_asr.sh │ │ │ │ │ │ └── evaluate.sh │ │ │ │ │ ├── pretrained_model_download.sh │ │ │ │ │ ├── recognize.sh │ │ │ │ │ ├── text │ │ │ │ │ └── update_json.sh │ │ │ │ ├── path.sh │ │ │ │ ├── run.sh │ │ │ │ ├── sid │ │ │ │ ├── steps │ │ │ │ └── utils │ │ │ ├── vc1_task2 │ │ │ │ ├── README.md │ │ │ │ ├── cmd.sh │ │ │ │ ├── conf │ │ │ │ │ ├── TFF1.f0 │ │ │ │ │ ├── TFM1.f0 │ │ │ │ │ ├── TGF1.f0 │ │ │ │ │ ├── TGM1.f0 │ │ │ │ │ ├── TMF1.f0 │ │ │ │ │ ├── TMM1.f0 │ │ │ │ │ ├── decode.yaml │ │ │ │ │ ├── decode_asr.yaml │ │ │ │ │ ├── fbank.conf │ │ │ │ │ ├── gpu.conf │ │ │ │ │ ├── mfcc.conf │ │ │ │ │ ├── ob_eval │ │ │ │ │ ├── pitch.conf │ │ │ │ │ ├── queue.conf │ │ │ │ │ ├── slurm.conf │ │ │ │ │ ├── specaug.yaml │ │ │ │ │ ├── train_pytorch_transformer+spkemb.yaml │ │ │ │ │ └── vad.conf │ │ │ │ ├── local │ │ │ │ │ ├── clean_text_asr_result.py │ │ │ │ │ ├── clean_text_finnish.py │ │ │ │ │ ├── clean_text_german.py │ │ │ │ │ ├── clean_text_mandarin.py │ │ │ │ │ ├── data_download.sh │ │ │ │ │ ├── data_prep_for_asr_english.sh │ │ │ │ │ ├── data_prep_task2.sh │ │ │ │ │ ├── lists │ │ │ │ │ │ ├── E_dev_list.txt │ │ │ │ │ │ ├── E_train_list.txt │ │ │ │ │ │ ├── F_dev_list.txt │ │ │ │ │ │ ├── F_train_list.txt │ │ │ │ │ │ ├── G_dev_list.txt │ │ │ │ │ │ ├── G_train_list.txt │ │ │ │ │ │ ├── M_dev_list.txt │ │ │ │ │ │ ├── M_train_list.txt │ │ │ │ │ │ └── eval_list.txt │ │ │ │ │ ├── ob_eval │ │ │ │ │ ├── pretrained_model_download.sh │ │ │ │ │ ├── recognize.sh │ │ │ │ │ ├── text │ │ │ │ │ └── update_json.sh │ │ │ │ ├── path.sh │ │ │ │ ├── run.sh │ │ │ │ ├── sid │ │ │ │ ├── steps │ │ │ │ └── utils │ │ │ └── voc1 │ │ │ │ ├── README.md │ │ │ │ ├── cmd.sh │ │ │ │ ├── conf │ │ │ │ ├── parallel_wavegan.task1.yaml │ │ │ │ ├── parallel_wavegan.task2.yaml │ │ │ │ └── slurm.conf │ │ │ │ ├── local │ │ │ │ ├── data_prep.sh │ │ │ │ ├── make_subset_data.sh │ │ │ │ └── subset_data_dir.py │ │ │ │ ├── path.sh │ │ │ │ ├── run.sh │ │ │ │ └── utils │ │ ├── vivos │ │ │ ├── README.txt │ │ │ └── asr1 │ │ │ │ ├── RESULTS.md │ │ │ │ ├── cmd.sh │ │ │ │ ├── conf │ │ │ │ ├── decode.yaml │ │ │ │ ├── fbank.conf │ │ │ │ ├── lm.yaml │ │ │ │ ├── pitch.conf │ │ │ │ ├── train.yaml │ │ │ │ └── tuning │ │ │ │ │ ├── decode_ctcweight0.3.yaml │ │ │ │ │ ├── decode_ctcweight1.0.yaml │ │ │ │ │ ├── train_conformer.yaml │ │ │ │ │ ├── train_mtlalpha1.0.yaml │ │ │ │ │ └── transducer │ │ │ │ │ ├── decode_alsd.yaml │ │ │ │ │ ├── decode_default.yaml │ │ │ │ │ ├── decode_nsc.yaml │ │ │ │ │ ├── decode_tsd.yaml │ │ │ │ │ ├── train_conformer-rnn_transducer.yaml │ │ │ │ │ ├── train_conformer_transducer.yaml │ │ │ │ │ ├── train_tdnn_conformer-rnn_transducer.yaml │ │ │ │ │ ├── train_tdnn_transformer-rnn_transducer.yaml │ │ │ │ │ ├── train_transducer.yaml │ │ │ │ │ ├── train_transformer-rnn_transducer.yaml │ │ │ │ │ └── train_transformer_transducer.yaml │ │ │ │ ├── local │ │ │ │ └── download_and_untar.sh │ │ │ │ ├── path.sh │ │ │ │ ├── run.sh │ │ │ │ ├── steps │ │ │ │ └── utils │ │ ├── voxforge │ │ │ └── asr1 │ │ │ │ ├── RESULTS.md │ │ │ │ ├── cmd.sh │ │ │ │ ├── conf │ │ │ │ ├── decode.yaml │ │ │ │ ├── fbank.conf │ │ │ │ ├── gpu.conf │ │ │ │ ├── no_preprocess.yaml │ │ │ │ ├── pitch.conf │ │ │ │ ├── queue.conf │ │ │ │ ├── slurm.conf │ │ │ │ ├── specaug.yaml │ │ │ │ ├── train.yaml │ │ │ │ └── tuning │ │ │ │ │ ├── decode_pytorch_transformer.yaml │ │ │ │ │ ├── decode_pytorch_transformer_maskctc.yaml │ │ │ │ │ ├── decode_rnn.yaml │ │ │ │ │ ├── lm.yaml │ │ │ │ │ ├── train_pytorch_conformer.yaml │ │ │ │ │ ├── train_pytorch_conformer_maskctc.yaml │ │ │ │ │ ├── train_pytorch_transformer.yaml │ │ │ │ │ ├── train_pytorch_transformer_d6-2048.yaml │ │ │ │ │ ├── train_pytorch_transformer_maskctc.yaml │ │ │ │ │ ├── train_rnn.yaml │ │ │ │ │ └── transducer │ │ │ │ │ ├── decode_alsd.yaml │ │ │ │ │ ├── decode_default.yaml │ │ │ │ │ ├── decode_nsc.yaml │ │ │ │ │ ├── decode_tsd.yaml │ │ │ │ │ ├── train_conformer-rnn_transducer.yaml │ │ │ │ │ └── train_transducer.yaml │ │ │ │ ├── local │ │ │ │ ├── filter_text.py │ │ │ │ ├── getdata.sh │ │ │ │ ├── make_trans.py │ │ │ │ ├── split_tr_dt_et.sh │ │ │ │ ├── voxforge_data_prep.sh │ │ │ │ └── voxforge_format_data.sh │ │ │ │ ├── path.sh │ │ │ │ ├── run.sh │ │ │ │ ├── steps │ │ │ │ └── utils │ │ ├── wsj │ │ │ └── asr1 │ │ │ │ ├── RESULTS.md │ │ │ │ ├── cmd.sh │ │ │ │ ├── conf │ │ │ │ ├── decode.yaml │ │ │ │ ├── fbank.conf │ │ │ │ ├── gpu.conf │ │ │ │ ├── lm.yaml │ │ │ │ ├── no_preprocess.yaml │ │ │ │ ├── pitch.conf │ │ │ │ ├── queue.conf │ │ │ │ ├── slurm.conf │ │ │ │ ├── specaug.yaml │ │ │ │ ├── train.yaml │ │ │ │ ├── train_rnn.yaml │ │ │ │ └── tuning │ │ │ │ │ ├── decode_chainer_transformer.yaml │ │ │ │ │ ├── decode_pytorch_transformer.yaml │ │ │ │ │ ├── decode_pytorch_transformer_maskctc.yaml │ │ │ │ │ ├── decode_rnn.yaml │ │ │ │ │ ├── train_chainer_transformer.yaml │ │ │ │ │ ├── train_pytorch_DC.yaml │ │ │ │ │ ├── train_pytorch_DC2D.yaml │ │ │ │ │ ├── train_pytorch_LC.yaml │ │ │ │ │ ├── train_pytorch_LC2D.yaml │ │ │ │ │ ├── train_pytorch_SA-DC.yaml │ │ │ │ │ ├── train_pytorch_SA-DC2D.yaml │ │ │ │ │ ├── train_pytorch_SA-LC.yaml │ │ │ │ │ ├── train_pytorch_SA-LC2D.yaml │ │ │ │ │ ├── train_pytorch_SA.yaml │ │ │ │ │ ├── train_pytorch_conformer_maskctc.yaml │ │ │ │ │ ├── train_pytorch_transformer.yaml │ │ │ │ │ ├── train_pytorch_transformer_maskctc.yaml │ │ │ │ │ └── train_rnn.yaml │ │ │ │ ├── local │ │ │ │ ├── filtering_samples.py │ │ │ │ ├── find_transcripts.pl │ │ │ │ ├── flist2scp.pl │ │ │ │ ├── ndx2flist.pl │ │ │ │ ├── normalize_transcript.pl │ │ │ │ ├── wsj_data_prep.sh │ │ │ │ └── wsj_format_data.sh │ │ │ │ ├── path.sh │ │ │ │ ├── run.sh │ │ │ │ ├── steps │ │ │ │ └── utils │ │ ├── wsj_mix │ │ │ └── asr1 │ │ │ │ ├── RESULTS.md │ │ │ │ ├── cmd.sh │ │ │ │ ├── conf │ │ │ │ ├── decode.yaml │ │ │ │ ├── fbank.conf │ │ │ │ ├── gpu.conf │ │ │ │ ├── lm.yaml │ │ │ │ ├── no_preprocess.yaml │ │ │ │ ├── pitch.conf │ │ │ │ ├── queue.conf │ │ │ │ ├── slurm.conf │ │ │ │ ├── specaug.yaml │ │ │ │ ├── train_multispkr.yaml │ │ │ │ └── train_multispkr_transformer.yaml │ │ │ │ ├── local │ │ │ │ ├── convert2wav.sh │ │ │ │ ├── data2json.sh │ │ │ │ ├── find_transcripts.pl │ │ │ │ ├── flist2scp.pl │ │ │ │ ├── merge_scp2json.py │ │ │ │ ├── mergejson.py │ │ │ │ ├── ndx2flist.pl │ │ │ │ ├── normalize_transcript.pl │ │ │ │ ├── wsj0_2mix_data_prep.sh │ │ │ │ ├── wsj0_create_mixture.sh │ │ │ │ ├── wsj_2mix_data_prep.sh │ │ │ │ ├── wsj_data_prep.sh │ │ │ │ ├── wsj_format_data.sh │ │ │ │ └── wsj_mix_scheme.tar.gz │ │ │ │ ├── path.sh │ │ │ │ ├── run.sh │ │ │ │ ├── steps │ │ │ │ └── utils │ │ ├── yesno │ │ │ ├── README.txt │ │ │ ├── asr1 │ │ │ │ ├── RESULTS │ │ │ │ ├── cmd.sh │ │ │ │ ├── conf │ │ │ │ │ ├── decode.yaml │ │ │ │ │ ├── fbank.conf │ │ │ │ │ ├── gpu.conf │ │ │ │ │ ├── pitch.conf │ │ │ │ │ └── train.yaml │ │ │ │ ├── local │ │ │ │ │ ├── create_yesno_txt.pl │ │ │ │ │ ├── create_yesno_wav_scp.pl │ │ │ │ │ ├── create_yesno_waves_test_train.pl │ │ │ │ │ └── prepare_data.sh │ │ │ │ ├── path.sh │ │ │ │ ├── run.sh │ │ │ │ ├── steps │ │ │ │ └── utils │ │ │ └── tts1 │ │ │ │ ├── cmd.sh │ │ │ │ ├── conf │ │ │ │ ├── decode.yaml │ │ │ │ ├── gpu.conf │ │ │ │ ├── slurm.conf │ │ │ │ └── train_pytorch_tacotron2.yaml │ │ │ │ ├── local │ │ │ │ ├── path.sh │ │ │ │ ├── run.sh │ │ │ │ ├── steps │ │ │ │ └── utils │ │ └── yoloxochitl_mixtec │ │ │ └── asr1 │ │ │ ├── RESULTS.md │ │ │ ├── cmd.sh │ │ │ ├── conf │ │ │ ├── decode.yaml │ │ │ ├── fbank.conf │ │ │ ├── gpu.conf │ │ │ ├── lm.yaml │ │ │ ├── no_preprocess.yaml │ │ │ ├── pitch.conf │ │ │ ├── queue.conf │ │ │ ├── slurm.conf │ │ │ ├── specaug.yaml │ │ │ ├── train.yaml │ │ │ └── tuning │ │ │ │ ├── decode_pytorch_transformer.yaml │ │ │ │ ├── decode_rnn.yaml │ │ │ │ ├── train_pytorch_conformer_kernel15.yaml │ │ │ │ ├── train_pytorch_transformer.yaml │ │ │ │ └── train_rnn.yaml │ │ │ ├── local │ │ │ ├── data_prep.py │ │ │ ├── download_and_untar.sh │ │ │ └── split_tr_dt_et.sh │ │ │ ├── path.sh │ │ │ ├── run.sh │ │ │ ├── steps │ │ │ └── utils │ ├── egs2 │ │ ├── README.md │ │ ├── TEMPLATE │ │ │ ├── README.md │ │ │ ├── asr1 │ │ │ │ ├── asr.sh │ │ │ │ ├── cmd.sh │ │ │ │ ├── conf │ │ │ │ │ ├── fbank.conf │ │ │ │ │ ├── pbs.conf │ │ │ │ │ ├── pitch.conf │ │ │ │ │ ├── queue.conf │ │ │ │ │ └── slurm.conf │ │ │ │ ├── db.sh │ │ │ │ ├── local │ │ │ │ │ └── path.sh │ │ │ │ ├── path.sh │ │ │ │ ├── pyscripts │ │ │ │ │ ├── audio │ │ │ │ │ │ └── format_wav_scp.py │ │ │ │ │ ├── feats │ │ │ │ │ │ └── feat-to-shape.py │ │ │ │ │ └── utils │ │ │ │ │ │ ├── evaluate_mcd.py │ │ │ │ │ │ ├── get_yaml.py │ │ │ │ │ │ ├── make_token_list_from_config.py │ │ │ │ │ │ ├── plot_sinc_filters.py │ │ │ │ │ │ └── print_args.py │ │ │ │ ├── scripts │ │ │ │ │ ├── audio │ │ │ │ │ │ └── format_wav_scp.sh │ │ │ │ │ ├── feats │ │ │ │ │ │ ├── feat_to_shape.sh │ │ │ │ │ │ ├── make_fbank.sh │ │ │ │ │ │ └── make_stft.sh │ │ │ │ │ └── utils │ │ │ │ │ │ ├── download_from_google_drive.sh │ │ │ │ │ │ ├── perturb_data_dir_speed.sh │ │ │ │ │ │ └── show_asr_result.sh │ │ │ │ ├── setup.sh │ │ │ │ ├── steps │ │ │ │ └── utils │ │ │ ├── diar1 │ │ │ │ ├── cmd.sh │ │ │ │ ├── conf │ │ │ │ │ ├── pbs.conf │ │ │ │ │ ├── queue.conf │ │ │ │ │ └── slurm.conf │ │ │ │ ├── db.sh │ │ │ │ ├── diar.sh │ │ │ │ ├── local │ │ │ │ │ └── path.sh │ │ │ │ ├── path.sh │ │ │ │ ├── pyscripts │ │ │ │ │ ├── audio │ │ │ │ │ ├── feats │ │ │ │ │ └── utils │ │ │ │ │ │ ├── convert_rttm.py │ │ │ │ │ │ ├── get_yaml.py │ │ │ │ │ │ ├── make_rttm.py │ │ │ │ │ │ └── print_args.py │ │ │ │ ├── scripts │ │ │ │ │ ├── audio │ │ │ │ │ ├── feats │ │ │ │ │ └── utils │ │ │ │ │ │ └── score_der.sh │ │ │ │ ├── setup.sh │ │ │ │ ├── steps │ │ │ │ └── utils │ │ │ ├── enh1 │ │ │ │ ├── README.md │ │ │ │ ├── cmd.sh │ │ │ │ ├── conf │ │ │ │ │ ├── pbs.conf │ │ │ │ │ ├── queue.conf │ │ │ │ │ └── slurm.conf │ │ │ │ ├── db.sh │ │ │ │ ├── enh.sh │ │ │ │ ├── local │ │ │ │ │ └── path.sh │ │ │ │ ├── path.sh │ │ │ │ ├── pyscripts │ │ │ │ ├── scripts │ │ │ │ │ ├── audio │ │ │ │ │ ├── feats │ │ │ │ │ └── utils │ │ │ │ │ │ ├── perturb_enh_data_dir_speed.sh │ │ │ │ │ │ └── show_enh_score.sh │ │ │ │ ├── setup.sh │ │ │ │ ├── steps │ │ │ │ └── utils │ │ │ └── tts1 │ │ │ │ ├── README.md │ │ │ │ ├── cmd.sh │ │ │ │ ├── conf │ │ │ │ ├── mfcc.conf │ │ │ │ ├── pbs.conf │ │ │ │ ├── queue.conf │ │ │ │ ├── slurm.conf │ │ │ │ └── vad.conf │ │ │ │ ├── db.sh │ │ │ │ ├── local │ │ │ │ └── path.sh │ │ │ │ ├── path.sh │ │ │ │ ├── pyscripts │ │ │ │ ├── scripts │ │ │ │ ├── setup.sh │ │ │ │ ├── sid │ │ │ │ ├── steps │ │ │ │ ├── tts.sh │ │ │ │ └── utils │ │ ├── aishell │ │ │ └── asr1 │ │ │ │ ├── README.md │ │ │ │ ├── asr.sh │ │ │ │ ├── cmd.sh │ │ │ │ ├── conf │ │ │ │ ├── decode_asr_rnn.yaml │ │ │ │ ├── decode_asr_streaming.yaml │ │ │ │ ├── decode_asr_transformer.yaml │ │ │ │ ├── fbank.conf │ │ │ │ ├── pbs.conf │ │ │ │ ├── pitch.conf │ │ │ │ ├── queue.conf │ │ │ │ ├── slurm.conf │ │ │ │ ├── train_asr_conformer.yaml │ │ │ │ ├── train_asr_rnn.yaml │ │ │ │ ├── train_asr_streaming_transformer.yaml │ │ │ │ ├── train_asr_transformer.yaml │ │ │ │ ├── train_lm.yaml │ │ │ │ ├── train_lm_transformer.yaml │ │ │ │ └── tuning │ │ │ │ │ ├── train_asr_conformer.yaml │ │ │ │ │ ├── train_asr_transformer.yaml │ │ │ │ │ ├── train_asr_transformer2.yaml │ │ │ │ │ ├── train_asr_transformer3.yaml │ │ │ │ │ ├── train_asr_transformer_lr0.002.yaml │ │ │ │ │ ├── train_lm_rnn.yaml │ │ │ │ │ ├── train_lm_rnn2.yaml │ │ │ │ │ └── train_lm_transformer.yaml │ │ │ │ ├── db.sh │ │ │ │ ├── local │ │ │ │ ├── data.sh │ │ │ │ ├── download_and_untar.sh │ │ │ │ └── path.sh │ │ │ │ ├── path.sh │ │ │ │ ├── pyscripts │ │ │ │ ├── run.sh │ │ │ │ ├── run_streaming.sh │ │ │ │ ├── scripts │ │ │ │ ├── steps │ │ │ │ └── utils │ │ ├── ami │ │ │ └── asr1 │ │ │ │ ├── README.md │ │ │ │ ├── asr.sh │ │ │ │ ├── cmd.sh │ │ │ │ ├── conf │ │ │ │ ├── ami_beamformit.cfg │ │ │ │ ├── decode_asr.yaml │ │ │ │ ├── fbank.conf │ │ │ │ ├── pbs.conf │ │ │ │ ├── pitch.conf │ │ │ │ ├── queue.conf │ │ │ │ ├── slurm.conf │ │ │ │ ├── train_asr.yaml │ │ │ │ ├── train_lm.yaml │ │ │ │ └── tuning │ │ │ │ │ ├── decode_rnn.yaml │ │ │ │ │ ├── decode_transformer.yaml │ │ │ │ │ ├── decode_transformer2.yaml │ │ │ │ │ ├── train_asr_rnn.yaml │ │ │ │ │ ├── train_asr_transformer.yaml │ │ │ │ │ ├── train_asr_transformer2.yaml │ │ │ │ │ ├── train_asr_transformer3.yaml │ │ │ │ │ ├── train_asr_transformer4.yaml │ │ │ │ │ ├── train_lm_transformer.yaml │ │ │ │ │ └── train_lm_transformer2.yaml │ │ │ │ ├── db.sh │ │ │ │ ├── local │ │ │ │ ├── ami_beamform.sh │ │ │ │ ├── ami_download.sh │ │ │ │ ├── ami_ihm_data_prep.sh │ │ │ │ ├── ami_ihm_scoring_data_prep.sh │ │ │ │ ├── ami_mdm_data_prep.sh │ │ │ │ ├── ami_mdm_scoring_data_prep.sh │ │ │ │ ├── ami_sdm_data_prep.sh │ │ │ │ ├── ami_sdm_scoring_data_prep.sh │ │ │ │ ├── ami_split_segments.pl │ │ │ │ ├── ami_text_prep.sh │ │ │ │ ├── ami_xml2text.sh │ │ │ │ ├── beamformit.sh │ │ │ │ ├── convert2stm.pl │ │ │ │ ├── data.sh │ │ │ │ ├── path.sh │ │ │ │ ├── split_REAMDE.txt │ │ │ │ ├── split_dev.orig │ │ │ │ ├── split_eval.orig │ │ │ │ └── split_train.orig │ │ │ │ ├── path.sh │ │ │ │ ├── pyscripts │ │ │ │ ├── run.sh │ │ │ │ ├── scripts │ │ │ │ ├── steps │ │ │ │ └── utils │ │ ├── an4 │ │ │ ├── asr1 │ │ │ │ ├── asr.sh │ │ │ │ ├── cmd.sh │ │ │ │ ├── conf │ │ │ │ │ ├── fbank.conf │ │ │ │ │ ├── pbs.conf │ │ │ │ │ ├── pitch.conf │ │ │ │ │ ├── queue.conf │ │ │ │ │ ├── slurm.conf │ │ │ │ │ ├── train_asr_rnn.yaml │ │ │ │ │ ├── train_asr_sinc_rnn.yaml │ │ │ │ │ ├── train_asr_transformer.yaml │ │ │ │ │ └── train_lm.yaml │ │ │ │ ├── db.sh │ │ │ │ ├── local │ │ │ │ │ ├── data.sh │ │ │ │ │ ├── data_prep.py │ │ │ │ │ ├── download_and_untar.sh │ │ │ │ │ └── path.sh │ │ │ │ ├── path.sh │ │ │ │ ├── pyscripts │ │ │ │ ├── run.sh │ │ │ │ ├── scripts │ │ │ │ ├── steps │ │ │ │ └── utils │ │ │ └── tts1 │ │ │ │ ├── cmd.sh │ │ │ │ ├── conf │ │ │ │ ├── fbank.conf │ │ │ │ ├── pbs.conf │ │ │ │ ├── pitch.conf │ │ │ │ ├── queue.conf │ │ │ │ └── slurm.conf │ │ │ │ ├── db.sh │ │ │ │ ├── local │ │ │ │ ├── path.sh │ │ │ │ ├── pyscripts │ │ │ │ ├── run.sh │ │ │ │ ├── scripts │ │ │ │ ├── steps │ │ │ │ ├── tts.sh │ │ │ │ └── utils │ │ ├── babel │ │ │ └── asr1 │ │ │ │ ├── README.md │ │ │ │ ├── asr.sh │ │ │ │ ├── cmd.sh │ │ │ │ ├── conf │ │ │ │ ├── decoder_asr.yaml │ │ │ │ ├── fbank.conf │ │ │ │ ├── lists │ │ │ │ ├── pbs.conf │ │ │ │ ├── pitch.conf │ │ │ │ ├── queue.conf │ │ │ │ ├── slurm.conf │ │ │ │ ├── train_asr.yaml │ │ │ │ └── train_lm.yaml │ │ │ │ ├── db.sh │ │ │ │ ├── local │ │ │ │ ├── data.sh │ │ │ │ ├── lang_list.sh │ │ │ │ ├── make_corpus_subset.sh │ │ │ │ ├── path.sh │ │ │ │ ├── prepare_acoustic_training_data.pl │ │ │ │ ├── prepare_data.sh │ │ │ │ └── setup_languages.sh │ │ │ │ ├── path.sh │ │ │ │ ├── pyscripts │ │ │ │ ├── run.sh │ │ │ │ ├── scripts │ │ │ │ ├── steps │ │ │ │ └── utils │ │ ├── chime4 │ │ │ ├── asr1 │ │ │ │ ├── README.md │ │ │ │ ├── asr.sh │ │ │ │ ├── cmd.sh │ │ │ │ ├── conf │ │ │ │ │ ├── chime4.cfg │ │ │ │ │ ├── decode_asr_rnn.yaml │ │ │ │ │ ├── decode_asr_transformer.yaml │ │ │ │ │ ├── fbank.conf │ │ │ │ │ ├── pbs.conf │ │ │ │ │ ├── pitch.conf │ │ │ │ │ ├── queue.conf │ │ │ │ │ ├── slurm.conf │ │ │ │ │ ├── train_asr_rnn.yaml │ │ │ │ │ ├── train_asr_transformer.yaml │ │ │ │ │ ├── train_lm.yaml │ │ │ │ │ └── tuning │ │ │ │ │ │ ├── decode_asr_rnn.yaml │ │ │ │ │ │ └── train_asr_rnn.yaml │ │ │ │ ├── db.sh │ │ │ │ ├── local │ │ │ │ │ ├── bth_chime4_data_prep.sh │ │ │ │ │ ├── clean_chime4_format_data.sh │ │ │ │ │ ├── clean_wsj0_data_prep.sh │ │ │ │ │ ├── cstr_ndx2flist.pl │ │ │ │ │ ├── data.sh │ │ │ │ │ ├── find_noisy_transcripts.pl │ │ │ │ │ ├── find_transcripts.pl │ │ │ │ │ ├── flist2scp.pl │ │ │ │ │ ├── make_stft.sh │ │ │ │ │ ├── ndx2flist.pl │ │ │ │ │ ├── normalize_transcript.pl │ │ │ │ │ ├── path.sh │ │ │ │ │ ├── real_enhan_chime4_data_prep.sh │ │ │ │ │ ├── real_noisy_chime4_data_prep.sh │ │ │ │ │ ├── run_beamform_2ch_track.sh │ │ │ │ │ ├── run_beamform_6ch_track.sh │ │ │ │ │ ├── show_enhance_results.sh │ │ │ │ │ ├── simu_enhan_chime4_data_prep.sh │ │ │ │ │ ├── simu_noisy_chime4_data_prep.sh │ │ │ │ │ ├── wsj_data_prep.sh │ │ │ │ │ └── wsj_format_data.sh │ │ │ │ ├── path.sh │ │ │ │ ├── pyscripts │ │ │ │ ├── run.sh │ │ │ │ ├── scripts │ │ │ │ ├── steps │ │ │ │ └── utils │ │ │ └── enh1 │ │ │ │ ├── README.md │ │ │ │ ├── cmd.sh │ │ │ │ ├── conf │ │ │ │ ├── pbs.conf │ │ │ │ ├── queue.conf │ │ │ │ ├── slurm.conf │ │ │ │ ├── train.yaml │ │ │ │ └── tuning │ │ │ │ │ ├── train_enh_beamformer_mvdr.yaml │ │ │ │ │ ├── train_enh_blstm_tf.yaml │ │ │ │ │ ├── train_enh_conv_tasnet.yaml │ │ │ │ │ └── train_enh_dprnn_tasnet.yaml │ │ │ │ ├── db.sh │ │ │ │ ├── enh.sh │ │ │ │ ├── local │ │ │ │ ├── CHiME3_simulate_data_patched_parallel.m │ │ │ │ ├── clean_chime4_format_data.sh │ │ │ │ ├── clean_wsj0_data_prep.sh │ │ │ │ ├── cstr_ndx2flist.pl │ │ │ │ ├── data.sh │ │ │ │ ├── find_noisy_transcripts.pl │ │ │ │ ├── find_transcripts.pl │ │ │ │ ├── flist2scp.pl │ │ │ │ ├── localize.m │ │ │ │ ├── normalize_transcript.pl │ │ │ │ ├── path.sh │ │ │ │ ├── real_ext_chime4_data_prep.sh │ │ │ │ ├── real_noisy_chime4_data_prep.sh │ │ │ │ ├── simu_ext_chime4_data_prep.sh │ │ │ │ └── simu_noisy_chime4_data_prep.sh │ │ │ │ ├── path.sh │ │ │ │ ├── pyscripts │ │ │ │ ├── run.sh │ │ │ │ ├── scripts │ │ │ │ ├── steps │ │ │ │ └── utils │ │ ├── commonvoice │ │ │ └── asr1 │ │ │ │ ├── README.md │ │ │ │ ├── asr.sh │ │ │ │ ├── cmd.sh │ │ │ │ ├── conf │ │ │ │ ├── decode_asr.yaml │ │ │ │ ├── fbank.conf │ │ │ │ ├── pbs.conf │ │ │ │ ├── pitch.conf │ │ │ │ ├── queue.conf │ │ │ │ ├── slurm.conf │ │ │ │ ├── train_asr.yaml │ │ │ │ ├── train_asr_transformer.yaml │ │ │ │ ├── train_lm.yaml │ │ │ │ └── tuning │ │ │ │ │ ├── decode_rnn.yaml │ │ │ │ │ ├── decode_transformer.yaml │ │ │ │ │ ├── train_asr_conformer5.yaml │ │ │ │ │ ├── train_asr_rnn.yaml │ │ │ │ │ └── train_asr_transformer.yaml │ │ │ │ ├── db.sh │ │ │ │ ├── local │ │ │ │ ├── data.sh │ │ │ │ ├── data_prep.pl │ │ │ │ ├── download_and_untar.sh │ │ │ │ └── path.sh │ │ │ │ ├── path.sh │ │ │ │ ├── pyscripts │ │ │ │ ├── run.sh │ │ │ │ ├── scripts │ │ │ │ ├── steps │ │ │ │ └── utils │ │ ├── csj │ │ │ └── asr1 │ │ │ │ ├── README.md │ │ │ │ ├── asr.sh │ │ │ │ ├── cmd.sh │ │ │ │ ├── conf │ │ │ │ ├── decode_asr.yaml │ │ │ │ ├── fbank.conf │ │ │ │ ├── pbs.conf │ │ │ │ ├── pitch.conf │ │ │ │ ├── queue.conf │ │ │ │ ├── slurm.conf │ │ │ │ ├── train_asr_conformer.yaml │ │ │ │ ├── train_asr_rnn.yaml │ │ │ │ ├── train_asr_transformer.yaml │ │ │ │ ├── train_lm.yaml │ │ │ │ └── tuning │ │ │ │ │ ├── train_asr_conformer.yaml │ │ │ │ │ ├── train_asr_rnn.yaml │ │ │ │ │ ├── train_asr_rnn_scheduler.yaml │ │ │ │ │ └── train_asr_transformer.yaml │ │ │ │ ├── db.sh │ │ │ │ ├── local │ │ │ │ ├── csj_data_prep.sh │ │ │ │ ├── csj_eval_data_prep.sh │ │ │ │ ├── csj_make_trans │ │ │ │ ├── csj_rm_tag.py │ │ │ │ ├── csj_rm_tag_sp_space.sh │ │ │ │ ├── data.sh │ │ │ │ ├── path.sh │ │ │ │ ├── run_spm.sh │ │ │ │ └── score_sclite.sh │ │ │ │ ├── path.sh │ │ │ │ ├── pyscripts │ │ │ │ ├── run.sh │ │ │ │ ├── scripts │ │ │ │ ├── steps │ │ │ │ └── utils │ │ ├── csmsc │ │ │ └── tts1 │ │ │ │ ├── README.md │ │ │ │ ├── cmd.sh │ │ │ │ ├── conf │ │ │ │ ├── decode.yaml │ │ │ │ ├── pbs.conf │ │ │ │ ├── queue.conf │ │ │ │ ├── slurm.conf │ │ │ │ ├── train.yaml │ │ │ │ └── tuning │ │ │ │ │ ├── decode_fastspeech.yaml │ │ │ │ │ ├── decode_tacotron2.yaml │ │ │ │ │ ├── train_conformer_fastspeech.yaml │ │ │ │ │ ├── train_conformer_fastspeech2.yaml │ │ │ │ │ ├── train_fastspeech.yaml │ │ │ │ │ ├── train_fastspeech2.yaml │ │ │ │ │ ├── train_tacotron2.yaml │ │ │ │ │ └── train_transformer.yaml │ │ │ │ ├── db.sh │ │ │ │ ├── local │ │ │ │ ├── data.sh │ │ │ │ ├── data_download.sh │ │ │ │ └── path.sh │ │ │ │ ├── path.sh │ │ │ │ ├── pyscripts │ │ │ │ ├── run.sh │ │ │ │ ├── scripts │ │ │ │ ├── steps │ │ │ │ ├── tts.sh │ │ │ │ └── utils │ │ ├── dirha_wsj │ │ │ └── asr1 │ │ │ │ ├── README.md │ │ │ │ ├── asr.sh │ │ │ │ ├── cmd.sh │ │ │ │ ├── conf │ │ │ │ ├── decode.yaml │ │ │ │ ├── fbank.conf │ │ │ │ ├── pbs.conf │ │ │ │ ├── pitch.conf │ │ │ │ ├── queue.conf │ │ │ │ ├── slurm.conf │ │ │ │ ├── train_asr_transformer.yaml │ │ │ │ ├── train_lm_transformer.yaml │ │ │ │ └── tuning │ │ │ │ │ ├── train_asr_rnn.yaml │ │ │ │ │ ├── train_asr_transformer.yaml │ │ │ │ │ ├── train_asr_transformer_cmvn.yaml │ │ │ │ │ ├── train_lm_rnn.yaml │ │ │ │ │ └── train_lm_transformer.yaml │ │ │ │ ├── db.sh │ │ │ │ ├── local │ │ │ │ ├── cstr_ndx2flist.pl │ │ │ │ ├── data.sh │ │ │ │ ├── dirha_data_prep.sh │ │ │ │ ├── find_transcripts.pl │ │ │ │ ├── flist2scp.pl │ │ │ │ ├── flist2scp_dirha.pl │ │ │ │ ├── format_data.sh │ │ │ │ ├── ndx2flist.pl │ │ │ │ ├── normalize_transcript.pl │ │ │ │ ├── path.sh │ │ │ │ ├── prepare_dirha_ir.py │ │ │ │ ├── prepare_dirha_noise.py │ │ │ │ ├── prepare_dirha_wsj.py │ │ │ │ ├── tools │ │ │ │ ├── wsj_data_prep.sh │ │ │ │ ├── wsj_data_prep_dirha.sh │ │ │ │ ├── wsj_format_data.sh │ │ │ │ └── wsj_format_data_dirha.sh │ │ │ │ ├── path.sh │ │ │ │ ├── pyscripts │ │ │ │ ├── run.sh │ │ │ │ ├── scripts │ │ │ │ ├── steps │ │ │ │ └── utils │ │ ├── dns_ins20 │ │ │ └── enh1 │ │ │ │ ├── README.md │ │ │ │ ├── cmd.sh │ │ │ │ ├── conf │ │ │ │ ├── pbs.conf │ │ │ │ ├── queue.conf │ │ │ │ ├── slurm.conf │ │ │ │ ├── train.yaml │ │ │ │ └── tuning │ │ │ │ │ └── train_enh_blstm_tf.yaml │ │ │ │ ├── db.sh │ │ │ │ ├── enh.sh │ │ │ │ ├── local │ │ │ │ ├── convert2wav.sh │ │ │ │ ├── data.sh │ │ │ │ ├── dns_create_mixture.sh │ │ │ │ ├── dns_data_prep.sh │ │ │ │ └── path.sh │ │ │ │ ├── path.sh │ │ │ │ ├── pyscripts │ │ │ │ ├── run.sh │ │ │ │ ├── scripts │ │ │ │ ├── steps │ │ │ │ └── utils │ │ ├── gigaspeech │ │ │ └── asr1 │ │ │ │ ├── README.md │ │ │ │ ├── asr.sh │ │ │ │ ├── cmd.sh │ │ │ │ ├── conf │ │ │ │ ├── decode_asr.yaml │ │ │ │ ├── fbank.conf │ │ │ │ ├── pbs.conf │ │ │ │ ├── pitch.conf │ │ │ │ ├── queue.conf │ │ │ │ ├── slurm.conf │ │ │ │ ├── train_asr.yaml │ │ │ │ ├── train_lm.yaml │ │ │ │ └── tuning │ │ │ │ │ └── train_asr_conformer6_n_fft512_hop_length256.yaml │ │ │ │ ├── db.sh │ │ │ │ ├── local │ │ │ │ ├── data.sh │ │ │ │ └── path.sh │ │ │ │ ├── path.sh │ │ │ │ ├── pyscripts │ │ │ │ ├── run.sh │ │ │ │ ├── scripts │ │ │ │ ├── steps │ │ │ │ └── utils │ │ ├── hkust │ │ │ └── asr1 │ │ │ │ ├── README.md │ │ │ │ ├── asr.sh │ │ │ │ ├── cmd.sh │ │ │ │ ├── conf │ │ │ │ ├── decode.yaml │ │ │ │ ├── fbank.conf │ │ │ │ ├── pbs.conf │ │ │ │ ├── pitch.conf │ │ │ │ ├── queue.conf │ │ │ │ ├── slurm.conf │ │ │ │ ├── train_asr_transformer.yaml │ │ │ │ ├── train_lm_transformer.yaml │ │ │ │ └── tuning │ │ │ │ │ ├── decode.yaml │ │ │ │ │ ├── train_asr_conformer.yaml │ │ │ │ │ ├── train_asr_conformer2.yaml │ │ │ │ │ ├── train_asr_transformer.yaml │ │ │ │ │ ├── train_asr_transformer2.yaml │ │ │ │ │ └── train_lm_transformer.yaml │ │ │ │ ├── db.sh │ │ │ │ ├── local │ │ │ │ ├── data.sh │ │ │ │ ├── hkust_data_prep.sh │ │ │ │ ├── hkust_format_data.sh │ │ │ │ ├── hkust_normalize.pl │ │ │ │ ├── hkust_segment.py │ │ │ │ └── path.sh │ │ │ │ ├── path.sh │ │ │ │ ├── pyscripts │ │ │ │ ├── run.sh │ │ │ │ ├── scripts │ │ │ │ ├── steps │ │ │ │ └── utils │ │ ├── how2 │ │ │ └── asr1 │ │ │ │ ├── README.md │ │ │ │ ├── asr.sh │ │ │ │ ├── cmd.sh │ │ │ │ ├── conf │ │ │ │ ├── decode.yaml │ │ │ │ ├── fbank.conf │ │ │ │ ├── pbs.conf │ │ │ │ ├── pitch.conf │ │ │ │ ├── queue.conf │ │ │ │ ├── slurm.conf │ │ │ │ ├── train_asr_rnn.yaml │ │ │ │ ├── train_asr_transformer.yaml │ │ │ │ └── train_lm_char.yaml │ │ │ │ ├── db.sh │ │ │ │ ├── local │ │ │ │ ├── data.sh │ │ │ │ ├── data_normalization │ │ │ │ │ ├── nlsyms │ │ │ │ │ ├── shortened │ │ │ │ │ ├── symbols │ │ │ │ │ └── url │ │ │ │ ├── normalize_texts.sh │ │ │ │ └── path.sh │ │ │ │ ├── path.sh │ │ │ │ ├── pyscripts │ │ │ │ ├── run.sh │ │ │ │ ├── scripts │ │ │ │ ├── steps │ │ │ │ └── utils │ │ ├── jsss │ │ │ └── tts1 │ │ │ │ ├── README.md │ │ │ │ ├── cmd.sh │ │ │ │ ├── conf │ │ │ │ ├── decode.yaml │ │ │ │ ├── pbs.conf │ │ │ │ ├── queue.conf │ │ │ │ ├── slurm.conf │ │ │ │ ├── train.yaml │ │ │ │ └── tuning │ │ │ │ │ ├── decode_fastspeech.yaml │ │ │ │ │ ├── decode_tacotron2.yaml │ │ │ │ │ ├── train_conformer_fastspeech.yaml │ │ │ │ │ ├── train_conformer_fastspeech2.yaml │ │ │ │ │ ├── train_fastspeech.yaml │ │ │ │ │ ├── train_fastspeech2.yaml │ │ │ │ │ ├── train_tacotron2.yaml │ │ │ │ │ └── train_transformer.yaml │ │ │ │ ├── db.sh │ │ │ │ ├── local │ │ │ │ ├── data.sh │ │ │ │ ├── data_download.sh │ │ │ │ ├── data_prep.sh │ │ │ │ └── path.sh │ │ │ │ ├── path.sh │ │ │ │ ├── pyscripts │ │ │ │ ├── run.sh │ │ │ │ ├── scripts │ │ │ │ ├── steps │ │ │ │ ├── tts.sh │ │ │ │ └── utils │ │ ├── jsut │ │ │ ├── asr1 │ │ │ │ ├── README.md │ │ │ │ ├── asr.sh │ │ │ │ ├── cmd.sh │ │ │ │ ├── conf │ │ │ │ │ ├── decode_rnn.yaml │ │ │ │ │ ├── decode_transformer.yaml │ │ │ │ │ ├── fbank_16k.conf │ │ │ │ │ ├── pbs.conf │ │ │ │ │ ├── pitch_16k.conf │ │ │ │ │ ├── queue.conf │ │ │ │ │ ├── slurm.conf │ │ │ │ │ ├── train_asr_rnn.yaml │ │ │ │ │ ├── train_asr_transformer.yaml │ │ │ │ │ ├── train_lm.yaml │ │ │ │ │ └── tuning │ │ │ │ │ │ ├── decode_rnn.yaml │ │ │ │ │ │ ├── decode_transformer.yaml │ │ │ │ │ │ ├── train_asr_conformer.yaml │ │ │ │ │ │ ├── train_asr_conformer8.yaml │ │ │ │ │ │ ├── train_asr_rnn.yaml │ │ │ │ │ │ └── train_asr_transformer.yaml │ │ │ │ ├── db.sh │ │ │ │ ├── local │ │ │ │ │ ├── change_sampling_rate.sh │ │ │ │ │ ├── data.sh │ │ │ │ │ ├── data_prep.sh │ │ │ │ │ ├── download.sh │ │ │ │ │ └── path.sh │ │ │ │ ├── path.sh │ │ │ │ ├── pyscripts │ │ │ │ ├── run.sh │ │ │ │ ├── scripts │ │ │ │ ├── steps │ │ │ │ └── utils │ │ │ └── tts1 │ │ │ │ ├── README.md │ │ │ │ ├── cmd.sh │ │ │ │ ├── conf │ │ │ │ ├── decode.yaml │ │ │ │ ├── pbs.conf │ │ │ │ ├── queue.conf │ │ │ │ ├── slurm.conf │ │ │ │ ├── train.yaml │ │ │ │ └── tuning │ │ │ │ │ ├── decode_fastspeech.yaml │ │ │ │ │ ├── decode_tacotron2.yaml │ │ │ │ │ ├── train_conformer_fastspeech.yaml │ │ │ │ │ ├── train_conformer_fastspeech2.yaml │ │ │ │ │ ├── train_fastspeech.yaml │ │ │ │ │ ├── train_fastspeech2.yaml │ │ │ │ │ ├── train_tacotron2.yaml │ │ │ │ │ └── train_transformer.yaml │ │ │ │ ├── db.sh │ │ │ │ ├── local │ │ │ │ ├── data.sh │ │ │ │ ├── data_prep.sh │ │ │ │ ├── download.sh │ │ │ │ ├── path.sh │ │ │ │ └── prep_segments.py │ │ │ │ ├── path.sh │ │ │ │ ├── pyscripts │ │ │ │ ├── run.sh │ │ │ │ ├── scripts │ │ │ │ ├── steps │ │ │ │ ├── tts.sh │ │ │ │ └── utils │ │ ├── jvs │ │ │ └── tts1 │ │ │ │ ├── README.md │ │ │ │ ├── cmd.sh │ │ │ │ ├── conf │ │ │ │ ├── decode.yaml │ │ │ │ ├── finetune.yaml │ │ │ │ ├── pbs.conf │ │ │ │ ├── queue.conf │ │ │ │ ├── slurm.conf │ │ │ │ └── tuning │ │ │ │ │ ├── decode_tacotron2.yaml │ │ │ │ │ └── finetune_tacotron2.yaml │ │ │ │ ├── db.sh │ │ │ │ ├── local │ │ │ │ ├── data.sh │ │ │ │ ├── data_download.sh │ │ │ │ ├── data_prep.sh │ │ │ │ └── path.sh │ │ │ │ ├── path.sh │ │ │ │ ├── pyscripts │ │ │ │ ├── run.sh │ │ │ │ ├── scripts │ │ │ │ ├── steps │ │ │ │ ├── tts.sh │ │ │ │ └── utils │ │ ├── laborotv │ │ │ └── asr1 │ │ │ │ ├── README.md │ │ │ │ ├── asr.sh │ │ │ │ ├── cmd.sh │ │ │ │ ├── conf │ │ │ │ ├── decode_asr.yaml │ │ │ │ ├── pbs.conf │ │ │ │ ├── queue.conf │ │ │ │ ├── slurm.conf │ │ │ │ ├── train_asr_conformer.yaml │ │ │ │ ├── train_asr_rnn.yaml │ │ │ │ ├── train_asr_transformer.yaml │ │ │ │ ├── train_lm.yaml │ │ │ │ └── tuning │ │ │ │ │ ├── train_asr_conformer.yaml │ │ │ │ │ ├── train_asr_rnn.yaml │ │ │ │ │ ├── train_asr_rnn_scheduler.yaml │ │ │ │ │ └── train_asr_transformer.yaml │ │ │ │ ├── db.sh │ │ │ │ ├── local │ │ │ │ ├── csj_rm_tag.py │ │ │ │ ├── csj_rm_tag_sp_space.sh │ │ │ │ ├── data.sh │ │ │ │ ├── laborotv_data_prep.sh │ │ │ │ ├── path.sh │ │ │ │ └── tedx-jp-10k_data_prep.sh │ │ │ │ ├── path.sh │ │ │ │ ├── pyscripts │ │ │ │ ├── run.sh │ │ │ │ ├── scripts │ │ │ │ ├── steps │ │ │ │ └── utils │ │ ├── librimix │ │ │ └── enh1 │ │ │ │ ├── RESULTS.md │ │ │ │ ├── cmd.sh │ │ │ │ ├── conf │ │ │ │ ├── pbs.conf │ │ │ │ ├── queue.conf │ │ │ │ ├── slurm.conf │ │ │ │ ├── train.yaml │ │ │ │ └── tuning │ │ │ │ │ ├── train_enh_conv_tasnet.yaml │ │ │ │ │ └── train_enh_rnn_tf.yaml │ │ │ │ ├── db.sh │ │ │ │ ├── enh.sh │ │ │ │ ├── local │ │ │ │ ├── data.sh │ │ │ │ └── path.sh │ │ │ │ ├── path.sh │ │ │ │ ├── pyscripts │ │ │ │ ├── run.sh │ │ │ │ ├── scripts │ │ │ │ ├── steps │ │ │ │ └── utils │ │ ├── librispeech │ │ │ └── asr1 │ │ │ │ ├── README.md │ │ │ │ ├── asr.sh │ │ │ │ ├── cmd.sh │ │ │ │ ├── conf │ │ │ │ ├── decode_asr.yaml │ │ │ │ ├── fbank.conf │ │ │ │ ├── pbs.conf │ │ │ │ ├── pitch.conf │ │ │ │ ├── queue.conf │ │ │ │ ├── slurm.conf │ │ │ │ ├── train_asr_confformer.yaml │ │ │ │ ├── train_asr_transformer.yaml │ │ │ │ ├── train_lm_transformer.yaml │ │ │ │ ├── train_rnn_lm.yaml │ │ │ │ └── tuning │ │ │ │ │ ├── train_asr_conformer.yaml │ │ │ │ │ ├── train_asr_conformer4.yaml │ │ │ │ │ ├── train_asr_conformer5.yaml │ │ │ │ │ ├── train_asr_conformer6_n_fft400_hop_length160.yaml │ │ │ │ │ ├── train_asr_conformer6_n_fft512_hop_length128.yaml │ │ │ │ │ ├── train_asr_conformer6_n_fft512_hop_length256.yaml │ │ │ │ │ ├── train_asr_conformer7_n_fft512_hop_length256.yaml │ │ │ │ │ ├── train_asr_transformer.yaml │ │ │ │ │ ├── train_asr_transformer3.yaml │ │ │ │ │ ├── train_asr_transformer3_w2v_large_lv60_960h_finetuning_last_1layer.yaml │ │ │ │ │ ├── train_lm_adam.yaml │ │ │ │ │ └── train_lm_transformer2.yaml │ │ │ │ ├── db.sh │ │ │ │ ├── local │ │ │ │ ├── data.sh │ │ │ │ ├── data_prep.sh │ │ │ │ ├── download_and_untar.sh │ │ │ │ └── path.sh │ │ │ │ ├── path.sh │ │ │ │ ├── pyscripts │ │ │ │ ├── run.sh │ │ │ │ ├── scripts │ │ │ │ ├── steps │ │ │ │ └── utils │ │ ├── libritts │ │ │ └── tts1 │ │ │ │ ├── README.md │ │ │ │ ├── cmd.sh │ │ │ │ ├── conf │ │ │ │ ├── decode.yaml │ │ │ │ ├── mfcc.conf │ │ │ │ ├── pbs.conf │ │ │ │ ├── queue.conf │ │ │ │ ├── slurm.conf │ │ │ │ ├── train.yaml │ │ │ │ ├── tuning │ │ │ │ │ ├── decode_fastspeech.yaml │ │ │ │ │ ├── decode_tacotron2.yaml │ │ │ │ │ ├── train_gst+xvector_tacotron2.yaml │ │ │ │ │ ├── train_gst+xvector_transformer.yaml │ │ │ │ │ ├── train_xvector_tacotron2.yaml │ │ │ │ │ └── train_xvector_transformer.yaml │ │ │ │ └── vad.conf │ │ │ │ ├── db.sh │ │ │ │ ├── local │ │ │ │ ├── data.sh │ │ │ │ ├── data_prep.sh │ │ │ │ ├── download_and_untar.sh │ │ │ │ ├── path.sh │ │ │ │ └── trim_all_silence.py │ │ │ │ ├── path.sh │ │ │ │ ├── pyscripts │ │ │ │ ├── run.sh │ │ │ │ ├── scripts │ │ │ │ ├── sid │ │ │ │ ├── steps │ │ │ │ ├── tts.sh │ │ │ │ └── utils │ │ ├── ljspeech │ │ │ └── tts1 │ │ │ │ ├── README.md │ │ │ │ ├── cmd.sh │ │ │ │ ├── conf │ │ │ │ ├── decode.yaml │ │ │ │ ├── pbs.conf │ │ │ │ ├── queue.conf │ │ │ │ ├── slurm.conf │ │ │ │ ├── train.yaml │ │ │ │ └── tuning │ │ │ │ │ ├── decode_fastspeech.yaml │ │ │ │ │ ├── decode_tacotron2.yaml │ │ │ │ │ ├── train_conformer_fastspeech.yaml │ │ │ │ │ ├── train_conformer_fastspeech2.yaml │ │ │ │ │ ├── train_fastspeech.yaml │ │ │ │ │ ├── train_fastspeech2.yaml │ │ │ │ │ ├── train_tacotron2.yaml │ │ │ │ │ └── train_transformer.yaml │ │ │ │ ├── db.sh │ │ │ │ ├── local │ │ │ │ ├── data.sh │ │ │ │ ├── data_download.sh │ │ │ │ └── path.sh │ │ │ │ ├── path.sh │ │ │ │ ├── pyscripts │ │ │ │ ├── run.sh │ │ │ │ ├── scripts │ │ │ │ ├── steps │ │ │ │ ├── tts.sh │ │ │ │ └── utils │ │ ├── mini_an4 │ │ │ ├── asr1 │ │ │ │ ├── asr.sh │ │ │ │ ├── cmd.sh │ │ │ │ ├── conf │ │ │ │ │ ├── fbank.conf │ │ │ │ │ ├── pbs.conf │ │ │ │ │ ├── pitch.conf │ │ │ │ │ ├── queue.conf │ │ │ │ │ └── slurm.conf │ │ │ │ ├── db.sh │ │ │ │ ├── downloads.tar.gz │ │ │ │ ├── local │ │ │ │ │ ├── data.sh │ │ │ │ │ ├── data_prep.py │ │ │ │ │ ├── download_and_untar.sh │ │ │ │ │ └── path.sh │ │ │ │ ├── path.sh │ │ │ │ ├── pyscripts │ │ │ │ ├── run.sh │ │ │ │ ├── scripts │ │ │ │ ├── steps │ │ │ │ └── utils │ │ │ ├── enh1 │ │ │ │ ├── cmd.sh │ │ │ │ ├── conf │ │ │ │ │ ├── pbs.conf │ │ │ │ │ ├── queue.conf │ │ │ │ │ ├── slurm.conf │ │ │ │ │ └── train.yaml │ │ │ │ ├── db.sh │ │ │ │ ├── enh.sh │ │ │ │ ├── local │ │ │ │ ├── path.sh │ │ │ │ ├── pyscripts │ │ │ │ ├── run.sh │ │ │ │ ├── scripts │ │ │ │ ├── steps │ │ │ │ └── utils │ │ │ └── tts1 │ │ │ │ ├── cmd.sh │ │ │ │ ├── conf │ │ │ │ ├── fbank.conf │ │ │ │ ├── pbs.conf │ │ │ │ ├── pitch.conf │ │ │ │ ├── queue.conf │ │ │ │ └── slurm.conf │ │ │ │ ├── db.sh │ │ │ │ ├── local │ │ │ │ ├── path.sh │ │ │ │ ├── pyscripts │ │ │ │ ├── run.sh │ │ │ │ ├── scripts │ │ │ │ ├── steps │ │ │ │ ├── tts.sh │ │ │ │ └── utils │ │ ├── mini_librispeech │ │ │ └── diar1 │ │ │ │ ├── cmd.sh │ │ │ │ ├── conf │ │ │ │ ├── decode_diar.yaml │ │ │ │ ├── pbs.conf │ │ │ │ ├── queue.conf │ │ │ │ ├── slurm.conf │ │ │ │ └── train_diar.yaml │ │ │ │ ├── db.sh │ │ │ │ ├── diar.sh │ │ │ │ ├── local │ │ │ │ ├── data.sh │ │ │ │ ├── data_prep.sh │ │ │ │ ├── download_and_untar.sh │ │ │ │ ├── path.sh │ │ │ │ └── simulation │ │ │ │ │ ├── common.py │ │ │ │ │ ├── make_mixture.py │ │ │ │ │ ├── make_mixture_nooverlap.py │ │ │ │ │ ├── random_mixture.py │ │ │ │ │ └── random_mixture_nooverlap.py │ │ │ │ ├── path.sh │ │ │ │ ├── pyscripts │ │ │ │ ├── run.sh │ │ │ │ ├── scripts │ │ │ │ ├── steps │ │ │ │ └── utils │ │ ├── mls │ │ │ └── asr1 │ │ │ │ ├── RESULTS.md │ │ │ │ ├── asr.sh │ │ │ │ ├── cmd.sh │ │ │ │ ├── conf │ │ │ │ ├── decode_asr.yaml │ │ │ │ ├── fbank.conf │ │ │ │ ├── pbs.conf │ │ │ │ ├── pitch.conf │ │ │ │ ├── queue.conf │ │ │ │ ├── slurm.conf │ │ │ │ ├── train_asr.yaml │ │ │ │ ├── train_lm.yaml │ │ │ │ └── tuning │ │ │ │ │ ├── decode_rnn.yaml │ │ │ │ │ ├── decode_transformer.yaml │ │ │ │ │ ├── train_asr_conformer.yaml │ │ │ │ │ ├── train_asr_rnn.yaml │ │ │ │ │ └── train_asr_transformer.yaml │ │ │ │ ├── local │ │ │ │ ├── data.sh │ │ │ │ ├── data_prep.py │ │ │ │ ├── download_and_untar.sh │ │ │ │ └── path.sh │ │ │ │ ├── path.sh │ │ │ │ ├── pyscripts │ │ │ │ ├── run.sh │ │ │ │ ├── scripts │ │ │ │ ├── setup.sh │ │ │ │ ├── steps │ │ │ │ └── utils │ │ ├── nsc │ │ │ └── asr1 │ │ │ │ ├── README.md │ │ │ │ ├── asr.sh │ │ │ │ ├── cmd.sh │ │ │ │ ├── conf │ │ │ │ ├── decode_asr.yaml │ │ │ │ ├── fbank.conf │ │ │ │ ├── pbs.conf │ │ │ │ ├── pitch.conf │ │ │ │ ├── queue.conf │ │ │ │ ├── slurm.conf │ │ │ │ ├── train_asr.yaml │ │ │ │ ├── train_lm.yaml │ │ │ │ └── tuning │ │ │ │ │ ├── decode_transformer.yaml │ │ │ │ │ └── train_asr_transformer.yaml │ │ │ │ ├── db.sh │ │ │ │ ├── local │ │ │ │ ├── data.sh │ │ │ │ └── path.sh │ │ │ │ ├── path.sh │ │ │ │ ├── pyscripts │ │ │ │ ├── run.sh │ │ │ │ ├── scripts │ │ │ │ ├── steps │ │ │ │ └── utils │ │ ├── open_li52 │ │ │ └── asr1 │ │ │ │ ├── README.md │ │ │ │ ├── asr.sh │ │ │ │ ├── cmd.sh │ │ │ │ ├── conf │ │ │ │ ├── decode_asr.yaml │ │ │ │ ├── fbank.conf │ │ │ │ ├── pbs.conf │ │ │ │ ├── pitch.conf │ │ │ │ ├── queue.conf │ │ │ │ ├── slurm.conf │ │ │ │ ├── train_asr.yaml │ │ │ │ ├── train_lm.yaml │ │ │ │ └── tuning │ │ │ │ │ ├── decode_rnn.yaml │ │ │ │ │ ├── decode_transformer.yaml │ │ │ │ │ ├── train_asr_conformer.yaml │ │ │ │ │ ├── train_asr_rnn.yaml │ │ │ │ │ ├── train_asr_transformer_bpe7000.yaml │ │ │ │ │ └── train_asr_transformer_bpe8000.yaml │ │ │ │ ├── db.sh │ │ │ │ ├── local │ │ │ │ ├── data.sh │ │ │ │ ├── data_prep.pl │ │ │ │ ├── download_and_untar.sh │ │ │ │ ├── filter_text.py │ │ │ │ ├── getdata.sh │ │ │ │ ├── make_trans.py │ │ │ │ ├── path.sh │ │ │ │ ├── score.sh │ │ │ │ ├── split_tr_dt_et.sh │ │ │ │ ├── voxforge_data_prep.sh │ │ │ │ └── voxforge_format_data.sh │ │ │ │ ├── path.sh │ │ │ │ ├── pyscripts │ │ │ │ ├── run.sh │ │ │ │ ├── scripts │ │ │ │ ├── setup.sh │ │ │ │ ├── steps │ │ │ │ └── utils │ │ ├── polyphone_swiss_french │ │ │ └── asr1 │ │ │ │ ├── README.md │ │ │ │ ├── asr.sh │ │ │ │ ├── cmd.sh │ │ │ │ ├── conf │ │ │ │ ├── decode_asr.yaml │ │ │ │ ├── fbank.conf │ │ │ │ ├── pbs.conf │ │ │ │ ├── pitch.conf │ │ │ │ ├── queue.conf │ │ │ │ ├── slurm.conf │ │ │ │ ├── train_asr_conformer.yaml │ │ │ │ ├── train_lm.yaml │ │ │ │ └── tuning │ │ │ │ │ ├── train_asr_conformer.yaml │ │ │ │ │ └── train_lm_adam.yaml │ │ │ │ ├── db.sh │ │ │ │ ├── local │ │ │ │ ├── path.sh │ │ │ │ ├── pyscripts │ │ │ │ ├── run.sh │ │ │ │ ├── scripts │ │ │ │ ├── steps │ │ │ │ └── utils │ │ ├── puebla_nahuatl │ │ │ └── asr1 │ │ │ │ ├── asr.sh │ │ │ │ ├── cmd.sh │ │ │ │ ├── conf │ │ │ │ ├── decode_asr.yaml │ │ │ │ ├── fbank.conf │ │ │ │ ├── pbs.conf │ │ │ │ ├── pitch.conf │ │ │ │ ├── queue.conf │ │ │ │ ├── slurm.conf │ │ │ │ ├── train_asr.yaml │ │ │ │ ├── train_lm.yaml │ │ │ │ └── tuning │ │ │ │ │ ├── decode_rnn.yaml │ │ │ │ │ ├── decode_transformer.yaml │ │ │ │ │ ├── train_asr_conformer.yaml │ │ │ │ │ ├── train_asr_rnn.yaml │ │ │ │ │ └── train_asr_transformer.yaml │ │ │ │ ├── db.sh │ │ │ │ ├── local │ │ │ │ ├── construct_dataset.py │ │ │ │ ├── data.sh │ │ │ │ ├── data_prep.py │ │ │ │ └── download_and_untar.sh │ │ │ │ ├── path.sh │ │ │ │ ├── pyscripts │ │ │ │ ├── run.sh │ │ │ │ ├── scripts │ │ │ │ ├── steps │ │ │ │ └── utils │ │ ├── reverb │ │ │ └── asr1 │ │ │ │ ├── README.md │ │ │ │ ├── asr.sh │ │ │ │ ├── cmd.sh │ │ │ │ ├── conf │ │ │ │ ├── decode.yaml │ │ │ │ ├── fbank.conf │ │ │ │ ├── pbs.conf │ │ │ │ ├── pitch.conf │ │ │ │ ├── queue.conf │ │ │ │ ├── reverb_beamformit.cfg │ │ │ │ ├── slurm.conf │ │ │ │ ├── train_asr_transformer.yaml │ │ │ │ ├── train_lm_transformer.yaml │ │ │ │ └── tuning │ │ │ │ │ ├── decode.yaml │ │ │ │ │ ├── train_asr_conformer.yaml │ │ │ │ │ ├── train_asr_conformer2.yaml │ │ │ │ │ ├── train_asr_transformer.yaml │ │ │ │ │ ├── train_asr_transformer2.yaml │ │ │ │ │ ├── train_asr_transformer3.yaml │ │ │ │ │ ├── train_asr_transformer4.yaml │ │ │ │ │ └── train_lm_transformer.yaml │ │ │ │ ├── db.sh │ │ │ │ ├── local │ │ │ │ ├── Generate_mcTrainData_cut.m │ │ │ │ ├── compute_se_scores.sh │ │ │ │ ├── data.sh │ │ │ │ ├── dot2scp.py │ │ │ │ ├── download_se_eval_tool.sh │ │ │ │ ├── filterjson.py │ │ │ │ ├── find_transcripts.pl │ │ │ │ ├── find_transcripts_singledot.pl │ │ │ │ ├── find_transcripts_txt.pl │ │ │ │ ├── flist2scp.pl │ │ │ │ ├── generate_data.sh │ │ │ │ ├── get_results.sh │ │ │ │ ├── mlf2text.pl │ │ │ │ ├── ndx2flist.pl │ │ │ │ ├── normalize_transcript.pl │ │ │ │ ├── path.sh │ │ │ │ ├── prepare_real_data.sh │ │ │ │ ├── prepare_rir_noise_1ch.sh │ │ │ │ ├── prepare_simu_data.sh │ │ │ │ ├── prepare_wsjcam0.sh │ │ │ │ ├── run_beamform.sh │ │ │ │ ├── run_wpe.py │ │ │ │ ├── run_wpe.sh │ │ │ │ ├── score.sh │ │ │ │ ├── score_RealData.patch │ │ │ │ ├── score_SimData.patch │ │ │ │ ├── wsj_data_prep.sh │ │ │ │ └── wsj_format_data.sh │ │ │ │ ├── path.sh │ │ │ │ ├── pyscripts │ │ │ │ ├── run.sh │ │ │ │ ├── steps │ │ │ │ └── utils │ │ ├── ru_open_stt │ │ │ └── asr1 │ │ │ │ ├── README.md │ │ │ │ ├── asr.sh │ │ │ │ ├── cmd.sh │ │ │ │ ├── conf │ │ │ │ ├── decode_asr.yaml │ │ │ │ ├── fbank.conf │ │ │ │ ├── pbs.conf │ │ │ │ ├── pitch.conf │ │ │ │ ├── queue.conf │ │ │ │ ├── slurm.conf │ │ │ │ ├── train_asr_conformer.yaml │ │ │ │ └── train_lm_transformer.yaml │ │ │ │ ├── db.sh │ │ │ │ ├── local │ │ │ │ ├── data.sh │ │ │ │ ├── path.sh │ │ │ │ ├── ru_open_stt_download_data.sh │ │ │ │ └── ru_open_stt_prepare_data.py │ │ │ │ ├── path.sh │ │ │ │ ├── pyscripts │ │ │ │ ├── run.sh │ │ │ │ ├── scripts │ │ │ │ ├── steps │ │ │ │ └── utils │ │ ├── sms_wsj │ │ │ └── enh1 │ │ │ │ ├── cmd.sh │ │ │ │ ├── conf │ │ │ │ ├── pbs.conf │ │ │ │ ├── queue.conf │ │ │ │ ├── slurm.conf │ │ │ │ ├── train.yaml │ │ │ │ └── tuning │ │ │ │ │ └── train_enh_beamformer_no_wpe.yaml │ │ │ │ ├── db.sh │ │ │ │ ├── enh.sh │ │ │ │ ├── local │ │ │ │ ├── create_database.sh │ │ │ │ ├── data.sh │ │ │ │ ├── find_transcripts.pl │ │ │ │ ├── flist2scp.pl │ │ │ │ ├── ndx2flist.pl │ │ │ │ ├── normalize_transcript.pl │ │ │ │ ├── path.sh │ │ │ │ ├── sms_wsj_data_prep.py │ │ │ │ ├── write_additional_data.patch │ │ │ │ ├── wsj_data_prep.sh │ │ │ │ └── wsj_format_data.sh │ │ │ │ ├── path.sh │ │ │ │ ├── pyscripts │ │ │ │ ├── run.sh │ │ │ │ ├── scripts │ │ │ │ ├── steps │ │ │ │ └── utils │ │ ├── spgispeech │ │ │ └── asr1 │ │ │ │ ├── README.md │ │ │ │ ├── asr.sh │ │ │ │ ├── cmd.sh │ │ │ │ ├── conf │ │ │ │ ├── decode_asr.yaml │ │ │ │ ├── fbank.conf │ │ │ │ ├── pbs.conf │ │ │ │ ├── pitch.conf │ │ │ │ ├── queue.conf │ │ │ │ ├── slurm.conf │ │ │ │ ├── train_asr_conformer.yaml │ │ │ │ ├── train_lm.yaml │ │ │ │ └── tuning │ │ │ │ │ └── train_asr_conformer6_n_fft512_hop_length256.yaml │ │ │ │ ├── db.sh │ │ │ │ ├── local │ │ │ │ ├── data.sh │ │ │ │ ├── data_prep.sh │ │ │ │ └── path.sh │ │ │ │ ├── path.sh │ │ │ │ ├── pyscripts │ │ │ │ ├── run.sh │ │ │ │ ├── scripts │ │ │ │ ├── steps │ │ │ │ └── utils │ │ ├── swbd │ │ │ └── asr1 │ │ │ │ ├── RESULTS.md │ │ │ │ ├── asr.sh │ │ │ │ ├── cmd.sh │ │ │ │ ├── conf │ │ │ │ ├── decode_asr.yaml │ │ │ │ ├── fbank.conf │ │ │ │ ├── pbs.conf │ │ │ │ ├── pitch.conf │ │ │ │ ├── queue.conf │ │ │ │ ├── slurm.conf │ │ │ │ ├── train_asr.yaml │ │ │ │ ├── train_lm.yaml │ │ │ │ └── tuning │ │ │ │ │ ├── train_asr_conformer.yaml │ │ │ │ │ ├── train_asr_conformer2.yaml │ │ │ │ │ ├── train_asr_transformer.yaml │ │ │ │ │ ├── train_lm_transformer.yaml │ │ │ │ │ └── train_lm_transformer2.yaml │ │ │ │ ├── db.sh │ │ │ │ ├── local │ │ │ │ ├── MSU_single_letter.txt │ │ │ │ ├── data.sh │ │ │ │ ├── dict.patch │ │ │ │ ├── eval2000_data_prep.sh │ │ │ │ ├── extend_segments.pl │ │ │ │ ├── fisher_data_prep.sh │ │ │ │ ├── format_acronyms_dict.py │ │ │ │ ├── map_acronyms_transcripts.py │ │ │ │ ├── path.sh │ │ │ │ ├── rt03_data_prep.sh │ │ │ │ ├── score.sh │ │ │ │ ├── swbd1_data_download.sh │ │ │ │ ├── swbd1_data_prep.sh │ │ │ │ ├── swbd1_fix_speakerid.pl │ │ │ │ ├── swbd1_map_words.pl │ │ │ │ └── swbd1_prepare_dict.sh │ │ │ │ ├── path.sh │ │ │ │ ├── pyscripts │ │ │ │ ├── run.sh │ │ │ │ ├── scripts │ │ │ │ ├── steps │ │ │ │ └── utils │ │ ├── timit │ │ │ └── asr1 │ │ │ │ ├── README.md │ │ │ │ ├── asr.sh │ │ │ │ ├── cmd.sh │ │ │ │ ├── conf │ │ │ │ ├── decode_asr.yaml │ │ │ │ ├── dev_spk.list │ │ │ │ ├── fbank.conf │ │ │ │ ├── pbs.conf │ │ │ │ ├── phones.60-48-39.map │ │ │ │ ├── pitch.conf │ │ │ │ ├── queue.conf │ │ │ │ ├── slurm.conf │ │ │ │ ├── test_spk.list │ │ │ │ ├── train_asr.yaml │ │ │ │ ├── train_lm_rnn.yaml │ │ │ │ ├── train_lm_transformer.yaml │ │ │ │ └── tuning │ │ │ │ │ ├── decode_rnn.yaml │ │ │ │ │ ├── train_asr_rnn.yaml │ │ │ │ │ ├── train_lm_rnn.yaml │ │ │ │ │ └── train_lm_transformer.yaml │ │ │ │ ├── db.sh │ │ │ │ ├── local │ │ │ │ ├── data.sh │ │ │ │ ├── path.sh │ │ │ │ ├── timit_data_prep.sh │ │ │ │ ├── timit_format_data.sh │ │ │ │ └── timit_norm_trans.pl │ │ │ │ ├── path.sh │ │ │ │ ├── pyscripts │ │ │ │ ├── run.sh │ │ │ │ ├── scripts │ │ │ │ ├── steps │ │ │ │ └── utils │ │ ├── vctk │ │ │ └── tts1 │ │ │ │ ├── README.md │ │ │ │ ├── cmd.sh │ │ │ │ ├── conf │ │ │ │ ├── decode.yaml │ │ │ │ ├── mfcc.conf │ │ │ │ ├── pbs.conf │ │ │ │ ├── queue.conf │ │ │ │ ├── slurm.conf │ │ │ │ ├── train.yaml │ │ │ │ ├── tuning │ │ │ │ │ ├── decode_fastspeech.yaml │ │ │ │ │ ├── decode_tacotron2.yaml │ │ │ │ │ ├── train_gst+xvector_conformer_fastspeech2.yaml │ │ │ │ │ ├── train_gst+xvector_tacotron2.yaml │ │ │ │ │ ├── train_gst+xvector_transformer.yaml │ │ │ │ │ ├── train_gst_conformer_fastspeech2.yaml │ │ │ │ │ ├── train_gst_fastspeech.yaml │ │ │ │ │ ├── train_gst_fastspeech2.yaml │ │ │ │ │ ├── train_gst_tacotron2.yaml │ │ │ │ │ ├── train_gst_transformer.yaml │ │ │ │ │ ├── train_xvector_conformer_fastspeech2.yaml │ │ │ │ │ ├── train_xvector_tacotron2.yaml │ │ │ │ │ └── train_xvector_transformer.yaml │ │ │ │ └── vad.conf │ │ │ │ ├── db.sh │ │ │ │ ├── local │ │ │ │ ├── data.sh │ │ │ │ ├── data_download.sh │ │ │ │ ├── data_prep.sh │ │ │ │ └── path.sh │ │ │ │ ├── path.sh │ │ │ │ ├── pyscripts │ │ │ │ ├── run.sh │ │ │ │ ├── scripts │ │ │ │ ├── sid │ │ │ │ ├── steps │ │ │ │ ├── tts.sh │ │ │ │ └── utils │ │ ├── vctk_noisyreverb │ │ │ └── enh1 │ │ │ │ ├── README.md │ │ │ │ ├── cmd.sh │ │ │ │ ├── conf │ │ │ │ ├── pbs.conf │ │ │ │ ├── queue.conf │ │ │ │ ├── slurm.conf │ │ │ │ └── tuning │ │ │ │ │ └── train_enh_conv_tasnet.yaml │ │ │ │ ├── db.sh │ │ │ │ ├── enh.sh │ │ │ │ ├── local │ │ │ │ ├── data.sh │ │ │ │ ├── path.sh │ │ │ │ ├── train_spk │ │ │ │ └── valid_spk │ │ │ │ ├── path.sh │ │ │ │ ├── pyscripts │ │ │ │ ├── run.sh │ │ │ │ ├── scripts │ │ │ │ ├── steps │ │ │ │ └── utils │ │ ├── vivos │ │ │ └── asr1 │ │ │ │ ├── README.md │ │ │ │ ├── asr.sh │ │ │ │ ├── cmd.sh │ │ │ │ ├── conf │ │ │ │ ├── decode.yaml │ │ │ │ ├── fbank.conf │ │ │ │ ├── pbs.conf │ │ │ │ ├── pitch.conf │ │ │ │ ├── queue.conf │ │ │ │ ├── slurm.conf │ │ │ │ ├── train_asr.yaml │ │ │ │ ├── train_lm_char.yaml │ │ │ │ └── train_lm_word.yaml │ │ │ │ ├── db.sh │ │ │ │ ├── local │ │ │ │ ├── data.sh │ │ │ │ └── path.sh │ │ │ │ ├── path.sh │ │ │ │ ├── pyscripts │ │ │ │ ├── run.sh │ │ │ │ ├── scripts │ │ │ │ ├── steps │ │ │ │ └── utils │ │ ├── voxforge │ │ │ └── asr1 │ │ │ │ ├── README.md │ │ │ │ ├── README_LightweightSincConvs.md │ │ │ │ ├── asr.sh │ │ │ │ ├── cmd.sh │ │ │ │ ├── conf │ │ │ │ ├── decode_asr.yaml │ │ │ │ ├── fbank.conf │ │ │ │ ├── pbs.conf │ │ │ │ ├── pitch.conf │ │ │ │ ├── queue.conf │ │ │ │ ├── slurm.conf │ │ │ │ ├── train_asr_rnn.yaml │ │ │ │ ├── train_asr_transformer.yaml │ │ │ │ └── tuning │ │ │ │ │ ├── train_asr_rnn.yaml │ │ │ │ │ ├── train_asr_rnn_2.yaml │ │ │ │ │ ├── train_asr_sinc_rnn.yaml │ │ │ │ │ ├── train_asr_sinc_transformer.yaml │ │ │ │ │ ├── train_asr_transformer.yaml │ │ │ │ │ └── train_asr_transformer_2.yaml │ │ │ │ ├── db.sh │ │ │ │ ├── local │ │ │ │ ├── data.sh │ │ │ │ ├── filter_text.py │ │ │ │ ├── getdata.sh │ │ │ │ ├── make_trans.py │ │ │ │ ├── path.sh │ │ │ │ ├── prep_transducer_finetuning.sh │ │ │ │ ├── split_tr_dt_et.sh │ │ │ │ ├── voxforge_data_prep.sh │ │ │ │ └── voxforge_format_data.sh │ │ │ │ ├── path.sh │ │ │ │ ├── pyscripts │ │ │ │ ├── run.sh │ │ │ │ ├── scripts │ │ │ │ ├── steps │ │ │ │ └── utils │ │ ├── wham │ │ │ └── enh1 │ │ │ │ ├── cmd.sh │ │ │ │ ├── conf │ │ │ │ ├── pbs.conf │ │ │ │ ├── queue.conf │ │ │ │ ├── slurm.conf │ │ │ │ ├── train.yaml │ │ │ │ └── tuning │ │ │ │ │ ├── train_enh_dprnn_tasnet.yaml │ │ │ │ │ └── train_enh_rnn_tf.yaml │ │ │ │ ├── db.sh │ │ │ │ ├── enh.sh │ │ │ │ ├── local │ │ │ │ ├── convert2wav.sh │ │ │ │ ├── data.sh │ │ │ │ ├── find_transcripts.pl │ │ │ │ ├── flist2scp.pl │ │ │ │ ├── ndx2flist.pl │ │ │ │ ├── normalize_transcript.pl │ │ │ │ ├── path.sh │ │ │ │ ├── wham_create_mixture.sh │ │ │ │ ├── wham_data_prep.sh │ │ │ │ ├── wsj_data_prep.sh │ │ │ │ └── wsj_format_data.sh │ │ │ │ ├── path.sh │ │ │ │ ├── pyscripts │ │ │ │ ├── run.sh │ │ │ │ ├── scripts │ │ │ │ ├── steps │ │ │ │ └── utils │ │ ├── whamr │ │ │ └── enh1 │ │ │ │ ├── cmd.sh │ │ │ │ ├── conf │ │ │ │ ├── pbs.conf │ │ │ │ ├── queue.conf │ │ │ │ ├── slurm.conf │ │ │ │ ├── train.yaml │ │ │ │ └── tuning │ │ │ │ │ ├── train_enh_beamformer_mvdr.yaml │ │ │ │ │ └── train_enh_beamformer_wmpdr.yaml │ │ │ │ ├── db.sh │ │ │ │ ├── enh.sh │ │ │ │ ├── local │ │ │ │ ├── convert2wav.sh │ │ │ │ ├── data.sh │ │ │ │ ├── find_transcripts.pl │ │ │ │ ├── flist2scp.pl │ │ │ │ ├── ndx2flist.pl │ │ │ │ ├── normalize_transcript.pl │ │ │ │ ├── path.sh │ │ │ │ ├── whamr_create_mixture.sh │ │ │ │ ├── whamr_data_prep.sh │ │ │ │ ├── wsj_data_prep.sh │ │ │ │ └── wsj_format_data.sh │ │ │ │ ├── path.sh │ │ │ │ ├── pyscripts │ │ │ │ ├── run.sh │ │ │ │ ├── scripts │ │ │ │ ├── steps │ │ │ │ └── utils │ │ ├── wsj │ │ │ └── asr1 │ │ │ │ ├── README.md │ │ │ │ ├── asr.sh │ │ │ │ ├── cmd.sh │ │ │ │ ├── conf │ │ │ │ ├── decode.yaml │ │ │ │ ├── fbank.conf │ │ │ │ ├── pbs.conf │ │ │ │ ├── pitch.conf │ │ │ │ ├── queue.conf │ │ │ │ ├── slurm.conf │ │ │ │ ├── train_asr_rnn.yaml │ │ │ │ ├── train_asr_transformer.yaml │ │ │ │ ├── train_lm_rnn.yaml │ │ │ │ ├── train_lm_transformer.yaml │ │ │ │ └── tuning │ │ │ │ │ ├── train_asr_rnn.yaml │ │ │ │ │ ├── train_asr_transformer.yaml │ │ │ │ │ ├── train_asr_transformer2.yaml │ │ │ │ │ ├── train_lm_adagrad.yaml │ │ │ │ │ ├── train_lm_adam_layers4.yaml │ │ │ │ │ └── train_lm_transformer.yaml │ │ │ │ ├── db.sh │ │ │ │ ├── local │ │ │ │ ├── data.sh │ │ │ │ ├── find_transcripts.pl │ │ │ │ ├── flist2scp.pl │ │ │ │ ├── ndx2flist.pl │ │ │ │ ├── normalize_transcript.pl │ │ │ │ ├── path.sh │ │ │ │ ├── wsj_data_prep.sh │ │ │ │ └── wsj_format_data.sh │ │ │ │ ├── path.sh │ │ │ │ ├── pyscripts │ │ │ │ ├── run.sh │ │ │ │ ├── scripts │ │ │ │ ├── steps │ │ │ │ └── utils │ │ ├── wsj0_2mix │ │ │ └── enh1 │ │ │ │ ├── README.md │ │ │ │ ├── cmd.sh │ │ │ │ ├── conf │ │ │ │ ├── pbs.conf │ │ │ │ ├── queue.conf │ │ │ │ ├── slurm.conf │ │ │ │ ├── train.yaml │ │ │ │ └── tuning │ │ │ │ │ ├── train_enh_asteroid_DPTNet.yaml │ │ │ │ │ ├── train_enh_asteroid_convtasnet.yaml │ │ │ │ │ ├── train_enh_asteroid_convtasnet_pretrain.yaml │ │ │ │ │ ├── train_enh_conformer_tf.yaml │ │ │ │ │ ├── train_enh_conv_tasnet.yaml │ │ │ │ │ ├── train_enh_dprnn_tasnet.yaml │ │ │ │ │ ├── train_enh_dprnn_tf.yaml │ │ │ │ │ ├── train_enh_rnn_tf.yaml │ │ │ │ │ └── train_enh_transformer_tf.yaml │ │ │ │ ├── db.sh │ │ │ │ ├── enh.sh │ │ │ │ ├── local │ │ │ │ ├── convert2wav.sh │ │ │ │ ├── data.sh │ │ │ │ ├── find_transcripts.pl │ │ │ │ ├── flist2scp.pl │ │ │ │ ├── ndx2flist.pl │ │ │ │ ├── normalize_transcript.pl │ │ │ │ ├── path.sh │ │ │ │ ├── wsj0_2mix_data_prep.sh │ │ │ │ ├── wsj0_create_mixture.sh │ │ │ │ ├── wsj_data_prep.sh │ │ │ │ └── wsj_format_data.sh │ │ │ │ ├── path.sh │ │ │ │ ├── pyscripts │ │ │ │ ├── run.sh │ │ │ │ ├── scripts │ │ │ │ ├── steps │ │ │ │ └── utils │ │ ├── wsj0_2mix_spatialized │ │ │ └── enh1 │ │ │ │ ├── README.md │ │ │ │ ├── cmd.sh │ │ │ │ ├── conf │ │ │ │ ├── pbs.conf │ │ │ │ ├── queue.conf │ │ │ │ ├── slurm.conf │ │ │ │ ├── train.yaml │ │ │ │ └── tuning │ │ │ │ │ └── train_enh_beamformer_no_wpe.yaml │ │ │ │ ├── db.sh │ │ │ │ ├── enh.sh │ │ │ │ ├── local │ │ │ │ ├── convert2wav.sh │ │ │ │ ├── data.sh │ │ │ │ ├── find_transcripts.pl │ │ │ │ ├── flist2scp.pl │ │ │ │ ├── ndx2flist.pl │ │ │ │ ├── normalize_transcript.pl │ │ │ │ ├── path.sh │ │ │ │ ├── spatialize_wsj0_mix.sh │ │ │ │ ├── wsj0_2mix_data.sh │ │ │ │ ├── wsj0_2mix_data_prep.sh │ │ │ │ ├── wsj0_2mix_spatialized_data_prep.sh │ │ │ │ ├── wsj0_create_mixture.sh │ │ │ │ ├── wsj_data_prep.sh │ │ │ │ └── wsj_format_data.sh │ │ │ │ ├── path.sh │ │ │ │ ├── pyscripts │ │ │ │ ├── run.sh │ │ │ │ ├── scripts │ │ │ │ ├── steps │ │ │ │ └── utils │ │ ├── yesno │ │ │ └── asr1 │ │ │ │ ├── asr.sh │ │ │ │ ├── cmd.sh │ │ │ │ ├── conf │ │ │ │ ├── decode.yaml │ │ │ │ ├── fbank.conf │ │ │ │ ├── pbs.conf │ │ │ │ ├── pitch.conf │ │ │ │ ├── queue.conf │ │ │ │ ├── slurm.conf │ │ │ │ └── train_asr.yaml │ │ │ │ ├── db.sh │ │ │ │ ├── local │ │ │ │ ├── create_yesno_txt.pl │ │ │ │ ├── create_yesno_wav_scp.pl │ │ │ │ ├── create_yesno_waves_test_train.pl │ │ │ │ ├── data.sh │ │ │ │ └── path.sh │ │ │ │ ├── path.sh │ │ │ │ ├── pyscripts │ │ │ │ ├── run.sh │ │ │ │ ├── scripts │ │ │ │ ├── steps │ │ │ │ └── utils │ │ ├── yoloxochitl_mixtec │ │ │ └── asr1 │ │ │ │ ├── asr.sh │ │ │ │ ├── cmd.sh │ │ │ │ ├── conf │ │ │ │ ├── decode_asr.yaml │ │ │ │ ├── fbank.conf │ │ │ │ ├── pbs.conf │ │ │ │ ├── pitch.conf │ │ │ │ ├── queue.conf │ │ │ │ ├── slurm.conf │ │ │ │ ├── train_asr.yaml │ │ │ │ ├── train_lm.yaml │ │ │ │ └── tuning │ │ │ │ │ ├── decode_rnn.yaml │ │ │ │ │ ├── decode_transformer.yaml │ │ │ │ │ ├── train_asr_conformer.yaml │ │ │ │ │ ├── train_asr_rnn.yaml │ │ │ │ │ └── train_asr_transformer.yaml │ │ │ │ ├── db.sh │ │ │ │ ├── local │ │ │ │ ├── data.sh │ │ │ │ ├── data_prep.py │ │ │ │ ├── download_and_untar.sh │ │ │ │ ├── filter_text.py │ │ │ │ ├── path.sh │ │ │ │ └── split_tr_dt_et.sh │ │ │ │ ├── path.sh │ │ │ │ ├── pyscripts │ │ │ │ ├── run.sh │ │ │ │ ├── scripts │ │ │ │ ├── steps │ │ │ │ └── utils │ │ └── zeroth_korean │ │ │ └── asr1 │ │ │ ├── README.md │ │ │ ├── asr.sh │ │ │ ├── cmd.sh │ │ │ ├── conf │ │ │ ├── fbank.conf │ │ │ ├── pbs.conf │ │ │ ├── pitch.conf │ │ │ ├── queue.conf │ │ │ ├── slurm.conf │ │ │ ├── train_asr_rnn.yaml │ │ │ ├── train_asr_transformer.yaml │ │ │ ├── train_lm.yaml │ │ │ └── tuning │ │ │ │ ├── train_asr_rnn.yaml │ │ │ │ ├── train_asr_transformer.yaml │ │ │ │ ├── train_asr_transformer3.yaml │ │ │ │ ├── train_asr_transformer5.yaml │ │ │ │ └── train_lm.yaml │ │ │ ├── db.sh │ │ │ ├── local │ │ │ ├── data.sh │ │ │ ├── data_prep.sh │ │ │ ├── download_and_untar.sh │ │ │ ├── path.sh │ │ │ └── update_segmentation.sh │ │ │ ├── path.sh │ │ │ ├── pyscripts │ │ │ ├── run.sh │ │ │ ├── scripts │ │ │ ├── steps │ │ │ └── utils │ ├── espnet │ │ ├── __init__.py │ │ ├── asr │ │ │ ├── __init__.py │ │ │ ├── asr_mix_utils.py │ │ │ ├── asr_utils.py │ │ │ ├── chainer_backend │ │ │ │ ├── __init__.py │ │ │ │ └── asr.py │ │ │ └── pytorch_backend │ │ │ │ ├── __init__.py │ │ │ │ ├── asr.py │ │ │ │ ├── asr_init.py │ │ │ │ ├── asr_mix.py │ │ │ │ └── recog.py │ │ ├── bin │ │ │ ├── __init__.py │ │ │ ├── asr_align.py │ │ │ ├── asr_enhance.py │ │ │ ├── asr_recog.py │ │ │ ├── asr_train.py │ │ │ ├── lm_train.py │ │ │ ├── mt_train.py │ │ │ ├── mt_trans.py │ │ │ ├── st_train.py │ │ │ ├── st_trans.py │ │ │ ├── tts_decode.py │ │ │ ├── tts_train.py │ │ │ ├── vc_decode.py │ │ │ └── vc_train.py │ │ ├── lm │ │ │ ├── __init__.py │ │ │ ├── chainer_backend │ │ │ │ ├── __init__.py │ │ │ │ ├── extlm.py │ │ │ │ └── lm.py │ │ │ ├── lm_utils.py │ │ │ └── pytorch_backend │ │ │ │ ├── __init__.py │ │ │ │ ├── extlm.py │ │ │ │ └── lm.py │ │ ├── mt │ │ │ ├── __init__.py │ │ │ ├── mt_utils.py │ │ │ └── pytorch_backend │ │ │ │ ├── __init__.py │ │ │ │ └── mt.py │ │ ├── nets │ │ │ ├── __init__.py │ │ │ ├── asr_interface.py │ │ │ ├── batch_beam_search.py │ │ │ ├── batch_beam_search_online_sim.py │ │ │ ├── beam_search.py │ │ │ ├── beam_search_transducer.py │ │ │ ├── chainer_backend │ │ │ │ ├── __init__.py │ │ │ │ ├── asr_interface.py │ │ │ │ ├── ctc.py │ │ │ │ ├── deterministic_embed_id.py │ │ │ │ ├── e2e_asr.py │ │ │ │ ├── e2e_asr_transformer.py │ │ │ │ ├── nets_utils.py │ │ │ │ ├── rnn │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── attentions.py │ │ │ │ │ ├── decoders.py │ │ │ │ │ ├── encoders.py │ │ │ │ │ └── training.py │ │ │ │ └── transformer │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── attention.py │ │ │ │ │ ├── ctc.py │ │ │ │ │ ├── decoder.py │ │ │ │ │ ├── decoder_layer.py │ │ │ │ │ ├── embedding.py │ │ │ │ │ ├── encoder.py │ │ │ │ │ ├── encoder_layer.py │ │ │ │ │ ├── label_smoothing_loss.py │ │ │ │ │ ├── layer_norm.py │ │ │ │ │ ├── mask.py │ │ │ │ │ ├── positionwise_feed_forward.py │ │ │ │ │ ├── subsampling.py │ │ │ │ │ └── training.py │ │ │ ├── ctc_prefix_score.py │ │ │ ├── e2e_asr_common.py │ │ │ ├── e2e_mt_common.py │ │ │ ├── lm_interface.py │ │ │ ├── mt_interface.py │ │ │ ├── pytorch_backend │ │ │ │ ├── __init__.py │ │ │ │ ├── conformer │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── argument.py │ │ │ │ │ ├── convolution.py │ │ │ │ │ ├── encoder.py │ │ │ │ │ ├── encoder_layer.py │ │ │ │ │ └── swish.py │ │ │ │ ├── ctc.py │ │ │ │ ├── disentangled_transformer │ │ │ │ │ ├── NotoSansCJK-Regular.ttc │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── add_sos_eos.py │ │ │ │ │ ├── argument.py │ │ │ │ │ ├── attention.py │ │ │ │ │ ├── contextual_block_encoder_layer.py │ │ │ │ │ ├── decoder.py │ │ │ │ │ ├── decoder_layer.py │ │ │ │ │ ├── dynamic_conv.py │ │ │ │ │ ├── dynamic_conv2d.py │ │ │ │ │ ├── embedding.py │ │ │ │ │ ├── encoder.py │ │ │ │ │ ├── encoder_layer.py │ │ │ │ │ ├── encoder_mix.py │ │ │ │ │ ├── initializer.py │ │ │ │ │ ├── label_smoothing_loss.py │ │ │ │ │ ├── layer_norm.py │ │ │ │ │ ├── lightconv.py │ │ │ │ │ ├── lightconv2d.py │ │ │ │ │ ├── mask.py │ │ │ │ │ ├── multi_layer_conv.py │ │ │ │ │ ├── optimizer.py │ │ │ │ │ ├── plot.py │ │ │ │ │ ├── positionwise_feed_forward.py │ │ │ │ │ ├── repeat.py │ │ │ │ │ ├── subsampling.py │ │ │ │ │ └── subsampling_without_posenc.py │ │ │ │ ├── e2e_asr.py │ │ │ │ ├── e2e_asr_conformer.py │ │ │ │ ├── e2e_asr_disentangled_transformer.py │ │ │ │ ├── e2e_asr_maskctc.py │ │ │ │ ├── e2e_asr_mix.py │ │ │ │ ├── e2e_asr_mix_transformer.py │ │ │ │ ├── e2e_asr_mulenc.py │ │ │ │ ├── e2e_asr_transducer.py │ │ │ │ ├── e2e_asr_transformer.py │ │ │ │ ├── e2e_mt.py │ │ │ │ ├── e2e_mt_transformer.py │ │ │ │ ├── e2e_st.py │ │ │ │ ├── e2e_st_conformer.py │ │ │ │ ├── e2e_st_transformer.py │ │ │ │ ├── e2e_tts_fastspeech.py │ │ │ │ ├── e2e_tts_tacotron2.py │ │ │ │ ├── e2e_tts_transformer.py │ │ │ │ ├── e2e_vc_tacotron2.py │ │ │ │ ├── e2e_vc_transformer.py │ │ │ │ ├── fastspeech │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── duration_calculator.py │ │ │ │ │ ├── duration_predictor.py │ │ │ │ │ └── length_regulator.py │ │ │ │ ├── frontends │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── beamformer.py │ │ │ │ │ ├── dnn_beamformer.py │ │ │ │ │ ├── dnn_wpe.py │ │ │ │ │ ├── feature_transform.py │ │ │ │ │ ├── frontend.py │ │ │ │ │ └── mask_estimator.py │ │ │ │ ├── gtn_ctc.py │ │ │ │ ├── initialization.py │ │ │ │ ├── lm │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── default.py │ │ │ │ │ ├── seq_rnn.py │ │ │ │ │ └── transformer.py │ │ │ │ ├── maskctc │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── add_mask_token.py │ │ │ │ │ └── mask.py │ │ │ │ ├── nets_utils.py │ │ │ │ ├── rnn │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── argument.py │ │ │ │ │ ├── attentions.py │ │ │ │ │ ├── decoders.py │ │ │ │ │ └── encoders.py │ │ │ │ ├── streaming │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── segment.py │ │ │ │ │ └── window.py │ │ │ │ ├── tacotron2 │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── cbhg.py │ │ │ │ │ ├── decoder.py │ │ │ │ │ └── encoder.py │ │ │ │ ├── transducer │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── arguments.py │ │ │ │ │ ├── auxiliary_task.py │ │ │ │ │ ├── blocks.py │ │ │ │ │ ├── causal_conv1d.py │ │ │ │ │ ├── custom_decoder.py │ │ │ │ │ ├── custom_encoder.py │ │ │ │ │ ├── error_calculator.py │ │ │ │ │ ├── initializer.py │ │ │ │ │ ├── joint_network.py │ │ │ │ │ ├── loss.py │ │ │ │ │ ├── rnn_decoder.py │ │ │ │ │ ├── rnn_encoder.py │ │ │ │ │ ├── tdnn.py │ │ │ │ │ ├── transformer_decoder_layer.py │ │ │ │ │ ├── utils.py │ │ │ │ │ └── vgg2l.py │ │ │ │ ├── transformer │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── add_sos_eos.py │ │ │ │ │ ├── argument.py │ │ │ │ │ ├── attention.py │ │ │ │ │ ├── contextual_block_encoder_layer.py │ │ │ │ │ ├── decoder.py │ │ │ │ │ ├── decoder_layer.py │ │ │ │ │ ├── dynamic_conv.py │ │ │ │ │ ├── dynamic_conv2d.py │ │ │ │ │ ├── embedding.py │ │ │ │ │ ├── encoder.py │ │ │ │ │ ├── encoder_layer.py │ │ │ │ │ ├── encoder_mix.py │ │ │ │ │ ├── initializer.py │ │ │ │ │ ├── label_smoothing_loss.py │ │ │ │ │ ├── layer_norm.py │ │ │ │ │ ├── lightconv.py │ │ │ │ │ ├── lightconv2d.py │ │ │ │ │ ├── mask.py │ │ │ │ │ ├── multi_layer_conv.py │ │ │ │ │ ├── optimizer.py │ │ │ │ │ ├── plot.py │ │ │ │ │ ├── positionwise_feed_forward.py │ │ │ │ │ ├── repeat.py │ │ │ │ │ ├── subsampling.py │ │ │ │ │ └── subsampling_without_posenc.py │ │ │ │ └── wavenet.py │ │ │ ├── scorer_interface.py │ │ │ ├── scorers │ │ │ │ ├── __init__.py │ │ │ │ ├── ctc.py │ │ │ │ ├── length_bonus.py │ │ │ │ └── ngram.py │ │ │ ├── st_interface.py │ │ │ ├── transducer_decoder_interface.py │ │ │ └── tts_interface.py │ │ ├── optimizer │ │ │ ├── __init__.py │ │ │ ├── chainer.py │ │ │ ├── factory.py │ │ │ ├── parser.py │ │ │ └── pytorch.py │ │ ├── scheduler │ │ │ ├── __init__.py │ │ │ ├── chainer.py │ │ │ ├── pytorch.py │ │ │ └── scheduler.py │ │ ├── st │ │ │ ├── __init__.py │ │ │ └── pytorch_backend │ │ │ │ ├── __init__.py │ │ │ │ └── st.py │ │ ├── transform │ │ │ ├── __init__.py │ │ │ ├── add_deltas.py │ │ │ ├── channel_selector.py │ │ │ ├── cmvn.py │ │ │ ├── functional.py │ │ │ ├── perturb.py │ │ │ ├── spec_augment.py │ │ │ ├── spectrogram.py │ │ │ ├── transform_interface.py │ │ │ ├── transformation.py │ │ │ └── wpe.py │ │ ├── tts │ │ │ ├── __init__.py │ │ │ └── pytorch_backend │ │ │ │ ├── __init__.py │ │ │ │ └── tts.py │ │ ├── utils │ │ │ ├── __init__.py │ │ │ ├── check_kwargs.py │ │ │ ├── cli_readers.py │ │ │ ├── cli_utils.py │ │ │ ├── cli_writers.py │ │ │ ├── dataset.py │ │ │ ├── deterministic_utils.py │ │ │ ├── dynamic_import.py │ │ │ ├── fill_missing_args.py │ │ │ ├── io_utils.py │ │ │ ├── spec_augment.py │ │ │ └── training │ │ │ │ ├── __init__.py │ │ │ │ ├── batchfy.py │ │ │ │ ├── evaluator.py │ │ │ │ ├── iterators.py │ │ │ │ ├── tensorboard_logger.py │ │ │ │ └── train_utils.py │ │ ├── vc │ │ │ └── pytorch_backend │ │ │ │ └── vc.py │ │ └── version.txt │ ├── espnet2 │ │ ├── __init__.py │ │ ├── asr │ │ │ ├── __init__.py │ │ │ ├── ctc.py │ │ │ ├── decoder │ │ │ │ ├── __init__.py │ │ │ │ ├── abs_decoder.py │ │ │ │ ├── rnn_decoder.py │ │ │ │ └── transformer_decoder.py │ │ │ ├── encoder │ │ │ │ ├── __init__.py │ │ │ │ ├── abs_encoder.py │ │ │ │ ├── conformer_encoder.py │ │ │ │ ├── contextual_block_transformer_encoder.py │ │ │ │ ├── rnn_encoder.py │ │ │ │ ├── transformer_encoder.py │ │ │ │ ├── vgg_rnn_encoder.py │ │ │ │ └── wav2vec2_encoder.py │ │ │ ├── espnet_model.py │ │ │ ├── frontend │ │ │ │ ├── __init__.py │ │ │ │ ├── abs_frontend.py │ │ │ │ ├── default.py │ │ │ │ └── windowing.py │ │ │ ├── preencoder │ │ │ │ ├── __init__.py │ │ │ │ ├── abs_preencoder.py │ │ │ │ └── sinc.py │ │ │ └── specaug │ │ │ │ ├── __init__.py │ │ │ │ ├── abs_specaug.py │ │ │ │ └── specaug.py │ │ ├── bin │ │ │ ├── __init__.py │ │ │ ├── aggregate_stats_dirs.py │ │ │ ├── asr_align.py │ │ │ ├── asr_inference.py │ │ │ ├── asr_train.py │ │ │ ├── diar_inference.py │ │ │ ├── diar_train.py │ │ │ ├── enh_inference.py │ │ │ ├── enh_scoring.py │ │ │ ├── enh_train.py │ │ │ ├── launch.py │ │ │ ├── lm_calc_perplexity.py │ │ │ ├── lm_train.py │ │ │ ├── pack.py │ │ │ ├── split_scps.py │ │ │ ├── tokenize_text.py │ │ │ ├── tts_inference.py │ │ │ └── tts_train.py │ │ ├── diar │ │ │ ├── __init__.py │ │ │ ├── abs_diar.py │ │ │ ├── decoder │ │ │ │ ├── __init__.py │ │ │ │ ├── abs_decoder.py │ │ │ │ └── linear_decoder.py │ │ │ ├── espnet_model.py │ │ │ └── label_processor.py │ │ ├── enh │ │ │ ├── __init__.py │ │ │ ├── abs_enh.py │ │ │ ├── decoder │ │ │ │ ├── __init__.py │ │ │ │ ├── abs_decoder.py │ │ │ │ ├── conv_decoder.py │ │ │ │ ├── null_decoder.py │ │ │ │ └── stft_decoder.py │ │ │ ├── encoder │ │ │ │ ├── __init__.py │ │ │ │ ├── abs_encoder.py │ │ │ │ ├── conv_encoder.py │ │ │ │ ├── null_encoder.py │ │ │ │ └── stft_encoder.py │ │ │ ├── espnet_model.py │ │ │ ├── layers │ │ │ │ ├── __init__.py │ │ │ │ ├── beamformer.py │ │ │ │ ├── dnn_beamformer.py │ │ │ │ ├── dnn_wpe.py │ │ │ │ ├── dprnn.py │ │ │ │ ├── mask_estimator.py │ │ │ │ └── tcn.py │ │ │ └── separator │ │ │ │ ├── __init__.py │ │ │ │ ├── abs_separator.py │ │ │ │ ├── asteroid_models.py │ │ │ │ ├── conformer_separator.py │ │ │ │ ├── dprnn_separator.py │ │ │ │ ├── neural_beamformer.py │ │ │ │ ├── rnn_separator.py │ │ │ │ ├── tcn_separator.py │ │ │ │ └── transformer_separator.py │ │ ├── fileio │ │ │ ├── __init__.py │ │ │ ├── datadir_writer.py │ │ │ ├── npy_scp.py │ │ │ ├── rand_gen_dataset.py │ │ │ ├── read_text.py │ │ │ ├── rttm.py │ │ │ └── sound_scp.py │ │ ├── iterators │ │ │ ├── __init__.py │ │ │ ├── abs_iter_factory.py │ │ │ ├── chunk_iter_factory.py │ │ │ ├── multiple_iter_factory.py │ │ │ └── sequence_iter_factory.py │ │ ├── layers │ │ │ ├── __init__.py │ │ │ ├── abs_normalize.py │ │ │ ├── global_mvn.py │ │ │ ├── inversible_interface.py │ │ │ ├── label_aggregation.py │ │ │ ├── log_mel.py │ │ │ ├── mask_along_axis.py │ │ │ ├── sinc_conv.py │ │ │ ├── stft.py │ │ │ ├── time_warp.py │ │ │ └── utterance_mvn.py │ │ ├── lm │ │ │ ├── __init__.py │ │ │ ├── abs_model.py │ │ │ ├── espnet_model.py │ │ │ ├── seq_rnn_lm.py │ │ │ └── transformer_lm.py │ │ ├── main_funcs │ │ │ ├── __init__.py │ │ │ ├── average_nbest_models.py │ │ │ ├── calculate_all_attentions.py │ │ │ ├── collect_stats.py │ │ │ └── pack_funcs.py │ │ ├── optimizers │ │ │ ├── __init__.py │ │ │ └── sgd.py │ │ ├── samplers │ │ │ ├── __init__.py │ │ │ ├── abs_sampler.py │ │ │ ├── build_batch_sampler.py │ │ │ ├── folded_batch_sampler.py │ │ │ ├── length_batch_sampler.py │ │ │ ├── num_elements_batch_sampler.py │ │ │ ├── sorted_batch_sampler.py │ │ │ └── unsorted_batch_sampler.py │ │ ├── schedulers │ │ │ ├── __init__.py │ │ │ ├── abs_scheduler.py │ │ │ ├── noam_lr.py │ │ │ └── warmup_lr.py │ │ ├── tasks │ │ │ ├── __init__.py │ │ │ ├── abs_task.py │ │ │ ├── asr.py │ │ │ ├── diar.py │ │ │ ├── enh.py │ │ │ ├── enh_asr.py │ │ │ ├── lm.py │ │ │ └── tts.py │ │ ├── text │ │ │ ├── __init__.py │ │ │ ├── abs_tokenizer.py │ │ │ ├── build_tokenizer.py │ │ │ ├── char_tokenizer.py │ │ │ ├── cleaner.py │ │ │ ├── phoneme_tokenizer.py │ │ │ ├── sentencepiece_tokenizer.py │ │ │ ├── token_id_converter.py │ │ │ └── word_tokenizer.py │ │ ├── torch_utils │ │ │ ├── __init__.py │ │ │ ├── add_gradient_noise.py │ │ │ ├── device_funcs.py │ │ │ ├── forward_adaptor.py │ │ │ ├── initialize.py │ │ │ ├── load_pretrained_model.py │ │ │ ├── model_summary.py │ │ │ ├── pytorch_version.py │ │ │ ├── recursive_op.py │ │ │ └── set_all_random_seed.py │ │ ├── train │ │ │ ├── __init__.py │ │ │ ├── abs_espnet_model.py │ │ │ ├── class_choices.py │ │ │ ├── collate_fn.py │ │ │ ├── dataset.py │ │ │ ├── distributed_utils.py │ │ │ ├── iterable_dataset.py │ │ │ ├── preprocessor.py │ │ │ ├── reporter.py │ │ │ └── trainer.py │ │ ├── tts │ │ │ ├── __init__.py │ │ │ ├── abs_tts.py │ │ │ ├── duration_calculator.py │ │ │ ├── espnet_model.py │ │ │ ├── fastspeech.py │ │ │ ├── fastspeech2.py │ │ │ ├── feats_extract │ │ │ │ ├── __init__.py │ │ │ │ ├── abs_feats_extract.py │ │ │ │ ├── dio.py │ │ │ │ ├── energy.py │ │ │ │ ├── log_mel_fbank.py │ │ │ │ └── log_spectrogram.py │ │ │ ├── gst │ │ │ │ ├── __init__.py │ │ │ │ └── style_encoder.py │ │ │ ├── tacotron2.py │ │ │ ├── transformer.py │ │ │ └── variance_predictor.py │ │ └── utils │ │ │ ├── __init__.py │ │ │ ├── build_dataclass.py │ │ │ ├── config_argparse.py │ │ │ ├── get_default_kwargs.py │ │ │ ├── griffin_lim.py │ │ │ ├── nested_dict_action.py │ │ │ ├── sized_dict.py │ │ │ ├── types.py │ │ │ └── yaml_no_alias_safe_dump.py │ ├── setup.cfg │ ├── setup.py │ ├── test │ │ ├── __init__.py │ │ ├── beam_search_test.arpa │ │ ├── espnet2 │ │ │ ├── __init__.py │ │ │ ├── asr │ │ │ │ ├── __init__.py │ │ │ │ ├── decoder │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── test_rnn_decoder.py │ │ │ │ │ └── test_transformer_decoder.py │ │ │ │ ├── encoder │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── test_conformer_encoder.py │ │ │ │ │ ├── test_contextual_block_transformer_encoder.py │ │ │ │ │ ├── test_rnn_encoder.py │ │ │ │ │ ├── test_transformer_encoder.py │ │ │ │ │ └── test_vgg_rnn_encoder.py │ │ │ │ ├── frontend │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── test_frontend.py │ │ │ │ │ └── test_windowing.py │ │ │ │ ├── preencoder │ │ │ │ │ └── test_sinc.py │ │ │ │ ├── specaug │ │ │ │ │ └── test_specaug.py │ │ │ │ └── test_ctc.py │ │ │ ├── bin │ │ │ │ ├── __init__.py │ │ │ │ ├── test_aggregate_stats_dirs.py │ │ │ │ ├── test_asr_align.py │ │ │ │ ├── test_asr_inference.py │ │ │ │ ├── test_asr_train.py │ │ │ │ ├── test_enh_inference.py │ │ │ │ ├── test_enh_scoring.py │ │ │ │ ├── test_enh_train.py │ │ │ │ ├── test_lm_calc_perplexity.py │ │ │ │ ├── test_lm_train.py │ │ │ │ ├── test_pack.py │ │ │ │ ├── test_tokenize_text.py │ │ │ │ ├── test_tts_inference.py │ │ │ │ └── test_tts_train.py │ │ │ ├── enh │ │ │ │ ├── decoder │ │ │ │ │ ├── test_conv_decoder.py │ │ │ │ │ └── test_stft_decoder.py │ │ │ │ ├── encoder │ │ │ │ │ ├── test_conv_encoder.py │ │ │ │ │ └── test_stft_encoder.py │ │ │ │ ├── layers │ │ │ │ │ └── test_enh_layers.py │ │ │ │ ├── separator │ │ │ │ │ ├── test_beamformer.py │ │ │ │ │ ├── test_conformer_separator.py │ │ │ │ │ ├── test_dprnn_separator.py │ │ │ │ │ ├── test_rnn_separator.py │ │ │ │ │ ├── test_tcn_separator.py │ │ │ │ │ └── test_transformer_separator.py │ │ │ │ └── test_espnet_model.py │ │ │ ├── fileio │ │ │ │ ├── __init__.py │ │ │ │ ├── test_datadir_writer.py │ │ │ │ ├── test_npy_scp.py │ │ │ │ ├── test_read_text.py │ │ │ │ └── test_sound_scp.py │ │ │ ├── iterators │ │ │ │ ├── __init__.py │ │ │ │ ├── test_chunk_iter_factory.py │ │ │ │ ├── test_multiple_iter_factory.py │ │ │ │ └── test_sequence_iter_factory.py │ │ │ ├── layers │ │ │ │ ├── __init__.py │ │ │ │ ├── test_global_mvn.py │ │ │ │ ├── test_log_mel.py │ │ │ │ ├── test_mask_along_axis.py │ │ │ │ ├── test_sinc_filters.py │ │ │ │ ├── test_stft.py │ │ │ │ ├── test_time_warp.py │ │ │ │ └── test_utterance_mvn.py │ │ │ ├── lm │ │ │ │ ├── __init__.py │ │ │ │ ├── test_seq_rnn_lm.py │ │ │ │ └── test_transformer_lm.py │ │ │ ├── main_funcs │ │ │ │ ├── __init__.py │ │ │ │ ├── test_average_nbest_models.py │ │ │ │ ├── test_calculate_all_attentions.py │ │ │ │ └── test_pack_funcs.py │ │ │ ├── optimizers │ │ │ │ ├── __init__.py │ │ │ │ └── test_sgd.py │ │ │ ├── samplers │ │ │ │ ├── __init__.py │ │ │ │ ├── test_build_batch_sampler.py │ │ │ │ ├── test_folded_batch_sampler.py │ │ │ │ ├── test_length_elements_batch_sampler.py │ │ │ │ ├── test_num_elements_batch_sampler.py │ │ │ │ ├── test_sorted_batch_sampler.py │ │ │ │ └── test_unsorted_batch_sampler.py │ │ │ ├── schedulers │ │ │ │ ├── __init__.py │ │ │ │ ├── test_noam_lr.py │ │ │ │ └── test_warmup_lr.py │ │ │ ├── tasks │ │ │ │ ├── __init__.py │ │ │ │ ├── test_abs_task.py │ │ │ │ ├── test_asr.py │ │ │ │ ├── test_enh.py │ │ │ │ ├── test_lm.py │ │ │ │ └── test_tts.py │ │ │ ├── text │ │ │ │ ├── __init__.py │ │ │ │ ├── test_char_tokenizer.py │ │ │ │ ├── test_cleaner.py │ │ │ │ ├── test_phoneme_tokenizer.py │ │ │ │ ├── test_sentencepiece_tokenizer.py │ │ │ │ ├── test_token_id_converter.py │ │ │ │ └── test_word_tokenizer.py │ │ │ ├── torch_utils │ │ │ │ ├── __init__.py │ │ │ │ ├── test_add_gradient_noise.py │ │ │ │ ├── test_device_funcs.py │ │ │ │ ├── test_forward_adaptor.py │ │ │ │ ├── test_initialize.py │ │ │ │ ├── test_load_pretrained_model.py │ │ │ │ ├── test_model_summary.py │ │ │ │ ├── test_pytorch_version.py │ │ │ │ └── test_set_all_random_seed.py │ │ │ ├── train │ │ │ │ ├── __init__.py │ │ │ │ ├── test_collate_fn.py │ │ │ │ ├── test_dataset.py │ │ │ │ ├── test_distributed_utils.py │ │ │ │ ├── test_iterable_dataset.py │ │ │ │ └── test_reporter.py │ │ │ ├── tts │ │ │ │ ├── feats_extract │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── test_dio.py │ │ │ │ │ ├── test_energy.py │ │ │ │ │ ├── test_log_mel_fbank.py │ │ │ │ │ └── test_log_spectrogram.py │ │ │ │ ├── test_fastspeech.py │ │ │ │ ├── test_fastspeech2.py │ │ │ │ ├── test_tacotron2.py │ │ │ │ └── test_transformer.py │ │ │ └── utils │ │ │ │ ├── __init__.py │ │ │ │ ├── test_build_dataclass.py │ │ │ │ ├── test_config_argparse.py │ │ │ │ ├── test_get_default_kwargs.py │ │ │ │ ├── test_nested_dict_action.py │ │ │ │ ├── test_sized_dict.py │ │ │ │ ├── test_types.py │ │ │ │ └── test_yaml_no_alias_safe_dump.py │ │ ├── tedlium2.txt │ │ ├── tedlium2.vocab │ │ ├── test.arpa │ │ ├── test_asr_init.py │ │ ├── test_asr_interface.py │ │ ├── test_asr_quantize.py │ │ ├── test_batch_beam_search.py │ │ ├── test_beam_search.py │ │ ├── test_cli.py │ │ ├── test_custom_transducer.py │ │ ├── test_e2e_asr.py │ │ ├── test_e2e_asr_conformer.py │ │ ├── test_e2e_asr_maskctc.py │ │ ├── test_e2e_asr_mulenc.py │ │ ├── test_e2e_asr_transducer.py │ │ ├── test_e2e_asr_transformer.py │ │ ├── test_e2e_compatibility.py │ │ ├── test_e2e_mt.py │ │ ├── test_e2e_mt_transformer.py │ │ ├── test_e2e_st.py │ │ ├── test_e2e_st_conformer.py │ │ ├── test_e2e_st_transformer.py │ │ ├── test_e2e_tts_fastspeech.py │ │ ├── test_e2e_tts_tacotron2.py │ │ ├── test_e2e_tts_transformer.py │ │ ├── test_e2e_vc_tacotron2.py │ │ ├── test_e2e_vc_transformer.py │ │ ├── test_initialization.py │ │ ├── test_io_voxforge.py │ │ ├── test_lm.py │ │ ├── test_loss.py │ │ ├── test_multi_spkrs.py │ │ ├── test_ngram.py │ │ ├── test_optimizer.py │ │ ├── test_positional_encoding.py │ │ ├── test_recog.py │ │ ├── test_scheduler.py │ │ ├── test_sentencepiece.py │ │ ├── test_tensorboard.py │ │ ├── test_torch.py │ │ ├── test_train_dtype.py │ │ ├── test_transform.py │ │ ├── test_transformer_decode.py │ │ ├── test_utils.py │ │ └── utils_test.py │ ├── test_utils │ │ ├── ctc_align_test.wav │ │ ├── integration_test_asr_align_wav.bats │ │ ├── integration_test_translate_wav.bats │ │ ├── st_test.wav │ │ ├── test_addjson_py.bats │ │ ├── test_apply-cmvn_py.bats │ │ ├── test_average_checkpoints_py.bats │ │ ├── test_compute-cmvn-stats_py.bats │ │ ├── test_concatjson_py.bats │ │ ├── test_copy-feats_py.bats │ │ ├── test_data2json_sh.bats │ │ ├── test_dump-pcm_py.bats │ │ ├── test_eval_perm_free_error_py.bats │ │ ├── test_feat-to-shape.bats │ │ ├── test_get_yaml.bats │ │ ├── test_json2trn.py.bats │ │ ├── test_make_pair_json_py.bats │ │ ├── test_mcd_calculate_py.bats │ │ ├── test_merge_scp2json_py.bats │ │ ├── test_mergejson_py.bats │ │ ├── test_mix-mono-wav-scp_py.bats │ │ ├── test_plot_sinc_filters.bats │ │ ├── test_scp2json_py.bats │ │ ├── test_splitjson_py.bats │ │ ├── test_spm.bats │ │ ├── test_stdout_pl.bats │ │ ├── test_text2token_py.bats │ │ ├── test_text2vocabulary_py.bats │ │ └── test_update_json_sh.bats │ ├── tools │ │ ├── .gitignore │ │ ├── Makefile │ │ ├── activate_python.sh │ │ ├── check_install.py │ │ ├── check_pytorch_cuda_compatibility.py │ │ ├── extra_path.sh │ │ ├── installers │ │ │ ├── install_beamformit.sh │ │ │ ├── install_chainer_ctc.sh │ │ │ ├── install_fairseq.sh │ │ │ ├── install_gtn.sh │ │ │ ├── install_kenlm.sh │ │ │ ├── install_mwerSegmenter.sh │ │ │ ├── install_nkf.sh │ │ │ ├── install_pesq.sh │ │ │ ├── install_phonemizer.sh │ │ │ ├── install_py3mmseg.sh │ │ │ ├── install_pyopenjtalk.sh │ │ │ ├── install_sctk.sh │ │ │ ├── install_sph2pipe.sh │ │ │ ├── install_warp-ctc.sh │ │ │ ├── install_warp-rnnt.sh │ │ │ ├── install_warp-transducer.sh │ │ │ └── patch_mwerSegmenter │ │ │ │ ├── hyp2sgm.patch │ │ │ │ └── sgm2mref.patch │ │ ├── setup_anaconda.sh │ │ ├── setup_cuda_env.sh │ │ ├── setup_python.sh │ │ └── setup_venv.sh │ └── utils │ │ ├── addjson.py │ │ ├── apply-cmvn.py │ │ ├── asr_align_wav.sh │ │ ├── average_checkpoints.py │ │ ├── calculate_rtf.py │ │ ├── change_yaml.py │ │ ├── clean_corpus.sh │ │ ├── compute-cmvn-stats.py │ │ ├── compute-fbank-feats.py │ │ ├── compute-stft-feats.py │ │ ├── concat_json_multiref.py │ │ ├── concatjson.py │ │ ├── convert_fbank.sh │ │ ├── convert_fbank_to_wav.py │ │ ├── copy-feats.py │ │ ├── data2json.sh │ │ ├── divide_lang.sh │ │ ├── download_from_google_drive.sh │ │ ├── dump-pcm.py │ │ ├── dump.sh │ │ ├── dump_pcm.sh │ │ ├── eval-source-separation.py │ │ ├── eval_perm_free_error.py │ │ ├── eval_source_separation.sh │ │ ├── feat-to-shape.py │ │ ├── feat_to_shape.sh │ │ ├── feats2npy.py │ │ ├── filt.py │ │ ├── free-gpu.sh │ │ ├── gdown.pl │ │ ├── generate_wav.sh │ │ ├── generate_wav_from_fbank.py │ │ ├── get_yaml.py │ │ ├── json2sctm.py │ │ ├── json2text.py │ │ ├── json2trn.py │ │ ├── json2trn_mt.py │ │ ├── json2trn_wo_dict.py │ │ ├── make_fbank.sh │ │ ├── make_pair_json.py │ │ ├── make_stft.sh │ │ ├── mcd_calculate.py │ │ ├── merge_scp2json.py │ │ ├── mergejson.py │ │ ├── mix-mono-wav-scp.py │ │ ├── pack_model.sh │ │ ├── queue-freegpu.pl │ │ ├── recog_wav.sh │ │ ├── reduce_data_dir.sh │ │ ├── remove_longshortdata.sh │ │ ├── remove_punctuation.pl │ │ ├── result2json.py │ │ ├── score_bleu.sh │ │ ├── score_lang_id.py │ │ ├── score_sclite.sh │ │ ├── score_sclite_case.sh │ │ ├── score_sclite_wo_dict.sh │ │ ├── scp2json.py │ │ ├── show_result.sh │ │ ├── speed_perturb.sh │ │ ├── splitjson.py │ │ ├── spm_decode │ │ ├── spm_encode │ │ ├── spm_train │ │ ├── stdout.pl │ │ ├── synth_wav.sh │ │ ├── text2token.py │ │ ├── text2vocabulary.py │ │ ├── translate_wav.sh │ │ ├── trim_silence.py │ │ ├── trim_silence.sh │ │ ├── trn2ctm.py │ │ ├── trn2stm.py │ │ └── update_json.sh └── SpeechBrain │ ├── .gitignore │ ├── LICENSE │ ├── README.md │ ├── conftest.py │ ├── docs │ ├── Makefile │ ├── README.md │ ├── _apidoc_templates │ │ ├── module.rst │ │ └── package.rst │ ├── conf.py │ ├── contributing.md │ ├── docs-requirements.txt │ ├── experiment.md │ ├── images │ │ └── logo_noname_rounded_big.png │ ├── index.rst │ ├── installation.md │ ├── multigpu.md │ └── tutorials.md │ ├── lint-requirements.txt │ ├── pyproject.toml │ ├── pytest.ini │ ├── recipes │ ├── AISHELL-1 │ │ ├── ASR │ │ │ ├── seq2seq │ │ │ │ ├── README.md │ │ │ │ ├── hparams │ │ │ │ │ └── train.yaml │ │ │ │ ├── prepare.py │ │ │ │ └── train.py │ │ │ └── transformer │ │ │ │ ├── .gitignore │ │ │ │ ├── README.md │ │ │ │ ├── data │ │ │ │ ├── hparams │ │ │ │ ├── train_ASR_disentangled_transformer.yaml │ │ │ │ ├── train_ASR_transformer.yaml │ │ │ │ └── train_ASR_transformer_with_wav2vect.yaml │ │ │ │ ├── prepare.py │ │ │ │ ├── train.py │ │ │ │ ├── train_disentangled_transformer.py │ │ │ │ └── train_with_wav2vect.py │ │ ├── Tokenizer │ │ │ ├── hparams │ │ │ │ ├── tokenizer_bpe4234.yaml │ │ │ │ ├── tokenizer_bpe5000.yaml │ │ │ │ ├── train_transformer_tokenizer_bpe4234.yaml │ │ │ │ └── train_transformer_tokenizer_bpe5000.yaml │ │ │ ├── prepare.py │ │ │ ├── pretrained.py │ │ │ └── train.py │ │ └── prepare.py │ ├── AMI │ │ ├── Diarization │ │ │ ├── README.md │ │ │ ├── ami_prepare.py │ │ │ ├── experiment.py │ │ │ ├── extra_requirements.txt │ │ │ └── hparams │ │ │ │ ├── ecapa_tdnn.yaml │ │ │ │ └── xvectors.yaml │ │ ├── ami_prepare.py │ │ └── ami_splits.py │ ├── CommonLanguage │ │ ├── README.md │ │ ├── common_language_prepare.py │ │ └── lang_id │ │ │ ├── README.md │ │ │ ├── common_language_prepare.py │ │ │ ├── hparams │ │ │ └── train_ecapa_tdnn.yaml │ │ │ └── train.py │ ├── CommonVoice │ │ ├── ASR │ │ │ ├── CTC │ │ │ │ ├── README.md │ │ │ │ ├── common_voice_prepare.py │ │ │ │ ├── hparams │ │ │ │ │ ├── train_en_with_wav2vec.yaml │ │ │ │ │ ├── train_fr_with_wav2vec.yaml │ │ │ │ │ ├── train_it_with_wav2vec.yaml │ │ │ │ │ └── train_rw_with_wav2vec.yaml │ │ │ │ └── train_with_wav2vec.py │ │ │ ├── seq2seq │ │ │ │ ├── README.md │ │ │ │ ├── common_voice_prepare.py │ │ │ │ ├── hparams │ │ │ │ │ ├── train_en.yaml │ │ │ │ │ ├── train_en_with_wav2vec.yaml │ │ │ │ │ ├── train_fr.yaml │ │ │ │ │ ├── train_fr_with_wav2vec.yaml │ │ │ │ │ ├── train_it.yaml │ │ │ │ │ ├── train_it_with_wav2vec.yaml │ │ │ │ │ ├── train_rw.yaml │ │ │ │ │ └── train_rw_with_wav2vec.yaml │ │ │ │ ├── train.py │ │ │ │ └── train_with_wav2vec.py │ │ │ ├── transducer │ │ │ │ ├── README.md │ │ │ │ ├── common_voice_prepare.py │ │ │ │ ├── hparams │ │ │ │ │ └── train_fr.yaml │ │ │ │ └── train.py │ │ │ └── transformer │ │ │ │ ├── README.md │ │ │ │ ├── common_voice_prepare.py │ │ │ │ ├── hparams │ │ │ │ └── train_fr.yaml │ │ │ │ └── train.py │ │ └── common_voice_prepare.py │ ├── DNS │ │ ├── dns_prepare.py │ │ └── enhance │ │ │ └── spectral_map │ │ │ ├── README.md │ │ │ ├── dns_prepare.py │ │ │ ├── extra_requirements.txt │ │ │ ├── hparams │ │ │ ├── params_CNN.yaml │ │ │ └── params_CNNTransformer.yaml │ │ │ └── train.py │ ├── ERPCore │ │ └── P3_decoding │ │ │ ├── README.md │ │ │ ├── download_required_data.py │ │ │ ├── extra_requirements.txt │ │ │ ├── prepare.py │ │ │ ├── train.py │ │ │ └── train.yaml │ ├── Google-speech-commands │ │ ├── README.md │ │ ├── hparams │ │ │ └── xvect.yaml │ │ ├── prepare_GSC.py │ │ └── train.py │ ├── IEMOCAP │ │ ├── README.md │ │ └── emotion_recognition │ │ │ ├── hparams │ │ │ └── train.yaml │ │ │ ├── iemocap_prepare.py │ │ │ └── train.py │ ├── LibriMix │ │ ├── extra-dependencies.txt │ │ ├── meta │ │ │ └── preprocess_dynamic_mixing.py │ │ ├── prepare_data.py │ │ └── separation │ │ │ ├── README.md │ │ │ ├── dynamic_mixing.py │ │ │ ├── hparams │ │ │ ├── sepformer-libri2mix.yaml │ │ │ └── sepformer-libri3mix.yaml │ │ │ └── train.py │ ├── LibriParty │ │ └── generate_dataset │ │ │ ├── README.md │ │ │ ├── create_custom_dataset.py │ │ │ ├── dataset.yaml │ │ │ ├── download_required_data.py │ │ │ ├── get_dataset_from_metadata.py │ │ │ └── local │ │ │ ├── __init__.py │ │ │ ├── create_mixtures_from_metadata.py │ │ │ ├── create_mixtures_metadata.py │ │ │ └── resample_folder.py │ ├── LibriSpeech │ │ ├── ASR │ │ │ ├── seq2seq │ │ │ │ ├── README.md │ │ │ │ ├── hparams │ │ │ │ │ ├── train_BPE_1000.yaml │ │ │ │ │ └── train_BPE_5000.yaml │ │ │ │ ├── librispeech_prepare.py │ │ │ │ └── train.py │ │ │ ├── transducer │ │ │ │ ├── README.md │ │ │ │ ├── hparams │ │ │ │ │ └── train.yaml │ │ │ │ ├── librispeech_prepare.py │ │ │ │ └── train.py │ │ │ └── transformer │ │ │ │ ├── README.md │ │ │ │ ├── hparams │ │ │ │ ├── conformer_small.yaml │ │ │ │ └── transformer.yaml │ │ │ │ ├── librispeech_prepare.py │ │ │ │ └── train.py │ │ ├── G2P │ │ │ ├── README.md │ │ │ ├── hparams │ │ │ │ └── train.yaml │ │ │ ├── librispeech_prepare.py │ │ │ └── train.py │ │ ├── LM │ │ │ ├── README.md │ │ │ ├── dataset.py │ │ │ ├── extra_requirements.txt │ │ │ ├── hparams │ │ │ │ ├── RNNLM.yaml │ │ │ │ └── transformer.yaml │ │ │ ├── librispeech_prepare.py │ │ │ └── train.py │ │ ├── README.md │ │ ├── Tokenizer │ │ │ ├── README.md │ │ │ ├── hparams │ │ │ │ ├── 1K_unigram_subword_bpe.yaml │ │ │ │ └── 5K_unigram_subword_bpe.yaml │ │ │ ├── librispeech_prepare.py │ │ │ └── train.py │ │ └── librispeech_prepare.py │ ├── SLURP │ │ ├── NLU │ │ │ ├── hparams │ │ │ │ └── train.yaml │ │ │ ├── prepare.py │ │ │ └── train.py │ │ ├── README.md │ │ ├── Tokenizer │ │ │ ├── hparams │ │ │ │ └── tokenizer_bpe58.yaml │ │ │ ├── prepare.py │ │ │ └── train.py │ │ ├── direct │ │ │ ├── extra_dependencies.txt │ │ │ ├── hparams │ │ │ │ └── train.yaml │ │ │ ├── prepare.py │ │ │ └── train.py │ │ └── prepare.py │ ├── TIMIT │ │ ├── ASR │ │ │ ├── CTC │ │ │ │ ├── README.md │ │ │ │ ├── hparams │ │ │ │ │ └── train.yaml │ │ │ │ ├── timit_prepare.py │ │ │ │ └── train.py │ │ │ ├── seq2seq │ │ │ │ ├── README.md │ │ │ │ ├── extra_dependencies.txt │ │ │ │ ├── hparams │ │ │ │ │ ├── train.yaml │ │ │ │ │ └── train_with_wav2vec2.yaml │ │ │ │ ├── timit_prepare.py │ │ │ │ ├── train.py │ │ │ │ └── train_with_wav2vec2.py │ │ │ ├── seq2seq_knowledge_distillation │ │ │ │ ├── README.md │ │ │ │ ├── hparams │ │ │ │ │ ├── save_teachers.yaml │ │ │ │ │ ├── teachers │ │ │ │ │ │ ├── tea0.yaml │ │ │ │ │ │ ├── tea1.yaml │ │ │ │ │ │ ├── tea2.yaml │ │ │ │ │ │ ├── tea3.yaml │ │ │ │ │ │ ├── tea4.yaml │ │ │ │ │ │ ├── tea5.yaml │ │ │ │ │ │ ├── tea6.yaml │ │ │ │ │ │ ├── tea7.yaml │ │ │ │ │ │ ├── tea8.yaml │ │ │ │ │ │ └── tea9.yaml │ │ │ │ │ └── train_kd.yaml │ │ │ │ ├── save_teachers.py │ │ │ │ ├── timit_prepare.py │ │ │ │ ├── train_kd.py │ │ │ │ └── train_teacher.py │ │ │ └── transducer │ │ │ │ ├── README.md │ │ │ │ ├── extra_requirements.txt │ │ │ │ ├── hparams │ │ │ │ ├── train.yaml │ │ │ │ └── train_wav2vec.yaml │ │ │ │ ├── timit_prepare.py │ │ │ │ ├── train.py │ │ │ │ └── train_wav2vec.py │ │ ├── Alignment │ │ │ ├── README.md │ │ │ ├── hparams │ │ │ │ └── train.yaml │ │ │ ├── timit_prepare.py │ │ │ └── train.py │ │ └── timit_prepare.py │ ├── UrbanSound8k │ │ ├── README.md │ │ ├── SoundClassification │ │ │ ├── UrbanSound8k │ │ │ │ ├── FREESOUNDCREDITS.txt │ │ │ │ ├── UrbanSound8K_README.txt │ │ │ │ └── metadata │ │ │ │ │ ├── UrbanSound8K.csv │ │ │ │ │ └── UrbanSound8k_speechbrain.csv │ │ │ ├── confusion_matrix_fig.py │ │ │ ├── custom_model.py │ │ │ ├── extra_dependencies.txt │ │ │ ├── hparams │ │ │ │ └── train_ecapa_tdnn.yaml │ │ │ ├── train.py │ │ │ └── urbansound8k_prepare.py │ │ └── urbansound8k_prepare.py │ ├── Voicebank │ │ ├── ASR │ │ │ └── CTC │ │ │ │ ├── README.md │ │ │ │ ├── hparams │ │ │ │ └── train.yaml │ │ │ │ ├── train.py │ │ │ │ └── voicebank_prepare.py │ │ ├── MTL │ │ │ ├── ASR_enhance │ │ │ │ ├── README.md │ │ │ │ ├── extra_requirements.txt │ │ │ │ ├── hparams │ │ │ │ │ ├── enhance_mimic.yaml │ │ │ │ │ ├── models │ │ │ │ │ │ ├── asr_model.yaml │ │ │ │ │ │ ├── crdnn_enhance.yaml │ │ │ │ │ │ ├── enhance_model.yaml │ │ │ │ │ │ └── perceptual_model.yaml │ │ │ │ │ ├── pretrain_perceptual.yaml │ │ │ │ │ └── robust_asr.yaml │ │ │ │ ├── train.py │ │ │ │ └── voicebank_prepare.py │ │ │ └── CoopNet │ │ │ │ ├── CoopNet.py │ │ │ │ ├── README.md │ │ │ │ ├── extra-dependencies.txt │ │ │ │ ├── hparams │ │ │ │ ├── logger.yaml │ │ │ │ ├── models │ │ │ │ │ ├── asr_model.yaml │ │ │ │ │ ├── attention_model.yaml │ │ │ │ │ ├── enhance_model.yaml │ │ │ │ │ └── skip_connections.yaml │ │ │ │ ├── pretrain_1layer.yaml │ │ │ │ ├── pretrain_asr_and_se.yaml │ │ │ │ └── train_3layer.yaml │ │ │ │ ├── train.py │ │ │ │ └── voicebank_prepare.py │ │ ├── enhance │ │ │ ├── MetricGAN │ │ │ │ ├── README.md │ │ │ │ ├── hparams │ │ │ │ │ └── train.yaml │ │ │ │ ├── models │ │ │ │ │ └── MetricGAN.yaml │ │ │ │ ├── train.py │ │ │ │ └── voicebank_prepare.py │ │ │ ├── SEGAN │ │ │ │ ├── README.md │ │ │ │ ├── hparams │ │ │ │ │ └── train.yaml │ │ │ │ ├── train.py │ │ │ │ └── voicebank_prepare.py │ │ │ ├── spectral_mask │ │ │ │ ├── README.md │ │ │ │ ├── hparams │ │ │ │ │ ├── models │ │ │ │ │ │ ├── 2DFCN+BLSTM.yaml │ │ │ │ │ │ ├── 2DFCN.yaml │ │ │ │ │ │ ├── BLSTM.yaml │ │ │ │ │ │ └── CNNTransformer.yaml │ │ │ │ │ └── train.yaml │ │ │ │ ├── train.py │ │ │ │ └── voicebank_prepare.py │ │ │ └── waveform_map │ │ │ │ ├── README.md │ │ │ │ ├── hparams │ │ │ │ ├── models │ │ │ │ │ └── FCN.yaml │ │ │ │ └── train.yaml │ │ │ │ ├── train.py │ │ │ │ └── voicebank_prepare.py │ │ └── voicebank_prepare.py │ ├── VoxCeleb │ │ ├── SpeakerRec │ │ │ ├── README.md │ │ │ ├── hparams │ │ │ │ ├── train_ecapa_tdnn.yaml │ │ │ │ ├── train_x_vectors.yaml │ │ │ │ ├── verification_ecapa.yaml │ │ │ │ └── verification_plda_xvector.yaml │ │ │ ├── speaker_verification_cosine.py │ │ │ ├── speaker_verification_plda.py │ │ │ ├── train_speaker_embeddings.py │ │ │ └── voxceleb_prepare.py │ │ └── voxceleb_prepare.py │ ├── WHAMandWHAMR │ │ ├── extra-dependencies.txt │ │ ├── meta │ │ │ ├── README.md │ │ │ ├── activlev.m │ │ │ ├── create_whamr_rirs.py │ │ │ ├── maxfilt.m │ │ │ ├── preprocess_dynamic_mixing.py │ │ │ ├── rir_constants.py │ │ │ └── wham_room.py │ │ ├── prepare_data.py │ │ └── separation │ │ │ ├── README.md │ │ │ ├── dynamic_mixing.py │ │ │ ├── hparams │ │ │ ├── sepformer-wham.yaml │ │ │ └── sepformer-whamr.yaml │ │ │ └── train.py │ ├── WSJ0Mix │ │ ├── extra-dependencies.txt │ │ ├── meta │ │ │ └── preprocess_dynamic_mixing.py │ │ ├── prepare_data.py │ │ └── separation │ │ │ ├── README.md │ │ │ ├── dynamic_mixing.py │ │ │ ├── hparams │ │ │ ├── convtasnet.yaml │ │ │ ├── dprnn.yaml │ │ │ ├── sepformer-customdataset.yaml │ │ │ └── sepformer.yaml │ │ │ └── train.py │ ├── fluent-speech-commands │ │ ├── README.md │ │ ├── Tokenizer │ │ │ ├── hparams │ │ │ │ └── tokenizer_bpe51.yaml │ │ │ ├── prepare.py │ │ │ └── train.py │ │ ├── direct │ │ │ ├── hparams │ │ │ │ └── train.yaml │ │ │ ├── prepare.py │ │ │ └── train.py │ │ ├── extra_requirements.txt │ │ └── prepare.py │ └── timers-and-such │ │ ├── LM │ │ ├── hparams │ │ │ └── train.yaml │ │ ├── prepare.py │ │ └── train.py │ │ ├── README.md │ │ ├── Tokenizer │ │ ├── hparams │ │ │ └── tokenizer_bpe51.yaml │ │ ├── prepare.py │ │ └── train.py │ │ ├── decoupled │ │ ├── hparams │ │ │ ├── train_LS_LM.yaml │ │ │ └── train_TAS_LM.yaml │ │ ├── prepare.py │ │ ├── run_LS_LM.sh │ │ ├── run_TAS_LM.sh │ │ └── train.py │ │ ├── direct │ │ ├── hparams │ │ │ ├── train.yaml │ │ │ └── train_with_wav2vec2.yaml │ │ ├── prepare.py │ │ ├── run.sh │ │ ├── train.py │ │ └── train_with_wav2vec2.py │ │ ├── extra_requirements.txt │ │ ├── multistage │ │ ├── hparams │ │ │ ├── train_LS_LM.yaml │ │ │ └── train_TAS_LM.yaml │ │ ├── prepare.py │ │ ├── run_LS_LM.sh │ │ ├── run_TAS_LM.sh │ │ └── train.py │ │ └── prepare.py │ ├── requirements.txt │ ├── samples │ ├── audio_samples │ │ ├── csv_example.csv │ │ ├── csv_example2.csv │ │ ├── csv_example3.csv │ │ ├── csv_example_multichannel.csv │ │ ├── example1.wav │ │ ├── example2.flac │ │ ├── example3.sph │ │ ├── example4.raw │ │ ├── example5.wav │ │ ├── example6.wav │ │ ├── example_multichannel.wav │ │ ├── example_noisy.wav │ │ ├── multi_mic │ │ │ ├── noise_0.70225_-0.70225_0.11704.flac │ │ │ ├── noise_diffuse.flac │ │ │ ├── speech_-0.82918_0.55279_-0.082918.flac │ │ │ └── speech_-0.98894_0_0.14834.flac │ │ ├── nn_training_samples │ │ │ ├── debug.csv │ │ │ ├── dev.csv │ │ │ ├── dev.json │ │ │ ├── spk1_snt1.pkl │ │ │ ├── spk1_snt1.wav │ │ │ ├── spk1_snt2.pkl │ │ │ ├── spk1_snt2.wav │ │ │ ├── spk1_snt3.pkl │ │ │ ├── spk1_snt3.wav │ │ │ ├── spk1_snt4.pkl │ │ │ ├── spk1_snt4.wav │ │ │ ├── spk1_snt5.pkl │ │ │ ├── spk1_snt5.wav │ │ │ ├── spk1_snt6.pkl │ │ │ ├── spk1_snt6.wav │ │ │ ├── spk2_snt1.pkl │ │ │ ├── spk2_snt1.wav │ │ │ ├── spk2_snt2.pkl │ │ │ ├── spk2_snt2.wav │ │ │ ├── spk2_snt3.pkl │ │ │ ├── spk2_snt3.wav │ │ │ ├── spk2_snt4.pkl │ │ │ ├── spk2_snt4.wav │ │ │ ├── spk2_snt5.pkl │ │ │ ├── spk2_snt5.wav │ │ │ ├── spk2_snt6.pkl │ │ │ ├── spk2_snt6.wav │ │ │ ├── test.csv │ │ │ ├── train.csv │ │ │ └── train.json │ │ ├── sourcesep_samples │ │ │ ├── csv_example_sourcesep_mixture.csv │ │ │ ├── csv_example_sourcesep_source1.csv │ │ │ ├── csv_example_sourcesep_source2.csv │ │ │ ├── minimal_example_convtasnet_cv.csv │ │ │ ├── minimal_example_convtasnet_tr.csv │ │ │ ├── minimal_example_convtasnet_tt.csv │ │ │ ├── mixture_0.wav │ │ │ ├── mixture_1.wav │ │ │ ├── mixture_2.wav │ │ │ ├── mixture_3.wav │ │ │ ├── source1_0.wav │ │ │ ├── source1_1.wav │ │ │ ├── source1_2.wav │ │ │ ├── source1_3.wav │ │ │ ├── source2_0.wav │ │ │ ├── source2_1.wav │ │ │ ├── source2_2.wav │ │ │ └── source2_3.wav │ │ ├── test_csv_merge.csv │ │ ├── test_mixture.wav │ │ └── vad │ │ │ ├── train.json │ │ │ ├── train.wav │ │ │ ├── valid.json │ │ │ └── valid.wav │ ├── label_samples │ │ ├── hyp.csv │ │ └── ref.csv │ ├── noise_samples │ │ ├── noise.csv │ │ ├── noise1.wav │ │ ├── noise2.wav │ │ ├── noise3.wav │ │ ├── noise4.wav │ │ ├── noise5.wav │ │ ├── noise_multichannel.csv │ │ ├── noise_multichannel.wav │ │ └── noise_rel.csv │ ├── plda_xvect_samples │ │ ├── enrol_stat_xvect.pkl │ │ ├── expected_plda_scores.pkl │ │ ├── test_stat_xvect.pkl │ │ └── train_stat_xvect.pkl │ ├── rir_samples │ │ ├── rir1.wav │ │ ├── rir2.wav │ │ ├── rir3.wav │ │ ├── rir4.wav │ │ ├── rir_multichannel.csv │ │ ├── rir_multichannel.wav │ │ ├── rirs.csv │ │ └── rirs_rel.csv │ ├── rttm_samples │ │ ├── ReadMe.md │ │ ├── ref_rttm │ │ │ └── ES2014c.rttm │ │ └── sys_rttm │ │ │ └── ES2014c.rttm │ ├── text_samples │ │ ├── hdf5_example.h5 │ │ ├── label_dict.pkl │ │ └── readme.txt │ └── voxceleb_samples │ │ ├── meta │ │ └── iden_split.txt │ │ ├── readme.txt │ │ └── wav │ │ ├── dev.csv │ │ ├── id10001 │ │ └── 1zcIwhmdeo4 │ │ │ ├── 00001.wav │ │ │ ├── 00002.wav │ │ │ └── 00003.wav │ │ ├── id10002 │ │ └── xTV-jFAUKcw │ │ │ ├── 00001.wav │ │ │ ├── 00002.wav │ │ │ └── 00003.wav │ │ └── train.csv │ ├── setup.py │ ├── speechbrain │ ├── __init__.py │ ├── alignment │ │ ├── __init__.py │ │ └── aligner.py │ ├── core.py │ ├── dataio │ │ ├── __init__.py │ │ ├── batch.py │ │ ├── dataio.py │ │ ├── dataloader.py │ │ ├── dataset.py │ │ ├── encoder.py │ │ ├── iterators.py │ │ ├── legacy.py │ │ ├── preprocess.py │ │ ├── sampler.py │ │ └── wer.py │ ├── decoders │ │ ├── __init__.py │ │ ├── ctc.py │ │ ├── seq2seq.py │ │ ├── streaming.py │ │ └── transducer.py │ ├── lm │ │ ├── __init__.py │ │ ├── arpa.py │ │ ├── counting.py │ │ └── ngram.py │ ├── lobes │ │ ├── __init__.py │ │ ├── augment.py │ │ ├── beamform_multimic.py │ │ ├── features.py │ │ └── models │ │ │ ├── CRDNN.py │ │ │ ├── ContextNet.py │ │ │ ├── ECAPA_TDNN.py │ │ │ ├── ESPnetVGG.py │ │ │ ├── MetricGAN.py │ │ │ ├── RNNLM.py │ │ │ ├── VanillaNN.py │ │ │ ├── Xvector.py │ │ │ ├── __init__.py │ │ │ ├── conv_tasnet.py │ │ │ ├── convolution.py │ │ │ ├── disentangled_transformer │ │ │ ├── Conformer.py │ │ │ ├── Transformer.py │ │ │ ├── TransformerASR.py │ │ │ ├── TransformerLM.py │ │ │ ├── TransformerSE.py │ │ │ └── __init__.py │ │ │ ├── dual_path.py │ │ │ ├── fairseq_wav2vec.py │ │ │ ├── huggingface_wav2vec.py │ │ │ ├── segan_model.py │ │ │ ├── sync_transformer │ │ │ ├── Conformer.py │ │ │ ├── Transformer.py │ │ │ ├── TransformerASR.py │ │ │ ├── TransformerLM.py │ │ │ ├── TransformerSE.py │ │ │ └── __init__.py │ │ │ └── transformer │ │ │ ├── Conformer.py │ │ │ ├── Transformer.py │ │ │ ├── TransformerASR.py │ │ │ ├── TransformerLM.py │ │ │ ├── TransformerSE.py │ │ │ └── __init__.py │ ├── log-config.yaml │ ├── nnet │ │ ├── CNN.py │ │ ├── RNN.py │ │ ├── __init__.py │ │ ├── activations.py │ │ ├── attention.py │ │ ├── complex_networks │ │ │ ├── __init__.py │ │ │ ├── c_CNN.py │ │ │ ├── c_RNN.py │ │ │ ├── c_linear.py │ │ │ ├── c_normalization.py │ │ │ └── c_ops.py │ │ ├── containers.py │ │ ├── dropout.py │ │ ├── embedding.py │ │ ├── linear.py │ │ ├── loss │ │ │ ├── __init__.py │ │ │ ├── guidedattn_loss.py │ │ │ ├── stoi_loss.py │ │ │ └── transducer_loss.py │ │ ├── losses.py │ │ ├── normalization.py │ │ ├── pooling.py │ │ ├── quaternion_networks │ │ │ ├── __init__.py │ │ │ ├── q_CNN.py │ │ │ ├── q_RNN.py │ │ │ ├── q_linear.py │ │ │ ├── q_normalization.py │ │ │ └── q_ops.py │ │ ├── schedulers.py │ │ └── transducer │ │ │ ├── __init__.py │ │ │ └── transducer_joint.py │ ├── pretrained │ │ ├── __init__.py │ │ ├── fetching.py │ │ └── interfaces.py │ ├── processing │ │ ├── NMF.py │ │ ├── PLDA_LDA.py │ │ ├── __init__.py │ │ ├── decomposition.py │ │ ├── diarization.py │ │ ├── features.py │ │ ├── multi_mic.py │ │ ├── signal_processing.py │ │ └── speech_augmentation.py │ ├── tokenizers │ │ ├── SentencePiece.py │ │ └── __init__.py │ ├── utils │ │ ├── Accuracy.py │ │ ├── DER.py │ │ ├── __init__.py │ │ ├── bleu.py │ │ ├── callchains.py │ │ ├── checkpoints.py │ │ ├── data_pipeline.py │ │ ├── data_utils.py │ │ ├── depgraph.py │ │ ├── distributed.py │ │ ├── edit_distance.py │ │ ├── epoch_loop.py │ │ ├── logger.py │ │ ├── metric_stats.py │ │ ├── parameter_transfer.py │ │ ├── superpowers.py │ │ ├── torch_audio_backend.py │ │ └── train_logger.py │ └── version.txt │ ├── templates │ ├── README.md │ ├── enhancement │ │ ├── README.md │ │ ├── custom_model.py │ │ ├── mini_librispeech_prepare.py │ │ ├── train.py │ │ └── train.yaml │ ├── speaker_id │ │ ├── README.md │ │ ├── custom_model.py │ │ ├── mini_librispeech_prepare.py │ │ ├── train.py │ │ └── train.yaml │ └── speech_recognition │ │ ├── ASR │ │ ├── README.md │ │ ├── mini_librispeech_prepare.py │ │ ├── train.py │ │ └── train.yaml │ │ ├── LM │ │ ├── README.md │ │ ├── RNNLM.yaml │ │ ├── custom_model.py │ │ ├── data │ │ │ ├── test.txt │ │ │ ├── train.txt │ │ │ └── valid.txt │ │ ├── extra_requirements.txt │ │ └── train.py │ │ ├── README.md │ │ ├── Tokenizer │ │ ├── README.md │ │ ├── mini_librispeech_prepare.py │ │ ├── tokenizer.yaml │ │ └── train.py │ │ └── mini_librispeech_prepare.py │ ├── tests │ ├── .run-doctests.sh │ ├── .run-linters.sh │ ├── .run-recipe-tests.sh │ ├── .run-unittests.sh │ ├── integration │ │ ├── neural_networks │ │ │ ├── ASR_CTC │ │ │ │ ├── example_asr_ctc_experiment.py │ │ │ │ ├── example_asr_ctc_experiment_complex_net.py │ │ │ │ ├── example_asr_ctc_experiment_quaternion_net.py │ │ │ │ ├── hyperparams.yaml │ │ │ │ ├── hyperparams_complex_net.yaml │ │ │ │ └── hyperparams_quaternion_net.yaml │ │ │ ├── ASR_DNN_HMM │ │ │ │ ├── example_asr_dnn_hmm_experiment.py │ │ │ │ └── hyperparams.yaml │ │ │ ├── ASR_Transducer │ │ │ │ ├── example_asr_transducer_experiment.py │ │ │ │ └── hyperparams.yaml │ │ │ ├── ASR_alignment_forward │ │ │ │ ├── example_asr_alignment_forward_experiment.py │ │ │ │ └── hyperparams.yaml │ │ │ ├── ASR_alignment_viterbi │ │ │ │ ├── example_asr_alignment_viterbi_experiment.py │ │ │ │ └── hyperparams.yaml │ │ │ ├── ASR_seq2seq │ │ │ │ ├── example_asr_seq2seq_experiment.py │ │ │ │ └── hyperparams.yaml │ │ │ ├── G2P │ │ │ │ ├── example_g2p.py │ │ │ │ └── hyperparams.yaml │ │ │ ├── LM_RNN │ │ │ │ ├── example_lm_rnn_experiment.py │ │ │ │ └── hyperparams.yaml │ │ │ ├── VAD │ │ │ │ ├── example_vad.py │ │ │ │ └── hyperparams.yaml │ │ │ ├── autoencoder │ │ │ │ ├── example_auto_experiment.py │ │ │ │ └── hyperparams.yaml │ │ │ ├── enhance_GAN │ │ │ │ ├── example_enhance_gan_experiment.py │ │ │ │ ├── hyperparams.yaml │ │ │ │ └── models.yaml │ │ │ ├── separation │ │ │ │ ├── example_conv_tasnet.py │ │ │ │ └── hyperparams.yaml │ │ │ └── speaker_id │ │ │ │ ├── example_xvector_experiment.py │ │ │ │ └── hyperparams.yaml │ │ └── signal_processing │ │ │ ├── PLDA_xvector │ │ │ └── example_plda_experiment.py │ │ │ ├── example_add_babble.py │ │ │ ├── example_add_noise.py │ │ │ ├── example_add_reverb.py │ │ │ ├── example_do_clip.py │ │ │ ├── example_drop_chunk.py │ │ │ ├── example_drop_freq.py │ │ │ ├── example_speed_perturb.py │ │ │ ├── expected │ │ │ ├── add_babble │ │ │ │ └── save │ │ │ │ │ └── example1.flac │ │ │ ├── add_noise │ │ │ │ └── save │ │ │ │ │ └── example1.flac │ │ │ ├── add_reverb │ │ │ │ └── save │ │ │ │ │ └── example1.flac │ │ │ ├── do_clip │ │ │ │ └── save │ │ │ │ │ └── example1.flac │ │ │ ├── drop_chunk │ │ │ │ └── save │ │ │ │ │ └── example1.flac │ │ │ ├── drop_freq │ │ │ │ └── save │ │ │ │ │ └── example1.flac │ │ │ └── speed_perturb │ │ │ │ └── save │ │ │ │ └── example1.flac │ │ │ ├── hyperparams.yaml │ │ │ └── nmf_sourcesep │ │ │ ├── example_experiment.py │ │ │ └── hyperparams.yaml │ └── unittests │ │ ├── test_CNN.py │ │ ├── test_RNN.py │ │ ├── test_activations.py │ │ ├── test_arpa.py │ │ ├── test_attention.py │ │ ├── test_augment.py │ │ ├── test_batching.py │ │ ├── test_callchains.py │ │ ├── test_categorical_encoder.py │ │ ├── test_checkpoints.py │ │ ├── test_core.py │ │ ├── test_counting.py │ │ ├── test_data_io.py │ │ ├── test_data_pipeline.py │ │ ├── test_dataloader.py │ │ ├── test_dataset.py │ │ ├── test_dependency_graph.py │ │ ├── test_dropout.py │ │ ├── test_edit_distance.py │ │ ├── test_embedding.py │ │ ├── test_epoch_loop.py │ │ ├── test_features.py │ │ ├── test_linear.py │ │ ├── test_losses.py │ │ ├── test_metrics.py │ │ ├── test_multi_mic.py │ │ ├── test_ngram_lm.py │ │ ├── test_normalization.py │ │ ├── test_pooling.py │ │ ├── test_pretrainer.py │ │ ├── test_samplers.py │ │ ├── test_schedulers.py │ │ ├── test_signal_processing.py │ │ ├── test_tokenizer.py │ │ └── tokenizer_data │ │ └── dev-clean.csv │ └── tools │ ├── compute_wer.py │ └── der_eval │ └── md-eval.pl ├── Dockerfile ├── MT └── Fairseq │ ├── .gitignore │ ├── CODE_OF_CONDUCT.md │ ├── CONTRIBUTING.md │ ├── LICENSE │ ├── README.md │ ├── docs │ ├── Makefile │ ├── _static │ │ └── theme_overrides.css │ ├── command_line_tools.rst │ ├── conf.py │ ├── criterions.rst │ ├── data.rst │ ├── docutils.conf │ ├── fairseq.gif │ ├── fairseq_logo.png │ ├── getting_started.rst │ ├── hydra_integration.md │ ├── index.rst │ ├── lr_scheduler.rst │ ├── make.bat │ ├── models.rst │ ├── modules.rst │ ├── optim.rst │ ├── overview.rst │ ├── requirements.txt │ ├── tasks.rst │ ├── tutorial_classifying_names.rst │ └── tutorial_simple_lstm.rst │ ├── examples │ ├── .gitignore │ ├── __init__.py │ ├── simultaneous_translation │ │ ├── README.md │ │ ├── __init__.py │ │ ├── eval │ │ │ ├── __init__.py │ │ │ ├── agents │ │ │ │ ├── __init__.py │ │ │ │ ├── agent.py │ │ │ │ ├── simul_trans_agent.py │ │ │ │ ├── simul_trans_text_agent.py │ │ │ │ └── word_splitter.py │ │ │ ├── client.py │ │ │ ├── eval_latency.py │ │ │ ├── evaluate.py │ │ │ ├── scorers │ │ │ │ ├── __init__.py │ │ │ │ ├── scorer.py │ │ │ │ └── text_scorer.py │ │ │ └── server.py │ │ ├── models │ │ │ ├── __init__.py │ │ │ ├── convtransformer_simul_trans.py │ │ │ └── transformer_monotonic_attention.py │ │ ├── modules │ │ │ ├── __init__.py │ │ │ ├── fixed_pre_decision.py │ │ │ ├── monotonic_multihead_attention.py │ │ │ └── monotonic_transformer_layer.py │ │ └── utils │ │ │ ├── __init__.py │ │ │ ├── data_utils.py │ │ │ ├── functions.py │ │ │ └── latency.py │ └── translation │ │ ├── .gitignore │ │ ├── README.md │ │ ├── disentangled_transformer │ │ ├── .gitignore │ │ ├── __init__.py │ │ ├── criterions │ │ │ ├── __init__.py │ │ │ └── disentangled_label_smoothed_cross_entropy.py │ │ ├── models │ │ │ ├── __init__.py │ │ │ └── disentangled_transformer.py │ │ ├── modules │ │ │ ├── __init__.py │ │ │ ├── disentangled_attention.py │ │ │ ├── disentangled_transformer_layer.py │ │ │ └── multihead_disentangled_attention.py │ │ └── utils │ │ │ ├── __init__.py │ │ │ ├── plot.py │ │ │ └── utils.py │ │ ├── evaluate_disentangled_transformer.sh │ │ ├── evaluate_redundancy.py │ │ ├── evaluate_transformer.sh │ │ ├── prepare-iwslt14.sh │ │ ├── prepare-wmt14en2de.sh │ │ ├── prepare-wmt17zh2en.sh │ │ ├── preprocess_iwslt14_de_en.sh │ │ ├── preprocess_wmt14_en_de.sh │ │ ├── preprocess_wmt17_zh_en.sh │ │ ├── train_disentangled_transformer.sh │ │ ├── train_disentangled_transformer_wmt14.sh │ │ ├── train_transformer.sh │ │ └── train_transformer_wmt14.sh │ ├── fairseq │ ├── __init__.py │ ├── benchmark │ │ ├── __init__.py │ │ ├── dummy_lm.py │ │ ├── dummy_masked_lm.py │ │ ├── dummy_model.py │ │ └── dummy_mt.py │ ├── binarizer.py │ ├── checkpoint_utils.py │ ├── clib │ │ ├── cuda │ │ │ ├── ngram_repeat_block_cuda.cpp │ │ │ └── ngram_repeat_block_cuda_kernel.cu │ │ ├── libbleu │ │ │ ├── libbleu.cpp │ │ │ └── module.cpp │ │ ├── libnat │ │ │ └── edit_dist.cpp │ │ └── libnat_cuda │ │ │ ├── binding.cpp │ │ │ ├── edit_dist.cu │ │ │ └── edit_dist.h │ ├── config │ │ ├── __init__.py │ │ ├── config.yaml │ │ └── model │ │ │ ├── transformer_lm │ │ │ ├── transformer_lm_baevski_gbw.yaml │ │ │ ├── transformer_lm_baevski_wiki103.yaml │ │ │ ├── transformer_lm_big.yaml │ │ │ ├── transformer_lm_gbw.yaml │ │ │ ├── transformer_lm_gpt.yaml │ │ │ ├── transformer_lm_gpt2_big.yaml │ │ │ ├── transformer_lm_gpt2_medium.yaml │ │ │ ├── transformer_lm_gpt2_small.yaml │ │ │ └── transformer_lm_wiki103.yaml │ │ │ ├── wav2vec │ │ │ └── vq_wav2vec_gumbel.yaml │ │ │ └── wav2vec2 │ │ │ ├── wav2vec2_base.yaml │ │ │ └── wav2vec2_large.yaml │ ├── criterions │ │ ├── __init__.py │ │ ├── adaptive_loss.py │ │ ├── composite_loss.py │ │ ├── cross_entropy.py │ │ ├── ctc.py │ │ ├── fairseq_criterion.py │ │ ├── label_smoothed_cross_entropy.py │ │ ├── label_smoothed_cross_entropy_latency_augmented.py │ │ ├── label_smoothed_cross_entropy_with_alignment.py │ │ ├── legacy_masked_lm.py │ │ ├── masked_lm.py │ │ ├── model_criterion.py │ │ ├── nat_loss.py │ │ ├── sentence_prediction.py │ │ ├── sentence_ranking.py │ │ └── wav2vec_criterion.py │ ├── data │ │ ├── __init__.py │ │ ├── add_target_dataset.py │ │ ├── append_token_dataset.py │ │ ├── audio │ │ │ ├── __init__.py │ │ │ ├── audio_utils.py │ │ │ ├── feature_transforms │ │ │ │ ├── __init__.py │ │ │ │ ├── global_cmvn.py │ │ │ │ ├── specaugment.py │ │ │ │ └── utterance_cmvn.py │ │ │ ├── raw_audio_dataset.py │ │ │ └── speech_to_text_dataset.py │ │ ├── backtranslation_dataset.py │ │ ├── base_wrapper_dataset.py │ │ ├── bucket_pad_length_dataset.py │ │ ├── colorize_dataset.py │ │ ├── concat_dataset.py │ │ ├── concat_sentences_dataset.py │ │ ├── data_utils.py │ │ ├── data_utils_fast.pyx │ │ ├── denoising_dataset.py │ │ ├── dictionary.py │ │ ├── encoders │ │ │ ├── __init__.py │ │ │ ├── byte_bpe.py │ │ │ ├── byte_utils.py │ │ │ ├── bytes.py │ │ │ ├── characters.py │ │ │ ├── fastbpe.py │ │ │ ├── gpt2_bpe.py │ │ │ ├── gpt2_bpe_utils.py │ │ │ ├── hf_bert_bpe.py │ │ │ ├── hf_byte_bpe.py │ │ │ ├── moses_tokenizer.py │ │ │ ├── nltk_tokenizer.py │ │ │ ├── sentencepiece_bpe.py │ │ │ ├── space_tokenizer.py │ │ │ ├── subword_nmt_bpe.py │ │ │ └── utils.py │ │ ├── fairseq_dataset.py │ │ ├── fasta_dataset.py │ │ ├── id_dataset.py │ │ ├── indexed_dataset.py │ │ ├── iterators.py │ │ ├── language_pair_dataset.py │ │ ├── legacy │ │ │ ├── __init__.py │ │ │ ├── block_pair_dataset.py │ │ │ ├── masked_lm_dataset.py │ │ │ └── masked_lm_dictionary.py │ │ ├── list_dataset.py │ │ ├── lm_context_window_dataset.py │ │ ├── lru_cache_dataset.py │ │ ├── mask_tokens_dataset.py │ │ ├── monolingual_dataset.py │ │ ├── multi_corpus_dataset.py │ │ ├── multi_corpus_sampled_dataset.py │ │ ├── multilingual │ │ │ ├── __init__.py │ │ │ ├── multilingual_data_manager.py │ │ │ ├── multilingual_utils.py │ │ │ ├── sampled_multi_dataset.py │ │ │ ├── sampled_multi_epoch_dataset.py │ │ │ └── sampling_method.py │ │ ├── nested_dictionary_dataset.py │ │ ├── noising.py │ │ ├── num_samples_dataset.py │ │ ├── numel_dataset.py │ │ ├── offset_tokens_dataset.py │ │ ├── pad_dataset.py │ │ ├── plasma_utils.py │ │ ├── prepend_dataset.py │ │ ├── prepend_token_dataset.py │ │ ├── raw_label_dataset.py │ │ ├── replace_dataset.py │ │ ├── resampling_dataset.py │ │ ├── roll_dataset.py │ │ ├── round_robin_zip_datasets.py │ │ ├── shorten_dataset.py │ │ ├── sort_dataset.py │ │ ├── strip_token_dataset.py │ │ ├── subsample_dataset.py │ │ ├── token_block_dataset.py │ │ ├── token_block_utils_fast.pyx │ │ ├── transform_eos_dataset.py │ │ └── transform_eos_lang_pair_dataset.py │ ├── dataclass │ │ ├── __init__.py │ │ ├── configs.py │ │ ├── constants.py │ │ ├── initialize.py │ │ └── utils.py │ ├── disentangled_transformer │ ├── distributed │ │ ├── __init__.py │ │ ├── distributed_timeout_wrapper.py │ │ ├── fully_sharded_data_parallel.py │ │ ├── legacy_distributed_data_parallel.py │ │ ├── module_proxy_wrapper.py │ │ ├── tpu_distributed_data_parallel.py │ │ └── utils.py │ ├── file_io.py │ ├── file_utils.py │ ├── hub_utils.py │ ├── incremental_decoding_utils.py │ ├── iterative_refinement_generator.py │ ├── logging │ │ ├── __init__.py │ │ ├── meters.py │ │ ├── metrics.py │ │ └── progress_bar.py │ ├── model_parallel │ │ ├── __init__.py │ │ ├── criterions │ │ │ ├── __init__.py │ │ │ └── vocab_parallel_cross_entropy.py │ │ ├── megatron_trainer.py │ │ ├── models │ │ │ ├── __init__.py │ │ │ ├── pipeline_parallel_transformer │ │ │ │ ├── __init__.py │ │ │ │ ├── layers.py │ │ │ │ └── model.py │ │ │ ├── roberta │ │ │ │ ├── __init__.py │ │ │ │ └── model.py │ │ │ ├── transformer.py │ │ │ └── transformer_lm.py │ │ └── modules │ │ │ ├── __init__.py │ │ │ ├── multihead_attention.py │ │ │ └── transformer_layer.py │ ├── models │ │ ├── __init__.py │ │ ├── bart │ │ │ ├── __init__.py │ │ │ ├── hub_interface.py │ │ │ └── model.py │ │ ├── composite_encoder.py │ │ ├── distributed_fairseq_model.py │ │ ├── fairseq_decoder.py │ │ ├── fairseq_encoder.py │ │ ├── fairseq_incremental_decoder.py │ │ ├── fairseq_model.py │ │ ├── fconv.py │ │ ├── fconv_lm.py │ │ ├── fconv_self_att.py │ │ ├── huggingface │ │ │ ├── __init__.py │ │ │ └── hf_gpt2.py │ │ ├── lightconv.py │ │ ├── lightconv_lm.py │ │ ├── lstm.py │ │ ├── lstm_lm.py │ │ ├── masked_lm.py │ │ ├── model_utils.py │ │ ├── multilingual_transformer.py │ │ ├── nat │ │ │ ├── __init__.py │ │ │ ├── cmlm_transformer.py │ │ │ ├── fairseq_nat_model.py │ │ │ ├── insertion_transformer.py │ │ │ ├── iterative_nonautoregressive_transformer.py │ │ │ ├── levenshtein_transformer.py │ │ │ ├── levenshtein_utils.py │ │ │ ├── nat_crf_transformer.py │ │ │ ├── nonautoregressive_ensembles.py │ │ │ └── nonautoregressive_transformer.py │ │ ├── roberta │ │ │ ├── __init__.py │ │ │ ├── alignment_utils.py │ │ │ ├── hub_interface.py │ │ │ ├── model.py │ │ │ ├── model_camembert.py │ │ │ ├── model_gottbert.py │ │ │ └── model_xlmr.py │ │ ├── speech_to_text │ │ │ ├── __init__.py │ │ │ ├── berard.py │ │ │ ├── convtransformer.py │ │ │ ├── modules │ │ │ │ ├── augmented_memory_attention.py │ │ │ │ └── emformer.py │ │ │ ├── s2t_transformer.py │ │ │ └── utils.py │ │ ├── transformer.py │ │ ├── transformer_align.py │ │ ├── transformer_from_pretrained_xlm.py │ │ ├── transformer_lm.py │ │ └── wav2vec │ │ │ ├── __init__.py │ │ │ ├── wav2vec.py │ │ │ ├── wav2vec2.py │ │ │ └── wav2vec2_asr.py │ ├── modules │ │ ├── __init__.py │ │ ├── adaptive_input.py │ │ ├── adaptive_softmax.py │ │ ├── beamable_mm.py │ │ ├── character_token_embedder.py │ │ ├── checkpoint_activations.py │ │ ├── conv_tbc.py │ │ ├── cross_entropy.py │ │ ├── cuda_utils.cu │ │ ├── downsampled_multihead_attention.py │ │ ├── dynamic_convolution.py │ │ ├── dynamic_crf_layer.py │ │ ├── dynamicconv_layer │ │ │ ├── __init__.py │ │ │ ├── cuda_function_gen.py │ │ │ ├── dynamicconv_cuda.cpp │ │ │ ├── dynamicconv_cuda.cuh │ │ │ ├── dynamicconv_cuda_kernel.cu │ │ │ ├── dynamicconv_layer.py │ │ │ ├── dynamiconv_cpu.cpp │ │ │ └── setup.py │ │ ├── fairseq_dropout.py │ │ ├── fp32_group_norm.py │ │ ├── gelu.py │ │ ├── grad_multiply.py │ │ ├── gumbel_vector_quantizer.py │ │ ├── kmeans_vector_quantizer.py │ │ ├── layer_drop.py │ │ ├── layer_norm.py │ │ ├── learned_positional_embedding.py │ │ ├── lightconv_layer │ │ │ ├── __init__.py │ │ │ ├── cuda_function_gen.py │ │ │ ├── lightconv_cuda.cpp │ │ │ ├── lightconv_cuda.cuh │ │ │ ├── lightconv_cuda_kernel.cu │ │ │ ├── lightconv_layer.py │ │ │ └── setup.py │ │ ├── lightweight_convolution.py │ │ ├── linearized_convolution.py │ │ ├── multihead_attention.py │ │ ├── positional_embedding.py │ │ ├── quant_noise.py │ │ ├── quantization │ │ │ ├── __init__.py │ │ │ ├── pq │ │ │ │ ├── __init__.py │ │ │ │ ├── em.py │ │ │ │ ├── modules │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── qconv.py │ │ │ │ │ ├── qemb.py │ │ │ │ │ └── qlinear.py │ │ │ │ ├── pq.py │ │ │ │ └── utils.py │ │ │ ├── quantization_options.py │ │ │ └── scalar │ │ │ │ ├── __init__.py │ │ │ │ ├── modules │ │ │ │ ├── __init__.py │ │ │ │ ├── qact.py │ │ │ │ ├── qconv.py │ │ │ │ ├── qemb.py │ │ │ │ └── qlinear.py │ │ │ │ ├── ops.py │ │ │ │ └── utils.py │ │ ├── same_pad.py │ │ ├── scalar_bias.py │ │ ├── sinusoidal_positional_embedding.py │ │ ├── sparse_multihead_attention.py │ │ ├── sparse_transformer_sentence_encoder.py │ │ ├── sparse_transformer_sentence_encoder_layer.py │ │ ├── transformer_layer.py │ │ ├── transformer_sentence_encoder.py │ │ ├── transformer_sentence_encoder_layer.py │ │ ├── transpose_last.py │ │ ├── unfold.py │ │ └── vggblock.py │ ├── nan_detector.py │ ├── ngram_repeat_block.py │ ├── optim │ │ ├── __init__.py │ │ ├── adadelta.py │ │ ├── adafactor.py │ │ ├── adagrad.py │ │ ├── adam.py │ │ ├── adamax.py │ │ ├── bmuf.py │ │ ├── composite.py │ │ ├── cpu_adam.py │ │ ├── dynamic_loss_scaler.py │ │ ├── fairseq_optimizer.py │ │ ├── fp16_optimizer.py │ │ ├── fused_adam.py │ │ ├── fused_lamb.py │ │ ├── lr_scheduler │ │ │ ├── __init__.py │ │ │ ├── cosine_lr_scheduler.py │ │ │ ├── fairseq_lr_scheduler.py │ │ │ ├── fixed_schedule.py │ │ │ ├── inverse_square_root_schedule.py │ │ │ ├── manual_lr_scheduler.py │ │ │ ├── pass_through.py │ │ │ ├── polynomial_decay_schedule.py │ │ │ ├── reduce_lr_on_plateau.py │ │ │ ├── tri_stage_lr_scheduler.py │ │ │ └── triangular_lr_scheduler.py │ │ ├── nag.py │ │ ├── sgd.py │ │ └── shard.py │ ├── options.py │ ├── pdb.py │ ├── quantization_utils.py │ ├── registry.py │ ├── scoring │ │ ├── __init__.py │ │ ├── bleu.py │ │ ├── chrf.py │ │ ├── tokenizer.py │ │ └── wer.py │ ├── search.py │ ├── sequence_generator.py │ ├── sequence_scorer.py │ ├── tasks │ │ ├── __init__.py │ │ ├── audio_pretraining.py │ │ ├── cross_lingual_lm.py │ │ ├── denoising.py │ │ ├── fairseq_task.py │ │ ├── language_modeling.py │ │ ├── legacy_masked_lm.py │ │ ├── masked_lm.py │ │ ├── multilingual_denoising.py │ │ ├── multilingual_masked_lm.py │ │ ├── multilingual_translation.py │ │ ├── semisupervised_translation.py │ │ ├── sentence_prediction.py │ │ ├── sentence_ranking.py │ │ ├── speech_to_text.py │ │ ├── translation.py │ │ ├── translation_from_pretrained_bart.py │ │ ├── translation_from_pretrained_xlm.py │ │ ├── translation_lev.py │ │ └── translation_multi_simple_epoch.py │ ├── token_generation_constraints.py │ ├── tokenizer.py │ ├── trainer.py │ ├── utils.py │ └── version.txt │ ├── fairseq_cli │ ├── __init__.py │ ├── eval_lm.py │ ├── generate.py │ ├── hydra_train.py │ ├── interactive.py │ ├── preprocess.py │ ├── score.py │ ├── train.py │ └── validate.py │ ├── figures │ └── Disentangled-mask-attention.png │ ├── hubconf.py │ ├── pyproject.toml │ ├── requirements.txt │ ├── scripts │ ├── __init__.py │ ├── average_checkpoints.py │ ├── build_sym_alignment.py │ ├── compare_namespaces.py │ ├── compound_split_bleu.sh │ ├── constraints │ │ ├── extract.py │ │ └── validate.py │ ├── convert_dictionary.lua │ ├── convert_model.lua │ ├── count_docs.py │ ├── read_binarized.py │ ├── rm_pt.py │ ├── sacrebleu.sh │ ├── shard_docs.py │ ├── split_train_valid_docs.py │ ├── spm_decode.py │ ├── spm_encode.py │ ├── spm_train.py │ └── test_fsdp.sh │ ├── setup.py │ ├── tests │ ├── __init__.py │ ├── distributed │ │ ├── __init__.py │ │ ├── test_bmuf.py │ │ ├── test_distributed_timeout_wrapper.py │ │ ├── test_module_proxy_wrapper.py │ │ ├── test_utils.py │ │ └── utils.py │ ├── gpu │ │ ├── __init__.py │ │ ├── test_binaries_gpu.py │ │ └── transformer_quantization_config.yaml │ ├── speech_recognition │ │ ├── __init__.py │ │ ├── asr_test_base.py │ │ ├── test_collaters.py │ │ ├── test_cross_entropy.py │ │ ├── test_data_utils.py │ │ └── test_vggtransformer.py │ ├── test_activation_checkpointing.py │ ├── test_average_checkpoints.py │ ├── test_backtranslation_dataset.py │ ├── test_binaries.py │ ├── test_character_token_embedder.py │ ├── test_checkpoint_utils.py │ ├── test_concat_dataset.py │ ├── test_constraints.py │ ├── test_convtbc.py │ ├── test_data_utils.py │ ├── test_dataset.py │ ├── test_dictionary.py │ ├── test_export.py │ ├── test_file_io.py │ ├── test_fp16_optimizer.py │ ├── test_inference_dropout.py │ ├── test_iopath.py │ ├── test_iterators.py │ ├── test_label_smoothing.py │ ├── test_lm_context_window.py │ ├── test_lstm_jitable.py │ ├── test_memory_efficient_fp16.py │ ├── test_metrics.py │ ├── test_multi_corpus_dataset.py │ ├── test_multi_corpus_sampled_dataset.py │ ├── test_multihead_attention.py │ ├── test_noising.py │ ├── test_plasma_utils.py │ ├── test_reproducibility.py │ ├── test_resampling_dataset.py │ ├── test_sequence_generator.py │ ├── test_sequence_scorer.py │ ├── test_sparse_multihead_attention.py │ ├── test_token_block_dataset.py │ ├── test_train.py │ ├── test_utils.py │ └── utils.py │ └── train.py ├── Readme.md └── Server └── ReactJS_Flask ├── .gitignore ├── README.md ├── inference_server ├── .gitignore ├── NotoSansCJK-Regular.ttc ├── asr.py ├── configs.json └── server.py └── web ├── .gitignore ├── package-lock.json ├── package.json ├── public ├── Disentangled-mask-attention.png ├── abstract.txt ├── favicon.ico ├── index.html ├── logo192.png ├── logo512.png ├── manifest.json └── robots.txt └── src ├── App.css ├── App.js ├── App.test.js ├── home ├── HomePage.js ├── NavBar.js ├── components │ ├── AbstractCard.js │ ├── AsrDemoCard.js │ ├── AttentionTable.js │ ├── BaseCard.js │ ├── DemoCard.js │ ├── DemoSteps.js │ ├── ModelCard.js │ └── MtDemoCard.js ├── configs.js └── inference.js ├── index.css ├── index.js ├── logo.svg ├── reportWebVitals.js └── setupTests.js /ASR/ESPNet/docker/.gitignore: -------------------------------------------------------------------------------- 1 | espnet-local.tar 2 | -------------------------------------------------------------------------------- /ASR/ESPNet/egs/aidatatang_200zh/asr1/conf/pitch.conf: -------------------------------------------------------------------------------- 1 | --sample-frequency=16000 2 | -------------------------------------------------------------------------------- /ASR/ESPNet/egs/aidatatang_200zh/asr1/steps: -------------------------------------------------------------------------------- 1 | ../../../tools/kaldi/egs/wsj/s5/steps -------------------------------------------------------------------------------- /ASR/ESPNet/egs/aidatatang_200zh/asr1/utils: -------------------------------------------------------------------------------- 1 | ../../../tools/kaldi/egs/wsj/s5/utils -------------------------------------------------------------------------------- /ASR/ESPNet/egs/aishell/asr1/.gitignore: -------------------------------------------------------------------------------- 1 | raw_data/ 2 | -------------------------------------------------------------------------------- /ASR/ESPNet/egs/aishell/asr1/conf/decode.yaml: -------------------------------------------------------------------------------- 1 | tuning/decode_pytorch_transformer.yaml -------------------------------------------------------------------------------- /ASR/ESPNet/egs/aishell/asr1/conf/pitch.conf: -------------------------------------------------------------------------------- 1 | --sample-frequency=16000 2 | -------------------------------------------------------------------------------- /ASR/ESPNet/egs/aishell/asr1/steps: -------------------------------------------------------------------------------- 1 | ../../../tools/kaldi/egs/wsj/s5/steps -------------------------------------------------------------------------------- /ASR/ESPNet/egs/aishell/asr1/utils: -------------------------------------------------------------------------------- 1 | ../../../tools/kaldi/egs/wsj/s5/utils -------------------------------------------------------------------------------- /ASR/ESPNet/egs/aishell2/asr1/conf/decode.yaml: -------------------------------------------------------------------------------- 1 | tuning/decode_pytorch_transformer.yaml -------------------------------------------------------------------------------- /ASR/ESPNet/egs/aishell2/asr1/conf/pitch.conf: -------------------------------------------------------------------------------- 1 | --sample-frequency=16000 2 | -------------------------------------------------------------------------------- /ASR/ESPNet/egs/aishell2/asr1/conf/train.yaml: -------------------------------------------------------------------------------- 1 | tuning/train_pytorch_transformer.yaml -------------------------------------------------------------------------------- /ASR/ESPNet/egs/aishell2/asr1/steps: -------------------------------------------------------------------------------- 1 | ../../../tools/kaldi/egs/wsj/s5/steps -------------------------------------------------------------------------------- /ASR/ESPNet/egs/aishell2/asr1/utils: -------------------------------------------------------------------------------- 1 | ../../../tools/kaldi/egs/wsj/s5/utils -------------------------------------------------------------------------------- /ASR/ESPNet/egs/ami/asr1/conf/decode.yaml: -------------------------------------------------------------------------------- 1 | tuning/decode_transformer.yaml -------------------------------------------------------------------------------- /ASR/ESPNet/egs/ami/asr1/conf/pitch.conf: -------------------------------------------------------------------------------- 1 | --sample-frequency=16000 2 | -------------------------------------------------------------------------------- /ASR/ESPNet/egs/ami/asr1/conf/train.yaml: -------------------------------------------------------------------------------- 1 | tuning/train_transformer.yaml -------------------------------------------------------------------------------- /ASR/ESPNet/egs/ami/asr1/steps: -------------------------------------------------------------------------------- 1 | ../../../tools/kaldi/egs/wsj/s5/steps -------------------------------------------------------------------------------- /ASR/ESPNet/egs/ami/asr1/utils: -------------------------------------------------------------------------------- 1 | ../../../tools/kaldi/egs/wsj/s5/utils -------------------------------------------------------------------------------- /ASR/ESPNet/egs/an4/asr1/conf/pitch.conf: -------------------------------------------------------------------------------- 1 | --sample-frequency=16000 2 | -------------------------------------------------------------------------------- /ASR/ESPNet/egs/an4/asr1/steps: -------------------------------------------------------------------------------- 1 | ../../../tools/kaldi/egs/wsj/s5/steps -------------------------------------------------------------------------------- /ASR/ESPNet/egs/an4/asr1/utils: -------------------------------------------------------------------------------- 1 | ../../../tools/kaldi/egs/wsj/s5/utils -------------------------------------------------------------------------------- /ASR/ESPNet/egs/an4/tts1/local: -------------------------------------------------------------------------------- 1 | ../asr1/local -------------------------------------------------------------------------------- /ASR/ESPNet/egs/an4/tts1/steps: -------------------------------------------------------------------------------- 1 | ../../../tools/kaldi/egs/wsj/s5/steps -------------------------------------------------------------------------------- /ASR/ESPNet/egs/an4/tts1/utils: -------------------------------------------------------------------------------- 1 | ../../../tools/kaldi/egs/wsj/s5/utils -------------------------------------------------------------------------------- /ASR/ESPNet/egs/arctic/tts1/steps: -------------------------------------------------------------------------------- 1 | ../../../tools/kaldi/egs/wsj/s5/steps -------------------------------------------------------------------------------- /ASR/ESPNet/egs/arctic/tts1/utils: -------------------------------------------------------------------------------- 1 | ../../../tools/kaldi/egs/wsj/s5/utils -------------------------------------------------------------------------------- /ASR/ESPNet/egs/arctic/vc1/conf/bdl.f0: -------------------------------------------------------------------------------- 1 | 70 210 2 | -------------------------------------------------------------------------------- /ASR/ESPNet/egs/arctic/vc1/conf/clb.f0: -------------------------------------------------------------------------------- 1 | 110 270 2 | -------------------------------------------------------------------------------- /ASR/ESPNet/egs/arctic/vc1/conf/pitch.conf: -------------------------------------------------------------------------------- 1 | --sample-frequency=16000 2 | -------------------------------------------------------------------------------- /ASR/ESPNet/egs/arctic/vc1/conf/rms.f0: -------------------------------------------------------------------------------- 1 | 55 200 2 | -------------------------------------------------------------------------------- /ASR/ESPNet/egs/arctic/vc1/conf/slt.f0: -------------------------------------------------------------------------------- 1 | 120 275 2 | -------------------------------------------------------------------------------- /ASR/ESPNet/egs/arctic/vc1/local/clean_text.py: -------------------------------------------------------------------------------- 1 | ../../tts1/local/clean_text.py -------------------------------------------------------------------------------- /ASR/ESPNet/egs/arctic/vc1/local/data_download.sh: -------------------------------------------------------------------------------- 1 | ../../tts1/local/data_download.sh -------------------------------------------------------------------------------- /ASR/ESPNet/egs/arctic/vc1/local/data_prep.sh: -------------------------------------------------------------------------------- 1 | ../../tts1/local/data_prep.sh -------------------------------------------------------------------------------- /ASR/ESPNet/egs/arctic/vc1/steps: -------------------------------------------------------------------------------- 1 | ../../../tools/kaldi/egs/wsj/s5/steps -------------------------------------------------------------------------------- /ASR/ESPNet/egs/arctic/vc1/utils: -------------------------------------------------------------------------------- 1 | ../../../tools/kaldi/egs/wsj/s5/utils -------------------------------------------------------------------------------- /ASR/ESPNet/egs/aurora4/asr1/conf/decode.yaml: -------------------------------------------------------------------------------- 1 | tuning/decode_pytorch_transformer.yaml -------------------------------------------------------------------------------- /ASR/ESPNet/egs/aurora4/asr1/conf/pitch.conf: -------------------------------------------------------------------------------- 1 | --sample-frequency=16000 2 | -------------------------------------------------------------------------------- /ASR/ESPNet/egs/aurora4/asr1/conf/train.yaml: -------------------------------------------------------------------------------- 1 | tuning/train_pytorch_transformer.yaml -------------------------------------------------------------------------------- /ASR/ESPNet/egs/aurora4/asr1/steps: -------------------------------------------------------------------------------- 1 | ../../../tools/kaldi/egs/wsj/s5/steps -------------------------------------------------------------------------------- /ASR/ESPNet/egs/aurora4/asr1/utils: -------------------------------------------------------------------------------- 1 | ../../../tools/kaldi/egs/wsj/s5/utils -------------------------------------------------------------------------------- /ASR/ESPNet/egs/babel/asr1/conf/lists: -------------------------------------------------------------------------------- 1 | ../../../../tools/kaldi/egs/babel/s5d/conf/lists -------------------------------------------------------------------------------- /ASR/ESPNet/egs/babel/asr1/conf/pitch.conf: -------------------------------------------------------------------------------- 1 | --sample-frequency=16000 2 | -------------------------------------------------------------------------------- /ASR/ESPNet/egs/babel/asr1/steps: -------------------------------------------------------------------------------- 1 | ../../../tools/kaldi/egs/wsj/s5/steps -------------------------------------------------------------------------------- /ASR/ESPNet/egs/babel/asr1/utils: -------------------------------------------------------------------------------- 1 | ../../../tools/kaldi/egs/wsj/s5/utils -------------------------------------------------------------------------------- /ASR/ESPNet/egs/blizzard17/tts1/steps: -------------------------------------------------------------------------------- 1 | ../../../tools/kaldi/egs/wsj/s5/steps -------------------------------------------------------------------------------- /ASR/ESPNet/egs/blizzard17/tts1/utils: -------------------------------------------------------------------------------- 1 | ../../../tools/kaldi/egs/wsj/s5/utils -------------------------------------------------------------------------------- /ASR/ESPNet/egs/chime4/asr1/conf/decode.yaml: -------------------------------------------------------------------------------- 1 | ./tuning/decode_pytorch_transformer.yaml -------------------------------------------------------------------------------- /ASR/ESPNet/egs/chime4/asr1/conf/pitch.conf: -------------------------------------------------------------------------------- 1 | --sample-frequency=16000 2 | -------------------------------------------------------------------------------- /ASR/ESPNet/egs/chime4/asr1/conf/train.yaml: -------------------------------------------------------------------------------- 1 | tuning/train_pytorch_conformer_kernel15.yaml -------------------------------------------------------------------------------- /ASR/ESPNet/egs/chime4/asr1/local/ndx2flist.pl: -------------------------------------------------------------------------------- 1 | ../../../wsj/asr1/local/ndx2flist.pl -------------------------------------------------------------------------------- /ASR/ESPNet/egs/chime4/asr1/steps: -------------------------------------------------------------------------------- 1 | ../../../tools/kaldi/egs/wsj/s5/steps -------------------------------------------------------------------------------- /ASR/ESPNet/egs/chime4/asr1/utils: -------------------------------------------------------------------------------- 1 | ../../../tools/kaldi/egs/wsj/s5/utils -------------------------------------------------------------------------------- /ASR/ESPNet/egs/chime4/asr1_multich/local: -------------------------------------------------------------------------------- 1 | ../asr1/local -------------------------------------------------------------------------------- /ASR/ESPNet/egs/chime4/asr1_multich/steps: -------------------------------------------------------------------------------- 1 | ../../../tools/kaldi/egs/wsj/s5/steps -------------------------------------------------------------------------------- /ASR/ESPNet/egs/chime4/asr1_multich/utils: -------------------------------------------------------------------------------- 1 | ../../../tools/kaldi/egs/wsj/s5/utils -------------------------------------------------------------------------------- /ASR/ESPNet/egs/chime5/asr1/conf/pitch.conf: -------------------------------------------------------------------------------- 1 | --sample-frequency=16000 2 | -------------------------------------------------------------------------------- /ASR/ESPNet/egs/chime5/asr1/steps: -------------------------------------------------------------------------------- 1 | ../../../tools/kaldi/egs/wsj/s5/steps -------------------------------------------------------------------------------- /ASR/ESPNet/egs/chime5/asr1/utils: -------------------------------------------------------------------------------- 1 | ../../../tools/kaldi/egs/wsj/s5/utils -------------------------------------------------------------------------------- /ASR/ESPNet/egs/chime6/asr1/conf/pitch.conf: -------------------------------------------------------------------------------- 1 | --sample-frequency=16000 2 | -------------------------------------------------------------------------------- /ASR/ESPNet/egs/chime6/asr1/conf/train.yaml: -------------------------------------------------------------------------------- 1 | ./tuning/train_transducer.yaml -------------------------------------------------------------------------------- /ASR/ESPNet/egs/chime6/asr1/steps: -------------------------------------------------------------------------------- 1 | ../../../tools/kaldi/egs/wsj/s5/steps -------------------------------------------------------------------------------- /ASR/ESPNet/egs/chime6/asr1/utils: -------------------------------------------------------------------------------- 1 | ../../../tools/kaldi/egs/wsj/s5/utils -------------------------------------------------------------------------------- /ASR/ESPNet/egs/commonvoice/asr1/conf/decode.yaml: -------------------------------------------------------------------------------- 1 | tuning/decode_transfromer.yaml -------------------------------------------------------------------------------- /ASR/ESPNet/egs/commonvoice/asr1/conf/pitch.conf: -------------------------------------------------------------------------------- 1 | --sample-frequency=16000 2 | -------------------------------------------------------------------------------- /ASR/ESPNet/egs/commonvoice/asr1/conf/train.yaml: -------------------------------------------------------------------------------- 1 | tuning/train_conformer.yaml -------------------------------------------------------------------------------- /ASR/ESPNet/egs/commonvoice/asr1/steps: -------------------------------------------------------------------------------- 1 | ../../../tools/kaldi/egs/wsj/s5/steps -------------------------------------------------------------------------------- /ASR/ESPNet/egs/commonvoice/asr1/utils: -------------------------------------------------------------------------------- 1 | ../../../tools/kaldi/egs/wsj/s5/utils -------------------------------------------------------------------------------- /ASR/ESPNet/egs/csj/align1/conf/pitch.conf: -------------------------------------------------------------------------------- 1 | --sample-frequency=16000 2 | -------------------------------------------------------------------------------- /ASR/ESPNet/egs/csj/align1/local/csj_make_trans: -------------------------------------------------------------------------------- 1 | ../../asr1/local/csj_make_trans -------------------------------------------------------------------------------- /ASR/ESPNet/egs/csj/align1/local/csj_rm_tag.py: -------------------------------------------------------------------------------- 1 | ../../asr1/local/csj_rm_tag.py -------------------------------------------------------------------------------- /ASR/ESPNet/egs/csj/align1/steps: -------------------------------------------------------------------------------- 1 | ../../../tools/kaldi/egs/wsj/s5/steps -------------------------------------------------------------------------------- /ASR/ESPNet/egs/csj/align1/utils: -------------------------------------------------------------------------------- 1 | ../../../tools/kaldi/egs/wsj/s5/utils -------------------------------------------------------------------------------- /ASR/ESPNet/egs/csj/asr1/conf/decode.yaml: -------------------------------------------------------------------------------- 1 | tuning/decode_pytorch_transformer.yaml -------------------------------------------------------------------------------- /ASR/ESPNet/egs/csj/asr1/conf/no_preprocess.yaml: -------------------------------------------------------------------------------- 1 | process: 2 | - type: "identity" 3 | -------------------------------------------------------------------------------- /ASR/ESPNet/egs/csj/asr1/conf/pitch.conf: -------------------------------------------------------------------------------- 1 | --sample-frequency=16000 2 | -------------------------------------------------------------------------------- /ASR/ESPNet/egs/csj/asr1/conf/train.yaml: -------------------------------------------------------------------------------- 1 | tuning/train_pytorch_transformer.yaml -------------------------------------------------------------------------------- /ASR/ESPNet/egs/csj/asr1/steps: -------------------------------------------------------------------------------- 1 | ../../../tools/kaldi/egs/wsj/s5/steps -------------------------------------------------------------------------------- /ASR/ESPNet/egs/csj/asr1/utils: -------------------------------------------------------------------------------- 1 | ../../../tools/kaldi/egs/wsj/s5/utils -------------------------------------------------------------------------------- /ASR/ESPNet/egs/csmsc/tts1/steps: -------------------------------------------------------------------------------- 1 | ../../../tools/kaldi/egs/wsj/s5/steps -------------------------------------------------------------------------------- /ASR/ESPNet/egs/csmsc/tts1/utils: -------------------------------------------------------------------------------- 1 | ../../../tools/kaldi/egs/wsj/s5/utils -------------------------------------------------------------------------------- /ASR/ESPNet/egs/dipco/asr1/conf/pitch.conf: -------------------------------------------------------------------------------- 1 | --sample-frequency=16000 2 | -------------------------------------------------------------------------------- /ASR/ESPNet/egs/dipco/asr1/steps: -------------------------------------------------------------------------------- 1 | ../../../tools/kaldi/egs/wsj/s5/steps -------------------------------------------------------------------------------- /ASR/ESPNet/egs/dipco/asr1/utils: -------------------------------------------------------------------------------- 1 | ../../../tools/kaldi/egs/wsj/s5/utils -------------------------------------------------------------------------------- /ASR/ESPNet/egs/dirha_wsj/asr1/conf/decode.yaml: -------------------------------------------------------------------------------- 1 | ./tuning/decode_rnn.yaml -------------------------------------------------------------------------------- /ASR/ESPNet/egs/dirha_wsj/asr1/conf/pitch.conf: -------------------------------------------------------------------------------- 1 | --sample-frequency=16000 2 | -------------------------------------------------------------------------------- /ASR/ESPNet/egs/dirha_wsj/asr1/conf/train.yaml: -------------------------------------------------------------------------------- 1 | ./tuning/train_rnn.yaml -------------------------------------------------------------------------------- /ASR/ESPNet/egs/dirha_wsj/asr1/steps: -------------------------------------------------------------------------------- 1 | ../../../tools/kaldi/egs/wsj/s5/steps -------------------------------------------------------------------------------- /ASR/ESPNet/egs/dirha_wsj/asr1/utils: -------------------------------------------------------------------------------- 1 | ../../../tools/kaldi/egs/wsj/s5/utils -------------------------------------------------------------------------------- /ASR/ESPNet/egs/fisher_callhome_spanish/asr1/conf/pitch.conf: -------------------------------------------------------------------------------- 1 | --sample-frequency=8000 2 | -------------------------------------------------------------------------------- /ASR/ESPNet/egs/fisher_callhome_spanish/asr1/steps: -------------------------------------------------------------------------------- 1 | ../../../tools/kaldi/egs/wsj/s5/steps -------------------------------------------------------------------------------- /ASR/ESPNet/egs/fisher_callhome_spanish/asr1/utils: -------------------------------------------------------------------------------- 1 | ../../../tools/kaldi/egs/wsj/s5/utils -------------------------------------------------------------------------------- /ASR/ESPNet/egs/fisher_callhome_spanish/asr1b/conf/lm.yaml: -------------------------------------------------------------------------------- 1 | tuning/lm.yaml -------------------------------------------------------------------------------- /ASR/ESPNet/egs/fisher_callhome_spanish/asr1b/local: -------------------------------------------------------------------------------- 1 | ../st1/local/ -------------------------------------------------------------------------------- /ASR/ESPNet/egs/fisher_callhome_spanish/asr1b/steps: -------------------------------------------------------------------------------- 1 | ../../../tools/kaldi/egs/wsj/s5/steps -------------------------------------------------------------------------------- /ASR/ESPNet/egs/fisher_callhome_spanish/asr1b/utils: -------------------------------------------------------------------------------- 1 | ../../../tools/kaldi/egs/wsj/s5/utils -------------------------------------------------------------------------------- /ASR/ESPNet/egs/fisher_callhome_spanish/mt1/local: -------------------------------------------------------------------------------- 1 | ../st1/local -------------------------------------------------------------------------------- /ASR/ESPNet/egs/fisher_swbd/asr1/conf/pitch.conf: -------------------------------------------------------------------------------- 1 | --sample-frequency=16000 2 | -------------------------------------------------------------------------------- /ASR/ESPNet/egs/fisher_swbd/asr1/steps: -------------------------------------------------------------------------------- 1 | ../../../tools/kaldi/egs/wsj/s5/steps -------------------------------------------------------------------------------- /ASR/ESPNet/egs/fisher_swbd/asr1/utils: -------------------------------------------------------------------------------- 1 | ../../../tools/kaldi/egs/wsj/s5/utils -------------------------------------------------------------------------------- /ASR/ESPNet/egs/hkust/asr1/conf/decode.yaml: -------------------------------------------------------------------------------- 1 | tuning/decode_pytorch_transformer.yaml -------------------------------------------------------------------------------- /ASR/ESPNet/egs/hkust/asr1/conf/pitch.conf: -------------------------------------------------------------------------------- 1 | --sample-frequency=16000 2 | -------------------------------------------------------------------------------- /ASR/ESPNet/egs/hkust/asr1/conf/train.yaml: -------------------------------------------------------------------------------- 1 | tuning/train_pytorch_transformer.yaml -------------------------------------------------------------------------------- /ASR/ESPNet/egs/hkust/asr1/steps: -------------------------------------------------------------------------------- 1 | ../../../tools/kaldi/egs/wsj/s5/steps -------------------------------------------------------------------------------- /ASR/ESPNet/egs/hkust/asr1/utils: -------------------------------------------------------------------------------- 1 | ../../../tools/kaldi/egs/wsj/s5/utils -------------------------------------------------------------------------------- /ASR/ESPNet/egs/how2/asr1/conf/decode.yaml: -------------------------------------------------------------------------------- 1 | tuning/decode_pytorch_transformer.yaml -------------------------------------------------------------------------------- /ASR/ESPNet/egs/how2/asr1/conf/lm.yaml: -------------------------------------------------------------------------------- 1 | tuning/lm.yaml -------------------------------------------------------------------------------- /ASR/ESPNet/egs/how2/asr1/conf/train.yaml: -------------------------------------------------------------------------------- 1 | tuning/train_pytorch_transformer.yaml -------------------------------------------------------------------------------- /ASR/ESPNet/egs/how2/asr1/local: -------------------------------------------------------------------------------- 1 | ../st1/local -------------------------------------------------------------------------------- /ASR/ESPNet/egs/how2/asr1/steps: -------------------------------------------------------------------------------- 1 | ../../../tools/kaldi/egs/wsj/s5/steps -------------------------------------------------------------------------------- /ASR/ESPNet/egs/how2/asr1/utils: -------------------------------------------------------------------------------- 1 | ../../../tools/kaldi/egs/wsj/s5/utils -------------------------------------------------------------------------------- /ASR/ESPNet/egs/how2/mt1/conf/decode.yaml: -------------------------------------------------------------------------------- 1 | tuning/decode_rnn.yaml -------------------------------------------------------------------------------- /ASR/ESPNet/egs/how2/mt1/conf/train.yaml: -------------------------------------------------------------------------------- 1 | tuning/train_rnn.yaml -------------------------------------------------------------------------------- /ASR/ESPNet/egs/how2/mt1/local: -------------------------------------------------------------------------------- 1 | ../st1/local -------------------------------------------------------------------------------- /ASR/ESPNet/egs/how2/mt1/steps: -------------------------------------------------------------------------------- 1 | ../../../tools/kaldi/egs/wsj/s5/steps -------------------------------------------------------------------------------- /ASR/ESPNet/egs/how2/mt1/utils: -------------------------------------------------------------------------------- 1 | ../../../tools/kaldi/egs/wsj/s5/utils -------------------------------------------------------------------------------- /ASR/ESPNet/egs/how2/st1/conf/decode.yaml: -------------------------------------------------------------------------------- 1 | tuning/decode_pytorch_transformer.yaml -------------------------------------------------------------------------------- /ASR/ESPNet/egs/how2/st1/conf/train.yaml: -------------------------------------------------------------------------------- 1 | tuning/train_pytorch_transformer.yaml -------------------------------------------------------------------------------- /ASR/ESPNet/egs/how2/st1/steps: -------------------------------------------------------------------------------- 1 | ../../../tools/kaldi/egs/wsj/s5/steps -------------------------------------------------------------------------------- /ASR/ESPNet/egs/how2/st1/utils: -------------------------------------------------------------------------------- 1 | ../../../tools/kaldi/egs/wsj/s5/utils -------------------------------------------------------------------------------- /ASR/ESPNet/egs/hub4_spanish/asr1/conf/pitch.conf: -------------------------------------------------------------------------------- 1 | --sample-frequency=16000 2 | -------------------------------------------------------------------------------- /ASR/ESPNet/egs/hub4_spanish/asr1/steps: -------------------------------------------------------------------------------- 1 | ../../../tools/kaldi/egs/wsj/s5/steps -------------------------------------------------------------------------------- /ASR/ESPNet/egs/hub4_spanish/asr1/utils: -------------------------------------------------------------------------------- 1 | ../../../tools/kaldi/egs/wsj/s5/utils -------------------------------------------------------------------------------- /ASR/ESPNet/egs/iwslt16/mt1/conf/decode.yaml: -------------------------------------------------------------------------------- 1 | tuning/decode_pytorch_transformer.yaml -------------------------------------------------------------------------------- /ASR/ESPNet/egs/iwslt16/mt1/conf/train.yaml: -------------------------------------------------------------------------------- 1 | tuning/train_pytorch_transformer.yaml -------------------------------------------------------------------------------- /ASR/ESPNet/egs/iwslt16/mt1/steps: -------------------------------------------------------------------------------- 1 | ../../../tools/kaldi/egs/wsj/s5/steps -------------------------------------------------------------------------------- /ASR/ESPNet/egs/iwslt16/mt1/utils: -------------------------------------------------------------------------------- 1 | ../../../tools/kaldi/egs/wsj/s5/utils -------------------------------------------------------------------------------- /ASR/ESPNet/egs/iwslt18/asr1/conf/lm.yaml: -------------------------------------------------------------------------------- 1 | tuning/lm_spm.yaml -------------------------------------------------------------------------------- /ASR/ESPNet/egs/iwslt18/asr1/conf/pitch.conf: -------------------------------------------------------------------------------- 1 | --sample-frequency=16000 2 | -------------------------------------------------------------------------------- /ASR/ESPNet/egs/iwslt18/asr1/conf/train.yaml: -------------------------------------------------------------------------------- 1 | tuning/train_pytorch_transformer.yaml -------------------------------------------------------------------------------- /ASR/ESPNet/egs/iwslt18/asr1/local: -------------------------------------------------------------------------------- 1 | ../st1/local -------------------------------------------------------------------------------- /ASR/ESPNet/egs/iwslt18/asr1/steps: -------------------------------------------------------------------------------- 1 | ../../../tools/kaldi/egs/wsj/s5/steps -------------------------------------------------------------------------------- /ASR/ESPNet/egs/iwslt18/asr1/utils: -------------------------------------------------------------------------------- 1 | ../../../tools/kaldi/egs/wsj/s5/utils -------------------------------------------------------------------------------- /ASR/ESPNet/egs/iwslt18/mt1/conf/decode.yaml: -------------------------------------------------------------------------------- 1 | tuning/decode_rnn_char.yaml -------------------------------------------------------------------------------- /ASR/ESPNet/egs/iwslt18/mt1/conf/train.yaml: -------------------------------------------------------------------------------- 1 | tuning/train_rnn_char.yaml -------------------------------------------------------------------------------- /ASR/ESPNet/egs/iwslt18/mt1/local: -------------------------------------------------------------------------------- 1 | ../st1/local -------------------------------------------------------------------------------- /ASR/ESPNet/egs/iwslt18/mt1/steps: -------------------------------------------------------------------------------- 1 | ../../../tools/kaldi/egs/wsj/s5/steps -------------------------------------------------------------------------------- /ASR/ESPNet/egs/iwslt18/mt1/utils: -------------------------------------------------------------------------------- 1 | ../../../tools/kaldi/egs/wsj/s5/utils -------------------------------------------------------------------------------- /ASR/ESPNet/egs/iwslt18/st1/conf/decode.yaml: -------------------------------------------------------------------------------- 1 | tuning/decode_rnn_char.yaml -------------------------------------------------------------------------------- /ASR/ESPNet/egs/iwslt18/st1/conf/pitch.conf: -------------------------------------------------------------------------------- 1 | --sample-frequency=16000 2 | -------------------------------------------------------------------------------- /ASR/ESPNet/egs/iwslt18/st1/conf/train.yaml: -------------------------------------------------------------------------------- 1 | tuning/train_rnn_char.yaml -------------------------------------------------------------------------------- /ASR/ESPNet/egs/iwslt18/st1/steps: -------------------------------------------------------------------------------- 1 | ../../../tools/kaldi/egs/wsj/s5/steps -------------------------------------------------------------------------------- /ASR/ESPNet/egs/iwslt18/st1/utils: -------------------------------------------------------------------------------- 1 | ../../../tools/kaldi/egs/wsj/s5/utils -------------------------------------------------------------------------------- /ASR/ESPNet/egs/iwslt19/asr1/conf/decode.yaml: -------------------------------------------------------------------------------- 1 | tuning/decode_rnn.yaml -------------------------------------------------------------------------------- /ASR/ESPNet/egs/iwslt19/asr1/conf/lm.yaml: -------------------------------------------------------------------------------- 1 | tuning/lm.yaml -------------------------------------------------------------------------------- /ASR/ESPNet/egs/iwslt19/asr1/conf/pitch.conf: -------------------------------------------------------------------------------- 1 | --sample-frequency=16000 2 | -------------------------------------------------------------------------------- /ASR/ESPNet/egs/iwslt19/asr1/conf/train.yaml: -------------------------------------------------------------------------------- 1 | tuning/train_rnn.yaml -------------------------------------------------------------------------------- /ASR/ESPNet/egs/iwslt19/asr1/local: -------------------------------------------------------------------------------- 1 | ../st1/local -------------------------------------------------------------------------------- /ASR/ESPNet/egs/iwslt19/asr1/steps: -------------------------------------------------------------------------------- 1 | ../../../tools/kaldi/egs/wsj/s5/steps -------------------------------------------------------------------------------- /ASR/ESPNet/egs/iwslt19/asr1/utils: -------------------------------------------------------------------------------- 1 | ../../../tools/kaldi/egs/wsj/s5/utils -------------------------------------------------------------------------------- /ASR/ESPNet/egs/iwslt19/st1/conf/pitch.conf: -------------------------------------------------------------------------------- 1 | --sample-frequency=16000 2 | -------------------------------------------------------------------------------- /ASR/ESPNet/egs/iwslt19/st1/steps: -------------------------------------------------------------------------------- 1 | ../../../tools/kaldi/egs/wsj/s5/steps -------------------------------------------------------------------------------- /ASR/ESPNet/egs/iwslt19/st1/utils: -------------------------------------------------------------------------------- 1 | ../../../tools/kaldi/egs/wsj/s5/utils -------------------------------------------------------------------------------- /ASR/ESPNet/egs/iwslt21/asr1/conf/decode.yaml: -------------------------------------------------------------------------------- 1 | tuning/decode_pytorch_transformer.yaml -------------------------------------------------------------------------------- /ASR/ESPNet/egs/iwslt21/asr1/conf/lm.yaml: -------------------------------------------------------------------------------- 1 | tuning/lm.yaml -------------------------------------------------------------------------------- /ASR/ESPNet/egs/iwslt21/asr1/conf/pitch.conf: -------------------------------------------------------------------------------- 1 | --sample-frequency=16000 2 | -------------------------------------------------------------------------------- /ASR/ESPNet/egs/iwslt21/asr1/steps: -------------------------------------------------------------------------------- 1 | ../../../tools/kaldi/egs/wsj/s5/steps -------------------------------------------------------------------------------- /ASR/ESPNet/egs/iwslt21/asr1/utils: -------------------------------------------------------------------------------- 1 | ../../../tools/kaldi/egs/wsj/s5/utils -------------------------------------------------------------------------------- /ASR/ESPNet/egs/iwslt21/mt1/local: -------------------------------------------------------------------------------- 1 | ../asr1/local -------------------------------------------------------------------------------- /ASR/ESPNet/egs/iwslt21/punc1/conf: -------------------------------------------------------------------------------- 1 | ../mt1/conf -------------------------------------------------------------------------------- /ASR/ESPNet/egs/iwslt21/punc1/local: -------------------------------------------------------------------------------- 1 | ../asr1/local -------------------------------------------------------------------------------- /ASR/ESPNet/egs/iwslt21/punc1/steps: -------------------------------------------------------------------------------- 1 | ../../../tools/kaldi/egs/wsj/s5/steps -------------------------------------------------------------------------------- /ASR/ESPNet/egs/iwslt21/punc1/utils: -------------------------------------------------------------------------------- 1 | ../../../tools/kaldi/egs/wsj/s5/utils -------------------------------------------------------------------------------- /ASR/ESPNet/egs/iwslt21/st1/conf/pitch.conf: -------------------------------------------------------------------------------- 1 | --sample-frequency=16000 2 | -------------------------------------------------------------------------------- /ASR/ESPNet/egs/iwslt21/st1/conf/train.yaml: -------------------------------------------------------------------------------- 1 | tuning/train_pytorch_conformer_large.yaml -------------------------------------------------------------------------------- /ASR/ESPNet/egs/iwslt21/st1/local: -------------------------------------------------------------------------------- 1 | ../asr1/local -------------------------------------------------------------------------------- /ASR/ESPNet/egs/iwslt21/st1/steps: -------------------------------------------------------------------------------- 1 | ../../../tools/kaldi/egs/wsj/s5/steps -------------------------------------------------------------------------------- /ASR/ESPNet/egs/iwslt21/st1/utils: -------------------------------------------------------------------------------- 1 | ../../../tools/kaldi/egs/wsj/s5/utils -------------------------------------------------------------------------------- /ASR/ESPNet/egs/iwslt21_low_resource/asr1/steps: -------------------------------------------------------------------------------- 1 | ../../../tools/kaldi/egs/wsj/s5/steps -------------------------------------------------------------------------------- /ASR/ESPNet/egs/iwslt21_low_resource/asr1/utils: -------------------------------------------------------------------------------- 1 | ../../../tools/kaldi/egs/wsj/s5/utils -------------------------------------------------------------------------------- /ASR/ESPNet/egs/iwslt21_low_resource/st1/steps: -------------------------------------------------------------------------------- 1 | ../../../tools/kaldi/egs/wsj/s5/steps -------------------------------------------------------------------------------- /ASR/ESPNet/egs/iwslt21_low_resource/st1/utils: -------------------------------------------------------------------------------- 1 | ../../../tools/kaldi/egs/wsj/s5/utils -------------------------------------------------------------------------------- /ASR/ESPNet/egs/jesc/mt1/conf/decode.yaml: -------------------------------------------------------------------------------- 1 | tuning/decode_rnn_char.yaml -------------------------------------------------------------------------------- /ASR/ESPNet/egs/jesc/mt1/conf/train.yaml: -------------------------------------------------------------------------------- 1 | tuning/train_rnn_char.yaml -------------------------------------------------------------------------------- /ASR/ESPNet/egs/jesc/mt1/steps: -------------------------------------------------------------------------------- 1 | ../../../tools/kaldi/egs/wsj/s5/steps -------------------------------------------------------------------------------- /ASR/ESPNet/egs/jesc/mt1/utils: -------------------------------------------------------------------------------- 1 | ../../../tools/kaldi/egs/wsj/s5/utils -------------------------------------------------------------------------------- /ASR/ESPNet/egs/jnas/asr1/conf/pitch.conf: -------------------------------------------------------------------------------- 1 | --sample-frequency=16000 2 | -------------------------------------------------------------------------------- /ASR/ESPNet/egs/jnas/asr1/steps: -------------------------------------------------------------------------------- 1 | ../../../tools/kaldi/egs/wsj/s5/steps -------------------------------------------------------------------------------- /ASR/ESPNet/egs/jnas/asr1/utils: -------------------------------------------------------------------------------- 1 | ../../../tools/kaldi/egs/wsj/s5/utils -------------------------------------------------------------------------------- /ASR/ESPNet/egs/jnas/tts1/local: -------------------------------------------------------------------------------- 1 | ../asr1/local -------------------------------------------------------------------------------- /ASR/ESPNet/egs/jnas/tts1/sid: -------------------------------------------------------------------------------- 1 | ../../../tools/kaldi/egs/sre08/v1/sid -------------------------------------------------------------------------------- /ASR/ESPNet/egs/jnas/tts1/steps: -------------------------------------------------------------------------------- 1 | ../../../tools/kaldi/egs/wsj/s5/steps -------------------------------------------------------------------------------- /ASR/ESPNet/egs/jnas/tts1/utils: -------------------------------------------------------------------------------- 1 | ../../../tools/kaldi/egs/wsj/s5/utils -------------------------------------------------------------------------------- /ASR/ESPNet/egs/jsalt18e2e/asr1/conf/pitch.conf: -------------------------------------------------------------------------------- 1 | --sample-frequency=16000 2 | -------------------------------------------------------------------------------- /ASR/ESPNet/egs/jsalt18e2e/asr1/steps: -------------------------------------------------------------------------------- 1 | ../../../tools/kaldi/egs/wsj/s5/steps -------------------------------------------------------------------------------- /ASR/ESPNet/egs/jsalt18e2e/asr1/utils: -------------------------------------------------------------------------------- 1 | ../../../tools/kaldi/egs/wsj/s5/utils -------------------------------------------------------------------------------- /ASR/ESPNet/egs/jsut/asr1/conf/decode.yaml: -------------------------------------------------------------------------------- 1 | tuning/decode_pytorch_transformer.yaml -------------------------------------------------------------------------------- /ASR/ESPNet/egs/jsut/asr1/conf/pitch_16k.conf: -------------------------------------------------------------------------------- 1 | --sample-frequency=16000 2 | -------------------------------------------------------------------------------- /ASR/ESPNet/egs/jsut/asr1/conf/train.yaml: -------------------------------------------------------------------------------- 1 | ./tuning/train_pytorch_conformer.yaml -------------------------------------------------------------------------------- /ASR/ESPNet/egs/jsut/asr1/local/download.sh: -------------------------------------------------------------------------------- 1 | ../../tts1/local/download.sh -------------------------------------------------------------------------------- /ASR/ESPNet/egs/jsut/asr1/steps: -------------------------------------------------------------------------------- 1 | ../../../tools/kaldi/egs/wsj/s5/steps -------------------------------------------------------------------------------- /ASR/ESPNet/egs/jsut/asr1/utils: -------------------------------------------------------------------------------- 1 | ../../../tools/kaldi/egs/wsj/s5/utils -------------------------------------------------------------------------------- /ASR/ESPNet/egs/jsut/tts1/steps: -------------------------------------------------------------------------------- 1 | ../../../tools/kaldi/egs/wsj/s5/steps -------------------------------------------------------------------------------- /ASR/ESPNet/egs/jsut/tts1/utils: -------------------------------------------------------------------------------- 1 | ../../../tools/kaldi/egs/wsj/s5/utils -------------------------------------------------------------------------------- /ASR/ESPNet/egs/jvs/tts1/steps: -------------------------------------------------------------------------------- 1 | ../../../tools/kaldi/egs/wsj/s5/steps -------------------------------------------------------------------------------- /ASR/ESPNet/egs/jvs/tts1/utils: -------------------------------------------------------------------------------- 1 | ../../../tools/kaldi/egs/wsj/s5/utils -------------------------------------------------------------------------------- /ASR/ESPNet/egs/ksponspeech/asr1/conf/lm.yaml: -------------------------------------------------------------------------------- 1 | tuning/lm_transformer.yaml -------------------------------------------------------------------------------- /ASR/ESPNet/egs/ksponspeech/asr1/conf/pitch.conf: -------------------------------------------------------------------------------- 1 | --sample-frequency=16000 2 | -------------------------------------------------------------------------------- /ASR/ESPNet/egs/ksponspeech/asr1/steps: -------------------------------------------------------------------------------- 1 | ../../../tools/kaldi/egs/wsj/s5/steps -------------------------------------------------------------------------------- /ASR/ESPNet/egs/ksponspeech/asr1/utils: -------------------------------------------------------------------------------- 1 | ../../../tools/kaldi/egs/wsj/s5/utils -------------------------------------------------------------------------------- /ASR/ESPNet/egs/li10/asr1/conf/decode.yaml: -------------------------------------------------------------------------------- 1 | tuning/decode_pytorch_transformer.yaml -------------------------------------------------------------------------------- /ASR/ESPNet/egs/li10/asr1/conf/pitch.conf: -------------------------------------------------------------------------------- 1 | --sample-frequency=16000 2 | -------------------------------------------------------------------------------- /ASR/ESPNet/egs/li10/asr1/conf/train.yaml: -------------------------------------------------------------------------------- 1 | tuning/train_pytorch_transformer.yaml -------------------------------------------------------------------------------- /ASR/ESPNet/egs/li10/asr1/steps: -------------------------------------------------------------------------------- 1 | ../../../tools/kaldi/egs/wsj/s5/steps -------------------------------------------------------------------------------- /ASR/ESPNet/egs/li10/asr1/utils: -------------------------------------------------------------------------------- 1 | ../../../tools/kaldi/egs/wsj/s5/utils -------------------------------------------------------------------------------- /ASR/ESPNet/egs/li42/asr1/conf/decode.yaml: -------------------------------------------------------------------------------- 1 | tuning/decode_pytorch_transformer.yaml -------------------------------------------------------------------------------- /ASR/ESPNet/egs/li42/asr1/conf/pitch.conf: -------------------------------------------------------------------------------- 1 | --sample-frequency=16000 2 | -------------------------------------------------------------------------------- /ASR/ESPNet/egs/li42/asr1/conf/train.yaml: -------------------------------------------------------------------------------- 1 | tuning/train_pytorch_transformer.yaml -------------------------------------------------------------------------------- /ASR/ESPNet/egs/li42/asr1/steps: -------------------------------------------------------------------------------- 1 | ../../../tools/kaldi/egs/wsj/s5/steps -------------------------------------------------------------------------------- /ASR/ESPNet/egs/li42/asr1/utils: -------------------------------------------------------------------------------- 1 | ../../../tools/kaldi/egs/wsj/s5/utils -------------------------------------------------------------------------------- /ASR/ESPNet/egs/libri_css/asr1/conf/pitch.conf: -------------------------------------------------------------------------------- 1 | --sample-frequency=16000 2 | -------------------------------------------------------------------------------- /ASR/ESPNet/egs/libri_css/asr1/local/score.sh: -------------------------------------------------------------------------------- 1 | ../steps/scoring/score_kaldi_wer.sh -------------------------------------------------------------------------------- /ASR/ESPNet/egs/libri_css/asr1/sid: -------------------------------------------------------------------------------- 1 | ../../../tools/kaldi/egs/sre08/v1/sid -------------------------------------------------------------------------------- /ASR/ESPNet/egs/libri_css/asr1/steps: -------------------------------------------------------------------------------- 1 | ../../../tools/kaldi/egs/wsj/s5/steps -------------------------------------------------------------------------------- /ASR/ESPNet/egs/libri_css/asr1/utils: -------------------------------------------------------------------------------- 1 | ../../../tools/kaldi/egs/wsj/s5/utils -------------------------------------------------------------------------------- /ASR/ESPNet/egs/libri_trans/asr1/conf/lm.yaml: -------------------------------------------------------------------------------- 1 | tuning/lm_char.yaml -------------------------------------------------------------------------------- /ASR/ESPNet/egs/libri_trans/asr1/conf/pitch.conf: -------------------------------------------------------------------------------- 1 | --sample-frequency=16000 2 | -------------------------------------------------------------------------------- /ASR/ESPNet/egs/libri_trans/asr1/local: -------------------------------------------------------------------------------- 1 | ../st1/local -------------------------------------------------------------------------------- /ASR/ESPNet/egs/libri_trans/asr1/steps: -------------------------------------------------------------------------------- 1 | ../../../tools/kaldi/egs/wsj/s5/steps -------------------------------------------------------------------------------- /ASR/ESPNet/egs/libri_trans/asr1/utils: -------------------------------------------------------------------------------- 1 | ../../../tools/kaldi/egs/wsj/s5/utils -------------------------------------------------------------------------------- /ASR/ESPNet/egs/libri_trans/mt1/conf/decode.yaml: -------------------------------------------------------------------------------- 1 | tuning/decode_rnn_char.yaml -------------------------------------------------------------------------------- /ASR/ESPNet/egs/libri_trans/mt1/conf/train.yaml: -------------------------------------------------------------------------------- 1 | tuning/train_rnn_char.yaml -------------------------------------------------------------------------------- /ASR/ESPNet/egs/libri_trans/mt1/local: -------------------------------------------------------------------------------- 1 | ../st1/local -------------------------------------------------------------------------------- /ASR/ESPNet/egs/libri_trans/mt1/steps: -------------------------------------------------------------------------------- 1 | ../../../tools/kaldi/egs/wsj/s5/steps -------------------------------------------------------------------------------- /ASR/ESPNet/egs/libri_trans/mt1/utils: -------------------------------------------------------------------------------- 1 | ../../../tools/kaldi/egs/wsj/s5/utils -------------------------------------------------------------------------------- /ASR/ESPNet/egs/libri_trans/st1/conf/decode.yaml: -------------------------------------------------------------------------------- 1 | tuning/decode_rnn_char.yaml -------------------------------------------------------------------------------- /ASR/ESPNet/egs/libri_trans/st1/conf/pitch.conf: -------------------------------------------------------------------------------- 1 | --sample-frequency=16000 2 | -------------------------------------------------------------------------------- /ASR/ESPNet/egs/libri_trans/st1/conf/train.yaml: -------------------------------------------------------------------------------- 1 | tuning/train_rnn_char.yaml -------------------------------------------------------------------------------- /ASR/ESPNet/egs/libri_trans/st1/steps: -------------------------------------------------------------------------------- 1 | ../../../tools/kaldi/egs/wsj/s5/steps -------------------------------------------------------------------------------- /ASR/ESPNet/egs/libri_trans/st1/utils: -------------------------------------------------------------------------------- 1 | ../../../tools/kaldi/egs/wsj/s5/utils -------------------------------------------------------------------------------- /ASR/ESPNet/egs/librispeech/asr1/conf/lm.yaml: -------------------------------------------------------------------------------- 1 | tuning/lm_transformer.yaml -------------------------------------------------------------------------------- /ASR/ESPNet/egs/librispeech/asr1/conf/pitch.conf: -------------------------------------------------------------------------------- 1 | --sample-frequency=16000 2 | -------------------------------------------------------------------------------- /ASR/ESPNet/egs/librispeech/asr1/steps: -------------------------------------------------------------------------------- 1 | ../../../tools/kaldi/egs/wsj/s5/steps -------------------------------------------------------------------------------- /ASR/ESPNet/egs/librispeech/asr1/utils: -------------------------------------------------------------------------------- 1 | ../../../tools/kaldi/egs/wsj/s5/utils -------------------------------------------------------------------------------- /ASR/ESPNet/egs/libritts/tts1/sid: -------------------------------------------------------------------------------- 1 | ../../../tools/kaldi/egs/sre08/v1/sid -------------------------------------------------------------------------------- /ASR/ESPNet/egs/libritts/tts1/steps: -------------------------------------------------------------------------------- 1 | ../../../tools/kaldi/egs/wsj/s5/steps -------------------------------------------------------------------------------- /ASR/ESPNet/egs/libritts/tts1/utils: -------------------------------------------------------------------------------- 1 | ../../../tools/kaldi/egs/wsj/s5/utils -------------------------------------------------------------------------------- /ASR/ESPNet/egs/ljspeech/asr1/conf/pitch.conf: -------------------------------------------------------------------------------- 1 | --sample-frequency=22050 -------------------------------------------------------------------------------- /ASR/ESPNet/egs/ljspeech/asr1/local: -------------------------------------------------------------------------------- 1 | ../tts1/local -------------------------------------------------------------------------------- /ASR/ESPNet/egs/ljspeech/asr1/steps: -------------------------------------------------------------------------------- 1 | ../../../tools/kaldi/egs/wsj/s5/steps -------------------------------------------------------------------------------- /ASR/ESPNet/egs/ljspeech/asr1/utils: -------------------------------------------------------------------------------- 1 | ../../../tools/kaldi/egs/wsj/s5/utils -------------------------------------------------------------------------------- /ASR/ESPNet/egs/ljspeech/tts1/conf/pitch.conf: -------------------------------------------------------------------------------- 1 | --sample-frequency=16000 2 | -------------------------------------------------------------------------------- /ASR/ESPNet/egs/ljspeech/tts1/steps: -------------------------------------------------------------------------------- 1 | ../../../tools/kaldi/egs/wsj/s5/steps -------------------------------------------------------------------------------- /ASR/ESPNet/egs/ljspeech/tts1/utils: -------------------------------------------------------------------------------- 1 | ../../../tools/kaldi/egs/wsj/s5/utils -------------------------------------------------------------------------------- /ASR/ESPNet/egs/ljspeech/tts2/local: -------------------------------------------------------------------------------- 1 | ../tts1/local -------------------------------------------------------------------------------- /ASR/ESPNet/egs/ljspeech/tts2/steps: -------------------------------------------------------------------------------- 1 | ../../../tools/kaldi/egs/wsj/s5/steps -------------------------------------------------------------------------------- /ASR/ESPNet/egs/ljspeech/tts2/utils: -------------------------------------------------------------------------------- 1 | ../../../tools/kaldi/egs/wsj/s5/utils -------------------------------------------------------------------------------- /ASR/ESPNet/egs/m_ailabs/tts1/steps: -------------------------------------------------------------------------------- 1 | ../../../tools/kaldi/egs/wsj/s5/steps -------------------------------------------------------------------------------- /ASR/ESPNet/egs/m_ailabs/tts1/utils: -------------------------------------------------------------------------------- 1 | ../../../tools/kaldi/egs/wsj/s5/utils -------------------------------------------------------------------------------- /ASR/ESPNet/egs/mboshi_french/st1/conf/pitch.conf: -------------------------------------------------------------------------------- 1 | --sample-frequency=16000 2 | -------------------------------------------------------------------------------- /ASR/ESPNet/egs/mboshi_french/st1/steps: -------------------------------------------------------------------------------- 1 | ../../../tools/kaldi/egs/wsj/s5/steps -------------------------------------------------------------------------------- /ASR/ESPNet/egs/mboshi_french/st1/utils: -------------------------------------------------------------------------------- 1 | ../../../tools/kaldi/egs/wsj/s5/utils -------------------------------------------------------------------------------- /ASR/ESPNet/egs/mgb2/asr1/conf/pitch.conf: -------------------------------------------------------------------------------- 1 | --sample-frequency=16000 2 | -------------------------------------------------------------------------------- /ASR/ESPNet/egs/mini_an4/asr1/conf/pitch.conf: -------------------------------------------------------------------------------- 1 | --sample-frequency=16000 2 | -------------------------------------------------------------------------------- /ASR/ESPNet/egs/mini_an4/asr1/steps: -------------------------------------------------------------------------------- 1 | ../../../tools/kaldi/egs/wsj/s5/steps -------------------------------------------------------------------------------- /ASR/ESPNet/egs/mini_an4/asr1/utils: -------------------------------------------------------------------------------- 1 | ../../../tools/kaldi/egs/wsj/s5/utils -------------------------------------------------------------------------------- /ASR/ESPNet/egs/mini_an4/asr_mix1/cmd.sh: -------------------------------------------------------------------------------- 1 | ../asr1/cmd.sh -------------------------------------------------------------------------------- /ASR/ESPNet/egs/mini_an4/asr_mix1/conf: -------------------------------------------------------------------------------- 1 | ../asr1/conf -------------------------------------------------------------------------------- /ASR/ESPNet/egs/mini_an4/asr_mix1/downloads.tar.gz: -------------------------------------------------------------------------------- 1 | ../asr1/downloads.tar.gz -------------------------------------------------------------------------------- /ASR/ESPNet/egs/mini_an4/asr_mix1/steps: -------------------------------------------------------------------------------- 1 | ../../../tools/kaldi/egs/wsj/s5/steps -------------------------------------------------------------------------------- /ASR/ESPNet/egs/mini_an4/asr_mix1/utils: -------------------------------------------------------------------------------- 1 | ../../../tools/kaldi/egs/wsj/s5/utils -------------------------------------------------------------------------------- /ASR/ESPNet/egs/mini_an4/mt1/cmd.sh: -------------------------------------------------------------------------------- 1 | ../asr1/cmd.sh -------------------------------------------------------------------------------- /ASR/ESPNet/egs/mini_an4/mt1/conf/gpu.conf: -------------------------------------------------------------------------------- 1 | ../../asr1/conf/gpu.conf -------------------------------------------------------------------------------- /ASR/ESPNet/egs/mini_an4/mt1/conf/queue.conf: -------------------------------------------------------------------------------- 1 | ../../asr1/conf/queue.conf -------------------------------------------------------------------------------- /ASR/ESPNet/egs/mini_an4/mt1/conf/slurm.conf: -------------------------------------------------------------------------------- 1 | ../../asr1/conf/slurm.conf -------------------------------------------------------------------------------- /ASR/ESPNet/egs/mini_an4/mt1/local: -------------------------------------------------------------------------------- 1 | ../asr1/local -------------------------------------------------------------------------------- /ASR/ESPNet/egs/mini_an4/mt1/steps: -------------------------------------------------------------------------------- 1 | ../../../tools/kaldi/egs/wsj/s5/steps -------------------------------------------------------------------------------- /ASR/ESPNet/egs/mini_an4/mt1/utils: -------------------------------------------------------------------------------- 1 | ../../../tools/kaldi/egs/wsj/s5/utils -------------------------------------------------------------------------------- /ASR/ESPNet/egs/mini_an4/st1/cmd.sh: -------------------------------------------------------------------------------- 1 | ../asr1/cmd.sh -------------------------------------------------------------------------------- /ASR/ESPNet/egs/mini_an4/st1/conf/fbank.conf: -------------------------------------------------------------------------------- 1 | ../../asr1/conf/fbank.conf -------------------------------------------------------------------------------- /ASR/ESPNet/egs/mini_an4/st1/conf/gpu.conf: -------------------------------------------------------------------------------- 1 | ../../asr1/conf/gpu.conf -------------------------------------------------------------------------------- /ASR/ESPNet/egs/mini_an4/st1/conf/pitch.conf: -------------------------------------------------------------------------------- 1 | ../../asr1/conf/pitch.conf -------------------------------------------------------------------------------- /ASR/ESPNet/egs/mini_an4/st1/conf/preprocess.yaml: -------------------------------------------------------------------------------- 1 | ../../asr1/conf/preprocess.yaml -------------------------------------------------------------------------------- /ASR/ESPNet/egs/mini_an4/st1/conf/queue.conf: -------------------------------------------------------------------------------- 1 | ../../asr1/conf/queue.conf -------------------------------------------------------------------------------- /ASR/ESPNet/egs/mini_an4/st1/conf/slurm.conf: -------------------------------------------------------------------------------- 1 | ../../asr1/conf/slurm.conf -------------------------------------------------------------------------------- /ASR/ESPNet/egs/mini_an4/st1/local: -------------------------------------------------------------------------------- 1 | ../asr1/local -------------------------------------------------------------------------------- /ASR/ESPNet/egs/mini_an4/st1/steps: -------------------------------------------------------------------------------- 1 | ../../../tools/kaldi/egs/wsj/s5/steps -------------------------------------------------------------------------------- /ASR/ESPNet/egs/mini_an4/st1/utils: -------------------------------------------------------------------------------- 1 | ../../../tools/kaldi/egs/wsj/s5/utils -------------------------------------------------------------------------------- /ASR/ESPNet/egs/mini_an4/tts1/cmd.sh: -------------------------------------------------------------------------------- 1 | ../asr1/cmd.sh -------------------------------------------------------------------------------- /ASR/ESPNet/egs/mini_an4/tts1/downloads.tar.gz: -------------------------------------------------------------------------------- 1 | ../asr1/downloads.tar.gz -------------------------------------------------------------------------------- /ASR/ESPNet/egs/mini_an4/tts1/local: -------------------------------------------------------------------------------- 1 | ../asr1/local -------------------------------------------------------------------------------- /ASR/ESPNet/egs/mini_an4/tts1/steps: -------------------------------------------------------------------------------- 1 | ../../../tools/kaldi/egs/wsj/s5/steps -------------------------------------------------------------------------------- /ASR/ESPNet/egs/mini_an4/tts1/utils: -------------------------------------------------------------------------------- 1 | ../../../tools/kaldi/egs/wsj/s5/utils -------------------------------------------------------------------------------- /ASR/ESPNet/egs/must_c/asr1/conf/decode.yaml: -------------------------------------------------------------------------------- 1 | tuning/decode_pytorch_transformer.yaml -------------------------------------------------------------------------------- /ASR/ESPNet/egs/must_c/asr1/conf/lm.yaml: -------------------------------------------------------------------------------- 1 | tuning/lm.yaml -------------------------------------------------------------------------------- /ASR/ESPNet/egs/must_c/asr1/conf/pitch.conf: -------------------------------------------------------------------------------- 1 | --sample-frequency=16000 2 | -------------------------------------------------------------------------------- /ASR/ESPNet/egs/must_c/asr1/conf/train.yaml: -------------------------------------------------------------------------------- 1 | tuning/train_pytorch_transformer.yaml -------------------------------------------------------------------------------- /ASR/ESPNet/egs/must_c/asr1/local: -------------------------------------------------------------------------------- 1 | ../st1/local -------------------------------------------------------------------------------- /ASR/ESPNet/egs/must_c/asr1/steps: -------------------------------------------------------------------------------- 1 | ../../../tools/kaldi/egs/wsj/s5/steps -------------------------------------------------------------------------------- /ASR/ESPNet/egs/must_c/asr1/utils: -------------------------------------------------------------------------------- 1 | ../../../tools/kaldi/egs/wsj/s5/utils -------------------------------------------------------------------------------- /ASR/ESPNet/egs/must_c/mt1/conf/train.yaml: -------------------------------------------------------------------------------- 1 | tuning/train_pytorch_transformer.yaml -------------------------------------------------------------------------------- /ASR/ESPNet/egs/must_c/mt1/local: -------------------------------------------------------------------------------- 1 | ../st1/local -------------------------------------------------------------------------------- /ASR/ESPNet/egs/must_c/mt1/steps: -------------------------------------------------------------------------------- 1 | ../../../tools/kaldi/egs/wsj/s5/steps -------------------------------------------------------------------------------- /ASR/ESPNet/egs/must_c/mt1/utils: -------------------------------------------------------------------------------- 1 | ../../../tools/kaldi/egs/wsj/s5/utils -------------------------------------------------------------------------------- /ASR/ESPNet/egs/must_c/st1/conf/decode.yaml: -------------------------------------------------------------------------------- 1 | tuning/decode_pytorch_transformer.yaml -------------------------------------------------------------------------------- /ASR/ESPNet/egs/must_c/st1/conf/pitch.conf: -------------------------------------------------------------------------------- 1 | --sample-frequency=16000 2 | -------------------------------------------------------------------------------- /ASR/ESPNet/egs/must_c/st1/conf/train.yaml: -------------------------------------------------------------------------------- 1 | tuning/train_pytorch_transformer.yaml -------------------------------------------------------------------------------- /ASR/ESPNet/egs/must_c/st1/steps: -------------------------------------------------------------------------------- 1 | ../../../tools/kaldi/egs/wsj/s5/steps -------------------------------------------------------------------------------- /ASR/ESPNet/egs/must_c/st1/utils: -------------------------------------------------------------------------------- 1 | ../../../tools/kaldi/egs/wsj/s5/utils -------------------------------------------------------------------------------- /ASR/ESPNet/egs/must_c_v2/asr1/conf/lm.yaml: -------------------------------------------------------------------------------- 1 | tuning/lm.yaml -------------------------------------------------------------------------------- /ASR/ESPNet/egs/must_c_v2/asr1/conf/pitch.conf: -------------------------------------------------------------------------------- 1 | --sample-frequency=16000 2 | -------------------------------------------------------------------------------- /ASR/ESPNet/egs/must_c_v2/asr1/conf/train.yaml: -------------------------------------------------------------------------------- 1 | tuning/train_pytorch_transformer.yaml -------------------------------------------------------------------------------- /ASR/ESPNet/egs/must_c_v2/asr1/local: -------------------------------------------------------------------------------- 1 | ../../must_c/st1/local -------------------------------------------------------------------------------- /ASR/ESPNet/egs/must_c_v2/asr1/steps: -------------------------------------------------------------------------------- 1 | ../../../tools/kaldi/egs/wsj/s5/steps -------------------------------------------------------------------------------- /ASR/ESPNet/egs/must_c_v2/asr1/utils: -------------------------------------------------------------------------------- 1 | ../../../tools/kaldi/egs/wsj/s5/utils -------------------------------------------------------------------------------- /ASR/ESPNet/egs/must_c_v2/mt1/conf/train.yaml: -------------------------------------------------------------------------------- 1 | tuning/train_pytorch_transformer.yaml -------------------------------------------------------------------------------- /ASR/ESPNet/egs/must_c_v2/mt1/local: -------------------------------------------------------------------------------- 1 | ../../must_c/st1/local -------------------------------------------------------------------------------- /ASR/ESPNet/egs/must_c_v2/mt1/steps: -------------------------------------------------------------------------------- 1 | ../../../tools/kaldi/egs/wsj/s5/steps -------------------------------------------------------------------------------- /ASR/ESPNet/egs/must_c_v2/mt1/utils: -------------------------------------------------------------------------------- 1 | ../../../tools/kaldi/egs/wsj/s5/utils -------------------------------------------------------------------------------- /ASR/ESPNet/egs/must_c_v2/st1/conf/pitch.conf: -------------------------------------------------------------------------------- 1 | --sample-frequency=16000 2 | -------------------------------------------------------------------------------- /ASR/ESPNet/egs/must_c_v2/st1/local: -------------------------------------------------------------------------------- 1 | ../../must_c/st1/local -------------------------------------------------------------------------------- /ASR/ESPNet/egs/must_c_v2/st1/steps: -------------------------------------------------------------------------------- 1 | ../../../tools/kaldi/egs/wsj/s5/steps -------------------------------------------------------------------------------- /ASR/ESPNet/egs/must_c_v2/st1/utils: -------------------------------------------------------------------------------- 1 | ../../../tools/kaldi/egs/wsj/s5/utils -------------------------------------------------------------------------------- /ASR/ESPNet/egs/puebla_nahuatl/asr1/conf/pitch.conf: -------------------------------------------------------------------------------- 1 | --sample-frequency=16000 2 | -------------------------------------------------------------------------------- /ASR/ESPNet/egs/puebla_nahuatl/asr1/steps: -------------------------------------------------------------------------------- 1 | ../../../tools/kaldi/egs/wsj/s5/steps -------------------------------------------------------------------------------- /ASR/ESPNet/egs/puebla_nahuatl/asr1/utils: -------------------------------------------------------------------------------- 1 | ../../../tools/kaldi/egs/wsj/s5/utils -------------------------------------------------------------------------------- /ASR/ESPNet/egs/puebla_nahuatl/st1/conf/pitch.conf: -------------------------------------------------------------------------------- 1 | --sample-frequency=16000 2 | -------------------------------------------------------------------------------- /ASR/ESPNet/egs/puebla_nahuatl/st1/steps: -------------------------------------------------------------------------------- 1 | ../../../tools/kaldi/egs/wsj/s5/steps -------------------------------------------------------------------------------- /ASR/ESPNet/egs/puebla_nahuatl/st1/utils: -------------------------------------------------------------------------------- 1 | ../../../tools/kaldi/egs/wsj/s5/utils -------------------------------------------------------------------------------- /ASR/ESPNet/egs/reverb/asr1/conf/pitch.conf: -------------------------------------------------------------------------------- 1 | --sample-frequency=16000 2 | -------------------------------------------------------------------------------- /ASR/ESPNet/egs/reverb/asr1/local/flist2scp.pl: -------------------------------------------------------------------------------- 1 | ../../../wsj/asr1/local/flist2scp.pl -------------------------------------------------------------------------------- /ASR/ESPNet/egs/reverb/asr1/local/ndx2flist.pl: -------------------------------------------------------------------------------- 1 | ../../../wsj/asr1/local/ndx2flist.pl -------------------------------------------------------------------------------- /ASR/ESPNet/egs/reverb/asr1/steps: -------------------------------------------------------------------------------- 1 | ../../../tools/kaldi/egs/wsj/s5/steps -------------------------------------------------------------------------------- /ASR/ESPNet/egs/reverb/asr1/utils: -------------------------------------------------------------------------------- 1 | ../../../tools/kaldi/egs/wsj/s5/utils -------------------------------------------------------------------------------- /ASR/ESPNet/egs/reverb/asr1_multich/conf/pitch.conf: -------------------------------------------------------------------------------- 1 | --sample-frequency=16000 2 | -------------------------------------------------------------------------------- /ASR/ESPNet/egs/reverb/asr1_multich/local/mlf2text.pl: -------------------------------------------------------------------------------- 1 | ../../asr1/local/mlf2text.pl -------------------------------------------------------------------------------- /ASR/ESPNet/egs/reverb/asr1_multich/local/ndx2flist.pl: -------------------------------------------------------------------------------- 1 | ../../asr1/local/ndx2flist.pl -------------------------------------------------------------------------------- /ASR/ESPNet/egs/reverb/asr1_multich/local/run_wpe.py: -------------------------------------------------------------------------------- 1 | ../../asr1/local/run_wpe.py -------------------------------------------------------------------------------- /ASR/ESPNet/egs/reverb/asr1_multich/local/run_wpe.sh: -------------------------------------------------------------------------------- 1 | ../../asr1/local/run_wpe.sh -------------------------------------------------------------------------------- /ASR/ESPNet/egs/reverb/asr1_multich/steps: -------------------------------------------------------------------------------- 1 | ../../../tools/kaldi/egs/wsj/s5/steps -------------------------------------------------------------------------------- /ASR/ESPNet/egs/reverb/asr1_multich/utils: -------------------------------------------------------------------------------- 1 | ../../../tools/kaldi/egs/wsj/s5/utils -------------------------------------------------------------------------------- /ASR/ESPNet/egs/ru_open_stt/asr1/conf/pitch.conf: -------------------------------------------------------------------------------- 1 | --sample-frequency=16000 2 | -------------------------------------------------------------------------------- /ASR/ESPNet/egs/ru_open_stt/asr1/steps: -------------------------------------------------------------------------------- 1 | ../../../tools/kaldi/egs/wsj/s5/steps -------------------------------------------------------------------------------- /ASR/ESPNet/egs/ru_open_stt/asr1/utils: -------------------------------------------------------------------------------- 1 | ../../../tools/kaldi/egs/wsj/s5/utils -------------------------------------------------------------------------------- /ASR/ESPNet/egs/swbd/asr1/conf/decode.yaml: -------------------------------------------------------------------------------- 1 | tuning/decode_pytorch_transformer.yaml -------------------------------------------------------------------------------- /ASR/ESPNet/egs/swbd/asr1/conf/lm.yaml: -------------------------------------------------------------------------------- 1 | tuning/lm_transformer.yaml -------------------------------------------------------------------------------- /ASR/ESPNet/egs/swbd/asr1/conf/pitch.conf: -------------------------------------------------------------------------------- 1 | --sample-frequency=16000 2 | -------------------------------------------------------------------------------- /ASR/ESPNet/egs/swbd/asr1/conf/train.yaml: -------------------------------------------------------------------------------- 1 | tuning/train_pytorch_conformer_lr5.yaml -------------------------------------------------------------------------------- /ASR/ESPNet/egs/swbd/asr1/steps: -------------------------------------------------------------------------------- 1 | ../../../tools/kaldi/egs/wsj/s5/steps -------------------------------------------------------------------------------- /ASR/ESPNet/egs/swbd/asr1/utils: -------------------------------------------------------------------------------- 1 | ../../../tools/kaldi/egs/wsj/s5/utils -------------------------------------------------------------------------------- /ASR/ESPNet/egs/tedlium2/align1/conf/pitch.conf: -------------------------------------------------------------------------------- 1 | --sample-frequency=16000 2 | -------------------------------------------------------------------------------- /ASR/ESPNet/egs/tedlium2/align1/steps: -------------------------------------------------------------------------------- 1 | ../../../tools/kaldi/egs/wsj/s5/steps -------------------------------------------------------------------------------- /ASR/ESPNet/egs/tedlium2/align1/utils: -------------------------------------------------------------------------------- 1 | ../../../tools/kaldi/egs/wsj/s5/utils/ -------------------------------------------------------------------------------- /ASR/ESPNet/egs/tedlium2/asr1/conf/decode.yaml: -------------------------------------------------------------------------------- 1 | tuning/decode_pytorch_transformer.yaml -------------------------------------------------------------------------------- /ASR/ESPNet/egs/tedlium2/asr1/conf/pitch.conf: -------------------------------------------------------------------------------- 1 | --sample-frequency=16000 2 | -------------------------------------------------------------------------------- /ASR/ESPNet/egs/tedlium2/asr1/steps: -------------------------------------------------------------------------------- 1 | ../../../tools/kaldi/egs/wsj/s5/steps -------------------------------------------------------------------------------- /ASR/ESPNet/egs/tedlium2/asr1/utils: -------------------------------------------------------------------------------- 1 | ../../../tools/kaldi/egs/wsj/s5/utils -------------------------------------------------------------------------------- /ASR/ESPNet/egs/tedlium3/asr1/conf/pitch.conf: -------------------------------------------------------------------------------- 1 | --sample-frequency=16000 2 | -------------------------------------------------------------------------------- /ASR/ESPNet/egs/tedlium3/asr1/conf/train.yaml: -------------------------------------------------------------------------------- 1 | ./tuning/train_conformer.yaml -------------------------------------------------------------------------------- /ASR/ESPNet/egs/tedlium3/asr1/steps: -------------------------------------------------------------------------------- 1 | ../../../tools/kaldi/egs/wsj/s5/steps -------------------------------------------------------------------------------- /ASR/ESPNet/egs/tedlium3/asr1/utils: -------------------------------------------------------------------------------- 1 | ../../../tools/kaldi/egs/wsj/s5/utils -------------------------------------------------------------------------------- /ASR/ESPNet/egs/timit/asr1/conf/pitch.conf: -------------------------------------------------------------------------------- 1 | --sample-frequency=16000 2 | -------------------------------------------------------------------------------- /ASR/ESPNet/egs/timit/asr1/conf/train.yaml: -------------------------------------------------------------------------------- 1 | tuning/train2.yaml -------------------------------------------------------------------------------- /ASR/ESPNet/egs/timit/asr1/steps: -------------------------------------------------------------------------------- 1 | ../../../tools/kaldi/egs/wsj/s5/steps -------------------------------------------------------------------------------- /ASR/ESPNet/egs/timit/asr1/utils: -------------------------------------------------------------------------------- 1 | ../../../tools/kaldi/egs/wsj/s5/utils -------------------------------------------------------------------------------- /ASR/ESPNet/egs/timit_ssc/ssr1/steps: -------------------------------------------------------------------------------- 1 | ../../../tools/kaldi/egs/wsj/s5/steps -------------------------------------------------------------------------------- /ASR/ESPNet/egs/timit_ssc/ssr1/utils: -------------------------------------------------------------------------------- 1 | ../../../tools/kaldi/egs/wsj/s5/utils -------------------------------------------------------------------------------- /ASR/ESPNet/egs/tweb/tts1/steps: -------------------------------------------------------------------------------- 1 | ../../../tools/kaldi/egs/wsj/s5/steps -------------------------------------------------------------------------------- /ASR/ESPNet/egs/tweb/tts1/utils: -------------------------------------------------------------------------------- 1 | ../../../tools/kaldi/egs/wsj/s5/utils -------------------------------------------------------------------------------- /ASR/ESPNet/egs/vais1000/tts1/steps: -------------------------------------------------------------------------------- 1 | ../../../tools/kaldi/egs/wsj/s5/steps -------------------------------------------------------------------------------- /ASR/ESPNet/egs/vais1000/tts1/utils: -------------------------------------------------------------------------------- 1 | ../../../tools/kaldi/egs/wsj/s5/utils -------------------------------------------------------------------------------- /ASR/ESPNet/egs/vcc20/tts1_en_de/local/update_json.sh: -------------------------------------------------------------------------------- 1 | ../../vc1/local/update_json.sh -------------------------------------------------------------------------------- /ASR/ESPNet/egs/vcc20/tts1_en_de/sid: -------------------------------------------------------------------------------- 1 | ../../../tools/kaldi/egs/sre08/v1/sid -------------------------------------------------------------------------------- /ASR/ESPNet/egs/vcc20/tts1_en_de/steps: -------------------------------------------------------------------------------- 1 | ../../../tools/kaldi/egs/wsj/s5/steps -------------------------------------------------------------------------------- /ASR/ESPNet/egs/vcc20/tts1_en_de/utils: -------------------------------------------------------------------------------- 1 | ../../../tools/kaldi/egs/wsj/s5/utils -------------------------------------------------------------------------------- /ASR/ESPNet/egs/vcc20/tts1_en_fi/local/update_json.sh: -------------------------------------------------------------------------------- 1 | ../../vc1/local/update_json.sh -------------------------------------------------------------------------------- /ASR/ESPNet/egs/vcc20/tts1_en_fi/sid: -------------------------------------------------------------------------------- 1 | ../../../tools/kaldi/egs/sre08/v1/sid -------------------------------------------------------------------------------- /ASR/ESPNet/egs/vcc20/tts1_en_fi/steps: -------------------------------------------------------------------------------- 1 | ../../../tools/kaldi/egs/wsj/s5/steps -------------------------------------------------------------------------------- /ASR/ESPNet/egs/vcc20/tts1_en_fi/utils: -------------------------------------------------------------------------------- 1 | ../../../tools/kaldi/egs/wsj/s5/utils -------------------------------------------------------------------------------- /ASR/ESPNet/egs/vcc20/tts1_en_zh/local/update_json.sh: -------------------------------------------------------------------------------- 1 | ../../vc1/local/update_json.sh -------------------------------------------------------------------------------- /ASR/ESPNet/egs/vcc20/tts1_en_zh/sid: -------------------------------------------------------------------------------- 1 | ../../../tools/kaldi/egs/sre08/v1/sid -------------------------------------------------------------------------------- /ASR/ESPNet/egs/vcc20/tts1_en_zh/steps: -------------------------------------------------------------------------------- 1 | ../../../tools/kaldi/egs/wsj/s5/steps -------------------------------------------------------------------------------- /ASR/ESPNet/egs/vcc20/tts1_en_zh/utils: -------------------------------------------------------------------------------- 1 | ../../../tools/kaldi/egs/wsj/s5/utils -------------------------------------------------------------------------------- /ASR/ESPNet/egs/vcc20/vc1_task1/conf/TEF1.f0: -------------------------------------------------------------------------------- 1 | 127 405 2 | -------------------------------------------------------------------------------- /ASR/ESPNet/egs/vcc20/vc1_task1/conf/TEF2.f0: -------------------------------------------------------------------------------- 1 | 108 361 2 | -------------------------------------------------------------------------------- /ASR/ESPNet/egs/vcc20/vc1_task1/conf/TEM1.f0: -------------------------------------------------------------------------------- 1 | 71 227 2 | -------------------------------------------------------------------------------- /ASR/ESPNet/egs/vcc20/vc1_task1/conf/TEM2.f0: -------------------------------------------------------------------------------- 1 | 57 182 2 | -------------------------------------------------------------------------------- /ASR/ESPNet/egs/vcc20/vc1_task1/conf/pitch.conf: -------------------------------------------------------------------------------- 1 | --sample-frequency=16000 2 | -------------------------------------------------------------------------------- /ASR/ESPNet/egs/vcc20/vc1_task1/local/text: -------------------------------------------------------------------------------- 1 | ../../../ljspeech/tts1/local/text -------------------------------------------------------------------------------- /ASR/ESPNet/egs/vcc20/vc1_task1/sid: -------------------------------------------------------------------------------- 1 | ../../../tools/kaldi/egs/sre08/v1/sid -------------------------------------------------------------------------------- /ASR/ESPNet/egs/vcc20/vc1_task1/steps: -------------------------------------------------------------------------------- 1 | ../../../tools/kaldi/egs/wsj/s5/steps -------------------------------------------------------------------------------- /ASR/ESPNet/egs/vcc20/vc1_task1/utils: -------------------------------------------------------------------------------- 1 | ../../../tools/kaldi/egs/wsj/s5/utils -------------------------------------------------------------------------------- /ASR/ESPNet/egs/vcc20/vc1_task2/conf/TFF1.f0: -------------------------------------------------------------------------------- 1 | 139 387 2 | -------------------------------------------------------------------------------- /ASR/ESPNet/egs/vcc20/vc1_task2/conf/TFM1.f0: -------------------------------------------------------------------------------- 1 | 60 189 2 | -------------------------------------------------------------------------------- /ASR/ESPNet/egs/vcc20/vc1_task2/conf/TGF1.f0: -------------------------------------------------------------------------------- 1 | 109 345 2 | -------------------------------------------------------------------------------- /ASR/ESPNet/egs/vcc20/vc1_task2/conf/TGM1.f0: -------------------------------------------------------------------------------- 1 | 75 236 2 | -------------------------------------------------------------------------------- /ASR/ESPNet/egs/vcc20/vc1_task2/conf/TMF1.f0: -------------------------------------------------------------------------------- 1 | 126 409 2 | -------------------------------------------------------------------------------- /ASR/ESPNet/egs/vcc20/vc1_task2/conf/TMM1.f0: -------------------------------------------------------------------------------- 1 | 81 254 2 | -------------------------------------------------------------------------------- /ASR/ESPNet/egs/vcc20/vc1_task2/conf/ob_eval: -------------------------------------------------------------------------------- 1 | ../../vc1_task1/conf/ob_eval/ -------------------------------------------------------------------------------- /ASR/ESPNet/egs/vcc20/vc1_task2/conf/pitch.conf: -------------------------------------------------------------------------------- 1 | --sample-frequency=16000 2 | -------------------------------------------------------------------------------- /ASR/ESPNet/egs/vcc20/vc1_task2/local/ob_eval: -------------------------------------------------------------------------------- 1 | ../../vc1_task1/local/ob_eval/ -------------------------------------------------------------------------------- /ASR/ESPNet/egs/vcc20/vc1_task2/local/recognize.sh: -------------------------------------------------------------------------------- 1 | ../../vc1_task1/local/recognize.sh -------------------------------------------------------------------------------- /ASR/ESPNet/egs/vcc20/vc1_task2/local/text: -------------------------------------------------------------------------------- 1 | ../../../ljspeech/tts1/local/text -------------------------------------------------------------------------------- /ASR/ESPNet/egs/vcc20/vc1_task2/sid: -------------------------------------------------------------------------------- 1 | ../../../tools/kaldi/egs/sre08/v1/sid -------------------------------------------------------------------------------- /ASR/ESPNet/egs/vcc20/vc1_task2/steps: -------------------------------------------------------------------------------- 1 | ../../../tools/kaldi/egs/wsj/s5/steps -------------------------------------------------------------------------------- /ASR/ESPNet/egs/vcc20/vc1_task2/utils: -------------------------------------------------------------------------------- 1 | ../../../tools/kaldi/egs/wsj/s5/utils -------------------------------------------------------------------------------- /ASR/ESPNet/egs/vcc20/voc1/utils: -------------------------------------------------------------------------------- 1 | ../../../tools/kaldi/egs/wsj/s5/utils -------------------------------------------------------------------------------- /ASR/ESPNet/egs/vivos/asr1/conf/decode.yaml: -------------------------------------------------------------------------------- 1 | tuning/transducer/decode_default.yaml -------------------------------------------------------------------------------- /ASR/ESPNet/egs/vivos/asr1/conf/pitch.conf: -------------------------------------------------------------------------------- 1 | --sample-frequency=16000 2 | -------------------------------------------------------------------------------- /ASR/ESPNet/egs/vivos/asr1/steps: -------------------------------------------------------------------------------- 1 | ../../../tools/kaldi/egs/wsj/s5/steps -------------------------------------------------------------------------------- /ASR/ESPNet/egs/vivos/asr1/utils: -------------------------------------------------------------------------------- 1 | ../../../tools/kaldi/egs/wsj/s5/utils -------------------------------------------------------------------------------- /ASR/ESPNet/egs/voxforge/asr1/conf/decode.yaml: -------------------------------------------------------------------------------- 1 | tuning/decode_pytorch_transformer.yaml -------------------------------------------------------------------------------- /ASR/ESPNet/egs/voxforge/asr1/conf/pitch.conf: -------------------------------------------------------------------------------- 1 | --sample-frequency=16000 2 | -------------------------------------------------------------------------------- /ASR/ESPNet/egs/voxforge/asr1/conf/train.yaml: -------------------------------------------------------------------------------- 1 | tuning/train_pytorch_conformer.yaml -------------------------------------------------------------------------------- /ASR/ESPNet/egs/voxforge/asr1/steps: -------------------------------------------------------------------------------- 1 | ../../../tools/kaldi/egs/wsj/s5/steps -------------------------------------------------------------------------------- /ASR/ESPNet/egs/voxforge/asr1/utils: -------------------------------------------------------------------------------- 1 | ../../../tools/kaldi/egs/wsj/s5/utils -------------------------------------------------------------------------------- /ASR/ESPNet/egs/wsj/asr1/conf/decode.yaml: -------------------------------------------------------------------------------- 1 | ./tuning/decode_pytorch_transformer.yaml -------------------------------------------------------------------------------- /ASR/ESPNet/egs/wsj/asr1/conf/pitch.conf: -------------------------------------------------------------------------------- 1 | --sample-frequency=16000 2 | -------------------------------------------------------------------------------- /ASR/ESPNet/egs/wsj/asr1/conf/train.yaml: -------------------------------------------------------------------------------- 1 | ./tuning/train_pytorch_transformer.yaml -------------------------------------------------------------------------------- /ASR/ESPNet/egs/wsj/asr1/steps: -------------------------------------------------------------------------------- 1 | ../../../tools/kaldi/egs/wsj/s5/steps -------------------------------------------------------------------------------- /ASR/ESPNet/egs/wsj/asr1/utils: -------------------------------------------------------------------------------- 1 | ../../../tools/kaldi/egs/wsj/s5/utils -------------------------------------------------------------------------------- /ASR/ESPNet/egs/wsj_mix/asr1/conf/pitch.conf: -------------------------------------------------------------------------------- 1 | --sample-frequency=16000 2 | -------------------------------------------------------------------------------- /ASR/ESPNet/egs/wsj_mix/asr1/steps: -------------------------------------------------------------------------------- 1 | ../../../tools/kaldi/egs/wsj/s5/steps/ -------------------------------------------------------------------------------- /ASR/ESPNet/egs/wsj_mix/asr1/utils: -------------------------------------------------------------------------------- 1 | ../../../tools/kaldi/egs/wsj/s5/utils/ -------------------------------------------------------------------------------- /ASR/ESPNet/egs/yesno/asr1/conf/pitch.conf: -------------------------------------------------------------------------------- 1 | --sample-frequency=8000 2 | -------------------------------------------------------------------------------- /ASR/ESPNet/egs/yesno/asr1/steps: -------------------------------------------------------------------------------- 1 | ../../../tools/kaldi/egs/wsj/s5/steps -------------------------------------------------------------------------------- /ASR/ESPNet/egs/yesno/asr1/utils: -------------------------------------------------------------------------------- 1 | ../../../tools/kaldi/egs/wsj/s5/utils -------------------------------------------------------------------------------- /ASR/ESPNet/egs/yesno/tts1/local: -------------------------------------------------------------------------------- 1 | ../asr1/local -------------------------------------------------------------------------------- /ASR/ESPNet/egs/yesno/tts1/steps: -------------------------------------------------------------------------------- 1 | ../../../tools/kaldi/egs/wsj/s5/steps -------------------------------------------------------------------------------- /ASR/ESPNet/egs/yesno/tts1/utils: -------------------------------------------------------------------------------- 1 | ../../../tools/kaldi/egs/wsj/s5/utils -------------------------------------------------------------------------------- /ASR/ESPNet/egs/yoloxochitl_mixtec/asr1/conf/pitch.conf: -------------------------------------------------------------------------------- 1 | --sample-frequency=16000 2 | -------------------------------------------------------------------------------- /ASR/ESPNet/egs/yoloxochitl_mixtec/asr1/steps: -------------------------------------------------------------------------------- 1 | ../../../tools/kaldi/egs/wsj/s5/steps -------------------------------------------------------------------------------- /ASR/ESPNet/egs/yoloxochitl_mixtec/asr1/utils: -------------------------------------------------------------------------------- 1 | ../../../tools/kaldi/egs/wsj/s5/utils -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/TEMPLATE/asr1/conf/pitch.conf: -------------------------------------------------------------------------------- 1 | --sample-frequency=16000 2 | -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/TEMPLATE/asr1/local/path.sh: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/TEMPLATE/asr1/steps: -------------------------------------------------------------------------------- 1 | ../../../tools/kaldi/egs/wsj/s5/steps -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/TEMPLATE/asr1/utils: -------------------------------------------------------------------------------- 1 | ../../../tools/kaldi/egs/wsj/s5/utils/ -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/TEMPLATE/diar1/db.sh: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/db.sh -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/TEMPLATE/diar1/local/path.sh: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/TEMPLATE/diar1/pyscripts/audio: -------------------------------------------------------------------------------- 1 | ../../asr1/pyscripts/audio -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/TEMPLATE/diar1/pyscripts/feats: -------------------------------------------------------------------------------- 1 | ../../asr1/pyscripts/feats -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/TEMPLATE/diar1/scripts/audio: -------------------------------------------------------------------------------- 1 | ../../asr1/scripts/audio -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/TEMPLATE/diar1/scripts/feats: -------------------------------------------------------------------------------- 1 | ../../asr1/scripts/feats -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/TEMPLATE/diar1/steps: -------------------------------------------------------------------------------- 1 | ../../../tools/kaldi/egs/wsj/s5/steps -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/TEMPLATE/diar1/utils: -------------------------------------------------------------------------------- 1 | ../../../tools/kaldi/egs/wsj/s5/utils -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/TEMPLATE/enh1/db.sh: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/db.sh -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/TEMPLATE/enh1/local/path.sh: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/TEMPLATE/enh1/pyscripts: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/pyscripts -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/TEMPLATE/enh1/scripts/audio: -------------------------------------------------------------------------------- 1 | ../../../TEMPLATE/asr1/scripts/audio -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/TEMPLATE/enh1/scripts/feats: -------------------------------------------------------------------------------- 1 | ../../../TEMPLATE/asr1/scripts/feats -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/TEMPLATE/enh1/steps: -------------------------------------------------------------------------------- 1 | ../../../tools/kaldi/egs/wsj/s5/steps -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/TEMPLATE/enh1/utils: -------------------------------------------------------------------------------- 1 | ../../../tools/kaldi/egs/wsj/s5/utils -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/TEMPLATE/tts1/db.sh: -------------------------------------------------------------------------------- 1 | ../asr1/db.sh -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/TEMPLATE/tts1/local/path.sh: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/TEMPLATE/tts1/pyscripts: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/pyscripts -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/TEMPLATE/tts1/scripts: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/scripts -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/TEMPLATE/tts1/sid: -------------------------------------------------------------------------------- 1 | ../../../tools/kaldi/egs/sre08/v1/sid -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/TEMPLATE/tts1/steps: -------------------------------------------------------------------------------- 1 | ../../../tools/kaldi/egs/wsj/s5/steps -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/TEMPLATE/tts1/utils: -------------------------------------------------------------------------------- 1 | ../../../tools/kaldi/egs/wsj/s5/utils/ -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/aishell/asr1/asr.sh: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/asr.sh -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/aishell/asr1/conf/pitch.conf: -------------------------------------------------------------------------------- 1 | --sample-frequency=16000 2 | -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/aishell/asr1/db.sh: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/db.sh -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/aishell/asr1/local/path.sh: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/aishell/asr1/path.sh: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/path.sh -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/aishell/asr1/pyscripts: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/pyscripts -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/aishell/asr1/scripts: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/scripts -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/aishell/asr1/steps: -------------------------------------------------------------------------------- 1 | ../../../tools/kaldi/egs/wsj/s5/steps -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/aishell/asr1/utils: -------------------------------------------------------------------------------- 1 | ../../../tools/kaldi/egs/wsj/s5/utils -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/ami/asr1/asr.sh: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/asr.sh -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/ami/asr1/conf/decode_asr.yaml: -------------------------------------------------------------------------------- 1 | tuning/decode_transformer.yaml -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/ami/asr1/conf/pitch.conf: -------------------------------------------------------------------------------- 1 | --sample-frequency=16000 2 | -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/ami/asr1/conf/train_asr.yaml: -------------------------------------------------------------------------------- 1 | tuning/train_asr_transformer.yaml -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/ami/asr1/db.sh: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/db.sh -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/ami/asr1/local/path.sh: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/ami/asr1/path.sh: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/path.sh -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/ami/asr1/pyscripts: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/pyscripts -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/ami/asr1/scripts: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/scripts -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/ami/asr1/steps: -------------------------------------------------------------------------------- 1 | ../../../tools/kaldi/egs/wsj/s5/steps -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/ami/asr1/utils: -------------------------------------------------------------------------------- 1 | ../../../tools/kaldi/egs/wsj/s5/utils -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/an4/asr1/asr.sh: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/asr.sh -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/an4/asr1/conf/pitch.conf: -------------------------------------------------------------------------------- 1 | --sample-frequency=16000 2 | -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/an4/asr1/db.sh: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/db.sh -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/an4/asr1/local/path.sh: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/an4/asr1/path.sh: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/path.sh -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/an4/asr1/pyscripts: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/pyscripts -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/an4/asr1/scripts: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/scripts -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/an4/asr1/steps: -------------------------------------------------------------------------------- 1 | ../../../tools/kaldi/egs/wsj/s5/steps -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/an4/asr1/utils: -------------------------------------------------------------------------------- 1 | ../../../tools/kaldi/egs/wsj/s5/utils -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/an4/tts1/conf/pitch.conf: -------------------------------------------------------------------------------- 1 | --sample-frequency=16000 2 | -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/an4/tts1/db.sh: -------------------------------------------------------------------------------- 1 | ../../mini_an4/asr1/db.sh -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/an4/tts1/local: -------------------------------------------------------------------------------- 1 | ../asr1/local -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/an4/tts1/path.sh: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/tts1/path.sh -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/an4/tts1/pyscripts: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/pyscripts -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/an4/tts1/scripts: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/scripts -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/an4/tts1/steps: -------------------------------------------------------------------------------- 1 | ../../../tools/kaldi/egs/wsj/s5/steps -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/an4/tts1/tts.sh: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/tts1/tts.sh -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/an4/tts1/utils: -------------------------------------------------------------------------------- 1 | ../../../tools/kaldi/egs/wsj/s5/utils -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/babel/asr1/asr.sh: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/asr.sh -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/babel/asr1/conf/pitch.conf: -------------------------------------------------------------------------------- 1 | --sample-frequency=16000 2 | -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/babel/asr1/db.sh: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/db.sh -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/babel/asr1/local/path.sh: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/babel/asr1/path.sh: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/path.sh -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/babel/asr1/pyscripts: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/pyscripts -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/babel/asr1/scripts: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/scripts -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/babel/asr1/steps: -------------------------------------------------------------------------------- 1 | ../../../tools/kaldi/egs/wsj/s5/steps -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/babel/asr1/utils: -------------------------------------------------------------------------------- 1 | ../../../tools/kaldi/egs/wsj/s5/utils -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/chime4/asr1/asr.sh: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/asr.sh -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/chime4/asr1/conf/decode_asr_rnn.yaml: -------------------------------------------------------------------------------- 1 | tuning/decode_asr_rnn.yaml -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/chime4/asr1/conf/pitch.conf: -------------------------------------------------------------------------------- 1 | --sample-frequency=16000 2 | -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/chime4/asr1/conf/train_asr_rnn.yaml: -------------------------------------------------------------------------------- 1 | tuning/train_asr_rnn.yaml -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/chime4/asr1/db.sh: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/db.sh -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/chime4/asr1/local/path.sh: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/chime4/asr1/path.sh: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/path.sh -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/chime4/asr1/pyscripts: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/pyscripts -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/chime4/asr1/scripts: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/scripts -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/chime4/asr1/steps: -------------------------------------------------------------------------------- 1 | ../../../tools/kaldi/egs/wsj/s5/steps -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/chime4/asr1/utils: -------------------------------------------------------------------------------- 1 | ../../../tools/kaldi/egs/wsj/s5/utils -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/chime4/enh1/conf/train.yaml: -------------------------------------------------------------------------------- 1 | tuning/train_enh_beamformer_mvdr.yaml -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/chime4/enh1/db.sh: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/db.sh -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/chime4/enh1/enh.sh: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/enh1/enh.sh -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/chime4/enh1/local/flist2scp.pl: -------------------------------------------------------------------------------- 1 | ../../asr1/local/flist2scp.pl -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/chime4/enh1/local/path.sh: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/chime4/enh1/path.sh: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/enh1/path.sh -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/chime4/enh1/pyscripts: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/pyscripts -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/chime4/enh1/scripts: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/enh1/scripts -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/chime4/enh1/steps: -------------------------------------------------------------------------------- 1 | ../../../tools/kaldi/egs/wsj/s5/steps -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/chime4/enh1/utils: -------------------------------------------------------------------------------- 1 | ../../../tools/kaldi/egs/wsj/s5/utils -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/commonvoice/asr1/asr.sh: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/asr.sh -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/commonvoice/asr1/conf/decode_asr.yaml: -------------------------------------------------------------------------------- 1 | tuning/decode_transformer.yaml -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/commonvoice/asr1/conf/pitch.conf: -------------------------------------------------------------------------------- 1 | --sample-frequency=16000 2 | -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/commonvoice/asr1/db.sh: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/db.sh -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/commonvoice/asr1/local/path.sh: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/commonvoice/asr1/path.sh: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/path.sh -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/commonvoice/asr1/pyscripts: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/pyscripts -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/commonvoice/asr1/scripts: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/scripts -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/commonvoice/asr1/steps: -------------------------------------------------------------------------------- 1 | ../../../tools/kaldi/egs/wsj/s5/steps -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/commonvoice/asr1/utils: -------------------------------------------------------------------------------- 1 | ../../../tools/kaldi/egs/wsj/s5/utils -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/csj/asr1/asr.sh: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/asr.sh -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/csj/asr1/conf/pitch.conf: -------------------------------------------------------------------------------- 1 | --sample-frequency=16000 2 | -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/csj/asr1/conf/train_asr_rnn.yaml: -------------------------------------------------------------------------------- 1 | tuning/train_asr_rnn.yaml -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/csj/asr1/db.sh: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/db.sh -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/csj/asr1/local/run_spm.sh: -------------------------------------------------------------------------------- 1 | ../../../../egs/csj/asr1/local/run_spm.sh -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/csj/asr1/path.sh: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/path.sh -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/csj/asr1/pyscripts: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/pyscripts -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/csj/asr1/scripts: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/scripts -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/csj/asr1/steps: -------------------------------------------------------------------------------- 1 | ../../../tools/kaldi/egs/wsj/s5/steps -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/csj/asr1/utils: -------------------------------------------------------------------------------- 1 | ../../../tools/kaldi/egs/wsj/s5/utils -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/csmsc/tts1/conf/decode.yaml: -------------------------------------------------------------------------------- 1 | tuning/decode_tacotron2.yaml -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/csmsc/tts1/conf/train.yaml: -------------------------------------------------------------------------------- 1 | tuning/train_tacotron2.yaml -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/csmsc/tts1/db.sh: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/db.sh -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/csmsc/tts1/path.sh: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/tts1/path.sh -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/csmsc/tts1/pyscripts: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/pyscripts -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/csmsc/tts1/scripts: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/scripts -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/csmsc/tts1/steps: -------------------------------------------------------------------------------- 1 | ../../../tools/kaldi/egs/wsj/s5/steps -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/csmsc/tts1/tts.sh: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/tts1/tts.sh -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/csmsc/tts1/utils: -------------------------------------------------------------------------------- 1 | ../../../tools/kaldi/egs/wsj/s5/utils -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/dirha_wsj/asr1/asr.sh: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/asr.sh -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/dirha_wsj/asr1/conf/pitch.conf: -------------------------------------------------------------------------------- 1 | --sample-frequency=16000 2 | -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/dirha_wsj/asr1/db.sh: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/db.sh -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/dirha_wsj/asr1/local/path.sh: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/dirha_wsj/asr1/path.sh: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/path.sh -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/dirha_wsj/asr1/pyscripts: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/pyscripts -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/dirha_wsj/asr1/scripts: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/scripts -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/dirha_wsj/asr1/steps: -------------------------------------------------------------------------------- 1 | ../../../tools/kaldi/egs/wsj/s5/steps -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/dirha_wsj/asr1/utils: -------------------------------------------------------------------------------- 1 | ../../../tools/kaldi/egs/wsj/s5/utils -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/dns_ins20/enh1/conf/train.yaml: -------------------------------------------------------------------------------- 1 | tuning/train_enh_blstm_tf.yaml -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/dns_ins20/enh1/db.sh: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/db.sh -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/dns_ins20/enh1/enh.sh: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/enh1/enh.sh -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/dns_ins20/enh1/local/path.sh: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/dns_ins20/enh1/path.sh: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/enh1/path.sh -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/dns_ins20/enh1/pyscripts: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/pyscripts -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/dns_ins20/enh1/scripts: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/enh1/scripts -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/dns_ins20/enh1/steps: -------------------------------------------------------------------------------- 1 | ../../../tools/kaldi/egs/wsj/s5/steps -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/dns_ins20/enh1/utils: -------------------------------------------------------------------------------- 1 | ../../../tools/kaldi/egs/wsj/s5/utils -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/gigaspeech/asr1/asr.sh: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/asr.sh -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/gigaspeech/asr1/conf/pitch.conf: -------------------------------------------------------------------------------- 1 | --sample-frequency=16000 2 | -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/gigaspeech/asr1/db.sh: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/db.sh -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/gigaspeech/asr1/local/path.sh: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/gigaspeech/asr1/path.sh: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/path.sh -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/gigaspeech/asr1/pyscripts: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/pyscripts -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/gigaspeech/asr1/scripts: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/scripts -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/gigaspeech/asr1/steps: -------------------------------------------------------------------------------- 1 | ../../../tools/kaldi/egs/wsj/s5/steps -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/gigaspeech/asr1/utils: -------------------------------------------------------------------------------- 1 | ../../../tools/kaldi/egs/wsj/s5/utils -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/hkust/asr1/asr.sh: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/asr.sh -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/hkust/asr1/conf/decode.yaml: -------------------------------------------------------------------------------- 1 | tuning/decode.yaml -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/hkust/asr1/conf/pitch.conf: -------------------------------------------------------------------------------- 1 | --sample-frequency=16000 2 | -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/hkust/asr1/db.sh: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/db.sh -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/hkust/asr1/local/path.sh: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/hkust/asr1/path.sh: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/path.sh -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/hkust/asr1/pyscripts: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/pyscripts -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/hkust/asr1/scripts: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/scripts -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/hkust/asr1/steps: -------------------------------------------------------------------------------- 1 | ../../../tools/kaldi/egs/wsj/s5/steps -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/hkust/asr1/utils: -------------------------------------------------------------------------------- 1 | ../../../tools/kaldi/egs/wsj/s5/utils -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/how2/asr1/asr.sh: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/asr.sh -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/how2/asr1/conf/pitch.conf: -------------------------------------------------------------------------------- 1 | --sample-frequency=16000 2 | -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/how2/asr1/db.sh: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/db.sh -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/how2/asr1/path.sh: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/path.sh -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/how2/asr1/pyscripts: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/pyscripts -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/how2/asr1/scripts: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/scripts -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/how2/asr1/steps: -------------------------------------------------------------------------------- 1 | ../../../tools/kaldi/egs/wsj/s5/steps -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/how2/asr1/utils: -------------------------------------------------------------------------------- 1 | ../../../tools/kaldi/egs/wsj/s5/utils -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/jsss/tts1/conf/decode.yaml: -------------------------------------------------------------------------------- 1 | tuning/decode_tacotron2.yaml -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/jsss/tts1/conf/train.yaml: -------------------------------------------------------------------------------- 1 | tuning/train_tacotron2.yaml -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/jsss/tts1/db.sh: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/db.sh -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/jsss/tts1/local/path.sh: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/jsss/tts1/path.sh: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/tts1/path.sh -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/jsss/tts1/pyscripts: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/pyscripts -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/jsss/tts1/scripts: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/scripts -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/jsss/tts1/steps: -------------------------------------------------------------------------------- 1 | ../../../tools/kaldi/egs/wsj/s5/steps -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/jsss/tts1/tts.sh: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/tts1/tts.sh -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/jsss/tts1/utils: -------------------------------------------------------------------------------- 1 | ../../../tools/kaldi/egs/wsj/s5/utils -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/jsut/asr1/asr.sh: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/asr.sh -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/jsut/asr1/conf/decode_rnn.yaml: -------------------------------------------------------------------------------- 1 | tuning/decode_rnn.yaml -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/jsut/asr1/conf/pitch_16k.conf: -------------------------------------------------------------------------------- 1 | --sample-frequency=16000 2 | -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/jsut/asr1/conf/train_asr_rnn.yaml: -------------------------------------------------------------------------------- 1 | tuning/train_asr_rnn.yaml -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/jsut/asr1/db.sh: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/db.sh -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/jsut/asr1/path.sh: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/path.sh -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/jsut/asr1/pyscripts: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/pyscripts -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/jsut/asr1/scripts: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/scripts -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/jsut/asr1/steps: -------------------------------------------------------------------------------- 1 | ../../../tools/kaldi/egs/wsj/s5/steps -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/jsut/asr1/utils: -------------------------------------------------------------------------------- 1 | ../../../tools/kaldi/egs/wsj/s5/utils -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/jsut/tts1/conf/decode.yaml: -------------------------------------------------------------------------------- 1 | tuning/decode_tacotron2.yaml -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/jsut/tts1/conf/train.yaml: -------------------------------------------------------------------------------- 1 | tuning/train_tacotron2.yaml -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/jsut/tts1/db.sh: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/db.sh -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/jsut/tts1/local/data_prep.sh: -------------------------------------------------------------------------------- 1 | ../../asr1/local/data_prep.sh -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/jsut/tts1/local/download.sh: -------------------------------------------------------------------------------- 1 | ../../asr1/local/download.sh -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/jsut/tts1/path.sh: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/tts1/path.sh -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/jsut/tts1/pyscripts: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/pyscripts -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/jsut/tts1/scripts: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/scripts -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/jsut/tts1/steps: -------------------------------------------------------------------------------- 1 | ../../../tools/kaldi/egs/wsj/s5/steps -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/jsut/tts1/tts.sh: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/tts1/tts.sh -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/jsut/tts1/utils: -------------------------------------------------------------------------------- 1 | ../../../tools/kaldi/egs/wsj/s5/utils -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/jvs/tts1/conf/decode.yaml: -------------------------------------------------------------------------------- 1 | tuning/decode_tacotron2.yaml -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/jvs/tts1/conf/finetune.yaml: -------------------------------------------------------------------------------- 1 | tuning/finetune_tacotron2.yaml -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/jvs/tts1/db.sh: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/db.sh -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/jvs/tts1/path.sh: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/tts1/path.sh -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/jvs/tts1/pyscripts: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/pyscripts -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/jvs/tts1/scripts: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/scripts -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/jvs/tts1/steps: -------------------------------------------------------------------------------- 1 | ../../../tools/kaldi/egs/wsj/s5/steps -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/jvs/tts1/tts.sh: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/tts1/tts.sh -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/jvs/tts1/utils: -------------------------------------------------------------------------------- 1 | ../../../tools/kaldi/egs/wsj/s5/utils -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/laborotv/asr1/asr.sh: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/asr.sh -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/laborotv/asr1/conf/train_asr_rnn.yaml: -------------------------------------------------------------------------------- 1 | tuning/train_asr_rnn.yaml -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/laborotv/asr1/db.sh: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/db.sh -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/laborotv/asr1/local/path.sh: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/laborotv/asr1/path.sh: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/path.sh -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/laborotv/asr1/pyscripts: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/pyscripts -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/laborotv/asr1/scripts: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/scripts -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/laborotv/asr1/steps: -------------------------------------------------------------------------------- 1 | ../../../tools/kaldi/egs/wsj/s5/steps -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/laborotv/asr1/utils: -------------------------------------------------------------------------------- 1 | ../../../tools/kaldi/egs/wsj/s5/utils -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/librimix/enh1/conf/train.yaml: -------------------------------------------------------------------------------- 1 | tuning/train_enh_conv_tasnet.yaml -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/librimix/enh1/db.sh: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/db.sh -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/librimix/enh1/enh.sh: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/enh1/enh.sh -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/librimix/enh1/local/path.sh: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/librimix/enh1/path.sh: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/enh1/path.sh -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/librimix/enh1/pyscripts: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/pyscripts -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/librimix/enh1/scripts: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/enh1/scripts -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/librimix/enh1/steps: -------------------------------------------------------------------------------- 1 | ../../../tools/kaldi/egs/wsj/s5/steps -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/librimix/enh1/utils: -------------------------------------------------------------------------------- 1 | ../../../tools/kaldi/egs/wsj/s5/utils -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/librispeech/asr1/asr.sh: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/asr.sh -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/librispeech/asr1/conf/pitch.conf: -------------------------------------------------------------------------------- 1 | --sample-frequency=16000 2 | -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/librispeech/asr1/conf/train_rnn_lm.yaml: -------------------------------------------------------------------------------- 1 | tuning/train_lm_adam.yaml -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/librispeech/asr1/db.sh: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/db.sh -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/librispeech/asr1/local/path.sh: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/librispeech/asr1/path.sh: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/path.sh -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/librispeech/asr1/pyscripts: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/pyscripts -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/librispeech/asr1/scripts: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/scripts -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/librispeech/asr1/steps: -------------------------------------------------------------------------------- 1 | ../../../tools/kaldi/egs/wsj/s5/steps -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/librispeech/asr1/utils: -------------------------------------------------------------------------------- 1 | ../../../tools/kaldi/egs/wsj/s5/utils -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/libritts/tts1/conf/decode.yaml: -------------------------------------------------------------------------------- 1 | tuning/decode_tacotron2.yaml -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/libritts/tts1/db.sh: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/db.sh -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/libritts/tts1/local/path.sh: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/libritts/tts1/path.sh: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/tts1/path.sh -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/libritts/tts1/pyscripts: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/pyscripts -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/libritts/tts1/scripts: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/scripts -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/libritts/tts1/sid: -------------------------------------------------------------------------------- 1 | ../../../tools/kaldi/egs/sre08/v1/sid -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/libritts/tts1/steps: -------------------------------------------------------------------------------- 1 | ../../../tools/kaldi/egs/wsj/s5/steps -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/libritts/tts1/tts.sh: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/tts1/tts.sh -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/libritts/tts1/utils: -------------------------------------------------------------------------------- 1 | ../../../tools/kaldi/egs/wsj/s5/utils -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/ljspeech/tts1/conf/decode.yaml: -------------------------------------------------------------------------------- 1 | tuning/decode_tacotron2.yaml -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/ljspeech/tts1/conf/train.yaml: -------------------------------------------------------------------------------- 1 | tuning/train_tacotron2.yaml -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/ljspeech/tts1/db.sh: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/db.sh -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/ljspeech/tts1/local/path.sh: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/ljspeech/tts1/path.sh: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/tts1/path.sh -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/ljspeech/tts1/pyscripts: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/pyscripts -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/ljspeech/tts1/scripts: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/scripts -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/ljspeech/tts1/steps: -------------------------------------------------------------------------------- 1 | ../../../tools/kaldi/egs/wsj/s5/steps -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/ljspeech/tts1/tts.sh: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/tts1/tts.sh -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/ljspeech/tts1/utils: -------------------------------------------------------------------------------- 1 | ../../../tools/kaldi/egs/wsj/s5/utils -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/mini_an4/asr1/asr.sh: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/asr.sh -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/mini_an4/asr1/conf/pitch.conf: -------------------------------------------------------------------------------- 1 | --sample-frequency=16000 2 | -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/mini_an4/asr1/db.sh: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/db.sh -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/mini_an4/asr1/local/path.sh: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/mini_an4/asr1/path.sh: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/path.sh -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/mini_an4/asr1/pyscripts: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/pyscripts -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/mini_an4/asr1/scripts: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/scripts -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/mini_an4/asr1/steps: -------------------------------------------------------------------------------- 1 | ../../../tools/kaldi/egs/wsj/s5/steps -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/mini_an4/asr1/utils: -------------------------------------------------------------------------------- 1 | ../../../tools/kaldi/egs/wsj/s5/utils -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/mini_an4/enh1/db.sh: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/db.sh -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/mini_an4/enh1/enh.sh: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/enh1/enh.sh -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/mini_an4/enh1/local: -------------------------------------------------------------------------------- 1 | ../asr1/local -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/mini_an4/enh1/path.sh: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/enh1/path.sh -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/mini_an4/enh1/pyscripts: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/pyscripts -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/mini_an4/enh1/scripts: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/enh1/scripts -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/mini_an4/enh1/steps: -------------------------------------------------------------------------------- 1 | ../../../tools/kaldi/egs/wsj/s5/steps -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/mini_an4/enh1/utils: -------------------------------------------------------------------------------- 1 | ../../../tools/kaldi/egs/wsj/s5/utils -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/mini_an4/tts1/conf/pitch.conf: -------------------------------------------------------------------------------- 1 | --sample-frequency=16000 2 | -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/mini_an4/tts1/db.sh: -------------------------------------------------------------------------------- 1 | ../../mini_an4/asr1/db.sh -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/mini_an4/tts1/local: -------------------------------------------------------------------------------- 1 | ../asr1/local -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/mini_an4/tts1/path.sh: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/tts1/path.sh -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/mini_an4/tts1/pyscripts: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/pyscripts -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/mini_an4/tts1/scripts: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/scripts -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/mini_an4/tts1/steps: -------------------------------------------------------------------------------- 1 | ../../../tools/kaldi/egs/wsj/s5/steps -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/mini_an4/tts1/tts.sh: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/tts1/tts.sh -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/mini_an4/tts1/utils: -------------------------------------------------------------------------------- 1 | ../../../tools/kaldi/egs/wsj/s5/utils -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/mini_librispeech/diar1/db.sh: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/diar1/db.sh -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/mini_librispeech/diar1/diar.sh: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/diar1/diar.sh -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/mini_librispeech/diar1/path.sh: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/diar1/path.sh -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/mini_librispeech/diar1/pyscripts: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/diar1/pyscripts -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/mini_librispeech/diar1/scripts: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/diar1/scripts -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/mini_librispeech/diar1/steps: -------------------------------------------------------------------------------- 1 | ../../../tools/kaldi/egs/wsj/s5/steps -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/mini_librispeech/diar1/utils: -------------------------------------------------------------------------------- 1 | ../../../tools/kaldi/egs/wsj/s5/utils -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/mls/asr1/asr.sh: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/asr.sh -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/mls/asr1/cmd.sh: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/cmd.sh -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/mls/asr1/conf/decode_asr.yaml: -------------------------------------------------------------------------------- 1 | tuning/decode_transformer.yaml -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/mls/asr1/conf/pitch.conf: -------------------------------------------------------------------------------- 1 | --sample-frequency=16000 2 | -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/mls/asr1/conf/train_asr.yaml: -------------------------------------------------------------------------------- 1 | tuning/train_asr_transformer.yaml -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/mls/asr1/local/path.sh: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/mls/asr1/path.sh: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/path.sh -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/mls/asr1/pyscripts: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/pyscripts -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/mls/asr1/scripts: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/scripts -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/mls/asr1/setup.sh: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/setup.sh -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/mls/asr1/steps: -------------------------------------------------------------------------------- 1 | /home/jiatong/tools/kaldi/egs/wsj/s5/steps -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/mls/asr1/utils: -------------------------------------------------------------------------------- 1 | /home/jiatong/tools/kaldi/egs/wsj/s5/utils -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/nsc/asr1/asr.sh: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/asr.sh -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/nsc/asr1/conf/decode_asr.yaml: -------------------------------------------------------------------------------- 1 | tuning/decode_transformer.yaml -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/nsc/asr1/conf/pitch.conf: -------------------------------------------------------------------------------- 1 | --sample-frequency=16000 2 | -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/nsc/asr1/conf/train_asr.yaml: -------------------------------------------------------------------------------- 1 | tuning/train_asr_transformer.yaml -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/nsc/asr1/db.sh: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/db.sh -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/nsc/asr1/local/path.sh: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/nsc/asr1/path.sh: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/path.sh -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/nsc/asr1/pyscripts: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/pyscripts -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/nsc/asr1/scripts: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/scripts -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/nsc/asr1/steps: -------------------------------------------------------------------------------- 1 | ../../../tools/kaldi/egs/wsj/s5/steps -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/nsc/asr1/utils: -------------------------------------------------------------------------------- 1 | ../../../tools/kaldi/egs/wsj/s5/utils -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/open_li52/asr1/asr.sh: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/asr.sh -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/open_li52/asr1/cmd.sh: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/cmd.sh -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/open_li52/asr1/conf/decode_asr.yaml: -------------------------------------------------------------------------------- 1 | tuning/decode_transformer.yaml -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/open_li52/asr1/conf/pitch.conf: -------------------------------------------------------------------------------- 1 | --sample-frequency=16000 2 | -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/open_li52/asr1/db.sh: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/db.sh -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/open_li52/asr1/local/path.sh: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/open_li52/asr1/path.sh: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/path.sh -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/open_li52/asr1/pyscripts: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/pyscripts -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/open_li52/asr1/scripts: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/scripts -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/open_li52/asr1/setup.sh: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/setup.sh -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/open_li52/asr1/steps: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/steps -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/open_li52/asr1/utils: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/utils -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/polyphone_swiss_french/asr1/asr.sh: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/asr.sh -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/polyphone_swiss_french/asr1/db.sh: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/db.sh -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/polyphone_swiss_french/asr1/path.sh: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/path.sh -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/polyphone_swiss_french/asr1/pyscripts: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/pyscripts -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/polyphone_swiss_french/asr1/scripts: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/scripts -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/puebla_nahuatl/asr1/asr.sh: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/asr.sh -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/puebla_nahuatl/asr1/conf/pitch.conf: -------------------------------------------------------------------------------- 1 | --sample-frequency=16000 2 | -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/puebla_nahuatl/asr1/db.sh: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/db.sh -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/puebla_nahuatl/asr1/path.sh: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/path.sh -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/puebla_nahuatl/asr1/pyscripts: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/pyscripts -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/puebla_nahuatl/asr1/scripts: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/scripts -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/puebla_nahuatl/asr1/steps: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/steps -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/puebla_nahuatl/asr1/utils: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/utils -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/reverb/asr1/asr.sh: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/asr.sh -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/reverb/asr1/conf/decode.yaml: -------------------------------------------------------------------------------- 1 | tuning/decode.yaml -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/reverb/asr1/conf/pitch.conf: -------------------------------------------------------------------------------- 1 | --sample-frequency=16000 2 | -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/reverb/asr1/db.sh: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/db.sh -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/reverb/asr1/local/path.sh: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/reverb/asr1/path.sh: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/path.sh -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/reverb/asr1/pyscripts: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/pyscripts -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/reverb/asr1/steps: -------------------------------------------------------------------------------- 1 | ../../../tools/kaldi/egs/wsj/s5/steps -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/reverb/asr1/utils: -------------------------------------------------------------------------------- 1 | ../../../tools/kaldi/egs/wsj/s5/utils -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/ru_open_stt/asr1/asr.sh: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/asr.sh -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/ru_open_stt/asr1/conf/pitch.conf: -------------------------------------------------------------------------------- 1 | --sample-frequency=16000 2 | -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/ru_open_stt/asr1/db.sh: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/db.sh -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/ru_open_stt/asr1/local/path.sh: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/ru_open_stt/asr1/path.sh: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/path.sh -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/ru_open_stt/asr1/pyscripts: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/pyscripts -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/ru_open_stt/asr1/scripts: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/scripts -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/ru_open_stt/asr1/steps: -------------------------------------------------------------------------------- 1 | ../../../tools/kaldi/egs/wsj/s5/steps -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/ru_open_stt/asr1/utils: -------------------------------------------------------------------------------- 1 | ../../../tools/kaldi/egs/wsj/s5/utils -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/sms_wsj/enh1/conf/train.yaml: -------------------------------------------------------------------------------- 1 | tuning/train_enh_beamformer_no_wpe.yaml -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/sms_wsj/enh1/db.sh: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/db.sh -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/sms_wsj/enh1/enh.sh: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/enh1/enh.sh -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/sms_wsj/enh1/path.sh: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/enh1/path.sh -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/sms_wsj/enh1/pyscripts: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/pyscripts -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/sms_wsj/enh1/scripts: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/enh1/scripts -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/sms_wsj/enh1/steps: -------------------------------------------------------------------------------- 1 | ../../../tools/kaldi/egs/wsj/s5/steps -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/sms_wsj/enh1/utils: -------------------------------------------------------------------------------- 1 | ../../../tools/kaldi/egs/wsj/s5/utils -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/spgispeech/asr1/asr.sh: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/asr.sh -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/spgispeech/asr1/conf/pitch.conf: -------------------------------------------------------------------------------- 1 | --sample-frequency=16000 2 | -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/spgispeech/asr1/db.sh: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/db.sh -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/spgispeech/asr1/local/path.sh: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/spgispeech/asr1/path.sh: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/path.sh -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/spgispeech/asr1/pyscripts: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/pyscripts -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/spgispeech/asr1/scripts: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/scripts -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/spgispeech/asr1/steps: -------------------------------------------------------------------------------- 1 | ../../../tools/kaldi/egs/wsj/s5/steps -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/spgispeech/asr1/utils: -------------------------------------------------------------------------------- 1 | ../../../tools/kaldi/egs/wsj/s5/utils -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/swbd/asr1/asr.sh: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/asr.sh -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/swbd/asr1/conf/pitch.conf: -------------------------------------------------------------------------------- 1 | --sample-frequency=16000 2 | -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/swbd/asr1/conf/train_asr.yaml: -------------------------------------------------------------------------------- 1 | tuning/train_asr_conformer2.yaml -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/swbd/asr1/conf/train_lm.yaml: -------------------------------------------------------------------------------- 1 | tuning/train_lm_transformer2.yaml -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/swbd/asr1/db.sh: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/db.sh -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/swbd/asr1/local/path.sh: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/swbd/asr1/path.sh: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/path.sh -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/swbd/asr1/pyscripts: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/pyscripts -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/swbd/asr1/scripts: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/scripts -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/swbd/asr1/steps: -------------------------------------------------------------------------------- 1 | ../../../tools/kaldi/egs/wsj/s5/steps -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/swbd/asr1/utils: -------------------------------------------------------------------------------- 1 | ../../../tools/kaldi/egs/wsj/s5/utils -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/timit/asr1/asr.sh: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/asr.sh -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/timit/asr1/conf/decode_asr.yaml: -------------------------------------------------------------------------------- 1 | tuning/decode_rnn.yaml -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/timit/asr1/conf/pitch.conf: -------------------------------------------------------------------------------- 1 | --sample-frequency=16000 2 | -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/timit/asr1/conf/train_asr.yaml: -------------------------------------------------------------------------------- 1 | tuning/train_asr_rnn.yaml -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/timit/asr1/conf/train_lm_rnn.yaml: -------------------------------------------------------------------------------- 1 | tuning/train_lm_rnn.yaml -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/timit/asr1/db.sh: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/db.sh -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/timit/asr1/local/path.sh: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/timit/asr1/path.sh: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/path.sh -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/timit/asr1/pyscripts: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/pyscripts -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/timit/asr1/scripts: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/scripts -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/timit/asr1/steps: -------------------------------------------------------------------------------- 1 | ../../../tools/kaldi/egs/wsj/s5/steps -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/timit/asr1/utils: -------------------------------------------------------------------------------- 1 | ../../../tools/kaldi/egs/wsj/s5/utils -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/vctk/tts1/conf/decode.yaml: -------------------------------------------------------------------------------- 1 | tuning/decode_tacotron2.yaml -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/vctk/tts1/conf/train.yaml: -------------------------------------------------------------------------------- 1 | tuning/train_gst_tacotron2.yaml -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/vctk/tts1/db.sh: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/db.sh -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/vctk/tts1/local/path.sh: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/vctk/tts1/path.sh: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/tts1/path.sh -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/vctk/tts1/pyscripts: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/pyscripts -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/vctk/tts1/scripts: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/scripts -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/vctk/tts1/sid: -------------------------------------------------------------------------------- 1 | ../../../tools/kaldi/egs/sre08/v1/sid -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/vctk/tts1/steps: -------------------------------------------------------------------------------- 1 | ../../../tools/kaldi/egs/wsj/s5/steps -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/vctk/tts1/tts.sh: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/tts1/tts.sh -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/vctk/tts1/utils: -------------------------------------------------------------------------------- 1 | ../../../tools/kaldi/egs/wsj/s5/utils -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/vctk_noisyreverb/enh1/db.sh: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/db.sh -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/vctk_noisyreverb/enh1/enh.sh: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/enh1/enh.sh -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/vctk_noisyreverb/enh1/local/path.sh: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/vctk_noisyreverb/enh1/path.sh: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/enh1/path.sh -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/vctk_noisyreverb/enh1/pyscripts: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/pyscripts -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/vctk_noisyreverb/enh1/scripts: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/enh1/scripts -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/vctk_noisyreverb/enh1/steps: -------------------------------------------------------------------------------- 1 | ../../../tools/kaldi/egs/wsj/s5/steps -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/vctk_noisyreverb/enh1/utils: -------------------------------------------------------------------------------- 1 | ../../../tools/kaldi/egs/wsj/s5/utils -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/vivos/asr1/asr.sh: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/asr.sh -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/vivos/asr1/conf/pitch.conf: -------------------------------------------------------------------------------- 1 | --sample-frequency=16000 2 | -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/vivos/asr1/db.sh: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/db.sh -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/vivos/asr1/local/path.sh: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/vivos/asr1/path.sh: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/path.sh -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/vivos/asr1/pyscripts: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/pyscripts -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/vivos/asr1/scripts: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/scripts -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/vivos/asr1/steps: -------------------------------------------------------------------------------- 1 | ../../../tools/kaldi/egs/wsj/s5/steps -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/vivos/asr1/utils: -------------------------------------------------------------------------------- 1 | ../../../tools/kaldi/egs/wsj/s5/utils -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/voxforge/asr1/asr.sh: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/asr.sh -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/voxforge/asr1/conf/pitch.conf: -------------------------------------------------------------------------------- 1 | --sample-frequency=16000 2 | -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/voxforge/asr1/conf/train_asr_rnn.yaml: -------------------------------------------------------------------------------- 1 | tuning/train_asr_rnn_2.yaml -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/voxforge/asr1/db.sh: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/db.sh -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/voxforge/asr1/local/path.sh: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/voxforge/asr1/path.sh: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/path.sh -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/voxforge/asr1/pyscripts: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/pyscripts -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/voxforge/asr1/scripts: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/scripts -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/voxforge/asr1/steps: -------------------------------------------------------------------------------- 1 | ../../../tools/kaldi/egs/wsj/s5/steps -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/voxforge/asr1/utils: -------------------------------------------------------------------------------- 1 | ../../../tools/kaldi/egs/wsj/s5/utils -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/wham/enh1/conf/train.yaml: -------------------------------------------------------------------------------- 1 | tuning/train_enh_rnn_tf.yaml -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/wham/enh1/db.sh: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/db.sh -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/wham/enh1/enh.sh: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/enh1/enh.sh -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/wham/enh1/local/path.sh: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/wham/enh1/path.sh: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/enh1/path.sh -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/wham/enh1/pyscripts: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/pyscripts -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/wham/enh1/scripts: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/enh1/scripts -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/wham/enh1/steps: -------------------------------------------------------------------------------- 1 | ../../../tools/kaldi/egs/wsj/s5/steps -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/wham/enh1/utils: -------------------------------------------------------------------------------- 1 | ../../../tools/kaldi/egs/wsj/s5/utils -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/whamr/enh1/conf/train.yaml: -------------------------------------------------------------------------------- 1 | tuning/train_enh_beamformer_mvdr.yaml -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/whamr/enh1/db.sh: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/db.sh -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/whamr/enh1/enh.sh: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/enh1/enh.sh -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/whamr/enh1/local/path.sh: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/whamr/enh1/path.sh: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/enh1/path.sh -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/whamr/enh1/pyscripts: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/pyscripts -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/whamr/enh1/scripts: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/enh1/scripts -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/whamr/enh1/steps: -------------------------------------------------------------------------------- 1 | ../../../tools/kaldi/egs/wsj/s5/steps -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/whamr/enh1/utils: -------------------------------------------------------------------------------- 1 | ../../../tools/kaldi/egs/wsj/s5/utils -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/wsj/asr1/asr.sh: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/asr.sh -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/wsj/asr1/conf/pitch.conf: -------------------------------------------------------------------------------- 1 | --sample-frequency=16000 2 | -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/wsj/asr1/conf/train_asr_rnn.yaml: -------------------------------------------------------------------------------- 1 | tuning/train_asr_rnn.yaml -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/wsj/asr1/conf/train_lm_rnn.yaml: -------------------------------------------------------------------------------- 1 | tuning/train_lm_adam_layers4.yaml -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/wsj/asr1/db.sh: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/db.sh -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/wsj/asr1/local/path.sh: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/wsj/asr1/path.sh: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/path.sh -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/wsj/asr1/pyscripts: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/pyscripts -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/wsj/asr1/scripts: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/scripts -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/wsj/asr1/steps: -------------------------------------------------------------------------------- 1 | ../../../tools/kaldi/egs/wsj/s5/steps -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/wsj/asr1/utils: -------------------------------------------------------------------------------- 1 | ../../../tools/kaldi/egs/wsj/s5/utils -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/wsj0_2mix/enh1/conf/train.yaml: -------------------------------------------------------------------------------- 1 | tuning/train_enh_rnn_tf.yaml -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/wsj0_2mix/enh1/db.sh: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/db.sh -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/wsj0_2mix/enh1/enh.sh: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/enh1/enh.sh -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/wsj0_2mix/enh1/local/path.sh: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/wsj0_2mix/enh1/path.sh: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/enh1/path.sh -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/wsj0_2mix/enh1/pyscripts: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/pyscripts -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/wsj0_2mix/enh1/scripts: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/enh1/scripts -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/wsj0_2mix/enh1/steps: -------------------------------------------------------------------------------- 1 | ../../../tools/kaldi/egs/wsj/s5/steps -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/wsj0_2mix/enh1/utils: -------------------------------------------------------------------------------- 1 | ../../../tools/kaldi/egs/wsj/s5/utils -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/wsj0_2mix_spatialized/enh1/db.sh: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/db.sh -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/wsj0_2mix_spatialized/enh1/enh.sh: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/enh1/enh.sh -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/wsj0_2mix_spatialized/enh1/local/path.sh: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/wsj0_2mix_spatialized/enh1/path.sh: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/enh1/path.sh -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/wsj0_2mix_spatialized/enh1/pyscripts: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/pyscripts -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/wsj0_2mix_spatialized/enh1/scripts: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/enh1/scripts -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/yesno/asr1/asr.sh: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/asr.sh -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/yesno/asr1/conf/pitch.conf: -------------------------------------------------------------------------------- 1 | --sample-frequency=8000 2 | -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/yesno/asr1/db.sh: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/db.sh -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/yesno/asr1/local/path.sh: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/yesno/asr1/path.sh: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/path.sh -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/yesno/asr1/pyscripts: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/pyscripts -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/yesno/asr1/scripts: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/scripts -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/yesno/asr1/steps: -------------------------------------------------------------------------------- 1 | ../../../tools/kaldi/egs/wsj/s5/steps -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/yesno/asr1/utils: -------------------------------------------------------------------------------- 1 | ../../../tools/kaldi/egs/wsj/s5/utils -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/yoloxochitl_mixtec/asr1/asr.sh: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/asr.sh -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/yoloxochitl_mixtec/asr1/db.sh: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/db.sh -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/yoloxochitl_mixtec/asr1/local/path.sh: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/yoloxochitl_mixtec/asr1/path.sh: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/path.sh -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/yoloxochitl_mixtec/asr1/pyscripts: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/pyscripts -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/yoloxochitl_mixtec/asr1/scripts: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/scripts -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/yoloxochitl_mixtec/asr1/steps: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/steps -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/yoloxochitl_mixtec/asr1/utils: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/utils -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/zeroth_korean/asr1/asr.sh: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/asr.sh -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/zeroth_korean/asr1/conf/pitch.conf: -------------------------------------------------------------------------------- 1 | --sample-frequency=16000 2 | -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/zeroth_korean/asr1/conf/train_asr_rnn.yaml: -------------------------------------------------------------------------------- 1 | tuning/train_asr_rnn.yaml -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/zeroth_korean/asr1/conf/train_lm.yaml: -------------------------------------------------------------------------------- 1 | tuning/train_lm.yaml -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/zeroth_korean/asr1/db.sh: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/db.sh -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/zeroth_korean/asr1/path.sh: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/path.sh -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/zeroth_korean/asr1/pyscripts: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/pyscripts -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/zeroth_korean/asr1/scripts: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/scripts -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/zeroth_korean/asr1/steps: -------------------------------------------------------------------------------- 1 | ../../../tools/kaldi/egs/wsj/s5/steps -------------------------------------------------------------------------------- /ASR/ESPNet/egs2/zeroth_korean/asr1/utils: -------------------------------------------------------------------------------- 1 | ../../../tools/kaldi/egs/wsj/s5/utils -------------------------------------------------------------------------------- /ASR/ESPNet/espnet/asr/__init__.py: -------------------------------------------------------------------------------- 1 | """Initialize sub package.""" 2 | -------------------------------------------------------------------------------- /ASR/ESPNet/espnet/asr/chainer_backend/__init__.py: -------------------------------------------------------------------------------- 1 | """Initialize sub package.""" 2 | -------------------------------------------------------------------------------- /ASR/ESPNet/espnet/asr/pytorch_backend/__init__.py: -------------------------------------------------------------------------------- 1 | """Initialize sub package.""" 2 | -------------------------------------------------------------------------------- /ASR/ESPNet/espnet/bin/__init__.py: -------------------------------------------------------------------------------- 1 | """Initialize sub package.""" 2 | -------------------------------------------------------------------------------- /ASR/ESPNet/espnet/lm/__init__.py: -------------------------------------------------------------------------------- 1 | """Initialize sub package.""" 2 | -------------------------------------------------------------------------------- /ASR/ESPNet/espnet/lm/chainer_backend/__init__.py: -------------------------------------------------------------------------------- 1 | """Initialize sub package.""" 2 | -------------------------------------------------------------------------------- /ASR/ESPNet/espnet/lm/pytorch_backend/__init__.py: -------------------------------------------------------------------------------- 1 | """Initialize sub package.""" 2 | -------------------------------------------------------------------------------- /ASR/ESPNet/espnet/mt/__init__.py: -------------------------------------------------------------------------------- 1 | """Initialize sub package.""" 2 | -------------------------------------------------------------------------------- /ASR/ESPNet/espnet/mt/pytorch_backend/__init__.py: -------------------------------------------------------------------------------- 1 | """Initialize sub package.""" 2 | -------------------------------------------------------------------------------- /ASR/ESPNet/espnet/nets/__init__.py: -------------------------------------------------------------------------------- 1 | """Initialize sub package.""" 2 | -------------------------------------------------------------------------------- /ASR/ESPNet/espnet/nets/scorers/__init__.py: -------------------------------------------------------------------------------- 1 | """Initialize sub package.""" 2 | -------------------------------------------------------------------------------- /ASR/ESPNet/espnet/optimizer/__init__.py: -------------------------------------------------------------------------------- 1 | """Initialize sub package.""" 2 | -------------------------------------------------------------------------------- /ASR/ESPNet/espnet/scheduler/__init__.py: -------------------------------------------------------------------------------- 1 | """Initialize sub package.""" 2 | -------------------------------------------------------------------------------- /ASR/ESPNet/espnet/st/__init__.py: -------------------------------------------------------------------------------- 1 | """Initialize sub package.""" 2 | -------------------------------------------------------------------------------- /ASR/ESPNet/espnet/st/pytorch_backend/__init__.py: -------------------------------------------------------------------------------- 1 | """Initialize sub package.""" 2 | -------------------------------------------------------------------------------- /ASR/ESPNet/espnet/transform/__init__.py: -------------------------------------------------------------------------------- 1 | """Initialize main package.""" 2 | -------------------------------------------------------------------------------- /ASR/ESPNet/espnet/tts/__init__.py: -------------------------------------------------------------------------------- 1 | """Initialize sub package.""" 2 | -------------------------------------------------------------------------------- /ASR/ESPNet/espnet/tts/pytorch_backend/__init__.py: -------------------------------------------------------------------------------- 1 | """Initialize sub package.""" 2 | -------------------------------------------------------------------------------- /ASR/ESPNet/espnet/utils/__init__.py: -------------------------------------------------------------------------------- 1 | """Initialize sub package.""" 2 | -------------------------------------------------------------------------------- /ASR/ESPNet/espnet/utils/training/__init__.py: -------------------------------------------------------------------------------- 1 | """Initialize sub package.""" 2 | -------------------------------------------------------------------------------- /ASR/ESPNet/espnet/version.txt: -------------------------------------------------------------------------------- 1 | 0.10.0 2 | -------------------------------------------------------------------------------- /ASR/ESPNet/espnet2/asr/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ASR/ESPNet/espnet2/asr/decoder/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ASR/ESPNet/espnet2/asr/encoder/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ASR/ESPNet/espnet2/asr/frontend/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ASR/ESPNet/espnet2/asr/preencoder/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ASR/ESPNet/espnet2/asr/specaug/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ASR/ESPNet/espnet2/bin/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ASR/ESPNet/espnet2/diar/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ASR/ESPNet/espnet2/diar/decoder/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ASR/ESPNet/espnet2/enh/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ASR/ESPNet/espnet2/enh/decoder/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ASR/ESPNet/espnet2/enh/encoder/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ASR/ESPNet/espnet2/enh/layers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ASR/ESPNet/espnet2/enh/separator/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ASR/ESPNet/espnet2/fileio/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ASR/ESPNet/espnet2/iterators/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ASR/ESPNet/espnet2/layers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ASR/ESPNet/espnet2/lm/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ASR/ESPNet/espnet2/main_funcs/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ASR/ESPNet/espnet2/optimizers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ASR/ESPNet/espnet2/samplers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ASR/ESPNet/espnet2/schedulers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ASR/ESPNet/espnet2/tasks/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ASR/ESPNet/espnet2/text/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ASR/ESPNet/espnet2/torch_utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ASR/ESPNet/espnet2/train/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ASR/ESPNet/espnet2/tts/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ASR/ESPNet/espnet2/tts/feats_extract/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ASR/ESPNet/espnet2/tts/gst/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ASR/ESPNet/espnet2/utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ASR/ESPNet/test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ASR/ESPNet/test/espnet2/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ASR/ESPNet/test/espnet2/asr/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ASR/ESPNet/test/espnet2/asr/decoder/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ASR/ESPNet/test/espnet2/asr/encoder/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ASR/ESPNet/test/espnet2/asr/frontend/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ASR/ESPNet/test/espnet2/bin/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ASR/ESPNet/test/espnet2/fileio/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ASR/ESPNet/test/espnet2/iterators/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ASR/ESPNet/test/espnet2/layers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ASR/ESPNet/test/espnet2/lm/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ASR/ESPNet/test/espnet2/main_funcs/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ASR/ESPNet/test/espnet2/optimizers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ASR/ESPNet/test/espnet2/samplers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ASR/ESPNet/test/espnet2/schedulers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ASR/ESPNet/test/espnet2/tasks/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ASR/ESPNet/test/espnet2/text/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ASR/ESPNet/test/espnet2/torch_utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ASR/ESPNet/test/espnet2/train/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ASR/ESPNet/test/espnet2/tts/feats_extract/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ASR/ESPNet/test/espnet2/utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ASR/ESPNet/tools/activate_python.sh: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ASR/SpeechBrain/recipes/AISHELL-1/ASR/seq2seq/prepare.py: -------------------------------------------------------------------------------- 1 | ../../prepare.py -------------------------------------------------------------------------------- /ASR/SpeechBrain/recipes/AISHELL-1/ASR/transformer/.gitignore: -------------------------------------------------------------------------------- 1 | data/ 2 | results/ -------------------------------------------------------------------------------- /ASR/SpeechBrain/recipes/AISHELL-1/ASR/transformer/prepare.py: -------------------------------------------------------------------------------- 1 | ../../prepare.py -------------------------------------------------------------------------------- /ASR/SpeechBrain/recipes/AISHELL-1/Tokenizer/prepare.py: -------------------------------------------------------------------------------- 1 | ../prepare.py -------------------------------------------------------------------------------- /ASR/SpeechBrain/recipes/AMI/Diarization/ami_prepare.py: -------------------------------------------------------------------------------- 1 | ../ami_prepare.py -------------------------------------------------------------------------------- /ASR/SpeechBrain/recipes/AMI/Diarization/extra_requirements.txt: -------------------------------------------------------------------------------- 1 | sklearn 2 | -------------------------------------------------------------------------------- /ASR/SpeechBrain/recipes/DNS/enhance/spectral_map/dns_prepare.py: -------------------------------------------------------------------------------- 1 | ../../dns_prepare.py -------------------------------------------------------------------------------- /ASR/SpeechBrain/recipes/LibriParty/generate_dataset/local/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ASR/SpeechBrain/recipes/SLURP/NLU/prepare.py: -------------------------------------------------------------------------------- 1 | ../prepare.py -------------------------------------------------------------------------------- /ASR/SpeechBrain/recipes/SLURP/Tokenizer/prepare.py: -------------------------------------------------------------------------------- 1 | ../prepare.py -------------------------------------------------------------------------------- /ASR/SpeechBrain/recipes/SLURP/direct/prepare.py: -------------------------------------------------------------------------------- 1 | ../prepare.py -------------------------------------------------------------------------------- /ASR/SpeechBrain/recipes/TIMIT/ASR/CTC/timit_prepare.py: -------------------------------------------------------------------------------- 1 | ../../timit_prepare.py -------------------------------------------------------------------------------- /ASR/SpeechBrain/recipes/TIMIT/ASR/seq2seq/timit_prepare.py: -------------------------------------------------------------------------------- 1 | ../../timit_prepare.py -------------------------------------------------------------------------------- /ASR/SpeechBrain/recipes/TIMIT/ASR/transducer/timit_prepare.py: -------------------------------------------------------------------------------- 1 | ../../timit_prepare.py -------------------------------------------------------------------------------- /ASR/SpeechBrain/recipes/TIMIT/Alignment/timit_prepare.py: -------------------------------------------------------------------------------- 1 | ../timit_prepare.py -------------------------------------------------------------------------------- /ASR/SpeechBrain/recipes/WSJ0Mix/extra-dependencies.txt: -------------------------------------------------------------------------------- 1 | mir-eval==0.6 2 | -------------------------------------------------------------------------------- /ASR/SpeechBrain/recipes/fluent-speech-commands/Tokenizer/prepare.py: -------------------------------------------------------------------------------- 1 | ../prepare.py -------------------------------------------------------------------------------- /ASR/SpeechBrain/recipes/fluent-speech-commands/direct/prepare.py: -------------------------------------------------------------------------------- 1 | ../prepare.py -------------------------------------------------------------------------------- /ASR/SpeechBrain/recipes/fluent-speech-commands/extra_requirements.txt: -------------------------------------------------------------------------------- 1 | pandas 2 | -------------------------------------------------------------------------------- /ASR/SpeechBrain/recipes/timers-and-such/LM/prepare.py: -------------------------------------------------------------------------------- 1 | ../prepare.py -------------------------------------------------------------------------------- /ASR/SpeechBrain/recipes/timers-and-such/Tokenizer/prepare.py: -------------------------------------------------------------------------------- 1 | ../prepare.py -------------------------------------------------------------------------------- /ASR/SpeechBrain/recipes/timers-and-such/decoupled/prepare.py: -------------------------------------------------------------------------------- 1 | ../prepare.py -------------------------------------------------------------------------------- /ASR/SpeechBrain/recipes/timers-and-such/direct/prepare.py: -------------------------------------------------------------------------------- 1 | ../prepare.py -------------------------------------------------------------------------------- /ASR/SpeechBrain/recipes/timers-and-such/multistage/prepare.py: -------------------------------------------------------------------------------- 1 | ../prepare.py -------------------------------------------------------------------------------- /ASR/SpeechBrain/speechbrain/version.txt: -------------------------------------------------------------------------------- 1 | 0.5.9 2 | -------------------------------------------------------------------------------- /MT/Fairseq/docs/docutils.conf: -------------------------------------------------------------------------------- 1 | [writers] 2 | option-limit=0 3 | -------------------------------------------------------------------------------- /MT/Fairseq/examples/translation/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /MT/Fairseq/examples/translation/disentangled_transformer/.gitignore: -------------------------------------------------------------------------------- 1 | notebooks/ -------------------------------------------------------------------------------- /MT/Fairseq/examples/translation/disentangled_transformer/modules/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /MT/Fairseq/examples/translation/disentangled_transformer/utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /MT/Fairseq/fairseq/data/audio/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /MT/Fairseq/fairseq/logging/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /MT/Fairseq/fairseq/modules/quantization/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /MT/Fairseq/fairseq/version.txt: -------------------------------------------------------------------------------- 1 | 1.0.0a0 2 | -------------------------------------------------------------------------------- /MT/Fairseq/fairseq_cli/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /MT/Fairseq/scripts/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /MT/Fairseq/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /MT/Fairseq/tests/distributed/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /MT/Fairseq/tests/gpu/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /MT/Fairseq/tests/speech_recognition/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Server/ReactJS_Flask/.gitignore: -------------------------------------------------------------------------------- 1 | .vscode/ --------------------------------------------------------------------------------