├── .coveragerc ├── .dockerignore ├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ ├── installation-issue-template.md │ └── question.md ├── PULL_REQUEST_TEMPLATE.md ├── stale.yml └── workflows │ ├── cancel_workflows.yml │ ├── ci_on_centos7_yml.eol │ ├── ci_on_debian11.yml │ ├── ci_on_macos.yml │ ├── ci_on_ubuntu.yml │ ├── ci_on_windows.yml │ ├── publish_doc.yml │ ├── publish_docker_image.yml │ ├── publish_paper_pdf.yml │ └── publish_python_package.yml ├── .gitignore ├── .gitmodules ├── .mergify.yml ├── .pre-commit-config.yaml ├── CONTRIBUTING.md ├── README.md ├── ci ├── check_kaldi_symlinks.sh ├── doc.sh ├── install.sh ├── install_kaldi.sh ├── install_macos.sh ├── test_configuration_espnet2.sh ├── test_flake8.sh ├── test_import_all.py ├── test_integration_espnet1.sh ├── test_integration_espnet2.sh ├── test_integration_espnetez.sh ├── test_python_espnet1.sh ├── test_python_espnet2.sh ├── test_python_espnetez.sh ├── test_shell_espnet1.sh ├── test_shell_espnet2.sh └── test_utils.sh ├── codecov.yml ├── doc ├── .gitignore ├── Makefile ├── README.md ├── apis │ ├── espnet2_bin.rst │ ├── espnet_bin.rst │ ├── utils_py.rst │ └── utils_sh.rst ├── argparse2rst.py ├── conf.py ├── docker.md ├── espnet1_tutorial.md ├── espnet2_distributed.md ├── espnet2_format_wav_scp.md ├── espnet2_task.md ├── espnet2_training_option.md ├── espnet2_tutorial.md ├── faq.md ├── image │ ├── environment_structure.png │ └── espnet_logo1.png ├── index.rst ├── installation.md ├── make.bat ├── make_release_note_from_milestone.py ├── module2rst.py ├── notebook2rst.sh ├── paper │ └── espnet-se++ │ │ ├── graphics │ │ ├── UML_Joint.png │ │ ├── UML_SSE.png │ │ ├── data_structure.png │ │ ├── enh_asr_script.png │ │ ├── enh_script.png │ │ ├── espnet-SE++.png │ │ ├── inference.png │ │ ├── inference_SSE.png │ │ ├── inference_joint.png │ │ └── joint_init.png │ │ ├── paper.bib │ │ └── paper.md ├── parallelization.md ├── tutorial.md └── usage2rst.sh ├── docker ├── .default_args ├── .gitignore ├── README.md ├── build.sh ├── espnet.dockerfile ├── prebuilt │ ├── devel.dockerfile │ ├── gpu.dockerfile │ └── runtime.dockerfile └── run.sh ├── egs ├── README.md ├── aesrc2020 │ └── 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 │ │ ├── create_subsets.sh │ │ ├── data_prep.sh │ │ ├── download_and_untar.sh │ │ ├── files │ │ │ ├── ar.dict │ │ │ └── cvlist │ │ │ │ ├── CA_cv_spk │ │ │ │ ├── CHN_cv_spk │ │ │ │ ├── ES_cv_spk │ │ │ │ ├── IND_cv_spk │ │ │ │ ├── JPN_cv_spk │ │ │ │ ├── KR_cv_spk │ │ │ │ ├── PT_cv_spk │ │ │ │ ├── RU_cv_spk │ │ │ │ ├── UK_cv_spk │ │ │ │ └── US_cv_spk │ │ └── preprocess.py │ │ ├── path.sh │ │ ├── run.sh │ │ ├── steps │ │ └── utils ├── 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 │ │ ├── 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 │ │ │ └── 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 │ │ ├── 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_indic │ └── tts1 │ │ ├── cmd.sh │ │ ├── conf │ │ ├── decode.yaml │ │ ├── gpu.conf │ │ ├── queue.conf │ │ ├── slurm.conf │ │ ├── train_pytorch_tacotron2.v3.finetune.yaml │ │ ├── train_pytorch_transformer.v1.single.finetune.mailabs.en_UK.elizabeth.transformer.v1.single.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 ├── 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 │ │ │ ├── decode_alsd.yaml │ │ │ ├── decode_default.yaml │ │ │ ├── decode_maes.yaml │ │ │ ├── decode_nsc.yaml │ │ │ ├── decode_tsd.yaml │ │ │ ├── train_conformer-rnn_transducer.yaml │ │ │ └── train_conformer-rnn_transducer_aux.yaml │ │ │ └── cy_train_conformer-rnn_transducer.yaml │ │ ├── local │ │ ├── data_prep.pl │ │ └── download_and_untar.sh │ │ ├── path.sh │ │ ├── run.sh │ │ ├── steps │ │ └── utils ├── covost2 │ ├── 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_conformer.yaml │ │ │ │ └── train_pytorch_transformer.yaml │ │ ├── local │ │ ├── path.sh │ │ ├── run.sh │ │ ├── steps │ │ └── utils │ ├── mt1 │ │ ├── cmd.sh │ │ ├── conf │ │ │ ├── gpu.conf │ │ │ ├── queue.conf │ │ │ ├── slurm.conf │ │ │ └── tuning │ │ │ │ └── train_pytorch_transformer.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_beam4.yaml │ │ │ └── train_pytorch_conformer_ctcasr0.3.yaml │ │ ├── local │ │ ├── data_prep_commonvoice.pl │ │ ├── data_prep_covost2.sh │ │ ├── download_and_untar_commonvoice.sh │ │ └── process_tsv.py │ │ ├── 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_conformer_kernel15.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.yaml │ │ │ │ ├── decode_pytorch_transformer_char.yaml │ │ │ │ ├── decode_pytorch_transformer_nolm.yaml │ │ │ │ ├── decode_rnn.yaml │ │ │ │ ├── lm.yaml │ │ │ │ ├── train_pytorch_conformer.yaml │ │ │ │ ├── train_pytorch_transformer.yaml │ │ │ │ ├── train_pytorch_transformer_char.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.yaml │ │ │ │ ├── decode_pytorch_transformer.yaml │ │ │ │ ├── decode_pytorch_transformer_bpe8k.yaml │ │ │ │ ├── decode_rnn.yaml │ │ │ │ ├── train_pytorch_transformer.yaml │ │ │ │ ├── train_pytorch_transformer_char.yaml │ │ │ │ ├── train_pytorch_transformer_large.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.yaml │ │ │ ├── decode_pytorch_transformer_char.yaml │ │ │ ├── decode_pytorch_transformer_pretrain.yaml │ │ │ ├── decode_rnn.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 │ │ ├── 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_conformer_selfconditioned.yaml │ │ │ │ ├── train_pytorch_transformer.yaml │ │ │ │ ├── train_pytorch_transformer_large_ngpu4.yaml │ │ │ │ ├── train_pytorch_transformer_lr5.0_ag8.v2.yaml │ │ │ │ ├── train_rnn.yaml │ │ │ │ └── transducer │ │ │ │ ├── decode.yaml │ │ │ │ └── train_conformer-rnn_transducer.yaml │ │ ├── local │ │ │ ├── data_prep.sh │ │ │ └── download_and_untar.sh │ │ ├── path.sh │ │ ├── run.sh │ │ ├── steps │ │ └── utils │ └── tts1 │ │ └── README.md ├── librispeech_100 │ └── asr1 │ │ ├── RESULTS.md │ │ ├── cmd.sh │ │ ├── conf │ │ ├── fbank.conf │ │ ├── gpu.conf │ │ ├── pitch.conf │ │ ├── queue.conf │ │ ├── slurm.conf │ │ ├── specaug.yaml │ │ └── tuning │ │ │ ├── decode_ctc.yaml │ │ │ ├── decode_ctcatt.yaml │ │ │ ├── decode_transducer.yaml │ │ │ ├── train_conformer_ctc.yaml │ │ │ ├── train_conformer_ctcatt.yaml │ │ │ └── train_conformer_transducer.yaml │ │ ├── local │ │ ├── path.sh │ │ ├── run.sh │ │ ├── steps │ │ └── utils ├── 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 ├── lrs │ ├── README.md │ └── avsr1 │ │ ├── RESULTS.md │ │ ├── cmd.sh │ │ ├── conf │ │ ├── decode.yaml │ │ ├── fbank.conf │ │ ├── gpu.conf │ │ ├── lm.yaml │ │ ├── mfcc.conf │ │ ├── mfcc_hires.conf │ │ ├── pitch.conf │ │ ├── queue.conf │ │ ├── slurm.conf │ │ ├── specaug.yaml │ │ └── train.yaml │ │ ├── local │ │ ├── CMakeLists.txt │ │ ├── download.sh │ │ ├── installpackage.sh │ │ ├── se_batch.py │ │ └── show_result.sh │ │ ├── path.sh │ │ ├── run.sh │ │ ├── steps │ │ └── utils ├── lrs2 │ └── asr1 │ │ ├── RESULTS.md │ │ ├── cmd.sh │ │ ├── conf │ │ ├── decode.yaml │ │ ├── fbank.conf │ │ ├── gpu.conf │ │ ├── lm.yaml │ │ ├── pitch.conf │ │ ├── queue.conf │ │ ├── slurm.conf │ │ ├── specaug.yaml │ │ └── train.yaml │ │ ├── local │ │ ├── README.md │ │ ├── data_preparation.sh │ │ ├── make_files.py │ │ └── pretrain.py │ │ ├── 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_conformer_transducer_aux.yaml │ │ │ ├── train_mulenc2.yaml │ │ │ ├── train_multispkr.yaml │ │ │ ├── train_multispkr_transformer.yaml │ │ │ ├── train_no_ctc.yaml │ │ │ ├── train_pure_ctc.yaml │ │ │ ├── train_transducer.yaml │ │ │ ├── train_transducer_aux.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 ├── mtedx │ ├── mt1 │ │ ├── cmd.sh │ │ ├── conf │ │ │ ├── decode.yaml │ │ │ └── tuning │ │ │ │ ├── decode_pytorch_transformer.lc.rm.yaml │ │ │ │ ├── decode_pytorch_transformer.tc.yaml │ │ │ │ └── train_pytorch_transformer.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_beam4.yaml │ │ │ └── train_pytorch_conformer_ctcasr0.3.yaml │ │ ├── local │ │ ├── copy_data_dir.sh │ │ └── data_prep.sh │ │ ├── path.sh │ │ ├── run.sh │ │ ├── steps │ │ └── utils ├── mucs21_subtask1 │ └── asr1 │ │ ├── cmd.sh │ │ ├── conf │ │ ├── decode.yaml │ │ ├── fbank.conf │ │ ├── gpu.conf │ │ ├── lm.yaml │ │ ├── pitch.conf │ │ ├── queue.conf │ │ ├── slurm.conf │ │ ├── specaug.yaml │ │ └── train.yaml │ │ ├── local │ │ ├── check_audio_data_folder.sh │ │ ├── download_data.sh │ │ ├── prepare_data.sh │ │ ├── test_data_prep.sh │ │ └── train_data_prep.sh │ │ ├── path.sh │ │ ├── run.sh │ │ ├── steps │ │ └── utils ├── mucs21_subtask2 │ └── asr1 │ │ ├── RESULTS.md │ │ ├── cmd.sh │ │ ├── conf │ │ ├── decode.yaml │ │ ├── fbank.conf │ │ ├── gpu.conf │ │ ├── lm.yaml │ │ ├── pitch.conf │ │ ├── queue.conf │ │ ├── slurm.conf │ │ ├── specaug.yaml │ │ └── train.yaml │ │ ├── local │ │ ├── download_data.sh │ │ ├── gen_wavscp.sh │ │ └── prepare_data.sh │ │ ├── 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_maes.yaml │ │ │ ├── decode_nsc.yaml │ │ │ ├── decode_tsd.yaml │ │ │ ├── train_conformer-rnn_transducer.yaml │ │ │ ├── train_conformer-rnn_transducer_aux.yaml │ │ │ ├── train_rnn_transducer.yaml │ │ │ └── train_rnn_transducer_aux.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_maes.yaml │ │ │ ├── decode_nsc.yaml │ │ │ ├── decode_tsd.yaml │ │ │ ├── train_conformer-rnn_transducer.yaml │ │ │ ├── train_conformer-rnn_transducer_aux.yaml │ │ │ ├── train_rnn_transducer.yaml │ │ │ └── train_rnn_transducer_aux.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_interctc.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 │ │ ├── README_multitask.md │ │ ├── asr.sh │ │ ├── cmd.sh │ │ ├── conf │ │ │ ├── fbank.conf │ │ │ ├── pbs.conf │ │ │ ├── pitch.conf │ │ │ ├── queue.conf │ │ │ └── slurm.conf │ │ ├── db.sh │ │ ├── local │ │ │ └── path.sh │ │ ├── path.sh │ │ ├── pyscripts │ │ │ ├── README.md │ │ │ ├── audio │ │ │ │ ├── compute_vad.py │ │ │ │ ├── format_wav_scp.py │ │ │ │ └── trim_silence.py │ │ │ ├── feats │ │ │ │ ├── apply_pca.py │ │ │ │ ├── apply_pca_cuml.py │ │ │ │ ├── dump_codec.py │ │ │ │ ├── dump_km_label.py │ │ │ │ ├── dump_ssl_feature.py │ │ │ │ ├── feat-to-shape.py │ │ │ │ ├── feats_apply_cluster_cuml.py │ │ │ │ ├── feats_apply_cluster_faiss.py │ │ │ │ ├── feats_cluster_cuml.py │ │ │ │ ├── feats_cluster_faiss.py │ │ │ │ ├── mean_pool_scp.py │ │ │ │ ├── measure_teacher_quality.py │ │ │ │ ├── merge_clusters.py │ │ │ │ ├── pca.py │ │ │ │ ├── pca_cuml.py │ │ │ │ ├── ssl_feature_utils.py │ │ │ │ └── unique_pseudo_labels.py │ │ │ ├── k2 │ │ │ │ ├── compile_hlg.py │ │ │ │ └── prepare_lang.py │ │ │ ├── text │ │ │ │ ├── combine_text_and_vocab.py │ │ │ │ ├── make_text_scp.py │ │ │ │ └── post_processing.py │ │ │ └── utils │ │ │ │ ├── aggregate_codec_eval.py │ │ │ │ ├── asvspoof_score.py │ │ │ │ ├── calculate_bitrate.py │ │ │ │ ├── calculate_eer_mindcf.py │ │ │ │ ├── calculate_rtf.py │ │ │ │ ├── calculate_speech_metrics.py │ │ │ │ ├── check_align.py │ │ │ │ ├── convert_rttm.py │ │ │ │ ├── convert_text_to_phn.py │ │ │ │ ├── convert_to_avg_spk_embed.py │ │ │ │ ├── convert_token2json.py │ │ │ │ ├── create_README_file.py │ │ │ │ ├── eval_perm_free_error.py │ │ │ │ ├── evaluate_cfsd.py │ │ │ │ ├── evaluate_f0.py │ │ │ │ ├── evaluate_mcd.py │ │ │ │ ├── evaluate_pseudomos.py │ │ │ │ ├── evaluate_secs.py │ │ │ │ ├── evaluate_semitone.py │ │ │ │ ├── evaluate_speechbertscore.py │ │ │ │ ├── evaluate_speechbleu.py │ │ │ │ ├── evaluate_vuv.py │ │ │ │ ├── evaluate_whisper_inference.py │ │ │ │ ├── extract_spk_embed.py │ │ │ │ ├── format_score_scp.py │ │ │ │ ├── generate_cohort_list.py │ │ │ │ ├── generate_qmf_train_list.py │ │ │ │ ├── get_model_names.py │ │ │ │ ├── get_yaml.py │ │ │ │ ├── learn_kmeans.py │ │ │ │ ├── make_example_list_speechlm.py │ │ │ │ ├── make_rttm.py │ │ │ │ ├── make_speechlm_json.py │ │ │ │ ├── make_token_list_from_config.py │ │ │ │ ├── make_token_list_speechlm.py │ │ │ │ ├── mfa_format.py │ │ │ │ ├── plot_sinc_filters.py │ │ │ │ ├── prep_segments.py │ │ │ │ ├── prep_segments_from_xml.py │ │ │ │ ├── print_args.py │ │ │ │ ├── remove_duplicate_keys.py │ │ │ │ ├── rotate_logfile.py │ │ │ │ ├── score_intent.py │ │ │ │ ├── score_lang_id.py │ │ │ │ ├── score_summarization.py │ │ │ │ ├── simuleval_agent.py │ │ │ │ ├── sklearn_km.py │ │ │ │ ├── spk_apply_qmf_func.py │ │ │ │ ├── spk_apply_score_norm.py │ │ │ │ ├── spk_calculate_scores_from_embeddings.py │ │ │ │ └── utt2spk_to_utt2sid.py │ │ ├── scripts │ │ │ ├── README.md │ │ │ ├── TEMPLATE_Readme.md │ │ │ ├── audio │ │ │ │ ├── compute_vad.sh │ │ │ │ ├── format_score_scp.sh │ │ │ │ ├── format_wav_scp.sh │ │ │ │ └── trim_silence.sh │ │ │ ├── feats │ │ │ │ ├── codec_tokenization.sh │ │ │ │ ├── feat_to_shape.sh │ │ │ │ ├── feats_clustering.sh │ │ │ │ ├── feats_clustering_cuml.sh │ │ │ │ ├── make_fbank.sh │ │ │ │ ├── make_stft.sh │ │ │ │ └── perform_kmeans.sh │ │ │ ├── k2 │ │ │ │ └── make_lexicon.sh │ │ │ ├── text │ │ │ │ └── run_spm.sh │ │ │ └── utils │ │ │ │ ├── TEMPLATE_HF_Readme.md │ │ │ │ ├── calculate_speech_metrics.sh │ │ │ │ ├── download_from_google_drive.sh │ │ │ │ ├── enhance_dataset.sh │ │ │ │ ├── evaluate_asr.sh │ │ │ │ ├── evaluate_asr_bleu.sh │ │ │ │ ├── mfa.sh │ │ │ │ ├── perturb_data_dir_speed.sh │ │ │ │ ├── perturb_enh_data_dir_speed.sh │ │ │ │ ├── print_args.sh │ │ │ │ ├── remove_punctuation.pl │ │ │ │ ├── score_der.sh │ │ │ │ ├── show_asr_result.sh │ │ │ │ ├── show_asvspoof_result.sh │ │ │ │ ├── show_diar_result.sh │ │ │ │ ├── show_enh_score.sh │ │ │ │ ├── show_spk_result.py │ │ │ │ ├── show_translation_result.sh │ │ │ │ ├── simple_dict.sh │ │ │ │ └── upload_models_to_hub.sh │ │ ├── setup.sh │ │ ├── steps │ │ │ ├── README.md │ │ │ ├── compute_cmvn_stats.sh │ │ │ ├── data │ │ │ │ ├── data_dir_manipulation_lib.py │ │ │ │ └── reverberate_data_dir.py │ │ │ ├── libs │ │ │ │ ├── __init__.py │ │ │ │ ├── common.py │ │ │ │ └── nnet3 │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── report │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── log_parse.py │ │ │ │ │ ├── train │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── chain_objf │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ └── acoustic_model.py │ │ │ │ │ ├── common.py │ │ │ │ │ ├── dropout_schedule.py │ │ │ │ │ └── frame_level_objf │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── acoustic_model.py │ │ │ │ │ │ ├── common.py │ │ │ │ │ │ └── raw_model.py │ │ │ │ │ └── xconfig │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── attention.py │ │ │ │ │ ├── basic_layers.py │ │ │ │ │ ├── composite_layers.py │ │ │ │ │ ├── convolution.py │ │ │ │ │ ├── gru.py │ │ │ │ │ ├── layers.py │ │ │ │ │ ├── lstm.py │ │ │ │ │ ├── parser.py │ │ │ │ │ ├── stats_layer.py │ │ │ │ │ ├── trivial_layers.py │ │ │ │ │ └── utils.py │ │ │ ├── make_fbank_pitch.sh │ │ │ ├── make_mfcc.sh │ │ │ ├── make_mfcc_pitch.sh │ │ │ └── segmentation │ │ │ │ └── convert_utt2spk_and_segments_to_rttm.py │ │ └── utils │ │ │ ├── README.md │ │ │ ├── apply_map.pl │ │ │ ├── combine_data.sh │ │ │ ├── copy_data_dir.sh │ │ │ ├── create_data_link.pl │ │ │ ├── create_split_dir.pl │ │ │ ├── data │ │ │ ├── combine_data.sh │ │ │ ├── extend_segment_times.py │ │ │ ├── fix_data_dir.sh │ │ │ ├── get_reco2dur.sh │ │ │ ├── get_segments_for_data.sh │ │ │ ├── get_utt2dur.sh │ │ │ ├── internal │ │ │ │ └── modify_speaker_info.py │ │ │ ├── modify_speaker_info.sh │ │ │ ├── remove_dup_utts.sh │ │ │ ├── resample_data_dir.sh │ │ │ ├── split_data.sh │ │ │ └── subset_data_dir.sh │ │ │ ├── download_from_google_drive.sh │ │ │ ├── filter_scp.pl │ │ │ ├── filter_scps.pl │ │ │ ├── fix_data_dir.sh │ │ │ ├── parallel │ │ │ ├── pbs.pl │ │ │ ├── queue.pl │ │ │ ├── retry.pl │ │ │ ├── run.pl │ │ │ └── slurm.pl │ │ │ ├── parse_options.sh │ │ │ ├── pbs.pl │ │ │ ├── queue.pl │ │ │ ├── retry.pl │ │ │ ├── run.pl │ │ │ ├── shuffle_list.pl │ │ │ ├── simple_dict.sh │ │ │ ├── slurm.pl │ │ │ ├── spk2utt_to_utt2spk.pl │ │ │ ├── split_scp.pl │ │ │ ├── subset_data_dir.sh │ │ │ ├── subset_data_dir_tr_cv.sh │ │ │ ├── subset_scp.pl │ │ │ ├── utt2spk_to_spk2utt.pl │ │ │ ├── validate_data_dir.sh │ │ │ └── validate_text.pl │ ├── asr2 │ │ ├── README.md │ │ ├── asr2.sh │ │ ├── cmd.sh │ │ ├── conf │ │ │ ├── pbs.conf │ │ │ ├── queue.conf │ │ │ └── slurm.conf │ │ ├── db.sh │ │ ├── local │ │ │ └── path.sh │ │ ├── path.sh │ │ ├── pyscripts │ │ ├── scripts │ │ ├── setup.sh │ │ ├── steps │ │ └── utils │ ├── asvspoof1 │ │ ├── asvspoof.sh │ │ ├── cmd.sh │ │ ├── conf │ │ │ ├── fbank.conf │ │ │ ├── pbs.conf │ │ │ ├── pitch.conf │ │ │ ├── queue.conf │ │ │ └── slurm.conf │ │ ├── db.sh │ │ ├── local │ │ │ └── path.sh │ │ ├── path.sh │ │ ├── pyscripts │ │ ├── scripts │ │ ├── setup.sh │ │ ├── steps │ │ └── utils │ ├── codec1 │ │ ├── README.md │ │ ├── cmd.sh │ │ ├── codec.sh │ │ ├── conf │ │ │ ├── fbank.conf │ │ │ ├── pbs.conf │ │ │ ├── pitch.conf │ │ │ ├── queue.conf │ │ │ └── slurm.conf │ │ ├── db.sh │ │ ├── local │ │ │ └── path.sh │ │ ├── path.sh │ │ ├── pyscripts │ │ ├── scripts │ │ ├── setup.sh │ │ ├── steps │ │ └── utils │ ├── diar1 │ │ ├── cmd.sh │ │ ├── conf │ │ │ ├── pbs.conf │ │ │ ├── queue.conf │ │ │ └── slurm.conf │ │ ├── db.sh │ │ ├── diar.sh │ │ ├── local │ │ │ └── path.sh │ │ ├── path.sh │ │ ├── pyscripts │ │ ├── scripts │ │ │ ├── TEMPLATE_Readme.md │ │ │ ├── audio │ │ │ ├── feats │ │ │ └── utils │ │ ├── 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 │ │ │ ├── TEMPLATE_Readme.md │ │ │ ├── audio │ │ │ ├── feats │ │ │ └── utils │ │ ├── setup.sh │ │ ├── steps │ │ └── utils │ ├── enh_asr1 │ │ ├── README.md │ │ ├── cmd.sh │ │ ├── conf │ │ │ ├── fbank.conf │ │ │ ├── pbs.conf │ │ │ ├── pitch.conf │ │ │ ├── queue.conf │ │ │ └── slurm.conf │ │ ├── db.sh │ │ ├── enh_asr.sh │ │ ├── local │ │ │ └── path.sh │ │ ├── path.sh │ │ ├── pyscripts │ │ ├── scripts │ │ ├── setup.sh │ │ ├── steps │ │ └── utils │ ├── enh_diar1 │ │ ├── cmd.sh │ │ ├── conf │ │ │ ├── pbs.conf │ │ │ ├── queue.conf │ │ │ └── slurm.conf │ │ ├── db.sh │ │ ├── enh_diar.sh │ │ ├── local │ │ │ └── path.sh │ │ ├── path.sh │ │ ├── pyscripts │ │ ├── scripts │ │ │ ├── TEMPLATE_Readme.md │ │ │ ├── audio │ │ │ ├── feats │ │ │ └── utils │ │ ├── setup.sh │ │ ├── steps │ │ └── utils │ ├── enh_st1 │ │ ├── cmd.sh │ │ ├── conf │ │ │ ├── fbank.conf │ │ │ ├── pbs.conf │ │ │ ├── pitch.conf │ │ │ ├── queue.conf │ │ │ └── slurm.conf │ │ ├── db.sh │ │ ├── enh_st.sh │ │ ├── local │ │ │ └── path.sh │ │ ├── path.sh │ │ ├── pyscripts │ │ ├── scripts │ │ ├── setup.sh │ │ ├── steps │ │ └── utils │ ├── lm1 │ │ ├── cmd.sh │ │ ├── conf │ │ │ └── train_transformer_size768_e12.yaml │ │ ├── db.sh │ │ ├── lm.sh │ │ ├── local │ │ │ └── path.sh │ │ ├── path.sh │ │ ├── pyscripts │ │ ├── scripts │ │ ├── setup.sh │ │ ├── steps │ │ └── utils │ ├── mt1 │ │ ├── cmd.sh │ │ ├── conf │ │ │ ├── pbs.conf │ │ │ ├── queue.conf │ │ │ └── slurm.conf │ │ ├── db.sh │ │ ├── local │ │ │ └── path.sh │ │ ├── mt.sh │ │ ├── path.sh │ │ ├── pyscripts │ │ ├── scripts │ │ ├── setup.sh │ │ ├── steps │ │ └── utils │ ├── s2st1 │ │ ├── cmd.sh │ │ ├── conf │ │ │ ├── fbank.conf │ │ │ ├── pbs.conf │ │ │ ├── pitch.conf │ │ │ ├── queue.conf │ │ │ └── slurm.conf │ │ ├── db.sh │ │ ├── local │ │ │ └── path.sh │ │ ├── path.sh │ │ ├── pyscripts │ │ ├── s2st.sh │ │ ├── scripts │ │ ├── setup.sh │ │ ├── steps │ │ └── utils │ ├── s2t1 │ │ ├── README.md │ │ ├── cmd.sh │ │ ├── conf │ │ │ ├── fbank.conf │ │ │ ├── pbs.conf │ │ │ ├── pitch.conf │ │ │ ├── queue.conf │ │ │ └── slurm.conf │ │ ├── db.sh │ │ ├── local │ │ │ └── path.sh │ │ ├── path.sh │ │ ├── pyscripts │ │ ├── s2t.sh │ │ ├── scripts │ │ ├── setup.sh │ │ ├── steps │ │ └── utils │ ├── slu1 │ │ ├── cmd.sh │ │ ├── conf │ │ │ ├── fbank.conf │ │ │ ├── pbs.conf │ │ │ ├── pitch.conf │ │ │ ├── queue.conf │ │ │ └── slurm.conf │ │ ├── db.sh │ │ ├── local │ │ │ └── path.sh │ │ ├── path.sh │ │ ├── pyscripts │ │ ├── scripts │ │ ├── setup.sh │ │ ├── slu.sh │ │ ├── steps │ │ └── utils │ ├── speechlm1 │ │ ├── cmd.sh │ │ ├── conf │ │ │ ├── pbs.conf │ │ │ ├── queue.conf │ │ │ └── slurm.conf │ │ ├── db.sh │ │ ├── local │ │ │ └── path.sh │ │ ├── path.sh │ │ ├── pyscripts │ │ ├── scripts │ │ ├── setup.sh │ │ ├── speechlm.sh │ │ ├── steps │ │ └── utils │ ├── spk1 │ │ ├── README.md │ │ ├── cmd.sh │ │ ├── conf │ │ │ ├── pbs.conf │ │ │ ├── queue.conf │ │ │ └── slurm.conf │ │ ├── db.sh │ │ ├── local │ │ │ └── path.sh │ │ ├── path.sh │ │ ├── pyscripts │ │ ├── scripts │ │ ├── setup.sh │ │ ├── spk.sh │ │ ├── steps │ │ └── utils │ ├── ssl1 │ │ ├── cmd.sh │ │ ├── conf │ │ │ ├── pbs.conf │ │ │ ├── queue.conf │ │ │ └── slurm.conf │ │ ├── db.sh │ │ ├── hubert.sh │ │ ├── local │ │ │ └── path.sh │ │ ├── path.sh │ │ ├── pyscripts │ │ ├── scripts │ │ ├── setup.sh │ │ ├── steps │ │ └── utils │ ├── st1 │ │ ├── README.md │ │ ├── TEMPLATE_local │ │ │ └── images │ │ │ │ ├── asr-init.png │ │ │ │ ├── attn.png │ │ │ │ ├── code.png │ │ │ │ ├── ctc-attn.png │ │ │ │ ├── example-b.png │ │ │ │ ├── example-c.png │ │ │ │ ├── hier-enc.png │ │ │ │ ├── llm.png │ │ │ │ ├── md-ctc-attn.png │ │ │ │ ├── python-cmd.png │ │ │ │ ├── rnnt.png │ │ │ │ ├── ssl.png │ │ │ │ ├── ts-ctc-attn.png │ │ │ │ └── unity.png │ │ ├── cmd.sh │ │ ├── conf │ │ │ ├── fbank.conf │ │ │ ├── pbs.conf │ │ │ ├── pitch.conf │ │ │ ├── queue.conf │ │ │ └── slurm.conf │ │ ├── db.sh │ │ ├── local │ │ │ ├── TEMPLATE_HF_README_st.md │ │ │ └── path.sh │ │ ├── path.sh │ │ ├── pyscripts │ │ ├── scripts │ │ ├── setup.sh │ │ ├── st.sh │ │ ├── steps │ │ └── utils │ ├── svs1 │ │ ├── README.md │ │ ├── cmd.sh │ │ ├── conf │ │ │ ├── pbs.conf │ │ │ ├── queue.conf │ │ │ └── slurm.conf │ │ ├── db.sh │ │ ├── local │ │ │ └── path.sh │ │ ├── path.sh │ │ ├── pyscripts │ │ ├── scripts │ │ ├── setup.sh │ │ ├── steps │ │ ├── svs.sh │ │ └── 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 │ │ │ ├── README.md │ │ │ ├── compute_vad_decision.sh │ │ │ └── nnet3 │ │ │ │ └── xvector │ │ │ │ └── extract_xvectors.sh │ │ ├── steps │ │ ├── tts.sh │ │ └── utils │ ├── tts2 │ │ ├── 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 │ │ ├── tts2.sh │ │ └── utils │ └── uasr1 │ │ ├── cmd.sh │ │ ├── conf │ │ ├── fbank.conf │ │ ├── pbs.conf │ │ ├── pitch.conf │ │ ├── queue.conf │ │ └── slurm.conf │ │ ├── db.sh │ │ ├── local │ │ └── path.sh │ │ ├── path.sh │ │ ├── pyscripts │ │ ├── scripts │ │ ├── setup.sh │ │ ├── steps │ │ ├── uasr.sh │ │ └── utils ├── accentdb │ └── asr1 │ │ ├── asr.sh │ │ ├── cmd.sh │ │ ├── db.sh │ │ ├── local │ │ ├── data.sh │ │ ├── data_prep.py │ │ └── path.sh │ │ ├── path.sh │ │ ├── pyscripts │ │ ├── run.sh │ │ ├── scripts │ │ ├── steps │ │ └── utils ├── accented_french_openslr57 │ └── asr1 │ │ ├── README.md │ │ ├── asr.sh │ │ ├── cmd.sh │ │ ├── conf │ │ ├── decode_asr.yaml │ │ ├── fbank.conf │ │ ├── pbs.conf │ │ ├── pitch.conf │ │ ├── queue.conf │ │ ├── slurm.conf │ │ ├── train_lm_transformer.yaml │ │ └── tuning │ │ │ ├── train_asr_hubert_frontend.yaml │ │ │ └── train_asr_transformer.yaml │ │ ├── db.sh │ │ ├── local │ │ ├── data.sh │ │ ├── normalize_test.py │ │ ├── path.sh │ │ └── remove_missing.py │ │ ├── path.sh │ │ ├── pyscripts │ │ ├── run.sh │ │ ├── scripts │ │ ├── steps │ │ └── utils ├── acesinger │ └── svs1 │ │ ├── README.md │ │ ├── cmd.sh │ │ ├── conf │ │ ├── decode.yaml │ │ ├── pbs.conf │ │ ├── queue.conf │ │ ├── slurm.conf │ │ ├── train.yaml │ │ └── tuning │ │ │ ├── decode_vits.yaml │ │ │ ├── train_visinger.yaml │ │ │ ├── train_visinger2.yaml │ │ │ ├── train_visinger2_24k.yaml │ │ │ ├── train_visinger2_plus_fused.yaml │ │ │ └── train_visinger2_plus_hubert.yaml │ │ ├── db.sh │ │ ├── local │ │ ├── data.sh │ │ ├── data_prep.py │ │ ├── download_wget.sh │ │ ├── midi-note.scp │ │ └── path.sh │ │ ├── midi-note.scp │ │ ├── path.sh │ │ ├── pyscripts │ │ ├── run.sh │ │ ├── scripts │ │ ├── svs.sh │ │ └── utils ├── aesrc2020 │ └── asr1 │ │ ├── README.md │ │ ├── asr.sh │ │ ├── cmd.sh │ │ ├── conf │ │ ├── decode_asr.yaml │ │ ├── fbank.conf │ │ ├── pbs.conf │ │ ├── pitch.conf │ │ ├── queue.conf │ │ ├── slurm.conf │ │ ├── train_asr.yaml │ │ └── tuning │ │ │ └── train_asr_conformer_lr2e-3_warmup15k_amp_nondeterministic.yaml │ │ ├── db.sh │ │ ├── local │ │ ├── create_subsets.sh │ │ ├── data.sh │ │ ├── data_prep.sh │ │ ├── download_and_untar.sh │ │ ├── files │ │ │ ├── ar.dict │ │ │ └── cvlist │ │ │ │ ├── CA_cv_spk │ │ │ │ ├── CHN_cv_spk │ │ │ │ ├── ES_cv_spk │ │ │ │ ├── IND_cv_spk │ │ │ │ ├── JPN_cv_spk │ │ │ │ ├── KR_cv_spk │ │ │ │ ├── PT_cv_spk │ │ │ │ ├── RU_cv_spk │ │ │ │ ├── UK_cv_spk │ │ │ │ └── US_cv_spk │ │ ├── path.sh │ │ └── preprocess.py │ │ ├── path.sh │ │ ├── pyscripts │ │ ├── run.sh │ │ ├── scripts │ │ ├── steps │ │ └── utils ├── aidatatang_200zh │ └── 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_e_branchformer.yaml │ │ ├── train_lm_transformer.yaml │ │ └── tuning │ │ │ ├── train_asr_e_branchformer_e16_linear1024_lr1e-3.yaml │ │ │ └── train_asr_e_branchformer_linear1024.yaml │ │ ├── db.sh │ │ ├── local │ │ ├── data.sh │ │ ├── data_prep.sh │ │ ├── download_and_untar.sh │ │ └── path.sh │ │ ├── path.sh │ │ ├── pyscripts │ │ ├── run.sh │ │ ├── scripts │ │ ├── steps │ │ └── utils ├── aishell │ └── asr1 │ │ ├── README.md │ │ ├── asr.sh │ │ ├── cmd.sh │ │ ├── conf │ │ ├── decode_asr_branchformer.yaml │ │ ├── decode_asr_rnn.yaml │ │ ├── decode_asr_simu_streaming.yaml │ │ ├── decode_asr_streaming.yaml │ │ ├── decode_asr_transformer.yaml │ │ ├── decode_asr_transformer_ngram.yaml │ │ ├── fbank.conf │ │ ├── pbs.conf │ │ ├── pitch.conf │ │ ├── queue.conf │ │ ├── slurm.conf │ │ ├── train_asr_branchformer.yaml │ │ ├── train_asr_conformer.yaml │ │ ├── train_asr_rnn.yaml │ │ ├── train_asr_streaming_conformer.yaml │ │ ├── train_asr_streaming_transformer.yaml │ │ ├── train_asr_transformer.yaml │ │ ├── train_lm.yaml │ │ ├── train_lm_transformer.yaml │ │ └── tuning │ │ │ ├── decode_asr_whisper_noctc_beam10.yaml │ │ │ ├── train_asr_branchformer_e24_amp.yaml │ │ │ ├── train_asr_branchformer_fast_selfattn_e24_amp.yaml │ │ │ ├── train_asr_conformer.yaml │ │ │ ├── train_asr_conformer_e12_amp.yaml │ │ │ ├── train_asr_conformer_e12_brctc_intermediate_stage1.yaml │ │ │ ├── train_asr_conformer_e12_brctc_intermediate_stage2.yaml │ │ │ ├── train_asr_ctc_conformer_e15_linear1024.yaml │ │ │ ├── train_asr_ctc_e_branchformer_e12.yaml │ │ │ ├── train_asr_e_branchformer_e12_mlp1024_linear1024_mactrue_amp.yaml │ │ │ ├── train_asr_transformer.yaml │ │ │ ├── train_asr_transformer2.yaml │ │ │ ├── train_asr_transformer3.yaml │ │ │ ├── train_asr_transformer_lr0.002.yaml │ │ │ ├── train_asr_whisper_large_lora_finetune.yaml │ │ │ ├── train_asr_whisper_medium_finetune.yaml │ │ │ ├── train_asr_whisper_medium_lora_finetune.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 │ │ ├── run_whisper_finetune.sh │ │ ├── scripts │ │ ├── steps │ │ └── utils ├── aishell2 │ └── asr1 │ │ ├── README.md │ │ ├── asr.sh │ │ ├── cmd.sh │ │ ├── conf │ │ ├── decode_asr_rnn.yaml │ │ ├── fbank.conf │ │ ├── pbs.conf │ │ ├── pitch.conf │ │ ├── queue.conf │ │ ├── slurm.conf │ │ ├── train_asr_conformer.yaml │ │ ├── train_lm_transformer.yaml │ │ └── tuning │ │ │ ├── decode_asr_rnn.yaml │ │ │ ├── train_asr_conformer.yaml │ │ │ ├── train_lm_transformer.yaml │ │ │ └── transducer │ │ │ ├── decode.yaml │ │ │ └── train_conformer-rnn_transducer.yaml │ │ ├── db.sh │ │ ├── local │ │ ├── data.sh │ │ ├── path.sh │ │ └── prepare_data.sh │ │ ├── path.sh │ │ ├── pyscripts │ │ ├── run.sh │ │ ├── scripts │ │ ├── steps │ │ └── utils ├── aishell3 │ └── 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 │ │ └── vad.conf │ │ ├── db.sh │ │ ├── local │ │ ├── data.sh │ │ ├── data_prep.py │ │ ├── download_and_untar.sh │ │ └── path.sh │ │ ├── path.sh │ │ ├── pyscripts │ │ ├── run.sh │ │ ├── scripts │ │ ├── sid │ │ ├── steps │ │ ├── tts.sh │ │ └── utils ├── aishell4 │ ├── asr1 │ │ ├── README.md │ │ ├── asr.sh │ │ ├── cmd.sh │ │ ├── conf │ │ │ ├── fbank.conf │ │ │ ├── pbs.conf │ │ │ ├── pitch.conf │ │ │ ├── queue.conf │ │ │ ├── slurm.conf │ │ │ ├── train_lm_transformer.yaml │ │ │ └── tuning │ │ │ │ ├── decode_asr_rnn.yaml │ │ │ │ ├── decode_transformer.yaml │ │ │ │ └── train_asr_conformer5.yaml │ │ ├── db.sh │ │ ├── local │ │ │ ├── data.sh │ │ │ └── path.sh │ │ ├── path.sh │ │ ├── pyscripts │ │ ├── run.sh │ │ ├── scripts │ │ ├── steps │ │ └── utils │ └── enh1 │ │ ├── cmd.sh │ │ ├── conf │ │ ├── pbs.conf │ │ ├── queue.conf │ │ ├── slurm.conf │ │ ├── train.yaml │ │ └── tuning │ │ │ └── train_enh_beamformer_no_wpe.yaml │ │ ├── db.sh │ │ ├── enh.sh │ │ ├── local │ │ ├── data.sh │ │ ├── generate_fe_trainingdata.py.patch │ │ ├── generate_isotropic_noise.py.patch │ │ ├── generate_rir_trainingdata.py.patch │ │ ├── path.sh │ │ ├── prepare_audioset_category_list.py │ │ ├── prepare_data_list.py │ │ ├── pyrirgen.pyx.patch │ │ ├── split_train_dev.py │ │ ├── split_train_dev_by_column.py │ │ └── split_train_dev_by_prefix.py │ │ ├── path.sh │ │ ├── pyscripts │ │ ├── run.sh │ │ ├── scripts │ │ ├── steps │ │ └── utils ├── ameboshi │ └── svs1 │ │ ├── cmd.sh │ │ ├── conf │ │ ├── decode.yaml │ │ ├── pbs.conf │ │ ├── queue.conf │ │ ├── slurm.conf │ │ ├── train.yaml │ │ └── tuning │ │ │ ├── decode_rnn.yaml │ │ │ ├── train_naive_rnn.yaml │ │ │ ├── train_naive_rnn_dp.yaml │ │ │ └── train_vits.yaml │ │ ├── db.sh │ │ ├── local │ │ ├── customed_dic.scp │ │ ├── data.sh │ │ ├── dataset_split.py │ │ ├── path.sh │ │ ├── prep_segments.py │ │ └── prep_segments_from_xml.py │ │ ├── path.sh │ │ ├── pyscripts │ │ ├── run.sh │ │ ├── scripts │ │ ├── svs.sh │ │ └── utils ├── americasnlp22 │ └── asr1 │ │ ├── README.md │ │ ├── asr.sh │ │ ├── cmd.sh │ │ ├── conf │ │ ├── decode_asr.yaml │ │ ├── fbank.conf │ │ ├── pbs.conf │ │ ├── pitch.conf │ │ ├── queue.conf │ │ ├── slurm.conf │ │ └── train_asr_transformer.yaml │ │ ├── db.sh │ │ ├── local │ │ ├── data.sh │ │ └── path.sh │ │ ├── path.sh │ │ ├── pyscripts │ │ ├── run.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_conformer.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 ├── amuse │ └── codec1 │ │ ├── cmd.sh │ │ ├── codec.sh │ │ ├── conf │ │ ├── decode.yaml │ │ ├── fbank.conf │ │ ├── pbs.conf │ │ ├── pitch.conf │ │ ├── queue.conf │ │ ├── slurm.conf │ │ ├── train_soundstream4_fs16000.yaml │ │ └── train_soundstream4_fs44100.yaml │ │ ├── db.sh │ │ ├── local │ │ ├── find_audio_files.py │ │ └── path.sh │ │ ├── path.sh │ │ ├── pyscripts │ │ ├── run.sh │ │ ├── run_16k.sh │ │ ├── scripts │ │ ├── steps │ │ └── utils ├── an4 │ ├── asr1 │ │ ├── README.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_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 │ │ ├── pbs.conf │ │ ├── queue.conf │ │ └── slurm.conf │ │ ├── db.sh │ │ ├── downloads │ │ ├── local │ │ ├── path.sh │ │ ├── pyscripts │ │ ├── run.sh │ │ ├── scripts │ │ ├── steps │ │ ├── tts.sh │ │ └── utils ├── aphasiabank │ └── asr1 │ │ ├── README.md │ │ ├── asr.sh │ │ ├── cmd.sh │ │ ├── conf │ │ ├── decode.yaml │ │ ├── fbank.conf │ │ ├── pbs.conf │ │ ├── pitch.conf │ │ ├── queue.conf │ │ ├── slurm.conf │ │ ├── train_asr.yaml │ │ └── tuning │ │ │ ├── train_asr_conformer.yaml │ │ │ ├── train_asr_ebranchformer_small.yaml │ │ │ ├── train_asr_ebranchformer_small_wavlm_large.yaml │ │ │ ├── train_asr_ebranchformer_small_wavlm_large1.yaml │ │ │ ├── train_asr_ebranchformer_small_wavlm_large1_interctc3+6.yaml │ │ │ └── train_asr_ebranchformer_small_wavlm_large1_interctc6.yaml │ │ ├── db.sh │ │ ├── local │ │ ├── calc_corpus_length.py │ │ ├── clean_hyp_annotations.py │ │ ├── clean_score_dir.py │ │ ├── clean_score_dir_per_severity.py │ │ ├── create_aph_tags.py │ │ ├── data.py │ │ ├── data.sh │ │ ├── extract_sentence_info.py │ │ ├── generate_wavscp_and_segments.py │ │ ├── nlsyms.txt │ │ ├── path.sh │ │ ├── run_interctc.sh │ │ ├── score_aphasia_detection.py │ │ ├── score_cleaned.sh │ │ ├── score_interctc_aux.sh │ │ ├── score_per_severity.sh │ │ └── split_train_test_val.py │ │ ├── path.sh │ │ ├── pyscripts │ │ ├── run.sh │ │ ├── scripts │ │ ├── steps │ │ └── utils ├── arabic_sc │ └── asr1 │ │ ├── asr.sh │ │ ├── cmd.sh │ │ ├── db.sh │ │ ├── local │ │ ├── create_utt2spk.py │ │ ├── data.sh │ │ ├── data_prep.py │ │ └── path.sh │ │ ├── path.sh │ │ ├── pyscripts │ │ ├── run.sh │ │ ├── scripts │ │ ├── steps │ │ └── utils ├── asvspoof │ ├── asr1 │ │ ├── asr.sh │ │ ├── cmd.sh │ │ ├── db.sh │ │ ├── local │ │ │ ├── data.sh │ │ │ ├── data_prep.py │ │ │ └── path.sh │ │ ├── path.sh │ │ ├── pyscripts │ │ ├── run.sh │ │ ├── scripts │ │ ├── steps │ │ └── utils │ └── spk1 │ │ ├── README.md │ │ ├── cmd.sh │ │ ├── conf │ │ ├── decode.yaml │ │ ├── fbank.conf │ │ ├── pbs.conf │ │ ├── pitch.conf │ │ ├── queue.conf │ │ ├── slurm.conf │ │ ├── train_ECAPA_mel.yaml │ │ ├── train_SKA_mel.yaml │ │ ├── train_mfa_conformer.yaml │ │ ├── train_rawnet3.yaml │ │ └── train_xvector.yaml │ │ ├── db.sh │ │ ├── local │ │ ├── asv_data_prep.py │ │ ├── cat_spk_utt.py │ │ ├── cm_data_prep.py │ │ ├── convert_protocol.py │ │ ├── convert_trial.py │ │ ├── data.sh │ │ ├── make_subprotocols.py │ │ └── path.sh │ │ ├── path.sh │ │ ├── pyscripts │ │ ├── run.sh │ │ ├── scripts │ │ ├── spk.sh │ │ ├── steps │ │ └── 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 ├── bibletts │ └── tts1 │ │ ├── README.md │ │ ├── RESULTS.MD │ │ ├── cmd.sh │ │ ├── conf │ │ ├── mfcc.conf │ │ ├── pbs.conf │ │ ├── queue.conf │ │ ├── slurm.conf │ │ ├── tuning │ │ │ ├── decode_vits.yaml │ │ │ └── train_vits.yaml │ │ └── vad.conf │ │ ├── db.sh │ │ ├── local │ │ ├── data.sh │ │ └── path.sh │ │ ├── path.sh │ │ ├── pyscripts │ │ ├── run.sh │ │ ├── scripts │ │ ├── sid │ │ ├── steps │ │ ├── tts.sh │ │ └── utils ├── bn_openslr53 │ └── 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 │ │ ├── db.sh │ │ ├── local │ │ ├── data.sh │ │ ├── data_prep.py │ │ └── path.sh │ │ ├── path.sh │ │ ├── pyscripts │ │ ├── run.sh │ │ ├── scripts │ │ ├── steps │ │ └── utils ├── bur_openslr80 │ └── 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_hubert_transformer_adam_specaug.yaml │ │ └── train_lm.yaml │ │ ├── db.sh │ │ ├── local │ │ ├── data.sh │ │ ├── data_prep.py │ │ └── path.sh │ │ ├── path.sh │ │ ├── pyscripts │ │ ├── run.sh │ │ ├── scripts │ │ ├── steps │ │ └── utils ├── catslu │ └── asr1 │ │ ├── README.md │ │ ├── asr.sh │ │ ├── cmd.sh │ │ ├── conf │ │ ├── fbank.conf │ │ ├── pbs.conf │ │ ├── pitch.conf │ │ ├── queue.conf │ │ ├── slurm.conf │ │ └── train_asr.yaml │ │ ├── db.sh │ │ ├── local │ │ ├── data.sh │ │ ├── data_prep.py │ │ ├── path.sh │ │ ├── score.py │ │ └── score.sh │ │ ├── path.sh │ │ ├── pyscripts │ │ ├── run.sh │ │ ├── scripts │ │ ├── steps │ │ └── utils ├── catslu_entity │ └── asr1 │ │ ├── README.md │ │ ├── asr.sh │ │ ├── cmd.sh │ │ ├── conf │ │ ├── decode_asr_hf.yaml │ │ ├── pbs.conf │ │ ├── queue.conf │ │ ├── slurm.conf │ │ └── tuning │ │ │ └── train_asr_branchformer_xlsr_mbart.yaml │ │ ├── db.sh │ │ ├── local │ │ ├── data.sh │ │ ├── data_prep.py │ │ ├── path.sh │ │ ├── score.py │ │ └── score.sh │ │ ├── path.sh │ │ ├── pyscripts │ │ ├── run.sh │ │ ├── scripts │ │ ├── steps │ │ └── utils ├── chime1 │ └── enh1 │ │ ├── cmd.sh │ │ ├── conf │ │ ├── pbs.conf │ │ ├── queue.conf │ │ ├── slurm.conf │ │ └── tuning │ │ │ └── train_enh_beamformer_mvdr.yaml │ │ ├── db.sh │ │ ├── enh.sh │ │ ├── local │ │ ├── create_chime1_trans.pl │ │ ├── data.sh │ │ ├── path.sh │ │ ├── prepare_devel_noise1_scp.py │ │ └── prepare_test_noise1_scp.py │ │ ├── path.sh │ │ ├── pyscripts │ │ ├── run.sh │ │ ├── scripts │ │ ├── steps │ │ └── utils ├── chime2 │ └── enh1 │ │ ├── cmd.sh │ │ ├── conf │ │ ├── pbs.conf │ │ ├── queue.conf │ │ ├── slurm.conf │ │ └── tuning │ │ │ └── train_enh_beamformer_mvdr.yaml │ │ ├── db.sh │ │ ├── enh.sh │ │ ├── local │ │ ├── clean_wsj0_data_prep.sh │ │ ├── cstr_ndx2flist.pl │ │ ├── data.sh │ │ ├── find_noisy_transcripts.pl │ │ ├── find_transcripts.pl │ │ ├── flist2scp.pl │ │ ├── noisy_wsj0_data_prep.sh │ │ ├── normalize_transcript.pl │ │ ├── path.sh │ │ └── reverb_wsj0_data_prep.sh │ │ ├── path.sh │ │ ├── pyscripts │ │ ├── run.sh │ │ ├── scripts │ │ ├── steps │ │ └── utils ├── chime4 │ ├── asr1 │ │ ├── README.md │ │ ├── asr.sh │ │ ├── cmd.sh │ │ ├── conf │ │ │ ├── chime4.cfg │ │ │ ├── decode_asr.yaml │ │ │ ├── decode_asr_rnn.yaml │ │ │ ├── decode_asr_transformer.yaml │ │ │ ├── decode_asr_whisper_noctc_beam20.yaml │ │ │ ├── decode_asr_whisper_noctc_greedy.yaml │ │ │ ├── fbank.conf │ │ │ ├── pbs.conf │ │ │ ├── pitch.conf │ │ │ ├── queue.conf │ │ │ ├── slurm.conf │ │ │ ├── train_asr_e_branchformer.yaml │ │ │ ├── train_asr_rnn.yaml │ │ │ ├── train_asr_transformer.yaml │ │ │ ├── train_lm.yaml │ │ │ ├── train_lm_transformer.yaml │ │ │ └── tuning │ │ │ │ ├── decode_asr_rnn.yaml │ │ │ │ ├── train_asr_conformer_e12_linear1024.yaml │ │ │ │ ├── train_asr_conformer_e12_linear2048.yaml │ │ │ │ ├── train_asr_conformer_wavlm2.yaml │ │ │ │ ├── train_asr_e_branchformer_e10_mlp1024_linear1024_macaron_lr1e-3_warmup25k.yaml │ │ │ │ ├── train_asr_rnn.yaml │ │ │ │ ├── train_asr_transformer_wavlm_lr1e-3_specaug_accum1_preenc128_warmup20k.yaml │ │ │ │ ├── train_asr_whisper_full.yaml │ │ │ │ └── train_asr_whisper_full_warmup1500.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 │ │ │ ├── sym_channel.py │ │ │ ├── wsj_data_prep.sh │ │ │ └── wsj_format_data.sh │ │ ├── path.sh │ │ ├── pyscripts │ │ ├── run.sh │ │ ├── scripts │ │ ├── steps │ │ └── utils │ ├── asr2 │ │ ├── README.md │ │ ├── asr2.sh │ │ ├── cmd.sh │ │ ├── conf │ │ │ ├── chime4.cfg │ │ │ ├── decode_asr.yaml │ │ │ ├── pbs.conf │ │ │ ├── queue.conf │ │ │ ├── slurm.conf │ │ │ └── tuning │ │ │ │ └── train_discrete_asr_e_branchformer_e12_mlp1024_linear1024_macaron_lr1e-4_warmup25k_conv1d1.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 │ │ │ ├── sym_channel.py │ │ │ ├── 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_beamformer_wpd_ci_sdr_shorttap.yaml │ │ │ │ ├── train_enh_blstm_tf.yaml │ │ │ │ ├── train_enh_conv_tasnet.yaml │ │ │ │ ├── train_enh_convtasnet_small.yaml │ │ │ │ ├── train_enh_dc_crn_mapping_snr.yaml │ │ │ │ ├── train_enh_dprnn_tasnet.yaml │ │ │ │ ├── train_enh_dprnntac_fasnet.yaml │ │ │ │ └── train_enh_dprnntac_ifasnet.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 │ └── enh_asr1 │ │ ├── README.md │ │ ├── cmd.sh │ │ ├── conf │ │ ├── chime4.cfg │ │ ├── decode_asr_transformer.yaml │ │ ├── decode_asr_transformer_largelm.yaml │ │ ├── fbank.conf │ │ ├── pbs.conf │ │ ├── pitch.conf │ │ ├── queue.conf │ │ ├── slurm.conf │ │ ├── train_enh_asr_convtasnet_fbank_transformer.yaml │ │ ├── train_lm_transformer.yaml │ │ └── tuning │ │ │ ├── train_enh_asr_convtasnet_init_noenhloss_wavlm_transformer_init_lr1e-4_accum1_adam_specaug_bypass0.yaml │ │ │ ├── train_enh_asr_convtasnet_si_snr_fbank_transformer_lr2e-3_accum2_warmup20k_specaug.yaml │ │ │ └── train_enh_asr_wpd_init_noenhloss_wavlm_conformer.yaml │ │ ├── db.sh │ │ ├── enh_asr.sh │ │ ├── local │ │ ├── CHiME3_simulate_data_patched_parallel.m │ │ ├── bth_chime4_data_prep.sh │ │ ├── chime4_asr_data.sh │ │ ├── chime4_enh_data.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 │ │ ├── localize.m │ │ ├── make_stft.sh │ │ ├── ndx2flist.pl │ │ ├── normalize_transcript.pl │ │ ├── path.sh │ │ ├── real_enhan_chime4_data_prep.sh │ │ ├── real_ext_chime4_data_prep.sh │ │ ├── real_noisy_chime4_data_prep.sh │ │ ├── run_asr_pretraining.sh │ │ ├── run_beamform_2ch_track.sh │ │ ├── run_beamform_6ch_track.sh │ │ ├── run_enh_asr_finetuning.sh │ │ ├── run_enh_pretraining.sh │ │ ├── run_multiiris.sh │ │ ├── show_enhance_results.sh │ │ ├── simu_enhan_chime4_data_prep.sh │ │ ├── simu_ext_chime4_data_prep.sh │ │ ├── simu_noisy_chime4_data_prep.sh │ │ ├── sym_channel.py │ │ ├── wsj_data_prep.sh │ │ └── wsj_format_data.sh │ │ ├── path.sh │ │ ├── pyscripts │ │ ├── run.sh │ │ ├── scripts │ │ ├── steps │ │ └── utils ├── chime6 │ └── asr1 │ │ ├── README.md │ │ ├── asr.sh │ │ ├── cmd.sh │ │ ├── conf │ │ ├── decode_asr_transformer.yaml │ │ ├── fbank.conf │ │ ├── pbs.conf │ │ ├── pitch.conf │ │ ├── queue.conf │ │ ├── slurm.conf │ │ ├── train_lm.yaml │ │ └── tuning │ │ │ └── train_asr_transformer_wavlm_lr1e-3_specaug_accum1_preenc128_warmup20k.yaml │ │ ├── db.sh │ │ ├── local │ │ ├── check_tools.sh │ │ ├── data.sh │ │ ├── distant_audio_list │ │ ├── extract_noises.py │ │ ├── generate_chime6_data.sh │ │ ├── install_pb_chime5.sh │ │ ├── json2text.py │ │ ├── make_noise_list.py │ │ ├── path.sh │ │ ├── prepare_baseline_chime6_data.sh │ │ ├── prepare_data.sh │ │ ├── prepare_dict.sh │ │ ├── run_gss.sh │ │ ├── train_lms_srilm.sh │ │ └── wer_output_filter │ │ ├── path.sh │ │ ├── pyscripts │ │ ├── run.sh │ │ ├── scripts │ │ ├── steps │ │ └── utils ├── chime7_task1 │ ├── asr1 │ │ ├── README.md │ │ ├── asr.sh │ │ ├── baseline_logs │ │ │ ├── RESULTS.md │ │ │ └── inference.log │ │ ├── cmd.sh │ │ ├── conf │ │ │ ├── decode_asr_transformer.yaml │ │ │ ├── fbank.conf │ │ │ ├── pbs.conf │ │ │ ├── pitch.conf │ │ │ ├── queue.conf │ │ │ ├── slurm.conf │ │ │ ├── train_lm.yaml │ │ │ └── tuning │ │ │ │ ├── train_asr_transformer_fbank_lr1e-3_specaugm_accum1_warmup40k.yaml │ │ │ │ ├── train_asr_transformer_wavlm_lr1e-4_specaugm_accum1_preenc128_warmup20k.yaml │ │ │ │ └── train_asr_transformer_wavlm_small_lr1e-4_specaugm_accum1_preenc128_warmup20k.yaml │ │ ├── db.sh │ │ ├── local │ │ │ ├── asr2json.py │ │ │ ├── check_data_gen.py │ │ │ ├── chime7_dasr_md5.json │ │ │ ├── da_wer_scoring.py │ │ │ ├── data.sh │ │ │ ├── distant_audio_list │ │ │ ├── extract_noises.py │ │ │ ├── gen_task1_data.py │ │ │ ├── gen_task1_data.sh │ │ │ ├── generate_chime6_data.sh │ │ │ ├── get_lhotse_manifests.py │ │ │ ├── gss2lhotse.py │ │ │ ├── gss_micrank.py │ │ │ ├── install_dependencies.sh │ │ │ ├── make_noise_list.py │ │ │ ├── path.sh │ │ │ └── run_gss.sh │ │ ├── path.sh │ │ ├── pyscripts │ │ ├── run.sh │ │ ├── scripts │ │ ├── steps │ │ └── utils │ └── diar_asr1 │ │ ├── README.md │ │ ├── asr.sh │ │ ├── baseline_logs │ │ └── inference.log │ │ ├── cmd.sh │ │ ├── conf │ │ ├── decode_asr_transformer.yaml │ │ ├── fbank.conf │ │ ├── pbs.conf │ │ ├── pitch.conf │ │ ├── queue.conf │ │ ├── slurm.conf │ │ ├── train_lm.yaml │ │ └── tuning │ │ │ └── train_asr_transformer_wavlm_lr1e-4_specaugm_accum1_preenc128_warmup20k.yaml │ │ ├── db.sh │ │ ├── local │ │ ├── asr2json.py │ │ ├── check_data_gen.py │ │ ├── chime7_dasr_md5.json │ │ ├── da_wer_scoring.py │ │ ├── data.sh │ │ ├── database.yml │ │ ├── distant_audio_list │ │ ├── extract_noises.py │ │ ├── gen_task1_data.py │ │ ├── gen_task1_data.sh │ │ ├── generate_chime6_data.sh │ │ ├── get_lhotse_manifests.py │ │ ├── gss2lhotse.py │ │ ├── gss_micrank.py │ │ ├── install_dependencies.sh │ │ ├── make_noise_list.py │ │ ├── path.sh │ │ ├── pyannote_diarize.py │ │ ├── pyannote_dprep.py │ │ ├── pyannote_finetune.py │ │ └── run_gss.sh │ │ ├── path.sh │ │ ├── pyscripts │ │ ├── run.sh │ │ ├── run_gss_asr.sh │ │ ├── scripts │ │ ├── steps │ │ └── utils ├── chime8_task1 │ ├── HELP.md │ ├── INSTALL.md │ ├── README.md │ ├── asr1 │ │ ├── asr.sh │ │ ├── cmd.sh │ │ ├── conf │ │ │ ├── decode_asr_transformer.yaml │ │ │ ├── fbank.conf │ │ │ ├── pbs.conf │ │ │ ├── pitch.conf │ │ │ ├── queue.conf │ │ │ ├── slurm.conf │ │ │ ├── train_lm.yaml │ │ │ └── tuning │ │ │ │ ├── train_asr_ebranchformer_wavlm_lr1e-4_specaugm_accum1_preenc128_warmup40k.yaml │ │ │ │ ├── train_asr_transformer_fbank_lr1e-3_specaugm_accum1_warmup40k.yaml │ │ │ │ ├── train_asr_transformer_wavlm_lr1e-4_specaugm_accum1_preenc128_warmup20k.yaml │ │ │ │ └── train_asr_transformer_wavlm_small_lr1e-4_specaugm_accum1_preenc128_warmup20k.yaml │ │ ├── db.sh │ │ ├── local │ │ │ ├── asr2json.py │ │ │ ├── da_wer_scoring.py │ │ │ ├── data.sh │ │ │ ├── distant_audio_list │ │ │ ├── extract_noises.py │ │ │ ├── get_lhotse_manifests.py │ │ │ ├── gss2lhotse.py │ │ │ ├── gss_micrank.py │ │ │ ├── install_dependencies.sh │ │ │ ├── make_noise_list.py │ │ │ ├── path.sh │ │ │ └── run_gss.sh │ │ ├── path.sh │ │ ├── pyscripts │ │ ├── run.sh │ │ ├── scripts │ │ ├── steps │ │ └── utils │ └── diar_asr1 │ │ ├── asr.sh │ │ ├── baseline_logs │ │ ├── cpwer_scoring.log │ │ └── tcpwer_scoring.log │ │ ├── cmd.sh │ │ ├── conf │ │ ├── db.sh │ │ ├── local │ │ ├── asr2json.py │ │ ├── da_wer_scoring.py │ │ ├── data.sh │ │ ├── database.yml │ │ ├── distant_audio_list │ │ ├── extract_noises.py │ │ ├── gss2lhotse.py │ │ ├── gss_micrank.py │ │ ├── install_dependencies.sh │ │ ├── make_noise_list.py │ │ ├── path.sh │ │ ├── pyannote_diarize.py │ │ ├── pyannote_dprep.py │ │ ├── pyannote_finetune.py │ │ └── run_gss.sh │ │ ├── path.sh │ │ ├── pyscripts │ │ ├── run.sh │ │ ├── run_gss_asr.sh │ │ ├── scripts │ │ ├── steps │ │ └── utils ├── clarity21 │ └── enh1 │ │ ├── README.md │ │ ├── cmd.sh │ │ ├── conf │ │ ├── pbs.conf │ │ ├── queue.conf │ │ ├── slurm.conf │ │ └── tuning │ │ │ └── train_enh_beamformer_mvdr.yaml │ │ ├── db.sh │ │ ├── enh.sh │ │ ├── local │ │ ├── data.sh │ │ ├── path.sh │ │ └── prep_data.py │ │ ├── path.sh │ │ ├── pyscripts │ │ ├── run.sh │ │ ├── scripts │ │ ├── steps │ │ └── utils ├── cmu_arctic │ └── 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 │ │ │ ├── finetune_multi_spk_vits.yaml │ │ │ ├── finetune_transformer.yaml │ │ │ ├── pretrain_multi_spk_vits.yaml │ │ │ ├── pretrain_transformer_sid.yaml │ │ │ ├── train_conformer_fastspeech2.yaml │ │ │ ├── train_multi_spk_vits.yaml │ │ │ ├── train_tacotron2.yaml │ │ │ ├── train_transformer.yaml │ │ │ ├── train_transformer_pre.yaml │ │ │ ├── train_transformer_pre_sid.yaml │ │ │ └── train_vits.yaml │ │ └── vad.conf │ │ ├── db.sh │ │ ├── local │ │ ├── data.sh │ │ ├── data_download.sh │ │ ├── data_download_all.sh │ │ ├── data_prep.sh │ │ ├── data_prep_all.sh │ │ ├── get_utt_list.py │ │ └── path.sh │ │ ├── path.sh │ │ ├── pyscripts │ │ ├── run.sh │ │ ├── run_pre_fine.sh │ │ ├── scripts │ │ ├── steps │ │ ├── tts.sh │ │ └── utils ├── cmu_indic │ └── 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_conformer_fastspeech2.yaml │ │ │ ├── train_tacotron2.yaml │ │ │ └── train_transformer.yaml │ │ └── vad.conf │ │ ├── db.sh │ │ ├── local │ │ ├── data.sh │ │ ├── data_download.sh │ │ ├── data_prep.sh │ │ └── path.sh │ │ ├── path.sh │ │ ├── pyscripts │ │ ├── run.sh │ │ ├── scripts │ │ ├── steps │ │ ├── tts.sh │ │ └── utils ├── commonvoice │ ├── asr1 │ │ ├── Fusing_ASR_frontends_in_Espnet2.md │ │ ├── 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_transducer.yaml │ │ │ │ ├── decode_transformer.yaml │ │ │ │ ├── train_asr_conformer5.yaml │ │ │ │ ├── train_asr_fused_frontends.yaml │ │ │ │ ├── train_asr_rnn.yaml │ │ │ │ ├── train_asr_transducer_conformer5.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 │ ├── s2st1 │ │ ├── cmd.sh │ │ └── conf │ │ │ └── slurm.conf │ └── tts1 │ │ ├── cmd.sh │ │ └── conf │ │ └── slurm.conf ├── conferencingspeech21 │ └── enh1 │ │ ├── cmd.sh │ │ ├── conf │ │ ├── pbs.conf │ │ ├── queue.conf │ │ ├── slurm.conf │ │ └── tuning │ │ │ └── train_enh_beamformer_mvdr.yaml │ │ ├── db.sh │ │ ├── enh.sh │ │ ├── local │ │ ├── config_from_generated.py │ │ ├── data.sh │ │ ├── fix_simulation_script.patch │ │ ├── path.sh │ │ ├── prepare.sh │ │ ├── prepare_data_list.py │ │ ├── prepare_dev_data.py │ │ ├── prepare_simu_config.py │ │ └── prepare_test_data.py │ │ ├── path.sh │ │ ├── pyscripts │ │ ├── run.sh │ │ ├── scripts │ │ ├── steps │ │ └── utils ├── covost2 │ ├── 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_transformer.yaml │ │ │ │ └── train_asr_transformer.yaml │ │ ├── db.sh │ │ ├── local │ │ │ ├── data.sh │ │ │ ├── data_prep_commonvoice.pl │ │ │ ├── data_prep_covost2.sh │ │ │ ├── download_and_untar_commonvoice.sh │ │ │ ├── path.sh │ │ │ └── process_tsv.py │ │ ├── path.sh │ │ ├── pyscripts │ │ ├── run.sh │ │ ├── scripts │ │ ├── steps │ │ └── utils │ ├── mt1 │ │ ├── cmd.sh │ │ ├── conf │ │ │ ├── decode_mt.yaml │ │ │ ├── pbs.conf │ │ │ ├── queue.conf │ │ │ ├── slurm.conf │ │ │ ├── train_mt.yaml │ │ │ └── tuning │ │ │ │ └── train_mt_transformer_lr3e-3_warmup10k_share_enc_dec_input_dropout0.3.yaml │ │ ├── db.sh │ │ ├── local │ │ │ ├── data.sh │ │ │ ├── data_prep_commonvoice.pl │ │ │ ├── data_prep_covost2.sh │ │ │ ├── download_and_untar_commonvoice.sh │ │ │ ├── path.sh │ │ │ └── process_tsv.py │ │ ├── mt.sh │ │ ├── path.sh │ │ ├── pyscripts │ │ ├── run.sh │ │ ├── scripts │ │ ├── steps │ │ └── utils │ └── st1 │ │ ├── cmd.sh │ │ ├── conf │ │ ├── decode_st.yaml │ │ ├── fbank.conf │ │ ├── pbs.conf │ │ ├── pitch.conf │ │ ├── queue.conf │ │ ├── slurm.conf │ │ ├── train_st.yaml │ │ └── tuning │ │ │ └── train_transformer_st.yaml │ │ ├── db.sh │ │ ├── local │ │ ├── data.sh │ │ ├── data_prep_commonvoice.pl │ │ ├── data_prep_covost2.sh │ │ ├── download_and_untar_commonvoice.sh │ │ ├── path.sh │ │ └── process_tsv.py │ │ ├── path.sh │ │ ├── pyscripts │ │ ├── run.sh │ │ ├── scripts │ │ ├── st.sh │ │ ├── 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 │ │ │ ├── decode_vits.yaml │ │ │ ├── train_conformer_fastspeech.yaml │ │ │ ├── train_conformer_fastspeech2.yaml │ │ │ ├── train_fastspeech.yaml │ │ │ ├── train_fastspeech2.yaml │ │ │ ├── train_full_band_vits.yaml │ │ │ ├── train_tacotron2.yaml │ │ │ ├── train_transformer.yaml │ │ │ └── train_vits.yaml │ │ ├── db.sh │ │ ├── local │ │ ├── data.sh │ │ ├── data_download.sh │ │ └── path.sh │ │ ├── path.sh │ │ ├── pyscripts │ │ ├── run.sh │ │ ├── scripts │ │ ├── steps │ │ ├── tts.sh │ │ └── utils ├── css10 │ └── 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 │ │ └── vad.conf │ │ ├── db.sh │ │ ├── local │ │ ├── data.sh │ │ ├── data_prep.sh │ │ └── path.sh │ │ ├── path.sh │ │ ├── pyscripts │ │ ├── run.sh │ │ ├── scripts │ │ ├── sid │ │ ├── steps │ │ ├── tts.sh │ │ └── utils ├── cvss │ ├── asr1 │ │ ├── asr.sh │ │ ├── cmd.sh │ │ ├── conf │ │ │ ├── decode_asr.yaml │ │ │ ├── fbank.conf │ │ │ ├── pbs.conf │ │ │ ├── pitch.conf │ │ │ ├── queue.conf │ │ │ ├── slurm.conf │ │ │ └── train_asr_conformer.yaml │ │ ├── db.sh │ │ ├── local │ │ │ ├── data.sh │ │ │ ├── download_and_untar.sh │ │ │ └── path.sh │ │ ├── path.sh │ │ ├── pyscripts │ │ ├── run.sh │ │ ├── scripts │ │ ├── steps │ │ └── utils │ ├── s2st1 │ │ ├── cmd.sh │ │ ├── conf │ │ │ ├── decode_s2st.yaml │ │ │ ├── fbank.conf │ │ │ ├── pbs.conf │ │ │ ├── pitch.conf │ │ │ ├── queue.conf │ │ │ ├── slurm.conf │ │ │ ├── train_s2st_discrete_unit.yaml │ │ │ ├── train_s2st_discrete_unit_conformer.yaml │ │ │ ├── train_s2st_multihead_tgt_feats.yaml │ │ │ ├── train_s2st_multihead_tgt_feats_reduction2.yaml │ │ │ ├── train_s2st_multihead_translatotron2_conformer.yaml │ │ │ ├── train_s2st_multihead_translatotron2_conformer_wav2vec2.yaml │ │ │ ├── train_s2st_tgt_feats.yaml │ │ │ ├── train_s2st_unity.yaml │ │ │ └── train_s2st_unity_conformer.yaml │ │ ├── db.sh │ │ ├── local │ │ │ ├── cv_data_prep.pl │ │ │ ├── cvss_data_prep.py │ │ │ ├── data.sh │ │ │ ├── download_and_untar.sh │ │ │ └── path.sh │ │ ├── path.sh │ │ ├── pyscripts │ │ ├── run.sh │ │ ├── run_discrete_unit.sh │ │ ├── s2st.sh │ │ ├── scripts │ │ ├── steps │ │ └── utils │ └── st1 │ │ ├── cmd.sh │ │ ├── conf │ │ ├── fbank.conf │ │ ├── pbs.conf │ │ ├── pitch.conf │ │ ├── queue.conf │ │ └── slurm.conf │ │ ├── db.sh │ │ ├── local │ │ ├── cv_data_prep.pl │ │ ├── cvss_data_prep.py │ │ ├── data.sh │ │ ├── download_and_untar.sh │ │ └── path.sh │ │ ├── path.sh │ │ ├── pyscripts │ │ ├── scripts │ │ ├── st.sh │ │ ├── steps │ │ └── utils ├── dcase22_task1 │ └── asr1 │ │ ├── README.md │ │ ├── asr.sh │ │ ├── cmd.sh │ │ ├── conf │ │ ├── decode_asr.yaml │ │ ├── fbank.conf │ │ ├── pbs.conf │ │ ├── pitch.conf │ │ ├── queue.conf │ │ ├── slurm.conf │ │ ├── train_asr.yaml │ │ └── tuning │ │ │ └── train_asr_hubert_transformer_adam_specaug.yaml │ │ ├── db.sh │ │ ├── local │ │ ├── data.sh │ │ ├── data_prep.py │ │ ├── path.sh │ │ ├── score.py │ │ ├── score.sh │ │ └── score_macro.py │ │ ├── path.sh │ │ ├── pyscripts │ │ ├── run.sh │ │ ├── scripts │ │ ├── steps │ │ └── 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_icassp21 │ └── enh1 │ │ ├── README.md │ │ ├── cmd.sh │ │ ├── conf │ │ ├── pbs.conf │ │ ├── queue.conf │ │ ├── slurm.conf │ │ ├── train.yaml │ │ └── tuning │ │ │ └── train_enh_tcn_tf.yaml │ │ ├── db.sh │ │ ├── enh.sh │ │ ├── local │ │ ├── data.sh │ │ ├── dns_create_mixture.sh │ │ ├── dns_data_prep.sh │ │ └── path.sh │ │ ├── path.sh │ │ ├── pyscripts │ │ ├── run.sh │ │ ├── scripts │ │ ├── steps │ │ └── utils ├── dns_icassp22 │ └── enh1 │ │ ├── README.md │ │ ├── cmd.sh │ │ ├── conf │ │ ├── pbs.conf │ │ ├── queue.conf │ │ ├── slurm.conf │ │ └── tuning │ │ │ └── train.yaml │ │ ├── db.sh │ │ ├── enh.sh │ │ ├── local │ │ ├── data.sh │ │ ├── dns_create_mixture.sh │ │ ├── dns_data_prep.sh │ │ ├── download_dns4_dataset.sh │ │ ├── noisyspeech_synthesizer.py │ │ └── path.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 │ │ │ ├── train_enh_conv_tasnet.yaml │ │ │ ├── train_enh_dccrn.yaml │ │ │ └── train_enh_tfgridnet.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 ├── dns_ins21 │ └── enh1 │ │ ├── cmd.sh │ │ ├── conf │ │ ├── pbs.conf │ │ ├── queue.conf │ │ ├── slurm.conf │ │ ├── train.yaml │ │ └── tuning │ │ │ └── train_enh_tcn_tf.yaml │ │ ├── db.sh │ │ ├── enh.sh │ │ ├── local │ │ ├── data.sh │ │ ├── dns_create_mixture.sh │ │ ├── dns_data_prep.sh │ │ └── path.sh │ │ ├── path.sh │ │ ├── pyscripts │ │ ├── run.sh │ │ ├── scripts │ │ ├── steps │ │ └── utils ├── dsing │ └── 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_conformer.yaml │ │ │ ├── decode_rnn.yaml │ │ │ ├── decode_transformer.yaml │ │ │ ├── train_asr_conformer6.yaml │ │ │ ├── train_asr_rnn.yaml │ │ │ └── train_asr_transformer.yaml │ │ ├── db.sh │ │ ├── local │ │ ├── data.sh │ │ ├── data_prep.py │ │ └── path.sh │ │ ├── path.sh │ │ ├── pyscripts │ │ ├── run.sh │ │ ├── scripts │ │ ├── steps │ │ └── utils ├── easycom │ └── avsr1 │ │ ├── README.md │ │ ├── asr.sh │ │ ├── cmd.sh │ │ ├── conf │ │ ├── fbank.conf │ │ ├── pbs.conf │ │ ├── pitch.conf │ │ ├── queue.conf │ │ ├── slurm.conf │ │ ├── train_avsr_avhubert_large_with_lrs3.yaml │ │ └── train_avsr_avhubert_large_with_lrs3_noise.yaml │ │ ├── db.sh │ │ ├── local │ │ ├── 20words_mean_face.npy │ │ ├── data.sh │ │ ├── extract_av_feature.py │ │ ├── face_alignment.py │ │ ├── path.sh │ │ ├── preprocessing.py │ │ ├── scp_gen.py │ │ └── transforms.py │ │ ├── path.sh │ │ ├── pyscripts │ │ ├── run.sh │ │ ├── scripts │ │ ├── steps │ │ └── utils ├── esc50 │ └── asr1 │ │ ├── asr.sh │ │ ├── cmd.sh │ │ ├── db.sh │ │ ├── local │ │ ├── data.sh │ │ ├── data_prep.py │ │ └── path.sh │ │ ├── path.sh │ │ ├── pyscripts │ │ ├── run.sh │ │ ├── scripts │ │ ├── steps │ │ └── utils ├── esd_22050_en │ └── tts1 │ │ └── local │ │ ├── data_download.sh │ │ └── data_prep.py ├── espnet_tutorial │ └── asvspoof1 │ │ ├── asvspoof.sh │ │ ├── cmd.sh │ │ ├── conf │ │ ├── checkpoint1_dummy.yaml │ │ ├── checkpoint2.yaml │ │ ├── decode_asvspoof.yaml │ │ ├── fbank.conf │ │ ├── pbs.conf │ │ ├── pitch.conf │ │ ├── queue.conf │ │ └── slurm.conf │ │ ├── db.sh │ │ ├── local │ │ ├── data.sh │ │ ├── data_prep.py │ │ └── path.sh │ │ ├── path.sh │ │ ├── pyscripts │ │ ├── scripts │ │ ├── steps │ │ └── utils ├── fisher_callhome_spanish │ ├── 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_conformer.yaml │ │ │ │ ├── decode_rnn.yaml │ │ │ │ ├── decode_transformer.yaml │ │ │ │ ├── train_asr_conformer6.yaml │ │ │ │ ├── train_asr_e_branchformer_e16.yaml │ │ │ │ ├── train_asr_rnn.yaml │ │ │ │ └── train_asr_transformer.yaml │ │ ├── db.sh │ │ ├── local │ │ │ ├── callhome_create_splits.sh │ │ │ ├── callhome_data_prep.sh │ │ │ ├── callhome_make_spk2gender.py │ │ │ ├── callhome_make_trans.pl │ │ │ ├── concat_short_utt.py │ │ │ ├── create_splits.sh │ │ │ ├── data.sh │ │ │ ├── fsp_data_prep.sh │ │ │ ├── fsp_make_spk2gender.py │ │ │ ├── fsp_make_trans.pl │ │ │ ├── normalize_punctuation.pl │ │ │ ├── normalize_trans.sh │ │ │ ├── path.sh │ │ │ └── splits │ │ ├── path.sh │ │ ├── pyscripts │ │ ├── run.sh │ │ ├── scripts │ │ ├── steps │ │ └── utils │ └── st1 │ │ ├── RESULT.md │ │ ├── cmd.sh │ │ ├── conf │ │ ├── decode_st.yaml │ │ ├── decode_streaming_st.yaml │ │ ├── fbank.conf │ │ ├── pbs.conf │ │ ├── pitch.conf │ │ ├── queue.conf │ │ ├── slurm.conf │ │ ├── train_st.yaml │ │ ├── train_st_streaming.yaml │ │ └── tuning │ │ │ ├── train_conformer_st.yaml │ │ │ └── train_transformer_st.yaml │ │ ├── db.sh │ │ ├── local │ │ ├── callhome_create_splits.sh │ │ ├── callhome_data_prep.sh │ │ ├── callhome_make_spk2gender.py │ │ ├── callhome_make_trans.pl │ │ ├── concat_short_utt.py │ │ ├── create_splits.sh │ │ ├── data.sh │ │ ├── fsp_data_prep.sh │ │ ├── fsp_make_spk2gender.py │ │ ├── fsp_make_trans.pl │ │ ├── normalize_punctuation.pl │ │ ├── normalize_trans.sh │ │ ├── path.sh │ │ ├── score_bleu.sh │ │ └── splits │ │ ├── path.sh │ │ ├── pyscripts │ │ ├── run.sh │ │ ├── scripts │ │ ├── st.sh │ │ ├── steps │ │ └── utils ├── fleurs │ └── 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.yaml │ │ └── tuning │ │ │ ├── decode_lid.yaml │ │ │ ├── decode_transformer.yaml │ │ │ ├── train_asr_conformer_hier_lid_utt.yaml │ │ │ ├── train_asr_conformer_scctc.yaml │ │ │ ├── train_asr_ebf_scctc.yaml │ │ │ ├── train_asr_hubert_large_ll60k_transformer.yaml │ │ │ ├── train_asr_transformer.yaml │ │ │ ├── train_asr_transformer_multilingual.yaml │ │ │ └── train_asr_wav2vec_960h_transformer.yaml │ │ ├── db.sh │ │ ├── local │ │ ├── create_dataset.py │ │ ├── create_lids.py │ │ ├── data.sh │ │ ├── data_prep.pl │ │ ├── path.sh │ │ ├── score.sh │ │ └── score_lang_id.py │ │ ├── path.sh │ │ ├── pyscripts │ │ ├── run.sh │ │ ├── scripts │ │ ├── steps │ │ └── utils ├── freesound │ └── asr1 │ │ ├── asr.sh │ │ ├── cmd.sh │ │ ├── db.sh │ │ ├── local │ │ ├── data.sh │ │ ├── data_prep.py │ │ └── path.sh │ │ ├── path.sh │ │ ├── pyscripts │ │ ├── run.sh │ │ ├── scripts │ │ ├── steps │ │ └── utils ├── fsc │ └── asr1 │ │ ├── README.md │ │ ├── asr.sh │ │ ├── cmd.sh │ │ ├── conf │ │ ├── fbank.conf │ │ ├── pbs.conf │ │ ├── pitch.conf │ │ ├── queue.conf │ │ ├── slurm.conf │ │ ├── train_asr.yaml │ │ ├── train_asr_streaming_transformer.yaml │ │ └── tuning │ │ │ ├── train_asr_hubert_transformer_adam_specaug.yaml │ │ │ ├── train_asr_transformer.yaml │ │ │ ├── train_asr_transformer_adam.yaml │ │ │ ├── train_asr_transformer_adam_small.yaml │ │ │ ├── train_asr_transformer_adam_small_specaug.yaml │ │ │ └── train_asr_transformer_adam_specaug.yaml │ │ ├── db.sh │ │ ├── local │ │ ├── data.sh │ │ ├── data_prep.py │ │ ├── path.sh │ │ ├── score.py │ │ └── score.sh │ │ ├── path.sh │ │ ├── pyscripts │ │ ├── run.sh │ │ ├── scripts │ │ ├── steps │ │ └── utils ├── fsc_challenge │ ├── asr1 │ │ ├── README.md │ │ ├── asr.sh │ │ ├── cmd.sh │ │ ├── conf │ │ │ ├── fbank.conf │ │ │ ├── pbs.conf │ │ │ ├── pitch.conf │ │ │ ├── queue.conf │ │ │ ├── slurm.conf │ │ │ ├── train_asr.yaml │ │ │ └── tuning │ │ │ │ ├── train_asr_hubert_transformer_adam_specaug.yaml │ │ │ │ ├── train_asr_hubert_transformer_adam_specaug_finetune.yaml │ │ │ │ └── train_asr_transformer_adam_specaug.yaml │ │ ├── db.sh │ │ ├── local │ │ │ ├── data.sh │ │ │ ├── data_prep.py │ │ │ ├── path.sh │ │ │ ├── score.py │ │ │ └── score.sh │ │ ├── path.sh │ │ ├── pyscripts │ │ ├── run.sh │ │ ├── scripts │ │ ├── steps │ │ └── utils │ └── slu1 │ │ ├── README.md │ │ ├── cmd.sh │ │ ├── conf │ │ ├── fbank.conf │ │ ├── pbs.conf │ │ ├── pitch.conf │ │ ├── queue.conf │ │ ├── slurm.conf │ │ ├── train_asr.yaml │ │ └── tuning │ │ │ ├── train_asr_hubert_transformer_adam_specaug_deliberation.yaml │ │ │ ├── train_asr_hubert_transformer_adam_specaug_deliberation_transformer.yaml │ │ │ └── train_asr_hubert_transformer_adam_specaug_deliberation_transformer_gt.yaml │ │ ├── db.sh │ │ ├── local │ │ ├── data.sh │ │ ├── data_prep.py │ │ ├── data_prep_gigaspeech.py │ │ ├── data_prep_gt.py │ │ ├── path.sh │ │ ├── score.py │ │ └── score.sh │ │ ├── path.sh │ │ ├── pyscripts │ │ ├── run.sh │ │ ├── scripts │ │ ├── slu.sh │ │ ├── steps │ │ └── utils ├── fsc_unseen │ └── asr1 │ │ ├── README.md │ │ ├── asr.sh │ │ ├── cmd.sh │ │ ├── conf │ │ ├── fbank.conf │ │ ├── pbs.conf │ │ ├── pitch.conf │ │ ├── queue.conf │ │ ├── slurm.conf │ │ ├── train_asr.yaml │ │ └── tuning │ │ │ ├── train_asr_hubert_transformer_adam_specaug.yaml │ │ │ └── train_asr_transformer_adam_specaug.yaml │ │ ├── db.sh │ │ ├── local │ │ ├── data.sh │ │ ├── data_prep.py │ │ ├── path.sh │ │ ├── score.py │ │ └── score.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_e_branchformer.yaml │ │ │ ├── train_lm.yaml │ │ │ └── tuning │ │ │ │ ├── train_asr_conformer6_n_fft512_hop_length256.yaml │ │ │ │ └── train_asr_e_branchformer_e17_size512_mlp3072_linear1024_layerdrop.yaml │ │ ├── db.sh │ │ ├── local │ │ │ ├── data.sh │ │ │ ├── path.sh │ │ │ └── score.sh │ │ ├── path.sh │ │ ├── pyscripts │ │ ├── run.sh │ │ ├── scripts │ │ ├── steps │ │ └── utils │ └── asr2 │ │ ├── README.md │ │ ├── asr2.sh │ │ ├── cmd.sh │ │ ├── conf │ │ ├── decode_ctc0.3.yaml │ │ ├── pbs.conf │ │ ├── queue.conf │ │ ├── slurm.conf │ │ └── tuning │ │ │ ├── train_discrete_asr_e_branchformer1_e12_lr.yaml │ │ │ └── train_discrete_asr_e_branchformer1_e12_lr1e-3.yaml │ │ ├── db.sh │ │ ├── local │ │ ├── data.sh │ │ ├── path.sh │ │ └── score.sh │ │ ├── path.sh │ │ ├── pyscripts │ │ ├── run.sh │ │ ├── scripts │ │ ├── steps │ │ └── utils ├── googlei18n_lowresource │ └── tts1 │ │ ├── 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 │ │ └── vad.conf │ │ ├── db.sh │ │ ├── local │ │ ├── data.sh │ │ ├── download_and_unzip.sh │ │ └── path.sh │ │ ├── run.sh │ │ ├── sid │ │ ├── steps │ │ ├── tts.sh │ │ └── utils ├── grabo │ └── asr1 │ │ ├── README.md │ │ ├── asr.sh │ │ ├── cmd.sh │ │ ├── conf │ │ ├── decode_asr.yaml │ │ ├── fbank.conf │ │ ├── pbs.conf │ │ ├── pitch.conf │ │ ├── queue.conf │ │ ├── slurm.conf │ │ ├── train_asr.yaml │ │ └── tuning │ │ │ └── train_asr_conformer_adam.yaml │ │ ├── db.sh │ │ ├── local │ │ ├── data.sh │ │ ├── data_prep.py │ │ ├── path.sh │ │ ├── score.py │ │ └── score.sh │ │ ├── path.sh │ │ ├── pyscripts │ │ ├── run.sh │ │ ├── scripts │ │ ├── steps │ │ └── utils ├── gramvaani │ └── asr1 │ │ ├── README.md │ │ ├── asr.sh │ │ ├── cmd.sh │ │ ├── conf │ │ ├── decode_asr.yaml │ │ └── train_asr_conformer6_n_fft400_hop_length160.yaml │ │ ├── db.sh │ │ ├── local │ │ ├── clean_text.py │ │ ├── data.sh │ │ └── path.sh │ │ ├── path.sh │ │ ├── pyscripts │ │ ├── run.sh │ │ ├── scripts │ │ ├── steps │ │ └── utils ├── harpervalley │ └── asr1 │ │ ├── README.md │ │ ├── asr.sh │ │ ├── cmd.sh │ │ ├── conf │ │ ├── decode_asr.yaml │ │ ├── fbank.conf │ │ ├── pbs.conf │ │ ├── pitch.conf │ │ ├── queue.conf │ │ ├── slurm.conf │ │ ├── train_asr.yaml │ │ └── tuning │ │ │ ├── train_asr.yaml │ │ │ └── train_asr_hubert.yaml │ │ ├── db.sh │ │ ├── local │ │ ├── data.sh │ │ ├── data_prep.py │ │ ├── path.sh │ │ ├── score.py │ │ ├── score.sh │ │ └── split_data.py │ │ ├── path.sh │ │ ├── pyscripts │ │ ├── run.sh │ │ ├── scripts │ │ ├── steps │ │ └── utils ├── hifitts │ └── tts1 │ │ ├── README.md │ │ ├── cmd.sh │ │ ├── conf │ │ ├── decode.yaml │ │ ├── mfcc.conf │ │ ├── pbs.conf │ │ ├── queue.conf │ │ ├── slurm.conf │ │ ├── train.yaml │ │ ├── tuning │ │ │ ├── decode_tacotron2.yaml │ │ │ ├── decode_vits.yaml │ │ │ ├── train_gst_tacotron2.yaml │ │ │ └── train_multi_spk_vits.yaml │ │ └── vad.conf │ │ ├── db.sh │ │ ├── local │ │ ├── data.sh │ │ ├── data_download.sh │ │ ├── data_prep.py │ │ └── path.sh │ │ ├── path.sh │ │ ├── pyscripts │ │ ├── run.sh │ │ ├── scripts │ │ ├── steps │ │ ├── tts.sh │ │ └── 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 ├── how2_2000h │ ├── asr1 │ │ ├── README.md │ │ ├── asr.sh │ │ ├── cmd.sh │ │ ├── conf │ │ │ ├── decode_asr.yaml │ │ │ ├── fbank.conf │ │ │ ├── pbs.conf │ │ │ ├── pitch.conf │ │ │ ├── queue.conf │ │ │ ├── slurm.conf │ │ │ ├── train_asr_conformer_lf.yaml │ │ │ └── tuning │ │ │ │ ├── decode.yaml │ │ │ │ ├── decode_ctc.yaml │ │ │ │ ├── pretrain_hubert.yaml │ │ │ │ └── train_asr_conformer_vid_ctc_lf.yaml │ │ ├── db.sh │ │ ├── local │ │ │ ├── data.sh │ │ │ ├── data_normalization │ │ │ │ ├── nlsyms │ │ │ │ ├── shortened │ │ │ │ ├── symbols │ │ │ │ └── url │ │ │ └── path.sh │ │ ├── path.sh │ │ ├── pyscripts │ │ ├── run.sh │ │ ├── scripts │ │ ├── steps │ │ └── utils │ └── sum1 │ │ ├── README.md │ │ ├── asr.sh │ │ ├── cmd.sh │ │ ├── conf │ │ ├── decode_asr.yaml │ │ ├── decode_sum.yaml │ │ ├── fbank.conf │ │ ├── pbs.conf │ │ ├── pitch.conf │ │ ├── queue.conf │ │ ├── slurm.conf │ │ ├── train_asr_conformer_lf.yaml │ │ ├── train_sum_conformer_lf.yaml │ │ └── tuning │ │ │ ├── decode.yaml │ │ │ ├── decode_ctc.yaml │ │ │ ├── decode_sum.yaml │ │ │ ├── pretrain_hubert.yaml │ │ │ ├── train_asr_conformer_vid_ctc_lf.yaml │ │ │ └── train_asr_conformer_vid_lf.yaml │ │ ├── db.sh │ │ ├── local │ │ ├── data.sh │ │ ├── data_normalization │ │ │ ├── nlsyms │ │ │ ├── shortened │ │ │ ├── symbols │ │ │ └── url │ │ ├── path.sh │ │ ├── run_asr.sh │ │ └── score.sh │ │ ├── path.sh │ │ ├── pyscripts │ │ ├── run.sh │ │ ├── scripts │ │ ├── steps │ │ └── utils ├── hub4_spanish │ └── 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 │ │ ├── parse_sgm.pl │ │ ├── path.sh │ │ ├── prepare_data.sh │ │ ├── prepare_test_text.pl │ │ ├── prepare_training_text.pl │ │ └── write_kaldi_files.pl │ │ ├── path.sh │ │ ├── pyscripts │ │ ├── run.sh │ │ ├── scripts │ │ ├── steps │ │ └── utils ├── hui_acg │ └── 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_conformer_fastspeech2.yaml │ │ │ ├── train_tacotron2.yaml │ │ │ └── train_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 ├── iam │ └── ocr1 │ │ ├── README.md │ │ ├── asr.sh │ │ ├── cmd.sh │ │ ├── conf │ │ ├── fbank.conf │ │ ├── pbs.conf │ │ ├── pitch.conf │ │ ├── queue.conf │ │ ├── slurm.conf │ │ └── train_asr_conformer.yaml │ │ ├── db.sh │ │ ├── local │ │ ├── data.sh │ │ ├── data_prep.py │ │ ├── download_and_untar.sh │ │ └── path.sh │ │ ├── path.sh │ │ ├── pyscripts │ │ ├── run.sh │ │ ├── scripts │ │ ├── steps │ │ └── utils ├── iemocap │ └── asr1 │ │ ├── README.md │ │ ├── asr.sh │ │ ├── cmd.sh │ │ ├── conf │ │ ├── decode_asr.yaml │ │ ├── fbank.conf │ │ ├── pbs.conf │ │ ├── pitch.conf │ │ ├── queue.conf │ │ ├── slurm.conf │ │ ├── train_asr.yaml │ │ └── tuning │ │ │ ├── train_asr_conformer.yaml │ │ │ ├── train_asr_conformer_hubert.yaml │ │ │ ├── train_asr_transformer_adam_specaug_fast.yaml │ │ │ └── train_asr_transformer_hubert_960hr_large.yaml │ │ ├── db.sh │ │ ├── local │ │ ├── data.sh │ │ ├── lowercase.pl │ │ ├── normalize_punctuation.pl │ │ ├── path.sh │ │ ├── prepare_sentiment.pl │ │ ├── remove_punctuation.pl │ │ ├── remove_tag.pl │ │ ├── score.py │ │ └── score.sh │ │ ├── path.sh │ │ ├── pyscripts │ │ ├── run.sh │ │ ├── scripts │ │ ├── steps │ │ └── utils ├── indic_speech │ └── 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_conformer_fastspeech2.yaml │ │ │ ├── train_tacotron2.yaml │ │ │ └── train_transformer.yaml │ │ └── vad.conf │ │ ├── db.sh │ │ ├── local │ │ ├── data.sh │ │ ├── data_prep.py │ │ └── path.sh │ │ ├── path.sh │ │ ├── pyscripts │ │ ├── run.sh │ │ ├── scripts │ │ ├── steps │ │ ├── tts.sh │ │ └── utils ├── interspeech2024_dsu_challenge │ └── asr2 │ │ ├── README.md │ │ ├── asr2.sh │ │ ├── cmd.sh │ │ ├── conf │ │ ├── decode_ctc0.3.yaml │ │ ├── pbs.conf │ │ ├── queue.conf │ │ ├── slurm.conf │ │ └── tuning │ │ │ ├── train_discrete_asr_e_branchformer1_1gpu_lr5e-4_warmup30k.yaml │ │ │ └── train_discrete_asr_e_branchformer1_1gpu_lr5e-4_warmup5k.yaml │ │ ├── db.sh │ │ ├── local │ │ ├── data.sh │ │ ├── data_ls100.sh │ │ ├── data_mlsuperb.sh │ │ ├── data_prep.py │ │ ├── data_prep.sh │ │ ├── download_and_untar.sh │ │ ├── path.sh │ │ └── score.sh │ │ ├── path.sh │ │ ├── pyscripts │ │ ├── run.sh │ │ ├── scripts │ │ ├── steps │ │ └── utils ├── itako │ └── svs1 │ │ ├── cmd.sh │ │ ├── conf │ │ ├── decode.yaml │ │ ├── pbs.conf │ │ ├── queue.conf │ │ ├── slurm.conf │ │ ├── train.yaml │ │ └── tuning │ │ │ ├── decode_rnn.yaml │ │ │ ├── train_naive_rnn_dp.yaml │ │ │ └── train_vits.yaml │ │ ├── db.sh │ │ ├── local │ │ ├── customed_dic.scp │ │ ├── data.sh │ │ ├── dataset_split.py │ │ ├── path.sh │ │ ├── prep_segments.py │ │ └── prep_segments_from_xml.py │ │ ├── path.sh │ │ ├── pyscripts │ │ ├── run.sh │ │ ├── scripts │ │ ├── svs.sh │ │ └── utils ├── iwslt14 │ └── mt1 │ │ ├── README.md │ │ ├── cmd.sh │ │ ├── conf │ │ ├── decode_mt.yaml │ │ ├── pbs.conf │ │ ├── queue.conf │ │ ├── slurm.conf │ │ ├── train_mt_transformer.yaml │ │ └── tuning │ │ │ ├── train_mt_branchformer_lr3e-3_warmup10k_share_enc_dec_input_dropout0.3.yaml │ │ │ └── train_mt_transformer_lr3e-3_warmup10k_share_enc_dec_input_dropout0.3.yaml │ │ ├── db.sh │ │ ├── local │ │ ├── data.sh │ │ └── path.sh │ │ ├── mt.sh │ │ ├── path.sh │ │ ├── pyscripts │ │ ├── run.sh │ │ ├── scripts │ │ ├── steps │ │ └── utils ├── iwslt21_low_resource │ └── 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 │ │ ├── nlsyms.txt │ │ ├── path.sh │ │ ├── prepare_alffa_data.py │ │ ├── prepare_babel_data.py │ │ ├── prepare_gamayun_data.py │ │ └── prepare_iwslt_data.py │ │ ├── path.sh │ │ ├── pyscripts │ │ ├── run.sh │ │ ├── scripts │ │ ├── steps │ │ └── utils ├── iwslt22_dialect │ ├── asr1 │ │ ├── RESULTS.md │ │ ├── asr.sh │ │ ├── cmd.sh │ │ ├── conf │ │ │ ├── decode_asr.yaml │ │ │ ├── fbank.conf │ │ │ ├── pbs.conf │ │ │ ├── pitch.conf │ │ │ ├── queue.conf │ │ │ ├── rnn_lm.yaml │ │ │ ├── slurm.conf │ │ │ ├── train_asr_conformer.yaml │ │ │ ├── train_asr_transformer.yaml │ │ │ └── tuning │ │ │ │ ├── train_asr_conformer_ctc0.3_lr2e-3_warmup15k_newspecaug.yaml │ │ │ │ └── transformer_fisherlike_4gpu_bbins16m_fix.yaml │ │ ├── db.sh │ │ ├── local │ │ │ ├── data.sh │ │ │ ├── path.sh │ │ │ └── preprocess.py │ │ ├── path.sh │ │ ├── pyscripts │ │ ├── run.sh │ │ ├── scripts │ │ ├── steps │ │ └── utils │ └── st1 │ │ ├── RESULTS.md │ │ ├── cmd.sh │ │ ├── conf │ │ ├── decode_st_conformer.yaml │ │ ├── decode_st_transformer.yaml │ │ ├── fbank.conf │ │ ├── pbs.conf │ │ ├── pitch.conf │ │ ├── queue.conf │ │ ├── slurm.conf │ │ ├── train_st.yaml │ │ ├── train_st_conformer.yaml │ │ ├── train_st_transformer.yaml │ │ └── tuning │ │ │ ├── decode_pen2.yaml │ │ │ ├── decode_pen3.yaml │ │ │ ├── train_st_conformer_ctc0.3_lr2e-3_warmup15k_newspecaug.yaml │ │ │ └── transformer_fisherlike_4gpu_bbins16m.yaml │ │ ├── db.sh │ │ ├── local │ │ ├── data.sh │ │ ├── path.sh │ │ └── preprocess.py │ │ ├── path.sh │ │ ├── pyscripts │ │ ├── run.sh │ │ ├── scripts │ │ ├── st.sh │ │ ├── steps │ │ └── utils ├── iwslt22_low_resource │ └── st1 │ │ ├── RESULTS.md │ │ ├── cmd.sh │ │ ├── conf │ │ ├── decode_st_full_transformer.yaml │ │ ├── decode_st_transformer.yaml │ │ ├── fbank.conf │ │ ├── pbs.conf │ │ ├── pitch.conf │ │ ├── queue.conf │ │ ├── slurm.conf │ │ ├── train_st_transformer.yaml │ │ └── tuning │ │ │ ├── decode_pen3.yaml │ │ │ ├── decode_pen4.yaml │ │ │ └── train_st_transformer_warmup15k.yaml │ │ ├── db.sh │ │ ├── local │ │ ├── data.sh │ │ ├── path.sh │ │ └── preprocess.py │ │ ├── path.sh │ │ ├── pyscripts │ │ ├── run.sh │ │ ├── scripts │ │ ├── st.sh │ │ ├── steps │ │ └── utils ├── iwslt24_indic │ └── st1 │ │ ├── RESULTS.md │ │ ├── cmd.sh │ │ ├── conf │ │ ├── fbank.conf │ │ ├── pbs.conf │ │ ├── pitch.conf │ │ ├── queue.conf │ │ ├── slurm.conf │ │ └── tuning │ │ │ ├── decode_st_conformer.yaml │ │ │ └── train_st_conformer.yaml │ │ ├── db.sh │ │ ├── local │ │ ├── data.sh │ │ ├── data_prep.sh │ │ ├── download_and_unpack.sh │ │ └── path.sh │ │ ├── path.sh │ │ ├── pyscripts │ │ ├── run.sh │ │ ├── scripts │ │ ├── st.sh │ │ ├── steps │ │ └── utils ├── jdcinal │ └── asr1 │ │ ├── README.md │ │ ├── asr.sh │ │ ├── cmd.sh │ │ ├── conf │ │ ├── decode_asr.yaml │ │ ├── fbank.conf │ │ ├── pbs.conf │ │ ├── pitch.conf │ │ ├── queue.conf │ │ ├── slurm.conf │ │ └── train_asr.yaml │ │ ├── db.sh │ │ ├── local │ │ ├── csv2file.pl │ │ ├── data.sh │ │ ├── path.sh │ │ ├── score.py │ │ └── score.sh │ │ ├── path.sh │ │ ├── pyscripts │ │ ├── run.sh │ │ ├── scripts │ │ ├── steps │ │ └── utils ├── jkac │ └── 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 │ │ ├── path.sh │ │ └── prep_segments.py │ │ ├── path.sh │ │ ├── pyscripts │ │ ├── run.sh │ │ ├── scripts │ │ ├── steps │ │ ├── tts.sh │ │ └── utils ├── jmd │ └── 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 │ │ ├── clean_text.py │ │ ├── data.sh │ │ ├── data_download.sh │ │ ├── data_prep.sh │ │ └── path.sh │ │ ├── path.sh │ │ ├── pyscripts │ │ ├── run.sh │ │ ├── scripts │ │ ├── steps │ │ ├── tts.sh │ │ └── 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_e_branchformer_e16_conv15.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 │ │ │ ├── decode_vits.yaml │ │ │ ├── train_conformer_fastspeech.yaml │ │ │ ├── train_conformer_fastspeech2.yaml │ │ │ ├── train_fastspeech.yaml │ │ │ ├── train_fastspeech2.yaml │ │ │ ├── train_full_band_vits.yaml │ │ │ ├── train_tacotron2.yaml │ │ │ ├── train_transformer.yaml │ │ │ └── train_vits.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 ├── jsut_song │ └── svs1 │ │ ├── cmd.sh │ │ ├── conf │ │ ├── decode.yaml │ │ ├── pbs.conf │ │ ├── queue.conf │ │ ├── slurm.conf │ │ ├── train.yaml │ │ └── tuning │ │ │ └── train_naive_rnn.yaml │ │ ├── db.sh │ │ ├── local │ │ ├── README.md │ │ ├── data.sh │ │ ├── data_prep.py │ │ └── path.sh │ │ ├── path.sh │ │ ├── pyscripts │ │ ├── run.sh │ │ ├── scripts │ │ ├── svs.sh │ │ └── utils ├── jtubespeech │ ├── 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 │ │ ├── db.sh │ │ ├── local │ │ │ ├── data.sh │ │ │ ├── dev_easy_jun21.list │ │ │ ├── dev_normal_jun21.list │ │ │ ├── dev_speaker_list │ │ │ ├── eval_easy_jun21.list │ │ │ ├── eval_normal_jun21.list │ │ │ ├── eval_speaker_list │ │ │ ├── path.sh │ │ │ ├── test_normal_jun21.list │ │ │ └── test_speaker_list │ │ ├── path.sh │ │ ├── pyscripts │ │ ├── run.sh │ │ ├── scripts │ │ ├── steps │ │ └── utils │ └── 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_prep.sh │ │ ├── download.sh │ │ ├── path.sh │ │ ├── prune.py │ │ └── split.py │ │ ├── path.sh │ │ ├── pyscripts │ │ ├── run.sh │ │ ├── scripts │ │ ├── sid │ │ ├── steps │ │ ├── tts.sh │ │ └── utils ├── jv_openslr35 │ └── 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.yaml │ │ ├── db.sh │ │ ├── local │ │ ├── data.sh │ │ ├── data_prep.py │ │ └── path.sh │ │ ├── path.sh │ │ ├── pyscripts │ │ ├── run.sh │ │ ├── scripts │ │ ├── setup.sh │ │ ├── steps │ │ └── utils ├── jvs │ └── tts1 │ │ ├── README.md │ │ ├── cmd.sh │ │ ├── conf │ │ ├── decode.yaml │ │ ├── finetune.yaml │ │ ├── pbs.conf │ │ ├── queue.conf │ │ ├── slurm.conf │ │ └── tuning │ │ │ ├── decode_fastspeech.yaml │ │ │ ├── decode_tacotron2.yaml │ │ │ ├── decode_vits.yaml │ │ │ ├── finetune_fastspeech2.yaml │ │ │ ├── finetune_tacotron2.yaml │ │ │ └── finetune_vits.yaml │ │ ├── db.sh │ │ ├── local │ │ ├── data.sh │ │ ├── data_download.sh │ │ ├── data_prep.sh │ │ └── path.sh │ │ ├── path.sh │ │ ├── pyscripts │ │ ├── run.sh │ │ ├── scripts │ │ ├── steps │ │ ├── tts.sh │ │ └── utils ├── kathbath │ └── asr1 │ │ ├── README.md │ │ ├── asr.sh │ │ ├── cmd.sh │ │ ├── conf │ │ ├── decode_asr.yaml │ │ └── train_asr.yaml │ │ ├── db.sh │ │ ├── local │ │ ├── data.sh │ │ └── path.sh │ │ ├── path.sh │ │ ├── pyscripts │ │ ├── run.sh │ │ ├── scripts │ │ ├── steps │ │ └── utils ├── kiritan │ └── svs1 │ │ ├── cmd.sh │ │ ├── conf │ │ ├── decode.yaml │ │ ├── pbs.conf │ │ ├── queue.conf │ │ ├── slurm.conf │ │ ├── train.yaml │ │ └── tuning │ │ │ ├── decode_rnn.yaml │ │ │ ├── train_naive_rnn.yaml │ │ │ ├── train_naive_rnn_dp.yaml │ │ │ └── train_vits.yaml │ │ ├── db.sh │ │ ├── local │ │ ├── customed_dic.scp │ │ ├── data.sh │ │ ├── dataset_split.py │ │ ├── path.sh │ │ ├── prep_segments.py │ │ └── prep_segments_from_xml.py │ │ ├── path.sh │ │ ├── pyscripts │ │ ├── run.sh │ │ ├── scripts │ │ ├── svs.sh │ │ └── utils ├── kising │ └── svs1 │ │ ├── README.md │ │ ├── cmd.sh │ │ ├── conf │ │ ├── pbs.conf │ │ ├── queue.conf │ │ ├── slurm.conf │ │ └── tuning │ │ │ ├── decode_vits.yaml │ │ │ ├── train_visinger.yaml │ │ │ ├── train_visinger2_all.yaml │ │ │ └── train_visinger2_original.yaml │ │ ├── db.sh │ │ ├── local │ │ ├── data.sh │ │ ├── data_prep.py │ │ ├── download_wget.sh │ │ ├── midi-note.scp │ │ ├── notes.md │ │ ├── path.sh │ │ └── pinyin_dict.py │ │ ├── path.sh │ │ ├── pyscripts │ │ ├── run.sh │ │ ├── scripts │ │ ├── svs.sh │ │ └── utils ├── ksc │ └── asr1 │ │ ├── RESULTS.md │ │ ├── asr.sh │ │ ├── cmd.sh │ │ ├── conf │ │ ├── decode.yaml │ │ ├── fbank.conf │ │ ├── pbs.conf │ │ ├── pitch.conf │ │ ├── queue.conf │ │ ├── slurm.conf │ │ └── train.yaml │ │ ├── db.sh │ │ ├── local │ │ ├── data.sh │ │ ├── download_data.sh │ │ ├── path.sh │ │ └── prepare_data.sh │ │ ├── path.sh │ │ ├── pyscripts │ │ ├── run.sh │ │ ├── scripts │ │ └── utils ├── ksponspeech │ └── 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 │ │ └── tuning │ │ │ ├── train_asr_conformer8_n_fft512_hop_length256.yaml │ │ │ └── train_lm_transformer3.yaml │ │ ├── db.sh │ │ ├── local │ │ ├── data.sh │ │ ├── data_prep.sh │ │ ├── get_space_normalized_hyps.py │ │ ├── get_transcriptions.py │ │ ├── lowercase.perl │ │ ├── path.sh │ │ ├── remove_punctuation.pl │ │ ├── score_sclite.sh │ │ └── trans_prep.sh │ │ ├── path.sh │ │ ├── pyscripts │ │ ├── run.sh │ │ ├── scripts │ │ ├── steps │ │ └── utils ├── kss │ └── 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 │ │ │ ├── decode_vits.yaml │ │ │ ├── train_conformer_fastspeech2.yaml │ │ │ ├── train_full_band_vits.yaml │ │ │ ├── train_jets.yaml │ │ │ ├── train_tacotron2.yaml │ │ │ └── train_transformer.yaml │ │ └── vad.conf │ │ ├── db.sh │ │ ├── local │ │ ├── data.sh │ │ ├── data_prep.sh │ │ └── path.sh │ │ ├── path.sh │ │ ├── pyscripts │ │ ├── run.sh │ │ ├── scripts │ │ ├── sid │ │ ├── steps │ │ ├── tts.sh │ │ └── utils ├── l3das22 │ └── 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_dc_crn_mapping_snr.yaml │ │ │ ├── train_enh_dprnn_tasnet.yaml │ │ │ ├── train_enh_dprnntac_fasnet.yaml │ │ │ └── train_enh_dprnntac_ifasnet.yaml │ │ ├── db.sh │ │ ├── enh.sh │ │ ├── local │ │ ├── data.sh │ │ ├── l3das22_data_prep.sh │ │ ├── l3das22_split_channels.sh │ │ ├── metric.py │ │ ├── metric.sh │ │ └── path.sh │ │ ├── path.sh │ │ ├── pyscripts │ │ ├── run.sh │ │ ├── scripts │ │ ├── steps │ │ └── utils ├── laborotv │ └── asr1 │ │ ├── README.md │ │ ├── asr.sh │ │ ├── cmd.sh │ │ ├── conf │ │ ├── decode_asr.yaml │ │ ├── decode_asr_streaming.yaml │ │ ├── pbs.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 │ │ └── 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 │ │ ├── run_streaming.sh │ │ ├── scripts │ │ ├── steps │ │ └── utils ├── libriheavy_medium │ └── asr2 │ │ ├── README.md │ │ ├── asr2.sh │ │ ├── cmd.sh │ │ ├── conf │ │ ├── decode_ctc0.3.yaml │ │ ├── pbs.conf │ │ ├── queue.conf │ │ ├── slurm.conf │ │ └── tuning │ │ │ └── train_discrete_asr_e_branchformer1_e12_lr1e-3.yaml │ │ ├── db.sh │ │ ├── local │ │ ├── data.sh │ │ └── path.sh │ │ ├── path.sh │ │ ├── pyscripts │ │ ├── run.sh │ │ ├── scripts │ │ ├── steps │ │ └── utils ├── libriheavy_small │ └── asr2 │ │ ├── README.md │ │ ├── asr2.sh │ │ ├── cmd.sh │ │ ├── conf │ │ ├── decode_ctc0.3.yaml │ │ ├── pbs.conf │ │ ├── queue.conf │ │ ├── slurm.conf │ │ └── tuning │ │ │ └── train_discrete_asr_e_branchformer1_e12_lr1e-3.yaml │ │ ├── db.sh │ │ ├── local │ │ ├── data.sh │ │ └── path.sh │ │ ├── path.sh │ │ ├── pyscripts │ │ ├── run.sh │ │ ├── scripts │ │ ├── steps │ │ └── utils ├── librilight_limited │ └── asr1 │ │ ├── asr.sh │ │ ├── cmd.sh │ │ ├── conf │ │ ├── decode.yaml │ │ ├── fbank.conf │ │ ├── pbs.conf │ │ ├── pitch.conf │ │ ├── queue.conf │ │ ├── slurm.conf │ │ └── tuning │ │ │ └── train_asr_hubert_base_10h_finetuning.yaml │ │ ├── db.sh │ │ ├── local │ │ ├── data.sh │ │ ├── data_prep_eval.sh │ │ ├── download_and_untar_eval.sh │ │ └── path.sh │ │ ├── path.sh │ │ ├── pyscripts │ │ ├── run.sh │ │ ├── scripts │ │ ├── steps │ │ └── utils ├── librimix │ ├── asr1 │ │ ├── RESULTS.md │ │ ├── asr.sh │ │ ├── cmd.sh │ │ ├── conf │ │ │ ├── decode.yaml │ │ │ ├── fbank.conf │ │ │ ├── pbs.conf │ │ │ ├── pitch.conf │ │ │ ├── queue.conf │ │ │ ├── slurm.conf │ │ │ └── tuning │ │ │ │ ├── train_asr_transformer_multispkr.yaml │ │ │ │ └── train_lm_transformer.yaml │ │ ├── db.sh │ │ ├── local │ │ │ ├── data.sh │ │ │ ├── data_prep.sh │ │ │ ├── download_and_untar.sh │ │ │ └── path.sh │ │ ├── path.sh │ │ ├── pyscripts │ │ ├── run.sh │ │ ├── scripts │ │ ├── steps │ │ └── utils │ ├── diar1 │ │ ├── cmd.sh │ │ ├── conf │ │ │ ├── decode_diar.yaml │ │ │ ├── decode_diar_eda.yaml │ │ │ ├── pbs.conf │ │ │ ├── queue.conf │ │ │ ├── slurm.conf │ │ │ ├── train_diar.yaml │ │ │ ├── train_diar_eda.yaml │ │ │ ├── train_diar_eda_adapt.yaml │ │ │ └── tuning │ │ │ │ ├── decode_diar.yaml │ │ │ │ ├── decode_diar_eda.yaml │ │ │ │ ├── train_diar_2.yaml │ │ │ │ ├── train_diar_eda_5.yaml │ │ │ │ └── train_diar_eda_adapt.yaml │ │ ├── db.sh │ │ ├── diar.sh │ │ ├── local │ │ │ ├── data.sh │ │ │ ├── generate_librimix_sd.sh │ │ │ ├── path.sh │ │ │ └── prepare_kaldifiles.py │ │ ├── path.sh │ │ ├── pyscripts │ │ ├── run.sh │ │ ├── run_eda.sh │ │ ├── scripts │ │ ├── steps │ │ └── utils │ ├── 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 │ │ │ ├── asr_data_prep.sh │ │ │ ├── data.sh │ │ │ └── path.sh │ │ ├── path.sh │ │ ├── pyscripts │ │ ├── run.sh │ │ ├── scripts │ │ ├── steps │ │ └── utils │ ├── enh_diar1 │ │ ├── README.md │ │ ├── cmd.sh │ │ ├── conf │ │ │ ├── pbs.conf │ │ │ ├── queue.conf │ │ │ ├── slurm.conf │ │ │ └── tuning │ │ │ │ ├── decode_diar_enh.yaml │ │ │ │ ├── decode_diar_enh_adapt.yaml │ │ │ │ ├── train_diar_enh_convtasnet_2.yaml │ │ │ │ ├── train_diar_enh_convtasnet_adapt.yaml │ │ │ │ ├── train_diar_enh_convtasnet_concat_feats.yaml │ │ │ │ └── train_diar_enh_convtasnet_concat_feats_adapt.yaml │ │ ├── db.sh │ │ ├── enh_diar.sh │ │ ├── local │ │ │ ├── data.sh │ │ │ ├── generate_librimix_sd.sh │ │ │ ├── path.sh │ │ │ ├── prepare_kaldifiles.py │ │ │ └── run_adapt.sh │ │ ├── path.sh │ │ ├── pyscripts │ │ ├── run.sh │ │ ├── scripts │ │ ├── steps │ │ └── utils │ ├── sot_asr1 │ │ ├── README.md │ │ ├── asr.sh │ │ ├── cmd.sh │ │ ├── conf │ │ │ ├── fbank.conf │ │ │ ├── pbs.conf │ │ │ ├── pitch.conf │ │ │ ├── queue.conf │ │ │ ├── slurm.conf │ │ │ └── tuning │ │ │ │ ├── decode_pit.yaml │ │ │ │ ├── decode_sot.yaml │ │ │ │ ├── train_lm_transformer.yaml │ │ │ │ ├── train_sot_asr_conformer.yaml │ │ │ │ ├── train_sot_asr_conformer_wavlm.yaml │ │ │ │ ├── train_sot_asr_whisper.yaml │ │ │ │ ├── train_sot_asr_whisper_medium.yaml │ │ │ │ └── train_sot_asr_whisper_small.yaml │ │ ├── db.sh │ │ ├── local │ │ │ ├── create_librimix_from_metadata.patch │ │ │ ├── data.sh │ │ │ ├── data_prep.sh │ │ │ ├── download_and_untar.sh │ │ │ ├── metadta_Libri2Mix_offset │ │ │ │ ├── Storage_info.txt │ │ │ │ ├── libri2mix_dev-clean.csv │ │ │ │ ├── libri2mix_dev-clean_info.csv │ │ │ │ ├── libri2mix_test-clean.csv │ │ │ │ ├── libri2mix_test-clean_info.csv │ │ │ │ ├── libri2mix_train-clean-100.csv │ │ │ │ ├── libri2mix_train-clean-100_info.csv │ │ │ │ ├── libri2mix_train-clean-360.csv │ │ │ │ └── libri2mix_train-clean-360_info.csv │ │ │ └── path.sh │ │ ├── path.sh │ │ ├── pyscripts │ │ ├── run.sh │ │ ├── run_whisper_sot.sh │ │ ├── scripts │ │ ├── steps │ │ └── utils │ └── tse1 │ │ ├── README.md │ │ ├── cmd.sh │ │ ├── conf │ │ ├── pbs.conf │ │ ├── queue.conf │ │ ├── slurm.conf │ │ ├── train.yaml │ │ └── tuning │ │ │ └── train_enh_tse_td_speakerbeam_16k.yaml │ │ ├── db.sh │ │ ├── enh.sh │ │ ├── local │ │ ├── asr_data_prep.sh │ │ ├── data.sh │ │ ├── librimix_data.sh │ │ ├── path.sh │ │ ├── prepare_librimix_enroll.py │ │ └── prepare_spk2enroll_librispeech.py │ │ ├── path.sh │ │ ├── pyscripts │ │ ├── run.sh │ │ ├── scripts │ │ ├── steps │ │ └── utils ├── librispeech │ ├── asr1 │ │ ├── README.md │ │ ├── asr.sh │ │ ├── cmd.sh │ │ ├── conf │ │ │ ├── decode_asr.yaml │ │ │ ├── decode_asr_rnnt.yaml │ │ │ ├── decode_asr_transformer_with_k2.yaml │ │ │ ├── fbank.conf │ │ │ ├── pbs.conf │ │ │ ├── pitch.conf │ │ │ ├── queue.conf │ │ │ ├── slurm.conf │ │ │ ├── train_asr_branchformer.yaml │ │ │ ├── train_asr_conformer.yaml │ │ │ ├── train_asr_rnnt.yaml │ │ │ ├── train_asr_transformer.yaml │ │ │ ├── train_lm_transformer.yaml │ │ │ ├── train_rnn_lm.yaml │ │ │ └── tuning │ │ │ │ ├── train_asr_branchformer_hop_length160_e18_linear3072.yaml │ │ │ │ ├── train_asr_conformer.yaml │ │ │ │ ├── train_asr_conformer10_hop_length160.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_hubert_ll60k_large.yaml │ │ │ │ ├── train_asr_conformer7_n_fft512_hop_length256.yaml │ │ │ │ ├── train_asr_conformer7_wav2vec2_960hr_large.yaml │ │ │ │ ├── train_asr_conformer7_wavlm_large.yaml │ │ │ │ ├── train_asr_conformer8.yaml │ │ │ │ ├── train_asr_conformer9_layerdrop0.1_last6.yaml │ │ │ │ ├── train_asr_e_branchformer.yaml │ │ │ │ ├── train_asr_multiconvformer_conv_fusion.yaml │ │ │ │ ├── train_asr_s4_decoder.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 │ │ │ │ └── transducer │ │ │ │ ├── decode.yaml │ │ │ │ ├── decode_multi_blank_transducer.yaml │ │ │ │ ├── train_conformer-rnn_transducer.yaml │ │ │ │ └── train_conformer-rnn_transducer_multi_blank.yaml │ │ ├── db.sh │ │ ├── local │ │ │ ├── data.sh │ │ │ ├── data_prep.sh │ │ │ ├── download_and_untar.sh │ │ │ └── path.sh │ │ ├── path.sh │ │ ├── pyscripts │ │ ├── run.sh │ │ ├── scripts │ │ ├── steps │ │ └── utils │ ├── asr2 │ │ ├── README.md │ │ ├── asr2.sh │ │ ├── cmd.sh │ │ ├── conf │ │ │ ├── decode_ctc0.3.yaml │ │ │ ├── pbs.conf │ │ │ ├── queue.conf │ │ │ ├── slurm.conf │ │ │ └── tuning │ │ │ │ ├── train_discrete_asr_e_branchformer1.yaml │ │ │ │ ├── train_discrete_asr_e_branchformer1_1gpu.yaml │ │ │ │ ├── train_discrete_asr_e_branchformer1_codec8.yaml │ │ │ │ └── train_discrete_asr_e_branchformer1_conv1d3.yaml │ │ ├── db.sh │ │ ├── local │ │ │ ├── data.sh │ │ │ ├── data_asr1.sh │ │ │ ├── data_prep.sh │ │ │ ├── download_and_untar.sh │ │ │ ├── dump_hubert_or_wavlm_feature.py │ │ │ ├── dump_librispeech_alignment_from_textgrid.py │ │ │ ├── measure_teacher_quality.py │ │ │ └── path.sh │ │ ├── path.sh │ │ ├── pyscripts │ │ ├── run.sh │ │ ├── scripts │ │ ├── steps │ │ └── utils │ └── ssl1 │ │ ├── README.md │ │ ├── cmd.sh │ │ ├── conf │ │ ├── pbs.conf │ │ ├── queue.conf │ │ ├── slurm.conf │ │ └── tuning │ │ │ ├── train_asr_hubert_base_960h_pretrain_it0.yaml │ │ │ ├── train_asr_hubert_base_960h_pretrain_it1.yaml │ │ │ ├── train_asr_hubert_base_960h_pretrain_it2.yaml │ │ │ ├── train_ssl_torchaudiohubert_base_960h_pretrain_it0.yaml │ │ │ ├── train_ssl_torchaudiohubert_base_960h_pretrain_it1.yaml │ │ │ ├── train_ssl_torchaudiohubert_base_960h_pretrain_it2_40ms.yaml │ │ │ └── train_ssl_torchaudiohubert_large_960h_pretrain_it2.yaml │ │ ├── db.sh │ │ ├── hubert.sh │ │ ├── local │ │ ├── data.sh │ │ ├── data_asr1.sh │ │ ├── data_prep.sh │ │ ├── download_and_untar.sh │ │ ├── dump_librispeech_alignment_from_textgrid.py │ │ └── path.sh │ │ ├── path.sh │ │ ├── pyscripts │ │ ├── run.sh │ │ ├── scripts │ │ ├── steps │ │ └── utils ├── librispeech_100 │ ├── asr1 │ │ ├── README.md │ │ ├── asr.sh │ │ ├── cmd.sh │ │ ├── conf │ │ │ ├── decode_asr.yaml │ │ │ ├── decode_asr_whisper_noctc_greedy.yaml │ │ │ ├── fbank.conf │ │ │ ├── pbs.conf │ │ │ ├── pitch.conf │ │ │ ├── queue.conf │ │ │ ├── slurm.conf │ │ │ ├── train_asr.yaml │ │ │ └── tuning │ │ │ │ ├── decode_asr_timesync.yaml │ │ │ │ ├── decode_ctc_bs1.yaml │ │ │ │ ├── decode_transducer.yaml │ │ │ │ ├── train_asr_conformer_lr2e-3_warmup15k_amp_nondeterministic.yaml │ │ │ │ ├── train_asr_ctc_e_branchformer_e12_mlp1024_linear1024.yaml │ │ │ │ ├── train_asr_e_branchformer_size256_mlp1024_linear1024_e12_mactrue_edrop0.0_ddrop0.0.yaml │ │ │ │ ├── train_asr_multiconvformer_conv_fusion_linear1024.yaml │ │ │ │ ├── train_asr_transducer_conformer_e15_linear1024.yaml │ │ │ │ ├── train_asr_transducer_e_branchformer_e12_mlp1024_linear1024.yaml │ │ │ │ ├── train_asr_transformer_win400_hop160_ctc0.3_lr2e-3_warmup15k_timemask5_amp_no-deterministic.yaml │ │ │ │ ├── train_asr_whisper_full.yaml │ │ │ │ ├── train_conformer_ctc.yaml │ │ │ │ ├── train_conformer_interctc.yaml │ │ │ │ └── train_conformer_scctc.yaml │ │ ├── db.sh │ │ ├── local │ │ │ ├── data.sh │ │ │ ├── data_prep.sh │ │ │ ├── download_and_untar.sh │ │ │ └── path.sh │ │ ├── path.sh │ │ ├── pyscripts │ │ ├── run.sh │ │ ├── scripts │ │ ├── steps │ │ └── utils │ └── asr2 │ │ ├── README.md │ │ ├── asr2.sh │ │ ├── cmd.sh │ │ ├── conf │ │ ├── decode_ctc0.3.yaml │ │ ├── pbs.conf │ │ ├── queue.conf │ │ ├── slurm.conf │ │ └── train_discrete_asr_e_branchformer1_1gpu.yaml │ │ ├── db.sh │ │ ├── local │ │ ├── data.sh │ │ ├── data_prep.sh │ │ ├── download_and_untar.sh │ │ └── path.sh │ │ ├── path.sh │ │ ├── pyscripts │ │ ├── run.sh │ │ ├── scripts │ │ ├── steps │ │ └── utils ├── libritts │ ├── asr1 │ │ ├── README.md │ │ ├── asr.sh │ │ ├── cmd.sh │ │ ├── conf │ │ │ ├── decode_asr.yaml │ │ │ ├── fbank.conf │ │ │ ├── pbs.conf │ │ │ ├── pitch.conf │ │ │ ├── queue.conf │ │ │ ├── slurm.conf │ │ │ ├── train_asr.yaml │ │ │ └── tuning │ │ │ │ └── train_asr_e_branchformer.yaml │ │ ├── db.sh │ │ ├── local │ │ │ ├── data.sh │ │ │ ├── data_prep.sh │ │ │ ├── download_and_untar.sh │ │ │ ├── path.sh │ │ │ └── phonemize_dir.py │ │ ├── path.sh │ │ ├── pyscripts │ │ ├── run.sh │ │ ├── scripts │ │ ├── steps │ │ └── utils │ ├── codec1 │ │ ├── cmd.sh │ │ ├── codec.sh │ │ ├── conf │ │ │ ├── decode.yaml │ │ │ ├── fbank.conf │ │ │ ├── pbs.conf │ │ │ ├── pitch.conf │ │ │ ├── queue.conf │ │ │ ├── score.yaml │ │ │ ├── scoring │ │ │ │ ├── score.yaml │ │ │ │ ├── score_16k.yaml │ │ │ │ ├── score_16k_cpu.yaml │ │ │ │ ├── score_16k_gpu.yaml │ │ │ │ ├── score_24k.yaml │ │ │ │ ├── score_24k_cpu.yaml │ │ │ │ ├── score_24k_gpu.yaml │ │ │ │ ├── score_cpu.yaml │ │ │ │ └── score_gpu.yaml │ │ │ ├── slurm.conf │ │ │ ├── train.yaml │ │ │ └── tuning │ │ │ │ ├── train_dac.yaml │ │ │ │ ├── train_encodec.yaml │ │ │ │ ├── train_funcodec_mag_angle.yaml │ │ │ │ ├── train_funcodec_mag_phase.yaml │ │ │ │ └── train_soundstream.yaml │ │ ├── db.sh │ │ ├── local │ │ │ ├── data.sh │ │ │ ├── data_prep.sh │ │ │ ├── download_and_untar.sh │ │ │ ├── path.sh │ │ │ └── trim_all_silence.py │ │ ├── path.sh │ │ ├── pyscripts │ │ ├── run.sh │ │ ├── scripts │ │ ├── steps │ │ └── utils │ ├── speechlm1 │ │ ├── cmd.sh │ │ ├── conf │ │ │ ├── decode_encodec.yaml │ │ │ ├── fbank.conf │ │ │ ├── pbs.conf │ │ │ ├── pitch.conf │ │ │ ├── queue.conf │ │ │ ├── slurm.conf │ │ │ ├── train_multiscale.yaml │ │ │ └── train_valle.yaml │ │ ├── db.sh │ │ ├── local │ │ │ ├── data.sh │ │ │ ├── data_prep.sh │ │ │ ├── download_and_untar.sh │ │ │ ├── path.sh │ │ │ └── trim_all_silence.py │ │ ├── path.sh │ │ ├── pyscripts │ │ ├── run.sh │ │ ├── scripts │ │ ├── speechlm.sh │ │ ├── steps │ │ └── utils │ └── 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 │ │ │ ├── decode_vits.yaml │ │ │ ├── train_gst+xvector_conformer_fastspeech2.yaml │ │ │ ├── train_gst+xvector_tacotron2.yaml │ │ │ ├── train_gst+xvector_transformer.yaml │ │ │ ├── train_xvector_conformer_fastspeech2.yaml │ │ │ ├── train_xvector_tacotron2.yaml │ │ │ ├── train_xvector_transformer.yaml │ │ │ └── train_xvector_vits.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 │ │ ├── steps │ │ ├── tts.sh │ │ └── utils ├── libritts_100 │ └── 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 │ │ │ ├── decode_vits.yaml │ │ │ ├── train_gst+xvector_conformer_fastspeech2.yaml │ │ │ ├── train_gst+xvector_tacotron2.yaml │ │ │ ├── train_gst+xvector_transformer.yaml │ │ │ ├── train_jets.yaml │ │ │ ├── train_xvector_conformer_fastspeech2.yaml │ │ │ ├── train_xvector_tacotron2.yaml │ │ │ ├── train_xvector_transformer.yaml │ │ │ └── train_xvector_vits.yaml │ │ └── vad.conf │ │ ├── db.sh │ │ ├── local │ │ ├── data.sh │ │ ├── data_prep.sh │ │ ├── download_and_untar.sh │ │ ├── path.sh │ │ ├── run_mfa.sh │ │ └── trim_all_silence.py │ │ ├── path.sh │ │ ├── pyscripts │ │ ├── run.sh │ │ ├── scripts │ │ ├── steps │ │ ├── tts.sh │ │ └── utils ├── libritts_r │ └── 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 │ │ │ ├── decode_vits.yaml │ │ │ ├── train_gst+xvector_conformer_fastspeech2.yaml │ │ │ ├── train_gst+xvector_tacotron2.yaml │ │ │ ├── train_gst+xvector_transformer.yaml │ │ │ ├── train_xvector_conformer_fastspeech2.yaml │ │ │ ├── train_xvector_tacotron2.yaml │ │ │ ├── train_xvector_transformer.yaml │ │ │ └── train_xvector_vits.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 │ │ │ │ ├── decode_vits.yaml │ │ │ │ ├── finetune_joint_conformer_fastspeech2_hifigan.yaml │ │ │ │ ├── train_conformer_fastspeech.yaml │ │ │ │ ├── train_conformer_fastspeech2.yaml │ │ │ │ ├── train_fastspeech.yaml │ │ │ │ ├── train_fastspeech2.yaml │ │ │ │ ├── train_fastspeech2_prosody.yaml │ │ │ │ ├── train_jets.yaml │ │ │ │ ├── train_joint_conformer_fastspeech2_hifigan.yaml │ │ │ │ ├── train_prodiff.yaml │ │ │ │ ├── train_tacotron2.yaml │ │ │ │ ├── train_transformer.yaml │ │ │ │ └── train_vits.yaml │ │ ├── db.sh │ │ ├── local │ │ │ ├── data.sh │ │ │ ├── data_download.sh │ │ │ ├── path.sh │ │ │ └── run_mfa.sh │ │ ├── path.sh │ │ ├── pyscripts │ │ ├── run.sh │ │ ├── scripts │ │ ├── steps │ │ ├── tts.sh │ │ └── utils │ └── tts2 │ │ ├── README.md │ │ ├── cmd.sh │ │ ├── conf │ │ ├── mfcc.conf │ │ ├── pbs.conf │ │ ├── queue.conf │ │ ├── slurm.conf │ │ ├── train_fastspeech2.yaml │ │ └── vad.conf │ │ ├── db.sh │ │ ├── local │ │ ├── data.sh │ │ ├── data_download.sh │ │ ├── path.sh │ │ └── run_mfa.sh │ │ ├── path.sh │ │ ├── pyscripts │ │ ├── run.sh │ │ ├── scripts │ │ ├── sid │ │ ├── steps │ │ ├── tts2.sh │ │ └── utils ├── lrs2 │ └── lipreading1 │ │ ├── asr.sh │ │ ├── cmd.sh │ │ ├── conf │ │ ├── fbank.conf │ │ ├── pbs.conf │ │ ├── pitch.conf │ │ ├── queue.conf │ │ ├── slurm.conf │ │ ├── train_asr_transformer.yaml │ │ ├── train_lm.yaml │ │ └── tuning │ │ │ └── train_asr_transformer.yaml │ │ ├── db.sh │ │ ├── local │ │ ├── data.sh │ │ ├── feature_extract │ │ │ ├── cvtransforms.py │ │ │ ├── extract_visual_feature.py │ │ │ ├── models │ │ │ │ ├── __init__.py │ │ │ │ └── pretrained.py │ │ │ └── video_processing.py │ │ └── path.sh │ │ ├── path.sh │ │ ├── pyscripts │ │ ├── run.sh │ │ ├── scripts │ │ ├── steps │ │ └── utils ├── lrs3 │ ├── asr1 │ │ ├── RESULTS.md │ │ ├── asr.sh │ │ ├── cmd.sh │ │ ├── conf │ │ │ ├── fbank.conf │ │ │ ├── pbs.conf │ │ │ ├── pitch.conf │ │ │ ├── queue.conf │ │ │ ├── slurm.conf │ │ │ ├── train_asr_transformer.yaml │ │ │ └── train_lm.yaml │ │ ├── db.sh │ │ ├── local │ │ │ ├── data.sh │ │ │ ├── data_prep.py │ │ │ ├── download_and_untar.sh │ │ │ ├── mp4_to_wav.sh │ │ │ └── path.sh │ │ ├── path.sh │ │ ├── pyscripts │ │ ├── run.sh │ │ ├── scripts │ │ ├── steps │ │ └── utils │ └── avsr1 │ │ ├── README.md │ │ ├── asr.sh │ │ ├── cmd.sh │ │ ├── conf │ │ ├── fbank.conf │ │ ├── pbs.conf │ │ ├── pitch.conf │ │ ├── queue.conf │ │ ├── slurm.conf │ │ ├── train_avsr_avhubert_base.yaml │ │ └── train_avsr_avhubert_large.yaml │ │ ├── db.sh │ │ ├── local │ │ ├── 20words_mean_face.npy │ │ ├── data.sh │ │ ├── extract_av_feature.py │ │ ├── face_alignment.py │ │ ├── path.sh │ │ ├── scp_gen.py │ │ └── transforms.py │ │ ├── path.sh │ │ ├── pyscripts │ │ ├── run.sh │ │ ├── scripts │ │ └── utils ├── lt_slurp_spatialized │ └── enh1 │ │ ├── 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 │ │ │ ├── train_enh_dprnntac_fasnet.yaml │ │ │ └── train_enh_dprnntac_ifasnet.yaml │ │ ├── db.sh │ │ ├── enh.sh │ │ ├── local │ │ ├── data.sh │ │ ├── path.sh │ │ └── prepare_mixture_data.py │ │ ├── path.sh │ │ ├── pyscripts │ │ ├── run.sh │ │ ├── scripts │ │ ├── steps │ │ └── utils ├── lt_speech_commands │ └── asr1 │ │ ├── asr.sh │ │ ├── cmd.sh │ │ ├── db.sh │ │ ├── local │ │ ├── data.sh │ │ ├── data_prep.py │ │ └── path.sh │ │ ├── path.sh │ │ ├── pyscripts │ │ ├── run.sh │ │ ├── scripts │ │ ├── steps │ │ └── utils ├── m4singer │ └── svs1 │ │ ├── cmd.sh │ │ ├── conf │ │ ├── decode.yaml │ │ ├── pbs.conf │ │ ├── queue.conf │ │ ├── slurm.conf │ │ ├── train.yaml │ │ └── tuning │ │ │ ├── decode_rnn.yaml │ │ │ ├── train_naive_rnn.yaml │ │ │ ├── train_naive_rnn_dp.yaml │ │ │ └── train_vits.yaml │ │ ├── db.sh │ │ ├── local │ │ ├── data.sh │ │ ├── data_prep.py │ │ └── path.sh │ │ ├── path.sh │ │ ├── pyscripts │ │ ├── run.sh │ │ ├── scripts │ │ ├── svs.sh │ │ └── utils ├── m_ailabs │ └── tts1 │ │ ├── README.md │ │ ├── cmd.sh │ │ ├── conf │ │ ├── decode.yaml │ │ ├── mfcc.conf │ │ ├── pbs.conf │ │ ├── queue.conf │ │ ├── slurm.conf │ │ ├── train.yaml │ │ ├── train_multilingual.yaml │ │ ├── tuning │ │ │ ├── decode_tacotron2.yaml │ │ │ ├── decode_vits.yaml │ │ │ ├── train_tacotron2.yaml │ │ │ ├── train_tacotron2_multilingual.yaml │ │ │ └── train_vits.yaml │ │ └── vad.conf │ │ ├── db.sh │ │ ├── local │ │ ├── data.sh │ │ ├── data_en_us.sh │ │ ├── data_multilingual.sh │ │ ├── data_prep.sh │ │ ├── download.sh │ │ ├── parse_text.py │ │ ├── path.sh │ │ └── update_json.sh │ │ ├── path.sh │ │ ├── pyscripts │ │ ├── run.sh │ │ ├── scripts │ │ ├── steps │ │ ├── tts.sh │ │ └── utils ├── magicdata │ └── asr1 │ │ ├── README.md │ │ ├── asr.sh │ │ ├── cmd.sh │ │ ├── conf │ │ ├── decode_asr_rnn.yaml │ │ ├── fbank.conf │ │ ├── pbs.conf │ │ ├── pitch.conf │ │ ├── queue.conf │ │ ├── slurm.conf │ │ ├── train_asr.yaml │ │ ├── train_lm_transformer.yaml │ │ └── tuning │ │ │ ├── decode_asr_rnn.yaml │ │ │ ├── train_asr_conformer.yaml │ │ │ └── train_lm_transformer.yaml │ │ ├── db.sh │ │ ├── local │ │ ├── data.sh │ │ ├── download_and_untar.sh │ │ ├── path.sh │ │ └── prepare_data.sh │ │ ├── path.sh │ │ ├── pyscripts │ │ ├── run.sh │ │ ├── scripts │ │ ├── steps │ │ └── utils ├── makerere │ └── asr1 │ │ ├── README.md │ │ ├── asr.sh │ │ ├── cmd.sh │ │ ├── conf │ │ ├── fbank.conf │ │ ├── pbs.conf │ │ ├── pitch.conf │ │ ├── queue.conf │ │ ├── slurm.conf │ │ └── train_asr_demo_branchformer.yaml │ │ ├── db.sh │ │ ├── local │ │ ├── data.sh │ │ ├── data_prep.py │ │ └── path.sh │ │ ├── path.sh │ │ ├── pyscripts │ │ ├── run.sh │ │ ├── scripts │ │ ├── steps │ │ └── utils ├── media │ └── asr1 │ │ ├── README.md │ │ ├── asr.sh │ │ ├── cmd.sh │ │ ├── conf │ │ ├── decode_asr_hf.yaml │ │ ├── pbs.conf │ │ ├── queue.conf │ │ ├── slurm.conf │ │ └── tuning │ │ │ └── train_asr_branchformer_xlsr_mbart.yaml │ │ ├── db.sh │ │ ├── local │ │ ├── data.sh │ │ ├── path.sh │ │ ├── prepare_data.py │ │ ├── score.py │ │ └── score.sh │ │ ├── path.sh │ │ ├── pyscripts │ │ ├── run.sh │ │ ├── scripts │ │ ├── steps │ │ └── utils ├── mediaspeech │ └── asr1 │ │ ├── README.md │ │ ├── asr.sh │ │ ├── cmd.sh │ │ ├── conf │ │ ├── decode_asr.yaml │ │ ├── fbank.conf │ │ ├── pbs.conf │ │ ├── pitch.conf │ │ ├── queue.conf │ │ ├── slurm.conf │ │ ├── train_asr.yaml │ │ └── tuning │ │ │ ├── train_asr_conformer.yaml │ │ │ ├── train_asr_fused.yaml │ │ │ ├── train_asr_hubert.yaml │ │ │ └── train_asr_transformer.yaml │ │ ├── db.sh │ │ ├── local │ │ ├── data.sh │ │ ├── data_prep.py │ │ ├── download_and_untar.sh │ │ └── path.sh │ │ ├── path.sh │ │ ├── pyscripts │ │ ├── run.sh │ │ ├── scripts │ │ ├── steps │ │ └── utils ├── meld │ └── asr1 │ │ ├── README.md │ │ ├── asr.sh │ │ ├── cmd.sh │ │ ├── conf │ │ ├── decoder_asr.yaml │ │ ├── fbank.conf │ │ ├── pbs.conf │ │ ├── pitch.conf │ │ ├── queue.conf │ │ ├── slurm.conf │ │ ├── train_asr.yaml │ │ └── tuning │ │ │ └── train_asr_hubert_transformer_adam_specaug_meld.yaml │ │ ├── db.sh │ │ ├── local │ │ ├── data.sh │ │ ├── data_prep.py │ │ ├── download_and_untar.sh │ │ └── path.sh │ │ ├── path.sh │ │ ├── pyscripts │ │ ├── run.sh │ │ ├── scripts │ │ ├── steps │ │ └── utils ├── microsoft_speech │ └── asr1 │ │ ├── README.md │ │ ├── __MACOSX │ │ └── ._local │ │ ├── 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_conformer5.yaml │ │ │ ├── train_asr_conformer5_hubert.yaml │ │ │ ├── train_asr_conformer_wav2vec2.yaml │ │ │ └── train_lm_transformer.yaml │ │ ├── db.sh │ │ ├── local │ │ ├── data.sh │ │ ├── path.sh │ │ └── process.py │ │ ├── path.sh │ │ ├── pyscripts │ │ ├── run.sh │ │ ├── scripts │ │ ├── steps │ │ └── utils ├── mini_an4 │ ├── asr1 │ │ ├── asr.sh │ │ ├── cmd.sh │ │ ├── conf │ │ │ ├── decode_asr_debug.yaml │ │ │ ├── decode_asr_transformer_with_k2.yaml │ │ │ ├── decode_multi_blank_transducer_debug.yaml │ │ │ ├── fbank.conf │ │ │ ├── finetune_with_lora.yaml │ │ │ ├── pbs.conf │ │ │ ├── pitch.conf │ │ │ ├── queue.conf │ │ │ ├── slurm.conf │ │ │ ├── train_asr_rnn_data_aug_debug.yaml │ │ │ ├── train_asr_rnn_debug.yaml │ │ │ ├── train_asr_transducer_debug.yaml │ │ │ ├── train_asr_transformer.yaml │ │ │ ├── train_asr_transformer_debug.yaml │ │ │ └── train_lm_rnn_debug.yaml │ │ ├── db.sh │ │ ├── downloads.tar.gz │ │ ├── local │ │ │ ├── data.sh │ │ │ ├── data_prep.py │ │ │ ├── download_and_untar.sh │ │ │ └── path.sh │ │ ├── path.sh │ │ ├── pyscripts │ │ ├── run.sh │ │ ├── run_multispkr.sh │ │ ├── scripts │ │ ├── steps │ │ ├── transfer_learning.md │ │ └── utils │ ├── asr2 │ │ ├── asr2.sh │ │ ├── cmd.sh │ │ ├── conf │ │ │ ├── decode_asr_debug.yaml │ │ │ ├── pbs.conf │ │ │ ├── queue.conf │ │ │ ├── slurm.conf │ │ │ └── train_asr_transformer_debug.yaml │ │ ├── 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 │ ├── codec1 │ │ ├── cmd.sh │ │ ├── codec.sh │ │ ├── conf │ │ │ ├── decode_soundstream_debug.yaml │ │ │ ├── fbank.conf │ │ │ ├── pbs.conf │ │ │ ├── pitch.conf │ │ │ ├── queue.conf │ │ │ ├── slurm.conf │ │ │ └── train_soundstream_debug.yaml │ │ ├── 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_debug.yaml │ │ │ ├── train_with_chunk_iterator_debug.yaml │ │ │ ├── train_with_data_aug_debug.yaml │ │ │ ├── train_with_dynamic_mixing_debug.yaml │ │ │ └── train_with_preprocessor_debug.yaml │ │ ├── db.sh │ │ ├── downloads │ │ ├── enh.sh │ │ ├── local │ │ ├── path.sh │ │ ├── pyscripts │ │ ├── run.sh │ │ ├── scripts │ │ ├── steps │ │ └── utils │ ├── enh_asr1 │ │ ├── cmd.sh │ │ ├── conf │ │ │ ├── decode_asr_debug.yaml │ │ │ ├── fbank.conf │ │ │ ├── pbs.conf │ │ │ ├── pitch.conf │ │ │ ├── queue.conf │ │ │ ├── slurm.conf │ │ │ ├── train_debug.yaml │ │ │ └── train_lm_rnn_debug.yaml │ │ ├── db.sh │ │ ├── downloads.tar.gz │ │ ├── enh_asr.sh │ │ ├── local │ │ │ ├── data.sh │ │ │ ├── data_prep.py │ │ │ ├── download_and_untar.sh │ │ │ └── path.sh │ │ ├── path.sh │ │ ├── pyscripts │ │ ├── run.sh │ │ ├── scripts │ │ ├── steps │ │ └── utils │ ├── lm1 │ │ ├── cmd.sh │ │ ├── conf │ │ │ ├── decode_lm_asr.yaml │ │ │ ├── decode_lm_tts.yaml │ │ │ ├── slurm.conf │ │ │ └── train_transformer.yaml │ │ ├── db.sh │ │ ├── downloads.tar.gz │ │ ├── lm.sh │ │ ├── local │ │ │ ├── data.sh │ │ │ ├── data_prep.py │ │ │ ├── download_and_untar.sh │ │ │ ├── path.sh │ │ │ ├── postprocess.py │ │ │ ├── postprocess_speech.py │ │ │ ├── prepare_bpe_text.py │ │ │ ├── prepare_lm_data.py │ │ │ └── prepare_lm_test.py │ │ ├── path.sh │ │ ├── pyscripts │ │ ├── run.sh │ │ ├── scripts │ │ └── utils │ ├── s2st1 │ │ ├── cmd.sh │ │ ├── conf │ │ │ ├── decode_debug.yaml │ │ │ ├── fbank.conf │ │ │ ├── pbs.conf │ │ │ ├── pitch.conf │ │ │ ├── queue.conf │ │ │ ├── s2st_spec_debug.yaml │ │ │ ├── slurm.conf │ │ │ └── train_s2st_discrete_unit_debug.yaml │ │ ├── db.sh │ │ ├── downloads.tar.gz │ │ ├── local │ │ │ ├── data.sh │ │ │ ├── data_prep.py │ │ │ ├── download_and_untar.sh │ │ │ └── path.sh │ │ ├── path.sh │ │ ├── pyscripts │ │ ├── run.sh │ │ ├── s2st.sh │ │ ├── scripts │ │ ├── steps │ │ └── utils │ ├── s2t1 │ │ ├── cmd.sh │ │ ├── conf │ │ │ ├── decode_s2t.yaml │ │ │ ├── fbank.conf │ │ │ ├── pbs.conf │ │ │ ├── pitch.conf │ │ │ ├── queue.conf │ │ │ ├── slurm.conf │ │ │ ├── train_slu_transformer.yaml │ │ │ └── train_transformer.yaml │ │ ├── db.sh │ │ ├── downloads.tar.gz │ │ ├── local │ │ │ ├── data.sh │ │ │ ├── data_prep.py │ │ │ ├── download_and_untar.sh │ │ │ ├── generate_nlsyms.py │ │ │ ├── path.sh │ │ │ └── prepare_s2t_format.py │ │ ├── path.sh │ │ ├── pyscripts │ │ ├── run.sh │ │ ├── s2t.sh │ │ ├── scripts │ │ └── utils │ ├── speechlm1 │ │ ├── cmd.sh │ │ ├── conf │ │ │ ├── fbank.conf │ │ │ ├── pbs.conf │ │ │ ├── pitch.conf │ │ │ ├── queue.conf │ │ │ ├── slurm.conf │ │ │ └── train.yaml │ │ ├── db.sh │ │ ├── downloads.tar.gz │ │ ├── local │ │ │ ├── data.sh │ │ │ ├── data_prep.py │ │ │ ├── download_and_untar.sh │ │ │ └── path.sh │ │ ├── path.sh │ │ ├── pyscripts │ │ ├── run.sh │ │ ├── scripts │ │ ├── speechlm.sh │ │ ├── steps │ │ └── utils │ ├── spk1 │ │ ├── cmd.sh │ │ ├── conf │ │ │ ├── decode.yaml │ │ │ ├── train_conformer.yaml │ │ │ ├── train_ecapa.yaml │ │ │ ├── train_identity.yaml │ │ │ ├── train_rawnet3_dataaug_debug.yaml │ │ │ ├── train_rawnet3_debug.yaml │ │ │ ├── train_rawnet3_sampler.yaml │ │ │ ├── train_ska.yaml │ │ │ └── train_xvector.yaml │ │ ├── db.sh │ │ ├── downloads.tar.gz │ │ ├── local │ │ │ ├── data.sh │ │ │ ├── data_prep.py │ │ │ ├── download_and_untar.sh │ │ │ ├── make_trial.py │ │ │ └── path.sh │ │ ├── path.sh │ │ ├── pyscripts │ │ ├── run.sh │ │ ├── scripts │ │ ├── spk.sh │ │ ├── steps │ │ └── utils │ ├── ssl1 │ │ ├── cmd.sh │ │ ├── conf │ │ │ ├── pbs.conf │ │ │ ├── queue.conf │ │ │ ├── slurm.conf │ │ │ ├── train_ssl_torchaudiohubert_base_pretrain_it0_debug.yaml │ │ │ └── train_ssl_torchaudiohubert_base_pretrain_it1_debug.yaml │ │ ├── db.sh │ │ ├── downloads.tar.gz │ │ ├── hubert.sh │ │ ├── local │ │ │ ├── data.sh │ │ │ ├── data_prep.py │ │ │ ├── download_and_untar.sh │ │ │ └── path.sh │ │ ├── path.sh │ │ ├── pyscripts │ │ ├── run.sh │ │ ├── scripts │ │ ├── steps │ │ └── utils │ ├── st1 │ │ ├── cmd.sh │ │ ├── conf │ │ │ ├── decode_debug.yaml │ │ │ ├── fbank.conf │ │ │ ├── pbs.conf │ │ │ ├── pitch.conf │ │ │ ├── queue.conf │ │ │ ├── slurm.conf │ │ │ ├── train_lm_rnn_debug.yaml │ │ │ ├── train_st_debug.yaml │ │ │ └── train_st_streaming_debug.yaml │ │ ├── db.sh │ │ ├── downloads.tar.gz │ │ ├── local │ │ │ ├── data.sh │ │ │ ├── data_prep.py │ │ │ ├── download_and_untar.sh │ │ │ └── path.sh │ │ ├── path.sh │ │ ├── pyscripts │ │ ├── run.sh │ │ ├── scripts │ │ ├── st.sh │ │ ├── steps │ │ └── utils │ ├── tse1 │ │ ├── cmd.sh │ │ ├── conf │ │ │ ├── pbs.conf │ │ │ ├── queue.conf │ │ │ ├── slurm.conf │ │ │ ├── train_debug.yaml │ │ │ ├── train_random_enrollment_debug.yaml │ │ │ ├── train_variable_nspk_debug.yaml │ │ │ └── train_variable_nspk_random_enrollment_debug.yaml │ │ ├── db.sh │ │ ├── downloads.tar.gz │ │ ├── enh.sh │ │ ├── local │ │ │ ├── asr_data.sh │ │ │ ├── data.sh │ │ │ ├── data_prep.py │ │ │ ├── download_and_untar.sh │ │ │ ├── path.sh │ │ │ ├── prepare_mini_an4_enroll.py │ │ │ └── prepare_spk2enroll_mini_an4.py │ │ ├── path.sh │ │ ├── pyscripts │ │ ├── run.sh │ │ ├── scripts │ │ ├── steps │ │ └── utils │ ├── tts1 │ │ ├── cmd.sh │ │ ├── conf │ │ │ ├── pbs.conf │ │ │ ├── queue.conf │ │ │ ├── slurm.conf │ │ │ └── train_tacotron2_debug.yaml │ │ ├── db.sh │ │ ├── downloads │ │ ├── local │ │ ├── path.sh │ │ ├── pyscripts │ │ ├── run.sh │ │ ├── scripts │ │ ├── steps │ │ ├── tts.sh │ │ └── utils │ └── tts2 │ │ ├── cmd.sh │ │ ├── conf │ │ ├── mfcc.conf │ │ ├── pbs.conf │ │ ├── queue.conf │ │ ├── slurm.conf │ │ └── vad.conf │ │ ├── db.sh │ │ ├── downloads.tar.gz │ │ ├── local │ │ ├── data.sh │ │ ├── data_prep.py │ │ ├── download_and_untar.sh │ │ └── path.sh │ │ ├── path.sh │ │ ├── pyscripts │ │ ├── run.sh │ │ ├── scripts │ │ ├── sid │ │ ├── steps │ │ ├── tts2.sh │ │ └── utils ├── mini_librispeech │ └── diar1 │ │ ├── NOTE.md │ │ ├── README.md │ │ ├── cmd.sh │ │ ├── conf │ │ ├── decode_diar.yaml │ │ ├── pbs.conf │ │ ├── queue.conf │ │ ├── slurm.conf │ │ ├── train_diar.yaml │ │ └── train_diar_eda.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 ├── misp2021 │ ├── asr1 │ │ ├── README.md │ │ ├── asr.sh │ │ ├── cmd.sh │ │ ├── conf │ │ │ ├── beamformit.cfg │ │ │ ├── decode_asr.yaml │ │ │ ├── fbank.conf │ │ │ ├── pbs.conf │ │ │ ├── pitch.conf │ │ │ ├── queue.conf │ │ │ ├── slurm.conf │ │ │ ├── train_asr_transformer.yaml │ │ │ ├── train_lm.yaml │ │ │ └── tuning │ │ │ │ └── train_asr_conformer.yaml │ │ ├── db.sh │ │ ├── local │ │ │ ├── data.sh │ │ │ ├── enhancement.sh │ │ │ ├── find_wav.py │ │ │ ├── path.sh │ │ │ ├── prepare_data.sh │ │ │ ├── prepare_far_data.py │ │ │ ├── run_beamformit.py │ │ │ └── run_wpe.py │ │ ├── path.sh │ │ ├── pyscripts │ │ ├── run.sh │ │ ├── scripts │ │ ├── steps │ │ └── utils │ └── avsr1 │ │ ├── README.md │ │ ├── asr.sh │ │ ├── cmd.sh │ │ ├── conf │ │ ├── beamformit.cfg │ │ ├── decode_asr.yaml │ │ ├── fbank.conf │ │ ├── mfcc.conf │ │ ├── pbs.conf │ │ ├── pitch.conf │ │ ├── queue.conf │ │ ├── slurm.conf │ │ ├── train_asr_transformer.yaml │ │ ├── train_lm.yaml │ │ └── tuning │ │ │ └── train_asr_conformer.yaml │ │ ├── db.sh │ │ ├── local │ │ ├── concatenate_feature.py │ │ ├── data.sh │ │ ├── enhancement.sh │ │ ├── extract_far_video_roi.sh │ │ ├── find_wav.py │ │ ├── path.sh │ │ ├── prepare_data.sh │ │ ├── prepare_far_data.py │ │ ├── prepare_far_video_roi.py │ │ ├── prepare_visual_embedding_extractor.py │ │ ├── run_beamformit.py │ │ └── run_wpe.py │ │ ├── path.sh │ │ ├── pyscripts │ │ ├── run.sh │ │ ├── scripts │ │ ├── steps │ │ └── utils ├── mixed_v1 │ └── s2t1 │ │ └── README.md ├── mixed_v2 │ └── s2t1 │ │ └── README.md ├── ml_openslr63 │ └── 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_conformer.yaml │ │ │ ├── train_asr_conformer_s3prlfrontend_hubert.yaml │ │ │ └── train_asr_conformer_s3prlfrontend_hubert_fused.yaml │ │ ├── db.sh │ │ ├── local │ │ ├── data.sh │ │ ├── data_prep.py │ │ └── path.sh │ │ ├── path.sh │ │ ├── pyscripts │ │ ├── run.sh │ │ ├── scripts │ │ ├── steps │ │ └── utils ├── ml_superb │ └── asr1 │ │ ├── README.md │ │ ├── asr.sh │ │ ├── cmd.sh │ │ ├── conf │ │ ├── decode_asr.yaml │ │ ├── fbank.conf │ │ ├── pbs.conf │ │ ├── pitch.conf │ │ ├── queue.conf │ │ ├── slurm.conf │ │ ├── train_asr.yaml │ │ └── tuning │ │ │ ├── train_asr_fbank_10min.yaml │ │ │ ├── train_asr_fbank_1h.yaml │ │ │ ├── train_asr_fbank_single.yaml │ │ │ ├── train_asr_s3prl_10min.yaml │ │ │ ├── train_asr_s3prl_1h.yaml │ │ │ ├── train_asr_s3prl_houlsby.yaml │ │ │ ├── train_asr_s3prl_lora.yaml │ │ │ └── train_asr_s3prl_single.yaml │ │ ├── db.sh │ │ ├── local │ │ ├── data.sh │ │ ├── data_prep.py │ │ ├── lid.py │ │ ├── linguistic_tree.py │ │ ├── mono_superb_score.py │ │ ├── multi_superb_score.py │ │ ├── path.sh │ │ ├── score.sh │ │ ├── single_lang_data_prep.py │ │ └── split_results.py │ │ ├── path.sh │ │ ├── pyscripts │ │ ├── run.sh │ │ ├── run_mono.sh │ │ ├── run_multi.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 │ │ │ │ ├── decode_transformer_nolm.yaml │ │ │ │ ├── train_asr_conformer.yaml │ │ │ │ ├── train_asr_e_branchformer1_fbank_lre1-3.yaml │ │ │ │ ├── train_asr_e_branchformer1_wavlm_lr1e-4.yaml │ │ │ │ ├── train_asr_rnn.yaml │ │ │ │ └── train_asr_transformer.yaml │ │ ├── db.sh │ │ ├── local │ │ │ ├── data.sh │ │ │ ├── data_prep.py │ │ │ ├── download_and_untar.sh │ │ │ └── path.sh │ │ ├── path.sh │ │ ├── pyscripts │ │ ├── run.sh │ │ ├── scripts │ │ ├── setup.sh │ │ ├── steps │ │ └── utils │ └── asr2 │ │ ├── RESULTS.md │ │ ├── asr2.sh │ │ ├── cmd.sh │ │ ├── conf │ │ ├── decode_ctc0.3.yaml │ │ ├── pbs.conf │ │ ├── queue.conf │ │ ├── slurm.conf │ │ └── train_discrete_asr_e_branchformer1.yaml │ │ ├── db.sh │ │ ├── local │ │ ├── data.sh │ │ ├── data_prep.py │ │ ├── download_and_untar.sh │ │ └── path.sh │ │ ├── path.sh │ │ ├── pyscripts │ │ ├── run.sh │ │ ├── scripts │ │ ├── steps │ │ └── utils ├── mr_openslr64 │ └── 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_conformer_xlsr.yaml │ │ │ ├── train_asr_rnn.yaml │ │ │ └── train_asr_transformer.yaml │ │ ├── db.sh │ │ ├── local │ │ ├── data.sh │ │ ├── data_prep.py │ │ └── path.sh │ │ ├── path.sh │ │ ├── pyscripts │ │ ├── run.sh │ │ ├── scripts │ │ ├── steps │ │ └── utils ├── ms_indic_18 │ └── 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_asr_transformer.yaml │ │ │ ├── train_asr_transformer.yaml │ │ │ ├── train_asr_wav2vec2.yaml │ │ │ ├── train_asr_xlsr53_conformer.yaml │ │ │ ├── train_lm_rnn.yaml │ │ │ └── train_lm_transformer.yaml │ │ ├── db.sh │ │ ├── local │ │ ├── data.sh │ │ ├── path.sh │ │ └── prepare_data.py │ │ ├── path.sh │ │ ├── pyscripts │ │ ├── run.sh │ │ ├── scripts │ │ ├── steps │ │ └── utils ├── mucs21_subtask1 │ └── asr1 │ │ ├── asr.sh │ │ ├── cmd.sh │ │ ├── conf │ │ ├── decode.yaml │ │ ├── fbank.conf │ │ ├── gpu.conf │ │ ├── lm.yaml │ │ ├── pitch.conf │ │ ├── queue.conf │ │ ├── slurm.conf │ │ ├── train.yaml │ │ └── tuning │ │ │ ├── train_conformer.yaml │ │ │ └── train_transformer.yaml │ │ ├── db.sh │ │ ├── local │ │ ├── check_audio_data_folder.sh │ │ ├── data.sh │ │ ├── download_data.sh │ │ ├── path.sh │ │ ├── prepare_data.sh │ │ ├── test_data_prep.sh │ │ └── train_data_prep.sh │ │ ├── path.sh │ │ ├── pyscripts │ │ ├── run.sh │ │ ├── scripts │ │ ├── steps │ │ └── utils ├── mucs21_subtask2 │ └── asr1 │ │ ├── README.md │ │ ├── asr.sh │ │ ├── cmd.sh │ │ ├── conf │ │ ├── decode.yaml │ │ ├── fbank.conf │ │ ├── gpu.conf │ │ ├── lm.yaml │ │ ├── pitch.conf │ │ ├── queue.conf │ │ ├── slurm.conf │ │ ├── train.yaml │ │ └── tuning │ │ │ ├── train_conformer.yaml │ │ │ └── train_transformer.yaml │ │ ├── db.sh │ │ ├── local │ │ ├── data.sh │ │ ├── download_data.sh │ │ ├── path.sh │ │ └── prepare_data.sh │ │ ├── path.sh │ │ ├── pyscripts │ │ ├── run.sh │ │ ├── scripts │ │ ├── steps │ │ └── utils ├── musdb18 │ └── enh1 │ │ ├── cmd.sh │ │ ├── conf │ │ ├── pbs.conf │ │ ├── queue.conf │ │ ├── slurm.conf │ │ └── tuning │ │ │ └── train_enh_conv_tasnet.yaml │ │ ├── db.sh │ │ ├── enh.sh │ │ ├── local │ │ ├── data.sh │ │ └── path.sh │ │ ├── path.sh │ │ ├── pyscripts │ │ ├── run.sh │ │ ├── scripts │ │ ├── steps │ │ └── utils ├── must_c │ ├── asr1 │ │ ├── asr.sh │ │ ├── cmd.sh │ │ ├── conf │ │ │ ├── fbank.conf │ │ │ ├── pbs.conf │ │ │ ├── pitch.conf │ │ │ ├── queue.conf │ │ │ └── slurm.conf │ │ ├── db.sh │ │ ├── local │ │ ├── path.sh │ │ ├── pyscripts │ │ ├── run.sh │ │ ├── scripts │ │ ├── steps │ │ └── utils │ └── st1 │ │ ├── cmd.sh │ │ ├── conf │ │ ├── fbank.conf │ │ ├── pbs.conf │ │ ├── pitch.conf │ │ ├── queue.conf │ │ ├── slurm.conf │ │ └── tuning │ │ │ ├── decode_st_conformer.yaml │ │ │ └── train_st_conformer.yaml │ │ ├── db.sh │ │ ├── local │ │ ├── data.sh │ │ ├── data_prep.sh │ │ ├── download_and_untar.sh │ │ └── path.sh │ │ ├── path.sh │ │ ├── pyscripts │ │ ├── run.sh │ │ ├── scripts │ │ ├── st.sh │ │ ├── steps │ │ └── utils ├── must_c_v2 │ ├── asr1 │ │ ├── asr.sh │ │ ├── cmd.sh │ │ ├── conf │ │ │ ├── fbank.conf │ │ │ ├── pbs.conf │ │ │ ├── pitch.conf │ │ │ ├── queue.conf │ │ │ ├── slurm.conf │ │ │ └── tuning │ │ │ │ ├── decode_asr_conformer.yaml │ │ │ │ ├── train_asr_conformer.yaml │ │ │ │ ├── train_asr_conformer_wavlm.yaml │ │ │ │ ├── train_asr_ebranchformer.yaml │ │ │ │ └── train_asr_streaming_conformer.yaml │ │ ├── db.sh │ │ ├── local │ │ │ └── path.sh │ │ ├── path.sh │ │ ├── pyscripts │ │ ├── run.sh │ │ ├── scripts │ │ ├── steps │ │ └── utils │ ├── s2t1 │ │ ├── cmd.sh │ │ ├── conf │ │ │ ├── decode_s2t.yaml │ │ │ ├── fbank.conf │ │ │ ├── pbs.conf │ │ │ ├── pitch.conf │ │ │ ├── queue.conf │ │ │ ├── slurm.conf │ │ │ └── tuning │ │ │ │ └── train_s2t_ebf_lr1e-3_warmup5k.yaml │ │ ├── db.sh │ │ ├── local │ │ │ ├── data.sh │ │ │ ├── data_prep.py │ │ │ └── path.sh │ │ ├── path.sh │ │ ├── pyscripts │ │ ├── run.sh │ │ ├── s2t.sh │ │ ├── scripts │ │ └── utils │ └── st1 │ │ ├── README.md │ │ ├── cmd.sh │ │ ├── conf │ │ ├── fbank.conf │ │ ├── pbs.conf │ │ ├── pitch.conf │ │ ├── queue.conf │ │ ├── slurm.conf │ │ └── tuning │ │ │ ├── decode_rnnt_tsd_mse4_scorenormduring_beam10.yaml │ │ │ ├── decode_st_conformer.yaml │ │ │ ├── decode_st_conformer_ctc0.3.yaml │ │ │ ├── decode_st_md.yaml │ │ │ ├── decode_st_md_ctc0.3_beam10_10.yaml │ │ │ ├── train_st_conformer.yaml │ │ │ ├── train_st_conformer_asrinit_v2.yaml │ │ │ ├── train_st_ctc_conformer_asrinit_v2.yaml │ │ │ ├── train_st_ctc_md_conformer_asrinit_v3_noamp_batch50m_ctcsamp0.1.yaml │ │ │ ├── train_st_ctc_rnnt_asrinit.yaml │ │ │ └── train_st_md_conformer_asrinit_v3-2.yaml │ │ ├── db.sh │ │ ├── local │ │ ├── data.sh │ │ ├── data_prep.sh │ │ ├── download_and_untar.sh │ │ ├── path.sh │ │ ├── simuleval.sh │ │ └── split_text_scp.py │ │ ├── path.sh │ │ ├── pyscripts │ │ ├── run.sh │ │ ├── scripts │ │ ├── st.sh │ │ ├── steps │ │ ├── tar.gz │ │ └── BdlILT.zip │ │ └── utils ├── mustard │ └── asr1 │ │ ├── asr.sh │ │ ├── cmd.sh │ │ ├── db.sh │ │ ├── local │ │ ├── data.sh │ │ ├── data_prep.py │ │ └── path.sh │ │ ├── path.sh │ │ ├── pyscripts │ │ ├── run.sh │ │ ├── scripts │ │ ├── steps │ │ └── utils ├── mustard_plus_plus │ └── asr1 │ │ ├── asr.sh │ │ ├── cmd.sh │ │ ├── db.sh │ │ ├── local │ │ ├── data.sh │ │ ├── data_prep.py │ │ └── path.sh │ │ ├── path.sh │ │ ├── pyscripts │ │ ├── run.sh │ │ ├── scripts │ │ ├── steps │ │ └── utils ├── namine_ritsu_utagoe_db │ └── svs1 │ │ ├── cmd.sh │ │ ├── conf │ │ ├── decode.yaml │ │ ├── pbs.conf │ │ ├── queue.conf │ │ ├── slurm.conf │ │ ├── train.yaml │ │ └── tuning │ │ │ ├── decode_rnn.yaml │ │ │ ├── decode_vits.yaml │ │ │ ├── train_naive_rnn.yaml │ │ │ ├── train_naive_rnn_dp.yaml │ │ │ ├── train_visinger2.yaml │ │ │ └── train_vits.yaml │ │ ├── db.sh │ │ ├── local │ │ ├── customed_dic.scp │ │ ├── data.sh │ │ ├── dataset_split.py │ │ ├── path.sh │ │ └── prep_segments.py │ │ ├── path.sh │ │ ├── pyscripts │ │ ├── run.sh │ │ ├── scripts │ │ ├── svs.sh │ │ └── utils ├── natsume │ └── svs1 │ │ ├── cmd.sh │ │ ├── conf │ │ ├── decode.yaml │ │ ├── pbs.conf │ │ ├── queue.conf │ │ ├── slurm.conf │ │ ├── train.yaml │ │ └── tuning │ │ │ ├── decode_rnn.yaml │ │ │ ├── decode_vits.yaml │ │ │ ├── train_naive_rnn.yaml │ │ │ ├── train_naive_rnn_dp.yaml │ │ │ ├── train_visinger2.yaml │ │ │ └── train_vits.yaml │ │ ├── db.sh │ │ ├── local │ │ ├── customed_dic.scp │ │ ├── data.sh │ │ ├── dataset_split.py │ │ ├── path.sh │ │ └── prep_segments.py │ │ ├── path.sh │ │ ├── pyscripts │ │ ├── run.sh │ │ ├── scripts │ │ ├── svs.sh │ │ └── utils ├── nit_song070 │ └── svs1 │ │ ├── cmd.sh │ │ ├── conf │ │ ├── decode.yaml │ │ ├── pbs.conf │ │ ├── queue.conf │ │ ├── slurm.conf │ │ ├── train.yaml │ │ └── tuning │ │ │ └── train_naive_rnn.yaml │ │ ├── db.sh │ │ ├── local │ │ ├── data.sh │ │ ├── data_prep.py │ │ ├── midi-note.scp │ │ └── path.sh │ │ ├── path.sh │ │ ├── pyscripts │ │ ├── run.sh │ │ ├── scripts │ │ ├── svs.sh │ │ └── 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 ├── ofuton_p_utagoe_db │ └── svs1 │ │ ├── cmd.sh │ │ ├── conf │ │ ├── decode.yaml │ │ ├── pbs.conf │ │ ├── queue.conf │ │ ├── slurm.conf │ │ ├── train.yaml │ │ └── tuning │ │ │ ├── decode_rnn.yaml │ │ │ ├── decode_vits.yaml │ │ │ ├── finetune_joint_rnn_hifigan.yaml │ │ │ ├── finetune_joint_xiaoice_hifigan.yaml │ │ │ ├── train_joint_rnn_hifigan.yaml │ │ │ ├── train_joint_xiaoice_hifigan.yaml │ │ │ ├── train_naive_rnn.yaml │ │ │ ├── train_naive_rnn_dp.yaml │ │ │ ├── train_visinger.yaml │ │ │ ├── train_visinger2.yaml │ │ │ ├── train_visinger2_22.05.yaml │ │ │ ├── train_visinger2_24k.yaml │ │ │ ├── train_visinger2_plus_fused.yaml │ │ │ ├── train_visinger2_plus_hubert.yaml │ │ │ ├── train_visinger_22.05.yaml │ │ │ └── train_xiaoice.yaml │ │ ├── db.sh │ │ ├── local │ │ ├── customed_dic.scp │ │ ├── data.sh │ │ ├── dataset_split.py │ │ ├── path.sh │ │ └── prep_segments.py │ │ ├── path.sh │ │ ├── pyscripts │ │ ├── run.sh │ │ ├── scripts │ │ ├── steps │ │ ├── svs.sh │ │ └── utils ├── oniku_kurumi_utagoe_db │ └── svs1 │ │ ├── cmd.sh │ │ ├── conf │ │ ├── decode.yaml │ │ ├── pbs.conf │ │ ├── queue.conf │ │ ├── slurm.conf │ │ ├── train.yaml │ │ └── tuning │ │ │ ├── decode_rnn.yaml │ │ │ ├── train_naive_rnn.yaml │ │ │ ├── train_naive_rnn_dp.yaml │ │ │ └── train_vits.yaml │ │ ├── db.sh │ │ ├── local │ │ ├── customed_dic.scp │ │ ├── data.sh │ │ ├── dataset_split.py │ │ ├── path.sh │ │ └── prep_segments.py │ │ ├── path.sh │ │ ├── pyscripts │ │ ├── run.sh │ │ ├── scripts │ │ ├── svs.sh │ │ └── utils ├── open_li110 │ └── asr1 │ │ ├── asr.sh │ │ ├── cmd.sh │ │ ├── conf │ │ ├── fbank.conf │ │ ├── pbs.conf │ │ ├── pitch.conf │ │ ├── queue.conf │ │ └── slurm.conf │ │ ├── db.sh │ │ ├── local │ │ ├── commonvoice │ │ │ ├── data_prep.pl │ │ │ └── download_and_untar.sh │ │ ├── data.sh │ │ ├── googlei18n │ │ │ └── download_and_unzip.sh │ │ ├── mls │ │ │ ├── data_prep.py │ │ │ └── download_and_untar.sh │ │ ├── path.sh │ │ ├── score.sh │ │ └── voxforge │ │ │ ├── getdata.sh │ │ │ ├── make_trans.py │ │ │ ├── split_tr_dt_et.sh │ │ │ ├── voxforge_data_prep.sh │ │ │ └── voxforge_format_data.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 ├── opencpop │ └── svs1 │ │ ├── cmd.sh │ │ ├── conf │ │ ├── decode.yaml │ │ ├── pbs.conf │ │ ├── queue.conf │ │ ├── slurm.conf │ │ ├── train.yaml │ │ └── tuning │ │ │ ├── decode_rnn.yaml │ │ │ ├── decode_singing_tacotron.yaml │ │ │ ├── decode_vits.yaml │ │ │ ├── finetune_joint_rnn_hifigan.yaml │ │ │ ├── finetune_joint_xiaoice_hifigan.yaml │ │ │ ├── train_joint_rnn_hifigan.yaml │ │ │ ├── train_joint_xiaoice_hifigan.yaml │ │ │ ├── train_naive_rnn.yaml │ │ │ ├── train_naive_rnn_dp.yaml │ │ │ ├── train_singing_tacotron.yaml │ │ │ ├── train_visinger.yaml │ │ │ ├── train_visinger2.yaml │ │ │ ├── train_visinger2_22.05.yaml │ │ │ ├── train_visinger2_24k.yaml │ │ │ ├── train_visinger2_plus_fused.yaml │ │ │ ├── train_visinger2_plus_hubert.yaml │ │ │ ├── train_visinger_22.05.yaml │ │ │ ├── train_visinger_avocodo.yaml │ │ │ ├── train_visinger_mert.yaml │ │ │ ├── train_visinger_uhifigan.yaml │ │ │ ├── train_visinger_wavlablm_ms_40k.yaml │ │ │ └── train_xiaoice.yaml │ │ ├── db.sh │ │ ├── local │ │ ├── data.sh │ │ ├── data_prep.py │ │ ├── midi-note.scp │ │ └── path.sh │ │ ├── path.sh │ │ ├── pyscripts │ │ ├── run.sh │ │ ├── scripts │ │ ├── steps │ │ ├── svs.sh │ │ └── utils ├── owsm_v1 │ └── s2t1 │ │ ├── README.md │ │ ├── cmd.sh │ │ ├── conf │ │ ├── decode_s2t.yaml │ │ ├── fbank.conf │ │ ├── pbs.conf │ │ ├── pitch.conf │ │ ├── queue.conf │ │ ├── slurm.conf │ │ └── tuning │ │ │ └── train_s2t_transformer_size768_e12_d12_lr1e-3_warmup10k.yaml │ │ ├── db.sh │ │ ├── dump.sh │ │ ├── local │ │ ├── combine.sh │ │ ├── data.sh │ │ ├── filter_covost2.py │ │ ├── filter_covost2.sh │ │ ├── generate_nlsyms.py │ │ ├── path.sh │ │ ├── prepare_aishell.py │ │ ├── prepare_aishell.sh │ │ ├── prepare_covost2.py │ │ ├── prepare_covost2.sh │ │ ├── prepare_gigaspeech.py │ │ ├── prepare_gigaspeech.sh │ │ ├── prepare_librispeech.py │ │ ├── prepare_librispeech.sh │ │ ├── prepare_must-c.py │ │ ├── prepare_must-c.sh │ │ ├── prepare_spgispeech.py │ │ ├── prepare_spgispeech.sh │ │ ├── prepare_tedlium.py │ │ ├── prepare_tedlium.sh │ │ ├── remove_invalid_spaces.py │ │ ├── stats.py │ │ └── utils.py │ │ ├── path.sh │ │ ├── pyscripts │ │ ├── run.sh │ │ ├── s2t.sh │ │ ├── scripts │ │ └── utils ├── owsm_v2 │ └── s2t1 │ │ ├── README.md │ │ ├── cmd.sh │ │ ├── conf │ │ ├── decode_s2t.yaml │ │ ├── fbank.conf │ │ ├── pbs.conf │ │ ├── pitch.conf │ │ ├── queue.conf │ │ ├── slurm.conf │ │ └── tuning │ │ │ ├── train_s2t_transformer_conv2d_size1024_e12_d12_lr1e-3_warmup20k.yaml │ │ │ ├── train_s2t_transformer_conv2d_size1024_e18_d18_lr5e-4_warmup20k.yaml │ │ │ └── train_s2t_transformer_conv2d_size768_e12_d12_lr2e-3_warmup20k.yaml │ │ ├── db.sh │ │ ├── dump.sh │ │ ├── local │ │ ├── combine.sh │ │ ├── data.sh │ │ ├── generate_nlsyms.py │ │ ├── gigast_convert_data.py │ │ ├── path.sh │ │ ├── prepare_gigast.py │ │ ├── prepare_gigast.sh │ │ ├── prepare_multilingual_librispeech.py │ │ ├── prepare_multilingual_librispeech.sh │ │ ├── prepare_tedlium_filtered.py │ │ ├── prepare_tedlium_filtered.sh │ │ ├── prepare_wenetspeech.py │ │ ├── prepare_wenetspeech.sh │ │ ├── stats.py │ │ └── utils.py │ │ ├── path.sh │ │ ├── pyscripts │ │ ├── run.sh │ │ ├── s2t.sh │ │ ├── scripts │ │ └── utils ├── owsm_v3.1 │ └── s2t1 │ │ ├── README.md │ │ ├── cmd.sh │ │ ├── conf │ │ ├── decode_s2t.yaml │ │ ├── fbank.conf │ │ ├── pbs.conf │ │ ├── pitch.conf │ │ ├── queue.conf │ │ ├── slurm.conf │ │ └── train_s2t_ebf_conv2d_size1024_e18_d18_piecewise_lr2e-4_warmup60k_flashattn.yaml │ │ ├── db.sh │ │ ├── local │ │ └── path.sh │ │ ├── path.sh │ │ ├── pyscripts │ │ ├── run.sh │ │ ├── s2t.sh │ │ ├── scripts │ │ └── utils ├── owsm_v3 │ └── s2t1 │ │ ├── README.md │ │ ├── cmd.sh │ │ ├── conf │ │ ├── decode_s2t.yaml │ │ ├── fbank.conf │ │ ├── pbs.conf │ │ ├── pitch.conf │ │ ├── queue.conf │ │ ├── slurm.conf │ │ ├── train_s2t_transformer_conv2d_size1024_e24_d24_lr2.5e-4_warmup10k_finetune.yaml │ │ └── train_s2t_transformer_conv2d_size1024_e24_d24_lr3e-4_warmup20k.yaml │ │ ├── db.sh │ │ ├── local │ │ ├── combine.sh │ │ ├── cv-iso-693-3.txt │ │ ├── data.sh │ │ ├── filter_lang_id.py │ │ ├── generate_nlsyms.py │ │ ├── kaldi_to_whisper.py │ │ ├── path.sh │ │ ├── prepare_aidatatang.sh │ │ ├── prepare_ami.sh │ │ ├── prepare_babel.sh │ │ ├── prepare_commonvoice.py │ │ ├── prepare_commonvoice.sh │ │ ├── prepare_fisher_callhome.sh │ │ ├── prepare_fleurs.py │ │ ├── prepare_fleurs.sh │ │ ├── prepare_ksponspeech.sh │ │ ├── prepare_magicdata.sh │ │ ├── prepare_openslr.sh │ │ ├── prepare_reazonspeech.py │ │ ├── prepare_reazonspeech.sh │ │ ├── prepare_ru_open_stt.sh │ │ ├── prepare_swbd.sh │ │ ├── prepare_vctk.sh │ │ ├── prepare_voxforge.sh │ │ ├── prepare_voxpopuli.py │ │ ├── prepare_voxpopuli.sh │ │ ├── prepare_wsj.sh │ │ ├── stats.py │ │ └── utils.py │ │ ├── path.sh │ │ ├── pyscripts │ │ ├── run.sh │ │ ├── s2t.sh │ │ ├── scripts │ │ └── utils ├── pjs │ └── svs1 │ │ ├── cmd.sh │ │ ├── conf │ │ ├── decode.yaml │ │ ├── pbs.conf │ │ ├── queue.conf │ │ ├── slurm.conf │ │ ├── train.yaml │ │ └── tuning │ │ │ ├── train_naive_rnn.yaml │ │ │ ├── train_naive_rnn_dp.yaml │ │ │ └── train_vits.yaml │ │ ├── db.sh │ │ ├── local │ │ ├── customed_dic.scp │ │ ├── data.sh │ │ ├── dataset_split.py │ │ ├── path.sh │ │ ├── prep_segments.py │ │ └── prep_segments_from_xml.py │ │ ├── path.sh │ │ ├── pyscripts │ │ ├── run.sh │ │ ├── scripts │ │ ├── svs.sh │ │ └── 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 ├── portmedia_dom │ └── asr1 │ │ ├── README.md │ │ ├── asr.sh │ │ ├── cmd.sh │ │ ├── conf │ │ ├── decode_asr_hf.yaml │ │ ├── pbs.conf │ │ ├── queue.conf │ │ ├── slurm.conf │ │ └── tuning │ │ │ └── train_asr_branchformer_xlsr_mbart.yaml │ │ ├── db.sh │ │ ├── local │ │ ├── data.sh │ │ ├── path.sh │ │ ├── prepare_data.py │ │ ├── score.py │ │ └── score.sh │ │ ├── path.sh │ │ ├── pyscripts │ │ ├── run.sh │ │ ├── scripts │ │ ├── steps │ │ └── utils ├── portmedia_lang │ └── asr1 │ │ ├── README.md │ │ ├── asr.sh │ │ ├── cmd.sh │ │ ├── conf │ │ ├── decode_asr_hf.yaml │ │ ├── pbs.conf │ │ ├── queue.conf │ │ ├── slurm.conf │ │ └── tuning │ │ │ └── train_asr_branchformer_xlsr_mbart.yaml │ │ ├── db.sh │ │ ├── local │ │ ├── data.sh │ │ ├── path.sh │ │ ├── prepare_data.py │ │ ├── score.py │ │ └── score.sh │ │ ├── path.sh │ │ ├── pyscripts │ │ ├── run.sh │ │ ├── scripts │ │ ├── steps │ │ └── utils ├── primewords_chinese │ └── 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 │ │ ├── data_prep.py │ │ └── path.sh │ │ ├── path.sh │ │ ├── pyscripts │ │ ├── run.sh │ │ ├── scripts │ │ ├── steps │ │ └── utils ├── puebla_nahuatl │ ├── 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 │ │ ├── db.sh │ │ ├── local │ │ │ ├── construct_dataset.py │ │ │ ├── data.sh │ │ │ ├── data_prep.py │ │ │ ├── download_and_untar.sh │ │ │ └── path.sh │ │ ├── path.sh │ │ ├── pyscripts │ │ ├── run.sh │ │ ├── scripts │ │ ├── steps │ │ └── utils │ └── st1 │ │ ├── cmd.sh │ │ ├── conf │ │ ├── decode_st.yaml │ │ ├── fbank.conf │ │ ├── pbs.conf │ │ ├── pitch.conf │ │ ├── queue.conf │ │ ├── slurm.conf │ │ ├── train_conformer_st.yaml │ │ └── train_st.yaml │ │ ├── db.sh │ │ ├── local │ │ ├── data.sh │ │ ├── data_prep.py │ │ ├── download_and_untar.sh │ │ └── path.sh │ │ ├── path.sh │ │ ├── pyscripts │ │ ├── run.sh │ │ ├── scripts │ │ ├── st.sh │ │ ├── steps │ │ └── utils ├── qasr_tts │ └── tts1 │ │ ├── README.MD │ │ ├── RESULTS.MD │ │ ├── adapt.sh │ │ ├── cmd.sh │ │ ├── conf │ │ ├── decode.yaml │ │ ├── pbs.conf │ │ ├── queue.conf │ │ ├── slurm.conf │ │ ├── train.yaml │ │ └── tuning │ │ │ ├── decode_fastspeech.yaml │ │ │ ├── decode_tacotron2.yaml │ │ │ ├── finetune_tacotron2.yaml │ │ │ ├── finetune_transformer.yaml │ │ │ ├── train_conformer_fastspeech.yaml │ │ │ └── train_conformer_fastspeech2.yaml │ │ ├── db.sh │ │ ├── local │ │ ├── data.sh │ │ ├── data_download.sh │ │ └── path.sh │ │ ├── path.sh │ │ ├── pyscripts │ │ ├── run.sh │ │ ├── scripts │ │ ├── sid │ │ ├── steps │ │ ├── tts.sh │ │ └── utils ├── reazonspeech │ └── asr1 │ │ ├── README.md │ │ ├── asr.sh │ │ ├── cmd.sh │ │ ├── conf │ │ ├── decode_asr.yaml │ │ ├── train_asr_conformer.yaml │ │ └── train_lm.yaml │ │ ├── db.sh │ │ ├── local │ │ ├── augment.py │ │ ├── data.py │ │ ├── data.sh │ │ ├── path.sh │ │ └── symbol.txt │ │ ├── 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 │ │ ├── scripts │ │ ├── steps │ │ └── utils │ └── enh1 │ │ ├── cmd.sh │ │ ├── conf │ │ ├── pbs.conf │ │ ├── queue.conf │ │ ├── slurm.conf │ │ └── tuning │ │ │ └── train_enh_beamformer_wpe_mvdr.yaml │ │ ├── db.sh │ │ ├── enh.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 │ │ ├── pad_reverb_audios.py │ │ ├── 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 │ │ ├── scripts │ │ ├── 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 ├── ruslan │ └── 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_conformer_fastspeech2.yaml │ │ │ ├── train_tacotron2.yaml │ │ │ └── train_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 ├── sdsv21 │ └── spk1 │ │ ├── README.md │ │ ├── cmd.sh │ │ ├── conf │ │ ├── decode.yaml │ │ ├── fbank.conf │ │ ├── pbs.conf │ │ ├── pitch.conf │ │ ├── queue.conf │ │ ├── slurm.conf │ │ └── train_rawnet3.yaml │ │ ├── db.sh │ │ ├── local │ │ ├── commonvoice_data_prep.py │ │ ├── convert_trial.py │ │ ├── crawl_voxcelebs.py │ │ ├── crawl_voxcelebs_mp.py │ │ ├── data.sh │ │ ├── data_prep.py │ │ ├── generate_trial_file.py │ │ ├── librispeech_flac2wav.py │ │ ├── path.sh │ │ ├── remove_unopenable_files.py │ │ └── sampledeepmine_prep.py │ │ ├── path.sh │ │ ├── pyscripts │ │ ├── run.sh │ │ ├── scripts │ │ ├── spk.sh │ │ ├── steps │ │ └── utils ├── seame │ └── asr1 │ │ ├── README.md │ │ ├── asr.sh │ │ ├── cmd.sh │ │ ├── conf │ │ ├── decode_asr.yaml │ │ ├── fbank.conf │ │ ├── pbs.conf │ │ ├── pitch.conf │ │ ├── queue.conf │ │ ├── slurm.conf │ │ ├── train.yaml │ │ └── tuning │ │ │ ├── train_asr_conformer.yaml │ │ │ └── train_lm_transformer.yaml │ │ ├── db.sh │ │ ├── local │ │ ├── data.sh │ │ ├── path.sh │ │ ├── preprocess.py │ │ ├── score.sh │ │ └── split_lang_trn.py │ │ ├── path.sh │ │ ├── pyscripts │ │ ├── run.sh │ │ ├── scripts │ │ ├── steps │ │ └── utils ├── sinhala │ └── asr1 │ │ ├── README.md │ │ ├── asr.sh │ │ ├── cmd.sh │ │ ├── conf │ │ ├── fbank.conf │ │ ├── pbs.conf │ │ ├── pitch.conf │ │ ├── queue.conf │ │ ├── slurm-2.conf │ │ ├── slurm.conf │ │ └── train_asr.yaml │ │ ├── db.sh │ │ ├── local │ │ ├── data.sh │ │ ├── data_prep.py │ │ ├── path.sh │ │ ├── score.py │ │ └── score.sh │ │ ├── path.sh │ │ ├── pyscripts │ │ ├── run.sh │ │ ├── scripts │ │ ├── steps │ │ └── utils ├── siwis │ └── 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_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 ├── slue-voxceleb │ ├── asr1 │ │ ├── README.md │ │ ├── asr.sh │ │ ├── cmd.sh │ │ ├── conf │ │ │ ├── decode_asr.yaml │ │ │ ├── fbank.conf │ │ │ ├── pbs.conf │ │ │ ├── pitch.conf │ │ │ ├── queue.conf │ │ │ ├── slurm.conf │ │ │ ├── train_asr.yaml │ │ │ └── tuning │ │ │ │ ├── train_asr_conformer.yaml │ │ │ │ ├── train_asr_conformer_nlu.yaml │ │ │ │ ├── train_asr_conformer_s3prl.yaml │ │ │ │ └── train_asr_wav2vec2_conformer_small.yaml │ │ ├── db.sh │ │ ├── local │ │ │ ├── data.sh │ │ │ ├── data_prep_slue.py │ │ │ ├── f1_score.py │ │ │ ├── generate_asr_files.py │ │ │ ├── path.sh │ │ │ ├── run_spm.sh │ │ │ ├── score.py │ │ │ └── score.sh │ │ ├── path.sh │ │ ├── pyscripts │ │ ├── run.sh │ │ ├── scripts │ │ ├── steps │ │ └── utils │ └── slu1 │ │ ├── README.md │ │ ├── cmd.sh │ │ ├── conf │ │ ├── decode_asr.yaml │ │ ├── fbank.conf │ │ ├── pbs.conf │ │ ├── pitch.conf │ │ ├── queue.conf │ │ ├── slurm.conf │ │ ├── train_asr.yaml │ │ └── tuning │ │ │ ├── train_asr_bert.yaml │ │ │ ├── train_asr_bert_wavlm.yaml │ │ │ ├── train_asr_deberta.yaml │ │ │ ├── train_asr_deberta_wavlm.yaml │ │ │ ├── train_asr_gigaspeech.yaml │ │ │ ├── train_asr_hubert.yaml │ │ │ ├── train_asr_iemocap.yaml │ │ │ ├── train_asr_iemocap_wavlm.yaml │ │ │ ├── train_asr_no_pretrain.yaml │ │ │ ├── train_asr_spgispeech.yaml │ │ │ ├── train_asr_swbd_sentiment.yaml │ │ │ ├── train_asr_swbd_sentiment_wavlm.yaml │ │ │ ├── train_asr_tera.yaml │ │ │ ├── train_asr_vq_apc.yaml │ │ │ ├── train_asr_wav2vec2.yaml │ │ │ └── train_asr_wavlm.yaml │ │ ├── db.sh │ │ ├── local │ │ ├── data.sh │ │ ├── data_prep_slue.py │ │ ├── data_prep_slue_transcript.py │ │ ├── f1_score.py │ │ ├── generate_asr_files.py │ │ ├── path.sh │ │ ├── run_spm.sh │ │ ├── score.py │ │ └── score.sh │ │ ├── path.sh │ │ ├── pyscripts │ │ ├── run.sh │ │ ├── scripts │ │ ├── slu.sh │ │ ├── steps │ │ └── utils ├── slue-voxpopuli │ ├── asr1 │ │ ├── README.md │ │ ├── asr.sh │ │ ├── cmd.sh │ │ ├── conf │ │ │ ├── decode_asr.yaml │ │ │ ├── decode_asr_hf.yaml │ │ │ ├── fbank.conf │ │ │ ├── pbs.conf │ │ │ ├── pitch.conf │ │ │ ├── queue.conf │ │ │ ├── slurm.conf │ │ │ ├── train_asr.yaml │ │ │ ├── train_asr_baseline_conformer.yaml │ │ │ ├── tuning │ │ │ │ └── train_asr_branchformer_wavlm_mbart.yaml │ │ │ └── tuning_wavlm │ │ │ │ └── train_asr_conformer_lr2e-3_warmup5k_wavlm_conv2d2.yaml │ │ ├── db.sh │ │ ├── local │ │ │ ├── data.sh │ │ │ ├── data_prep_original_slue_format.py │ │ │ ├── data_prep_original_slue_format_transcript.py │ │ │ ├── eval_utils.py │ │ │ ├── path.sh │ │ │ ├── run_hf.sh │ │ │ ├── run_spm.sh │ │ │ ├── score.py │ │ │ └── score.sh │ │ ├── path.sh │ │ ├── pyscripts │ │ ├── run.sh │ │ ├── scripts │ │ ├── steps │ │ └── utils │ └── slu1 │ │ ├── README.md │ │ ├── cmd.sh │ │ ├── conf │ │ ├── decode_asr.yaml │ │ ├── fbank.conf │ │ ├── pbs.conf │ │ ├── pitch.conf │ │ ├── queue.conf │ │ ├── slurm.conf │ │ ├── train_asr.yaml │ │ └── tuning │ │ │ ├── train_asr_bert.yaml │ │ │ ├── train_asr_bert_wavlm.yaml │ │ │ ├── train_asr_deberta.yaml │ │ │ ├── train_asr_deberta_wavlm.yaml │ │ │ ├── train_asr_gigaspeech.yaml │ │ │ ├── train_asr_hubert.yaml │ │ │ ├── train_asr_no_pretrain.yaml │ │ │ ├── train_asr_slurp.yaml │ │ │ ├── train_asr_slurp_wavlm.yaml │ │ │ ├── train_asr_spgispeech.yaml │ │ │ ├── train_asr_tera.yaml │ │ │ ├── train_asr_vq_apc.yaml │ │ │ ├── train_asr_wav2vec2.yaml │ │ │ └── train_asr_wavlm.yaml │ │ ├── db.sh │ │ ├── local │ │ ├── data.sh │ │ ├── data_prep_original_slue_format.py │ │ ├── data_prep_original_slue_format_transcript.py │ │ ├── eval_utils.py │ │ ├── path.sh │ │ ├── score.py │ │ └── score.sh │ │ ├── path.sh │ │ ├── pyscripts │ │ ├── run.sh │ │ ├── scripts │ │ ├── slu.sh │ │ ├── steps │ │ └── utils ├── slurp │ ├── 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_streaming_transformer.yaml │ │ │ └── tuning │ │ │ │ ├── train_asr_conformer.yaml │ │ │ │ ├── train_asr_conformer_nlu.yaml │ │ │ │ └── train_asr_conformer_s3prl.yaml │ │ ├── db.sh │ │ ├── local │ │ │ ├── data.sh │ │ │ ├── path.sh │ │ │ ├── prepare_slurp_data.py │ │ │ ├── run_spm.sh │ │ │ ├── score.py │ │ │ └── score.sh │ │ ├── path.sh │ │ ├── pyscripts │ │ ├── run.sh │ │ ├── scripts │ │ ├── steps │ │ └── utils │ └── slu1 │ │ ├── README.md │ │ ├── cmd.sh │ │ ├── conf │ │ ├── decode_asr.yaml │ │ ├── fbank.conf │ │ ├── pbs.conf │ │ ├── pitch.conf │ │ ├── queue.conf │ │ ├── slurm.conf │ │ ├── train_asr.yaml │ │ └── tuning │ │ │ ├── train_asr_bert_conformer_deliberation.yaml │ │ │ ├── train_asr_conformer.yaml │ │ │ ├── train_asr_conformer_nlu.yaml │ │ │ └── train_asr_conformer_s3prl.yaml │ │ ├── db.sh │ │ ├── local │ │ ├── data.sh │ │ ├── path.sh │ │ ├── prepare_slurp_data.py │ │ ├── prepare_slurp_data_gold_transcript.py │ │ ├── prepare_slurp_data_transcript.py │ │ ├── run_spm.sh │ │ ├── score.py │ │ └── score.sh │ │ ├── path.sh │ │ ├── pyscripts │ │ ├── run.sh │ │ ├── scripts │ │ ├── slu.sh │ │ ├── steps │ │ └── utils ├── slurp_entity │ └── asr1 │ │ ├── README.md │ │ ├── asr.sh │ │ ├── cmd.sh │ │ ├── conf │ │ ├── decode_asr.yaml │ │ ├── decode_asr_hf.yaml │ │ ├── fbank.conf │ │ ├── pbs.conf │ │ ├── pitch.conf │ │ ├── queue.conf │ │ ├── slurm.conf │ │ ├── train_asr_branchformer.yaml │ │ ├── train_asr_conformer.yaml │ │ └── tuning │ │ │ ├── train_asr_branchformer_e18_d6_size512_lr1e-3_warmup35k.yaml │ │ │ ├── train_asr_branchformer_xlsr_mbart.yaml │ │ │ ├── train_asr_conformer.yaml │ │ │ ├── train_asr_conformer_e12_d6_size512_lr1e-3_warmup35k.yaml │ │ │ ├── train_asr_conformer_nlu.yaml │ │ │ ├── train_asr_conformer_s3prl.yaml │ │ │ ├── train_asr_e_branchformer_e12_mlp3072_linear1024_layerdrop.yaml │ │ │ └── train_asr_multiconv_e12_mlp3072_linear2048_layerdrop.yaml │ │ ├── db.sh │ │ ├── local │ │ ├── convert_to_entity_file.py │ │ ├── data.sh │ │ ├── evaluation │ │ │ ├── README.md │ │ │ ├── evaluate.py │ │ │ ├── metrics │ │ │ │ ├── __init__.py │ │ │ │ ├── distance.py │ │ │ │ └── metrics.py │ │ │ ├── requirements.txt │ │ │ └── util.py │ │ ├── path.sh │ │ ├── prepare_entity_type.py │ │ ├── prepare_slurp_data.py │ │ ├── prepare_slurp_entity_data.py │ │ ├── run_hf.sh │ │ ├── run_spm.sh │ │ ├── score.py │ │ └── score.sh │ │ ├── path.sh │ │ ├── pyscripts │ │ ├── run.sh │ │ ├── scripts │ │ ├── steps │ │ └── utils ├── slurp_spatialized │ └── asr1 │ │ ├── README.md │ │ ├── asr.sh │ │ ├── cmd.sh │ │ ├── conf │ │ ├── decode_asr.yaml │ │ ├── fbank.conf │ │ ├── pbs.conf │ │ ├── pitch.conf │ │ ├── queue.conf │ │ ├── slurm.conf │ │ ├── train_asr.yaml │ │ └── tuning │ │ │ ├── train_asr_conformer.yaml │ │ │ ├── train_asr_conformer_nlu.yaml │ │ │ └── train_asr_conformer_s3prl.yaml │ │ ├── db.sh │ │ ├── local │ │ ├── data.sh │ │ ├── multi_to_single.py │ │ ├── path.sh │ │ ├── prepare_slurp_data.py │ │ ├── prepare_slurp_mixture.py │ │ ├── run_spm.sh │ │ ├── score.py │ │ └── score.sh │ │ ├── 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 ├── snips │ └── asr1 │ │ ├── RESULTS.md │ │ ├── asr.sh │ │ ├── cmd.sh │ │ ├── conf │ │ ├── decode_asr_transformer.yaml │ │ ├── fbank.conf │ │ ├── pbs.conf │ │ ├── pitch.conf │ │ ├── queue.conf │ │ ├── slurm.conf │ │ └── tuning │ │ │ ├── train_asr_hubert_conformer.yaml │ │ │ └── train_asr_transformer_adam.yaml │ │ ├── db.sh │ │ ├── local │ │ ├── compute_f1.py │ │ ├── data.sh │ │ ├── data_prep.py │ │ ├── path.sh │ │ └── score.sh │ │ ├── path.sh │ │ ├── pyscripts │ │ ├── run.sh │ │ ├── scripts │ │ ├── steps │ │ └── utils ├── speechcommands │ └── asr1 │ │ ├── README.md │ │ ├── asr.sh │ │ ├── cmd.sh │ │ ├── conf │ │ ├── decode_asr.yaml │ │ ├── fbank.conf │ │ ├── pbs.conf │ │ ├── pitch.conf │ │ ├── queue.conf │ │ ├── slurm.conf │ │ ├── train_asr.yaml │ │ └── tuning │ │ │ ├── train_asr_conformer_adam_noBatchNorm.yaml │ │ │ └── train_asr_transformer_adam.yaml │ │ ├── db.sh │ │ ├── local │ │ ├── data.sh │ │ ├── data_prep_12.py │ │ ├── data_prep_35.py │ │ ├── path.sh │ │ ├── score.py │ │ ├── score.sh │ │ └── speechbrain_test.csv │ │ ├── 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 ├── spring_speech │ ├── LICENSE │ ├── README.md │ ├── asr.sh │ ├── cmd.sh │ ├── conf │ │ ├── decode_asr.yaml │ │ ├── fbank.conf │ │ ├── pbs.conf │ │ ├── pitch.conf │ │ ├── queue.conf │ │ ├── slurm.conf │ │ ├── train_asr.yaml │ │ └── tuning │ │ │ └── train_asr_transformer.yaml │ ├── db.sh │ ├── local │ │ ├── data.sh │ │ └── download_and_untar.sh │ ├── path.sh │ ├── pyscripts │ ├── run.sh │ ├── scripts │ ├── steps │ └── utils ├── stop │ ├── asr1 │ │ ├── asr.sh │ │ ├── cmd.sh │ │ ├── conf │ │ │ ├── decode_asr.yaml │ │ │ ├── decode_asr2.yaml │ │ │ ├── decode_asr_whisper_noctc_greedy.yaml │ │ │ ├── fbank.conf │ │ │ ├── pbs.conf │ │ │ ├── pitch.conf │ │ │ ├── queue.conf │ │ │ ├── slurm.conf │ │ │ ├── train_asr2_hubert_lr0.002.yaml │ │ │ ├── train_asr2_wav2vec2_lr0.002.yaml │ │ │ ├── train_asr2_wavlm_branchformer.yaml │ │ │ ├── train_asr2_wavlm_lr0.002.yaml │ │ │ └── train_asr_whisper_full_correct.yaml │ │ ├── db.sh │ │ ├── local │ │ │ ├── data.sh │ │ │ ├── path.sh │ │ │ ├── prepare_stop_data.py │ │ │ ├── run_spm.sh │ │ │ ├── score.py │ │ │ └── score.sh │ │ ├── path.sh │ │ ├── pyscripts │ │ ├── run.sh │ │ ├── scripts │ │ ├── steps │ │ └── utils │ └── asr1_pipeline │ │ ├── asr.sh │ │ ├── cmd.sh │ │ ├── conf │ │ ├── decode_asr.yaml │ │ ├── decode_asr2.yaml │ │ ├── decode_asr_whisper_noctc_greedy.yaml │ │ ├── fbank.conf │ │ ├── pbs.conf │ │ ├── pitch.conf │ │ ├── queue.conf │ │ ├── slurm.conf │ │ ├── train_asr2_hubert_lr0.002.yaml │ │ ├── train_asr2_wav2vec2_lr0.002.yaml │ │ ├── train_asr2_wavlm_lr0.002.yaml │ │ ├── train_asr_whisper_full_correct.yaml │ │ └── train_rnn_lm.yaml │ │ ├── db.sh │ │ ├── local │ │ ├── data.sh │ │ ├── path.sh │ │ ├── prepare_stop_data.py │ │ ├── run_spm.sh │ │ ├── score.py │ │ └── score.sh │ │ ├── path.sh │ │ ├── pyscripts │ │ ├── run.sh │ │ ├── scripts │ │ ├── steps │ │ └── utils ├── su_openslr36 │ └── 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.yaml │ │ ├── db.sh │ │ ├── local │ │ ├── data.sh │ │ ├── path.sh │ │ └── sunda_data_prep.py │ │ ├── path.sh │ │ ├── pyscripts │ │ ├── run.sh │ │ ├── scripts │ │ ├── steps │ │ └── utils ├── swbd │ └── 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_e_branchformer.yaml │ │ ├── train_lm.yaml │ │ └── tuning │ │ │ ├── train_asr_conformer.yaml │ │ │ ├── train_asr_conformer2.yaml │ │ │ ├── train_asr_conformer_e12_size256_linear2048.yaml │ │ │ ├── train_asr_e_branchformer_e12_size256_mlp1024_linear1024_macaron.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 ├── swbd_da │ └── asr1 │ │ ├── README.md │ │ ├── asr.sh │ │ ├── cmd.sh │ │ ├── conf │ │ ├── decode_asr.yaml │ │ ├── fbank.conf │ │ ├── pbs.conf │ │ ├── pitch.conf │ │ ├── queue.conf │ │ ├── slurm.conf │ │ ├── train_asr.yaml │ │ └── tuning │ │ │ ├── train_asr_conformer.yaml │ │ │ ├── train_asr_conformer_hubert.yaml │ │ │ ├── train_asr_transformer.yaml │ │ │ └── train_asr_transformer_postencoder.yaml │ │ ├── db.sh │ │ ├── local │ │ ├── data.sh │ │ ├── data_prep.py │ │ ├── path.sh │ │ ├── score.py │ │ ├── score.sh │ │ ├── test.lst │ │ ├── train.lst │ │ └── valid.lst │ │ ├── path.sh │ │ ├── pyscripts │ │ ├── run.sh │ │ ├── scripts │ │ ├── steps │ │ └── utils ├── swbd_sentiment │ └── asr1 │ │ ├── README.md │ │ ├── asr.sh │ │ ├── cmd.sh │ │ ├── conf │ │ ├── decode_asr.yaml │ │ ├── fbank.conf │ │ ├── pbs.conf │ │ ├── pitch.conf │ │ ├── queue.conf │ │ ├── slurm.conf │ │ ├── train_asr.yaml │ │ └── tuning │ │ │ ├── train_asr_conformer.yaml │ │ │ └── train_asr_conformer_wav2vec2.yaml │ │ ├── db.sh │ │ ├── local │ │ ├── MSU_single_letter.txt │ │ ├── data.sh │ │ ├── dict.patch │ │ ├── extend_segments.pl │ │ ├── format_acronyms_dict.py │ │ ├── map_acronyms_transcripts.py │ │ ├── path.sh │ │ ├── prepare_sentiment.py │ │ ├── score.py │ │ ├── score.sh │ │ ├── score_f1.py │ │ ├── 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 ├── talromur │ └── tts1 │ │ ├── README.md │ │ ├── cmd.sh │ │ ├── conf │ │ ├── decode.yaml │ │ ├── pbs.conf │ │ ├── queue.conf │ │ ├── slurm.conf │ │ ├── train.yaml │ │ └── tuning │ │ │ ├── decode_fastspeech.yaml │ │ │ ├── decode_tacotron2.yaml │ │ │ ├── decode_vits.yaml │ │ │ ├── finetune_joint_conformer_fastspeech2_hifigan.yaml │ │ │ ├── train_conformer_fastspeech.yaml │ │ │ ├── train_conformer_fastspeech2.yaml │ │ │ ├── train_fastspeech.yaml │ │ │ ├── train_fastspeech2.yaml │ │ │ ├── train_jets.yaml │ │ │ ├── train_joint_conformer_fastspeech2_hifigan.yaml │ │ │ ├── train_tacotron2.yaml │ │ │ ├── train_transformer.yaml │ │ │ ├── train_vits.yaml │ │ │ └── train_xvector_vits.yaml │ │ ├── db.sh │ │ ├── local │ │ ├── data.sh │ │ ├── data_download.sh │ │ ├── data_multi_speaker.sh │ │ ├── data_utils.sh │ │ ├── path.sh │ │ └── phonetize.sh │ │ ├── path.sh │ │ ├── pyscripts │ │ ├── run.sh │ │ ├── scripts │ │ ├── sid │ │ ├── steps │ │ ├── train_fastspeech2.sh │ │ ├── train_tacotron2.sh │ │ ├── tts.sh │ │ └── utils ├── talromur2 │ └── tts1 │ │ ├── README.md │ │ ├── cmd.sh │ │ ├── conf │ │ ├── decode.yaml │ │ ├── mfcc.conf │ │ ├── pbs.conf │ │ ├── queue.conf │ │ ├── slurm.conf │ │ ├── tuning │ │ │ ├── decode_fastspeech.yaml │ │ │ ├── decode_tacotron2.yaml │ │ │ ├── decode_vits.yaml │ │ │ ├── train_full_band_multi_spk_vits.yaml │ │ │ ├── train_multi_spk_vits.yaml │ │ │ ├── train_xvector_fastspeech2.yaml │ │ │ ├── train_xvector_tacotron2.yaml │ │ │ └── train_xvector_vits.yaml │ │ └── vad.conf │ │ ├── db.sh │ │ ├── local │ │ ├── data.sh │ │ ├── data_download.sh │ │ ├── data_utils.py │ │ ├── path.sh │ │ ├── phonetize.sh │ │ └── split_train_dev_test.py │ │ ├── path.sh │ │ ├── pyscripts │ │ ├── run.sh │ │ ├── scripts │ │ ├── sid │ │ ├── steps │ │ ├── train_multi_speaker_fastspeech2.sh │ │ ├── train_multi_speaker_tacotron2.sh │ │ ├── train_multi_speaker_vits.sh │ │ ├── tts.sh │ │ └── utils ├── tedlium2 │ └── asr1 │ │ ├── README.md │ │ ├── asr.sh │ │ ├── cmd.sh │ │ ├── conf │ │ ├── decode_asr.yaml │ │ ├── decode_asr_ctc.yaml │ │ ├── decode_asr_streaming.yaml │ │ ├── decode_asr_transducer.yaml │ │ ├── fbank.conf │ │ ├── pbs.conf │ │ ├── pitch.conf │ │ ├── queue.conf │ │ ├── slurm.conf │ │ ├── train_asr_e_branchformer.yaml │ │ ├── train_asr_streaming_transformer.yaml │ │ ├── train_lm.yaml │ │ └── tuning │ │ │ ├── train_asr_conformer.yaml │ │ │ ├── train_asr_conformer_e15.yaml │ │ │ ├── train_asr_ctc_conformer_e12_linear2048.yaml │ │ │ ├── train_asr_ctc_conformer_e15_linear1024.yaml │ │ │ ├── train_asr_ctc_e_branchformer_e12_mlp1024_linear1024.yaml │ │ │ ├── train_asr_e_branchformer_size256_mlp1024_e12_mactrue.yaml │ │ │ ├── train_asr_transducer_conformer_e12_linear2048.yaml │ │ │ └── train_asr_transducer_e_branchformer_e12.yaml │ │ ├── db.sh │ │ ├── local │ │ ├── data.sh │ │ ├── download_data.sh │ │ ├── join_suffix.py │ │ ├── path.sh │ │ └── prepare_data.sh │ │ ├── path.sh │ │ ├── pyscripts │ │ ├── run.sh │ │ ├── run_streaming.sh │ │ ├── scripts │ │ ├── steps │ │ └── utils ├── tedlium3 │ ├── asr1 │ │ ├── README.md │ │ ├── asr.sh │ │ ├── cmd.sh │ │ ├── conf │ │ │ ├── decode.yaml │ │ │ ├── fbank.conf │ │ │ ├── pbs.conf │ │ │ ├── pitch.conf │ │ │ ├── queue.conf │ │ │ ├── slurm.conf │ │ │ ├── train.yaml │ │ │ ├── train_lm.yaml │ │ │ └── tuning │ │ │ │ ├── decode_asr.yaml │ │ │ │ ├── train_asr_conformer.yaml │ │ │ │ ├── train_asr_e_branchformer_size256_mlp1024_e12_mactrue.yaml │ │ │ │ └── train_lm_transformer.yaml │ │ ├── db.sh │ │ ├── local │ │ │ ├── data.sh │ │ │ ├── download_data.sh │ │ │ ├── join_suffix.py │ │ │ ├── path.sh │ │ │ └── prepare_data.sh │ │ ├── path.sh │ │ ├── pyscripts │ │ ├── run.sh │ │ ├── scripts │ │ ├── steps │ │ └── utils │ └── asr2 │ │ ├── README.md │ │ ├── asr2.sh │ │ ├── cmd.sh │ │ ├── conf │ │ ├── decode.yaml │ │ ├── fbank.conf │ │ ├── pbs.conf │ │ ├── pitch.conf │ │ ├── queue.conf │ │ ├── slurm.conf │ │ ├── train.yaml │ │ └── tuning │ │ │ ├── decode_ctc0.3.yaml │ │ │ └── train_discrete_asr_e_branchformer1.yaml │ │ ├── db.sh │ │ ├── local │ │ ├── data.sh │ │ ├── download_data.sh │ │ ├── join_suffix.py │ │ ├── path.sh │ │ └── prepare_data.sh │ │ ├── path.sh │ │ ├── pyscripts │ │ ├── run.sh │ │ ├── scripts │ │ ├── steps │ │ └── utils ├── tedx_spanish_openslr67 │ └── 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 │ │ ├── db.sh │ │ ├── local │ │ ├── create_data.py │ │ ├── data.sh │ │ ├── path.sh │ │ └── split_data.py │ │ ├── path.sh │ │ ├── pyscripts │ │ ├── run.sh │ │ ├── scripts │ │ ├── steps │ │ └── utils ├── thchs30 │ ├── 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_conformer5.yaml │ │ │ │ ├── train_asr_rnn.yaml │ │ │ │ └── train_asr_transformer.yaml │ │ ├── db.sh │ │ ├── local │ │ │ ├── data.sh │ │ │ ├── download_and_untar.sh │ │ │ ├── path.sh │ │ │ └── thchs-30_data_prep.sh │ │ ├── path.sh │ │ ├── pyscripts │ │ ├── run.sh │ │ ├── scripts │ │ ├── steps │ │ └── utils │ └── 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 │ │ └── vad.conf │ │ ├── db.sh │ │ ├── local │ │ ├── data.sh │ │ ├── download_and_untar.sh │ │ ├── path.sh │ │ └── thchs-30_data_prep.sh │ │ ├── path.sh │ │ ├── pyscripts │ │ ├── run.sh │ │ ├── scripts │ │ ├── sid │ │ ├── steps │ │ ├── tts.sh │ │ └── 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 │ └── uasr1 │ │ ├── cmd.sh │ │ ├── conf │ │ ├── decode_uasr.yaml │ │ ├── dev_spk.list │ │ ├── fbank.conf │ │ ├── pbs.conf │ │ ├── phones.60-48-39.map │ │ ├── pitch.conf │ │ ├── queue.conf │ │ ├── slurm.conf │ │ ├── test_spk.list │ │ └── train_uasr.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 │ │ ├── uasr.sh │ │ └── utils ├── totonac │ └── asr1 │ │ ├── RESULTS.md │ │ ├── asr.sh │ │ ├── cmd.sh │ │ ├── conf │ │ ├── decode_asr.yaml │ │ ├── fbank.conf │ │ ├── pbs.conf │ │ ├── pitch.conf │ │ ├── queue.conf │ │ ├── slurm.conf │ │ ├── train_asr.yaml │ │ └── tuning │ │ │ ├── decode_transformer.yaml │ │ │ ├── train_asr_transformer.yaml │ │ │ └── train_asr_transformer_default_hubert_linear.yaml │ │ ├── db.sh │ │ ├── local │ │ ├── data.sh │ │ ├── data_prep.py │ │ ├── download_and_untar.sh │ │ └── path.sh │ │ ├── path.sh │ │ ├── pyscripts │ │ ├── run.sh │ │ ├── scripts │ │ ├── steps │ │ └── utils ├── tsukuyomi │ └── tts1 │ │ ├── README.md │ │ ├── cmd.sh │ │ ├── conf │ │ ├── decode.yaml │ │ ├── finetune.yaml │ │ ├── pbs.conf │ │ ├── queue.conf │ │ ├── slurm.conf │ │ └── tuning │ │ │ ├── decode_fastspeech.yaml │ │ │ ├── decode_tacotron2.yaml │ │ │ ├── decode_vits.yaml │ │ │ ├── finetune_fastspeech2.yaml │ │ │ ├── finetune_full_band_vits.yaml │ │ │ ├── finetune_tacotron2.yaml │ │ │ └── finetune_vits.yaml │ │ ├── db.sh │ │ ├── local │ │ ├── data.sh │ │ ├── data_download.sh │ │ ├── data_prep.sh │ │ └── path.sh │ │ ├── path.sh │ │ ├── pyscripts │ │ ├── run.sh │ │ ├── scripts │ │ ├── sid │ │ ├── steps │ │ ├── tts.sh │ │ └── utils ├── universal_se_v1 │ └── enh1 │ │ ├── README.md │ │ ├── cmd.sh │ │ ├── conf │ │ ├── inference │ │ │ ├── test_16kHz.yaml │ │ │ ├── test_48kHz.yaml │ │ │ └── test_8kHz.yaml │ │ ├── pbs.conf │ │ ├── queue.conf │ │ ├── slurm.conf │ │ └── tuning │ │ │ └── train_enh_uses_refch0_2mem.yaml │ │ ├── db.sh │ │ ├── enh.sh │ │ ├── local │ │ ├── data.sh │ │ └── path.sh │ │ ├── path.sh │ │ ├── pyscripts │ │ ├── run.sh │ │ ├── scripts │ │ ├── steps │ │ └── utils ├── urgent24 │ └── enh1 │ │ ├── cmd.sh │ │ ├── conf │ │ ├── pbs.conf │ │ ├── queue.conf │ │ ├── slurm.conf │ │ └── tuning │ │ │ ├── train_enh_bsrnn_large_noncausal.yaml │ │ │ ├── train_enh_conv_tasnet.yaml │ │ │ └── train_enh_tfgridnet.yaml │ │ ├── db.sh │ │ ├── enh.sh │ │ ├── local │ │ ├── data.sh │ │ └── path.sh │ │ ├── path.sh │ │ ├── pyscripts │ │ ├── run.sh │ │ ├── scripts │ │ ├── steps │ │ └── utils ├── uslu14 │ └── asr1 │ │ ├── asr.sh │ │ ├── cmd.sh │ │ ├── conf │ │ ├── decode_asr_accent_rec.yaml │ │ ├── decode_asr_ar.yaml │ │ ├── decode_asr_auc.yaml │ │ ├── decode_asr_er.yaml │ │ ├── decode_asr_fsd.yaml │ │ ├── decode_asr_gid.yaml │ │ ├── decode_asr_grabo.yaml │ │ ├── decode_asr_ic.yaml │ │ ├── decode_asr_lid.yaml │ │ ├── decode_asr_lt.yaml │ │ ├── decode_asr_scd.yaml │ │ ├── decode_asr_scd_plus.yaml │ │ ├── decode_asr_scr.yaml │ │ ├── decode_asr_vad.yaml │ │ ├── fbank.conf │ │ ├── pbs.conf │ │ ├── pitch.conf │ │ ├── queue.conf │ │ ├── slurm.conf │ │ └── train_asr_whisper_full_correct_specaug.yaml │ │ ├── db.sh │ │ ├── local │ │ ├── add_tokens-Copy1.txt │ │ ├── check_lid_results.py │ │ ├── check_vad_results.py │ │ ├── clean_emotion_pred.py │ │ ├── compute_f1.py │ │ ├── compute_weighted_f1.py │ │ ├── convert_to_entity_file.py │ │ ├── create_accentdb_prompt.py │ │ ├── create_arabic_scr_prompt.py │ │ ├── create_asvspoof_prompt.py │ │ ├── create_emotion_prompt.py │ │ ├── create_esc50_prompt.py │ │ ├── create_freesound_prompt.py │ │ ├── create_fsc_prompt.py │ │ ├── create_grabo_prompt.py │ │ ├── create_lt_prompt.py │ │ ├── create_mustard_plus_prompt.py │ │ ├── create_mustard_prompt.py │ │ ├── create_speechcommands_prompt.py │ │ ├── create_voxceleb_prompt.py │ │ ├── create_voxforge_prompt.py │ │ ├── data.sh │ │ ├── evaluation │ │ ├── path.sh │ │ ├── run_spm.sh │ │ ├── score.py │ │ └── score.sh │ │ ├── path.sh │ │ ├── pyscripts │ │ ├── run.sh │ │ ├── scripts │ │ ├── steps │ │ └── utils ├── vctk │ ├── asr1 │ │ ├── RESULTS.md │ │ ├── asr.sh │ │ ├── cmd.sh │ │ ├── conf │ │ │ ├── decode_asr.yaml │ │ │ ├── fbank.conf │ │ │ ├── pbs.conf │ │ │ ├── pitch.conf │ │ │ ├── queue.conf │ │ │ ├── slurm.conf │ │ │ └── train_asr_transformer.yaml │ │ ├── db.sh │ │ ├── local │ │ │ ├── data.sh │ │ │ ├── data_download.sh │ │ │ ├── data_prep_speaker_closed.sh │ │ │ ├── data_prep_speaker_open.sh │ │ │ └── path.sh │ │ ├── path.sh │ │ ├── pyscripts │ │ ├── run.sh │ │ ├── scripts │ │ ├── steps │ │ └── utils │ └── 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 │ │ │ ├── decode_vits.yaml │ │ │ ├── train_full_band_multi_spk_vits.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_multi_spk_vits.yaml │ │ │ ├── train_speechbrain_xvector_vits.yaml │ │ │ ├── train_xvector_conformer_fastspeech2.yaml │ │ │ ├── train_xvector_tacotron2.yaml │ │ │ ├── train_xvector_transformer.yaml │ │ │ └── train_xvector_vits.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_noisy │ └── enh1 │ │ ├── cmd.sh │ │ ├── conf │ │ ├── pbs.conf │ │ ├── queue.conf │ │ ├── slurm.conf │ │ ├── train.yaml │ │ └── tuning │ │ │ └── train_enh_conv_tasnet.yaml │ │ ├── db.sh │ │ ├── enh.sh │ │ ├── local │ │ ├── data.sh │ │ ├── path.sh │ │ └── vctk_data_prep.sh │ │ ├── path.sh │ │ ├── pyscripts │ │ ├── run.sh │ │ ├── scripts │ │ ├── steps │ │ └── 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 ├── voices │ └── asr1 │ │ ├── asr.sh │ │ ├── cmd.sh │ │ ├── conf │ │ ├── decode_asr.yaml │ │ ├── fbank.conf │ │ ├── pbs.conf │ │ ├── pitch.conf │ │ ├── queue.conf │ │ ├── slurm.conf │ │ ├── train_asr_conformer.yaml │ │ └── tuning │ │ │ └── train_lm_transformer2.yaml │ │ ├── db.sh │ │ ├── local │ │ ├── data.sh │ │ ├── path.sh │ │ └── prepare_multich_datadir.py │ │ ├── path.sh │ │ ├── pyscripts │ │ ├── run.sh │ │ ├── scripts │ │ └── utils ├── voxblink │ └── spk1 │ │ ├── README.md │ │ ├── cmd.sh │ │ ├── conf │ │ ├── decode.yaml │ │ ├── pbs.conf │ │ ├── queue.conf │ │ ├── slurm.conf │ │ ├── train_rawnet3_vbClean.yaml │ │ ├── train_rawnet3_vbFull.yaml │ │ ├── train_rawnet3_voxcelebs12devs_voxblinkclean.yaml │ │ ├── train_rawnet3_voxcelebs12devs_voxblinkfull.yaml │ │ └── tuning │ │ │ ├── train_rawnet3_best_trnVox12Vbcln_emb192_amp_subcentertopk.yaml │ │ │ ├── train_rawnet3_best_trnVox12Vbfull_emb192_amp_subcentertopk.yaml │ │ │ └── train_rawnet3_vbClean.yaml │ │ ├── db.sh │ │ ├── local │ │ ├── data.sh │ │ ├── data_prep.py │ │ ├── full2clean.py │ │ └── path.sh │ │ ├── path.sh │ │ ├── pyscripts │ │ ├── run.sh │ │ ├── scripts │ │ ├── spk.sh │ │ ├── steps │ │ └── utils ├── voxceleb │ ├── asr1 │ │ ├── asr.sh │ │ ├── cmd.sh │ │ ├── db.sh │ │ ├── local │ │ │ ├── data.sh │ │ │ ├── data_prep.py │ │ │ └── path.sh │ │ ├── path.sh │ │ ├── pyscripts │ │ ├── run.sh │ │ ├── scripts │ │ ├── steps │ │ └── utils │ └── spk1 │ │ ├── README.md │ │ ├── cmd.sh │ │ ├── conf │ │ ├── decode.yaml │ │ ├── fbank.conf │ │ ├── pbs.conf │ │ ├── pitch.conf │ │ ├── queue.conf │ │ ├── slurm.conf │ │ ├── train_ECAPA_mel.yaml │ │ ├── train_ECAPA_wavlm_frozen.yaml │ │ ├── train_ECAPA_wavlm_joint.yaml │ │ ├── train_SKA_mel.yaml │ │ ├── train_SKA_wavlm_frozen.yaml │ │ ├── train_mfa_conformer.yaml │ │ ├── train_rawnet3.yaml │ │ ├── train_xvector.yaml │ │ └── tuning │ │ │ ├── train_ecapa_Vox12_emb192_torchmelspec_subcentertopk.yaml │ │ │ ├── train_ecapa_Vox12_emb192_torchmelspec_subcentertopk_wavlm.yaml │ │ │ ├── train_ecapa_Vox12_emb192_torchmelspec_subcentertopk_wavlm_jt11.yaml │ │ │ ├── train_mfa_conformer_adamw.yaml │ │ │ ├── train_rawnet3_best_trnVox12_emb192_amp_subcentertopk.yaml │ │ │ ├── train_ska_Vox12_emb192_torchmelspec_subcentertopk.yaml │ │ │ ├── train_ska_Vox12_emb192_torchmelspec_subcentertopk_wavlm_nodownsample.yaml │ │ │ └── train_xvector_Vox12_amp_subcentertopk.yaml │ │ ├── db.sh │ │ ├── local │ │ ├── convert_trial.py │ │ ├── crawl_voxcelebs.py │ │ ├── crawl_voxcelebs_mp.py │ │ ├── data.sh │ │ ├── data_prep.py │ │ ├── generate_task_tokens.py │ │ ├── path.sh │ │ └── remove_unopenable_files.py │ │ ├── path.sh │ │ ├── pyscripts │ │ ├── run.sh │ │ ├── scripts │ │ ├── spk.sh │ │ ├── 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_e_branchformer.yaml │ │ │ ├── train_asr_rnn.yaml │ │ │ ├── train_asr_transformer.yaml │ │ │ └── tuning │ │ │ │ ├── train_asr_conformer_e12_linear2048.yaml │ │ │ │ ├── train_asr_conformer_e15_linear1024.yaml │ │ │ │ ├── train_asr_e_branchformer_e12_mlp1024_linear1024.yaml │ │ │ │ ├── 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 │ └── lid1 │ │ ├── asr.sh │ │ ├── cmd.sh │ │ ├── db.sh │ │ ├── local │ │ ├── convert2audio.py │ │ ├── data.sh │ │ ├── data_prep.py │ │ └── path.sh │ │ ├── path.sh │ │ ├── pyscripts │ │ ├── run.sh │ │ ├── scripts │ │ ├── steps │ │ └── utils ├── voxtlm_v1 │ └── lm1 │ │ ├── README.md │ │ ├── cmd.sh │ │ ├── conf │ │ ├── decode_lm_asr.yaml │ │ ├── decode_lm_tts.yaml │ │ ├── train_transformer_opt350.yaml │ │ └── train_transformer_size768_e12.yaml │ │ ├── db.sh │ │ ├── lm.sh │ │ ├── local │ │ ├── data.sh │ │ ├── data_librilight.sh │ │ ├── data_librispeech.sh │ │ ├── data_libritts.sh │ │ ├── data_vctk.sh │ │ ├── librilight │ │ │ ├── cut_by_vad.py │ │ │ ├── data_prep_librilight.sh │ │ │ ├── data_prep_librispeech.sh │ │ │ └── download_and_untar_librilight.sh │ │ ├── librispeech │ │ │ ├── data_prep.sh │ │ │ └── download_and_untar.sh │ │ ├── libritts │ │ │ ├── data_prep.sh │ │ │ └── download_and_untar.sh │ │ ├── path.sh │ │ ├── postprocess.py │ │ ├── postprocess_speech.py │ │ ├── prepare_bpe_text.py │ │ ├── prepare_lm_data.py │ │ ├── prepare_lm_test.py │ │ ├── text_normalize.sh │ │ └── vctk │ │ │ ├── data_download.sh │ │ │ └── data_prep.sh │ │ ├── path.sh │ │ ├── pyscripts │ │ ├── run.sh │ │ ├── scripts │ │ ├── steps │ │ └── utils ├── wenetspeech │ └── 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_conformer.yaml │ │ │ └── train_lm_transformer.yaml │ │ ├── db.sh │ │ ├── local │ │ ├── data.sh │ │ ├── extract_meta.py │ │ ├── path.sh │ │ ├── process_opus.py │ │ ├── text_normalize.pl │ │ └── wenetspeech_data_prep.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 │ │ ├── README.md │ │ ├── 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 │ │ ├── decode_asr_whisper_noctc_greedy.yaml │ │ ├── fbank.conf │ │ ├── pbs.conf │ │ ├── pitch.conf │ │ ├── queue.conf │ │ ├── slurm.conf │ │ ├── train_asr_conformer.yaml │ │ ├── train_asr_e_branchformer.yaml │ │ ├── train_asr_rnn.yaml │ │ ├── train_asr_transformer.yaml │ │ ├── train_lm_rnn.yaml │ │ ├── train_lm_transformer.yaml │ │ └── tuning │ │ │ ├── inference_asr_maskctc.yaml │ │ │ ├── train_asr_conformer_e12_linear2048.yaml │ │ │ ├── train_asr_conformer_e15_linear1024.yaml │ │ │ ├── train_asr_conformer_s3prlfrontend_hubert.yaml │ │ │ ├── train_asr_conformer_s3prlfrontend_wav2vec2.yaml │ │ │ ├── train_asr_conformer_s3prlfrontend_wavlm.yaml │ │ │ ├── train_asr_e_branchformer_e12_mlp1024_linear1024.yaml │ │ │ ├── train_asr_rnn.yaml │ │ │ ├── train_asr_transformer.yaml │ │ │ ├── train_asr_transformer2.yaml │ │ │ ├── train_asr_transformer_ctc.yaml │ │ │ ├── train_asr_transformer_maskctc.yaml │ │ │ ├── train_asr_whisper_full_warmup3000.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 │ │ ├── prepare_transcription_whisper.py │ │ ├── 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_dan_tf.yaml │ │ │ │ ├── train_enh_dc_crn_mapping_snr.yaml │ │ │ │ ├── train_enh_dpcl.yaml │ │ │ │ ├── train_enh_dpcl_e2e.yaml │ │ │ │ ├── train_enh_dprnn_tasnet.yaml │ │ │ │ ├── train_enh_dprnn_tf.yaml │ │ │ │ ├── train_enh_dptnet.yaml │ │ │ │ ├── train_enh_mdc.yaml │ │ │ │ ├── train_enh_rnn_tf.yaml │ │ │ │ ├── train_enh_skim_causal_small.yaml │ │ │ │ ├── train_enh_skim_tasnet_causal.yaml │ │ │ │ ├── train_enh_skim_tasnet_noncausal.yaml │ │ │ │ ├── train_enh_skim_tasnet_noncausal_dm.yaml │ │ │ │ ├── train_enh_skim_tasnet_steplr.yaml │ │ │ │ ├── train_enh_svoice.yaml │ │ │ │ ├── train_enh_tfgridnet_tf_lr-patience3_patience5.yaml │ │ │ │ ├── train_enh_tfgridnetv2_tf_lr-patience3_patience5_I_1_J_1_D_128.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 │ ├── mixit_enh1 │ │ ├── RESULTS.md │ │ ├── cmd.sh │ │ ├── conf │ │ │ ├── pbs.conf │ │ │ ├── queue.conf │ │ │ ├── slurm.conf │ │ │ ├── train.yaml │ │ │ └── tuning │ │ │ │ └── train_enh_conv_tasnet.yaml │ │ ├── db.sh │ │ ├── enh.sh │ │ ├── local │ │ │ ├── convert2wav.sh │ │ │ ├── data.sh │ │ │ ├── data_supervised.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 │ └── tse1 │ │ ├── README.md │ │ ├── cmd.sh │ │ ├── conf │ │ ├── pbs.conf │ │ ├── queue.conf │ │ ├── slurm.conf │ │ ├── train.yaml │ │ └── tuning │ │ │ └── train_enh_tse_td_speakerbeam.yaml │ │ ├── db.sh │ │ ├── enh.sh │ │ ├── local │ │ ├── convert2wav.sh │ │ ├── data.sh │ │ ├── find_transcripts.pl │ │ ├── flist2scp.pl │ │ ├── ndx2flist.pl │ │ ├── normalize_transcript.pl │ │ ├── path.sh │ │ ├── prepare_spk_embs_scp.py │ │ ├── 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 │ │ │ │ └── train_enh_tfgridnet_waspaa2023.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 │ └── enh_asr1 │ │ ├── README.md │ │ ├── cmd.sh │ │ ├── conf │ │ ├── decode_asr_transformer.yaml │ │ ├── fbank.conf │ │ ├── pbs.conf │ │ ├── pitch.conf │ │ ├── queue.conf │ │ ├── slurm.conf │ │ ├── train.yaml │ │ ├── train_lm_transformer.yaml │ │ └── tuning │ │ │ ├── train_enh_asr_beamformer_fbank_transformer.yaml │ │ │ └── train_enh_asr_tfgridnet_waspaa2023.yaml │ │ ├── db.sh │ │ ├── enh_asr.sh │ │ ├── local │ │ ├── convert2wav.sh │ │ ├── data.sh │ │ ├── enh_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 ├── wsj0_chime3 │ └── enh1 │ │ ├── cmd.sh │ │ ├── conf │ │ ├── pbs.conf │ │ ├── queue.conf │ │ ├── slurm.conf │ │ └── tuning │ │ │ ├── train_enh_blstm_tf.yaml │ │ │ ├── train_enh_sgmse_dcunet.yaml │ │ │ ├── train_enh_sgmse_ncsnpp.yaml │ │ │ └── train_enh_sgmse_ncsnpp_steplr.yaml │ │ ├── db.sh │ │ ├── enh.sh │ │ ├── local │ │ ├── convert2wav.sh │ │ ├── create_wsj0_chime3.py │ │ ├── data.sh │ │ └── path.sh │ │ ├── path.sh │ │ ├── pyscripts │ │ ├── run.sh │ │ ├── scripts │ │ ├── steps │ │ └── utils ├── wsj0_reverb │ └── enh1 │ │ ├── cmd.sh │ │ ├── conf │ │ ├── pbs.conf │ │ ├── queue.conf │ │ ├── slurm.conf │ │ └── tuning │ │ │ ├── train_enh_blstm_tf.yaml │ │ │ ├── train_enh_sgmse_dcunet.yaml │ │ │ ├── train_enh_sgmse_ncsnpp.yaml │ │ │ └── train_enh_sgmse_ncsnpp_steplr.yaml │ │ ├── db.sh │ │ ├── enh.sh │ │ ├── local │ │ ├── convert2wav.sh │ │ ├── create_wsj0_reverb.py │ │ ├── data.sh │ │ └── path.sh │ │ ├── path.sh │ │ ├── pyscripts │ │ ├── run.sh │ │ ├── scripts │ │ ├── steps │ │ └── utils ├── wsj_kinect │ └── enh1 │ │ ├── README.md │ │ ├── cmd.sh │ │ ├── conf │ │ ├── pbs.conf │ │ ├── queue.conf │ │ ├── slurm.conf │ │ ├── train.yaml │ │ └── tuning │ │ │ ├── train_enh_tfgridnetv2_tf_lr-patience3_patience5_I_1_J_1_D_128.yaml │ │ │ ├── train_enh_tfgridnetv2_tf_lr-patience3_patience5_I_1_J_1_D_128_batch_16.yaml │ │ │ └── train_enh_tfgridnetv2_tf_lr-patience3_patience5_I_1_J_1_D_128_batch_8.yaml │ │ ├── db.sh │ │ ├── enh.sh │ │ ├── local │ │ ├── create_corrupted_speech_parallel.sh │ │ ├── data.sh │ │ ├── path.sh │ │ └── wsj_kinect_data_prep.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 │ │ ├── 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 │ │ ├── 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 └── zh_openslr38 │ └── 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_sslr.yaml │ ├── db.sh │ ├── local │ ├── check_train_test_duplicate.py │ ├── data.sh │ ├── data_download.sh │ ├── data_split.py │ ├── path.sh │ └── run_sslr.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 ├── distributed │ ├── __init__.py │ └── pytorch_backend │ │ └── launch.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.py │ ├── batch_beam_search_online_sim.py │ ├── beam_search.py │ ├── beam_search_partially_AR.py │ ├── beam_search_timesync.py │ ├── beam_search_timesync_streaming.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 │ │ │ ├── contextual_block_encoder_layer.py │ │ │ ├── convolution.py │ │ │ ├── encoder.py │ │ │ ├── encoder_layer.py │ │ │ └── swish.py │ │ ├── ctc.py │ │ ├── e2e_asr.py │ │ ├── e2e_asr_conformer.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 │ │ │ ├── blocks.py │ │ │ ├── conv1d_nets.py │ │ │ ├── custom_decoder.py │ │ │ ├── custom_encoder.py │ │ │ ├── error_calculator.py │ │ │ ├── initializer.py │ │ │ ├── joint_network.py │ │ │ ├── rnn_decoder.py │ │ │ ├── rnn_encoder.py │ │ │ ├── transducer_tasks.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 │ │ │ ├── longformer_attention.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 │ │ └── uasr.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 │ ├── bayes_risk_ctc.py │ ├── ctc.py │ ├── decoder │ │ ├── __init__.py │ │ ├── abs_decoder.py │ │ ├── hugging_face_transformers_decoder.py │ │ ├── mlm_decoder.py │ │ ├── rnn_decoder.py │ │ ├── s4_decoder.py │ │ ├── transducer_decoder.py │ │ ├── transformer_decoder.py │ │ └── whisper_decoder.py │ ├── discrete_asr_espnet_model.py │ ├── encoder │ │ ├── __init__.py │ │ ├── abs_encoder.py │ │ ├── avhubert_encoder.py │ │ ├── branchformer_encoder.py │ │ ├── conformer_encoder.py │ │ ├── contextual_block_conformer_encoder.py │ │ ├── contextual_block_transformer_encoder.py │ │ ├── e_branchformer_encoder.py │ │ ├── hubert_encoder.py │ │ ├── hugging_face_transformers_encoder.py │ │ ├── linear_encoder.py │ │ ├── longformer_encoder.py │ │ ├── multiconvformer_encoder.py │ │ ├── rnn_encoder.py │ │ ├── transformer_encoder.py │ │ ├── transformer_encoder_multispkr.py │ │ ├── vgg_rnn_encoder.py │ │ ├── wav2vec2_encoder.py │ │ └── whisper_encoder.py │ ├── espnet_model.py │ ├── frontend │ │ ├── __init__.py │ │ ├── abs_frontend.py │ │ ├── asteroid_frontend.py │ │ ├── default.py │ │ ├── fused.py │ │ ├── melspec_torch.py │ │ ├── s3prl.py │ │ ├── whisper.py │ │ └── windowing.py │ ├── layers │ │ ├── __init__.py │ │ ├── cgmlp.py │ │ ├── fastformer.py │ │ └── multiconv_cgmlp.py │ ├── maskctc_model.py │ ├── partially_AR_model.py │ ├── pit_espnet_model.py │ ├── postencoder │ │ ├── __init__.py │ │ ├── abs_postencoder.py │ │ ├── hugging_face_transformers_postencoder.py │ │ └── length_adaptor_postencoder.py │ ├── preencoder │ │ ├── __init__.py │ │ ├── abs_preencoder.py │ │ ├── linear.py │ │ └── sinc.py │ ├── specaug │ │ ├── __init__.py │ │ ├── abs_specaug.py │ │ └── specaug.py │ ├── state_spaces │ │ ├── __init__.py │ │ ├── attention.py │ │ ├── base.py │ │ ├── block.py │ │ ├── cauchy.py │ │ ├── components.py │ │ ├── ff.py │ │ ├── model.py │ │ ├── pool.py │ │ ├── registry.py │ │ ├── residual.py │ │ ├── s4.py │ │ └── utils.py │ └── transducer │ │ ├── __init__.py │ │ ├── beam_search_transducer.py │ │ ├── beam_search_transducer_streaming.py │ │ ├── error_calculator.py │ │ └── rnnt_multi_blank │ │ ├── __init__.py │ │ ├── rnnt.py │ │ ├── rnnt_multi_blank.py │ │ └── utils │ │ ├── __init__.py │ │ ├── cpu_utils │ │ ├── __init__.py │ │ └── cpu_rnnt.py │ │ ├── cuda_utils │ │ ├── __init__.py │ │ ├── gpu_rnnt.py │ │ ├── gpu_rnnt_kernel.py │ │ └── reduce.py │ │ ├── global_constants.py │ │ └── rnnt_helper.py ├── asr_transducer │ ├── __init__.py │ ├── activation.py │ ├── beam_search_transducer.py │ ├── decoder │ │ ├── __init__.py │ │ ├── abs_decoder.py │ │ ├── blocks │ │ │ ├── __init__.py │ │ │ ├── mega.py │ │ │ └── rwkv.py │ │ ├── mega_decoder.py │ │ ├── modules │ │ │ ├── __init__.py │ │ │ ├── mega │ │ │ │ ├── __init__.py │ │ │ │ ├── feed_forward.py │ │ │ │ ├── multi_head_damped_ema.py │ │ │ │ └── positional_bias.py │ │ │ └── rwkv │ │ │ │ ├── __init__.py │ │ │ │ ├── attention.py │ │ │ │ ├── cuda │ │ │ │ ├── wkv_cuda.cu │ │ │ │ └── wkv_op.cpp │ │ │ │ └── feed_forward.py │ │ ├── rnn_decoder.py │ │ ├── rwkv_decoder.py │ │ └── stateless_decoder.py │ ├── encoder │ │ ├── __init__.py │ │ ├── blocks │ │ │ ├── __init__.py │ │ │ ├── branchformer.py │ │ │ ├── conformer.py │ │ │ ├── conv1d.py │ │ │ ├── conv_input.py │ │ │ └── ebranchformer.py │ │ ├── building.py │ │ ├── encoder.py │ │ ├── modules │ │ │ ├── __init__.py │ │ │ ├── attention.py │ │ │ ├── convolution.py │ │ │ ├── multi_blocks.py │ │ │ └── positional_encoding.py │ │ └── validation.py │ ├── error_calculator.py │ ├── espnet_transducer_model.py │ ├── frontend │ │ ├── __init__.py │ │ └── online_audio_processor.py │ ├── joint_network.py │ ├── normalization.py │ └── utils.py ├── asvspoof │ ├── __init__.py │ ├── decoder │ │ ├── __init__.py │ │ ├── abs_decoder.py │ │ └── linear_decoder.py │ ├── espnet_model.py │ └── loss │ │ ├── __init__.py │ │ ├── abs_loss.py │ │ ├── am_softmax_loss.py │ │ ├── binary_loss.py │ │ └── oc_softmax_loss.py ├── bin │ ├── __init__.py │ ├── aggregate_stats_dirs.py │ ├── asr_align.py │ ├── asr_inference.py │ ├── asr_inference_k2.py │ ├── asr_inference_maskctc.py │ ├── asr_inference_streaming.py │ ├── asr_train.py │ ├── asr_transducer_inference.py │ ├── asr_transducer_train.py │ ├── asvspoof_inference.py │ ├── asvspoof_train.py │ ├── diar_inference.py │ ├── diar_train.py │ ├── enh_inference.py │ ├── enh_inference_streaming.py │ ├── enh_s2t_train.py │ ├── enh_scoring.py │ ├── enh_train.py │ ├── enh_tse_inference.py │ ├── enh_tse_train.py │ ├── gan_codec_inference.py │ ├── gan_codec_train.py │ ├── gan_svs_train.py │ ├── gan_tts_train.py │ ├── hubert_train.py │ ├── hugging_face_export_vocabulary.py │ ├── launch.py │ ├── lm_calc_perplexity.py │ ├── lm_inference.py │ ├── lm_train.py │ ├── mt_inference.py │ ├── mt_train.py │ ├── pack.py │ ├── s2st_inference.py │ ├── s2st_train.py │ ├── s2t_inference.py │ ├── s2t_inference_language.py │ ├── s2t_train.py │ ├── slu_inference.py │ ├── slu_train.py │ ├── speechlm_inference.py │ ├── speechlm_train.py │ ├── spk_embed_extract.py │ ├── spk_inference.py │ ├── spk_train.py │ ├── split_scps.py │ ├── st_inference.py │ ├── st_inference_streaming.py │ ├── st_train.py │ ├── svs_inference.py │ ├── svs_train.py │ ├── tokenize_text.py │ ├── tts2_inference.py │ ├── tts2_train.py │ ├── tts_inference.py │ ├── tts_train.py │ ├── uasr_extract_feature.py │ ├── uasr_inference.py │ ├── uasr_inference_k2.py │ ├── uasr_train.py │ └── whisper_export_vocabulary.py ├── diar │ ├── __init__.py │ ├── abs_diar.py │ ├── attractor │ │ ├── __init__.py │ │ ├── abs_attractor.py │ │ └── rnn_attractor.py │ ├── decoder │ │ ├── __init__.py │ │ ├── abs_decoder.py │ │ └── linear_decoder.py │ ├── espnet_model.py │ ├── label_processor.py │ ├── layers │ │ ├── __init__.py │ │ ├── abs_mask.py │ │ ├── multi_mask.py │ │ └── tcn_nomask.py │ └── separator │ │ ├── __init__.py │ │ └── tcn_separator_nomask.py ├── enh │ ├── __init__.py │ ├── abs_enh.py │ ├── decoder │ │ ├── __init__.py │ │ ├── abs_decoder.py │ │ ├── conv_decoder.py │ │ ├── null_decoder.py │ │ └── stft_decoder.py │ ├── diffusion │ │ ├── __init__.py │ │ ├── abs_diffusion.py │ │ ├── sampling │ │ │ ├── __init__.py │ │ │ ├── correctors.py │ │ │ └── predictors.py │ │ ├── score_based_diffusion.py │ │ └── sdes.py │ ├── diffusion_enh.py │ ├── encoder │ │ ├── __init__.py │ │ ├── abs_encoder.py │ │ ├── conv_encoder.py │ │ ├── null_encoder.py │ │ └── stft_encoder.py │ ├── espnet_enh_s2t_model.py │ ├── espnet_model.py │ ├── espnet_model_tse.py │ ├── extractor │ │ ├── __init__.py │ │ ├── abs_extractor.py │ │ └── td_speakerbeam_extractor.py │ ├── layers │ │ ├── __init__.py │ │ ├── adapt_layers.py │ │ ├── beamformer.py │ │ ├── beamformer_th.py │ │ ├── bsrnn.py │ │ ├── complex_utils.py │ │ ├── complexnn.py │ │ ├── conv_utils.py │ │ ├── dc_crn.py │ │ ├── dcunet.py │ │ ├── dnn_beamformer.py │ │ ├── dnn_wpe.py │ │ ├── dnsmos.py │ │ ├── dpmulcat.py │ │ ├── dprnn.py │ │ ├── dptnet.py │ │ ├── fasnet.py │ │ ├── ifasnet.py │ │ ├── mask_estimator.py │ │ ├── ncsnpp.py │ │ ├── ncsnpp_utils │ │ │ ├── __init__.py │ │ │ ├── layers.py │ │ │ ├── layerspp.py │ │ │ ├── normalization.py │ │ │ ├── up_or_down_sampling.py │ │ │ └── upfirdn2d.py │ │ ├── skim.py │ │ ├── tcn.py │ │ ├── tcndenseunet.py │ │ ├── uses.py │ │ └── wpe.py │ ├── loss │ │ ├── __init__.py │ │ ├── criterions │ │ │ ├── __init__.py │ │ │ ├── abs_loss.py │ │ │ ├── tf_domain.py │ │ │ └── time_domain.py │ │ └── wrappers │ │ │ ├── __init__.py │ │ │ ├── abs_wrapper.py │ │ │ ├── dpcl_solver.py │ │ │ ├── fixed_order.py │ │ │ ├── mixit_solver.py │ │ │ ├── multilayer_pit_solver.py │ │ │ └── pit_solver.py │ └── separator │ │ ├── __init__.py │ │ ├── abs_separator.py │ │ ├── asteroid_models.py │ │ ├── bsrnn_separator.py │ │ ├── conformer_separator.py │ │ ├── dan_separator.py │ │ ├── dc_crn_separator.py │ │ ├── dccrn_separator.py │ │ ├── dpcl_e2e_separator.py │ │ ├── dpcl_separator.py │ │ ├── dprnn_separator.py │ │ ├── dptnet_separator.py │ │ ├── fasnet_separator.py │ │ ├── ineube_separator.py │ │ ├── neural_beamformer.py │ │ ├── rnn_separator.py │ │ ├── skim_separator.py │ │ ├── svoice_separator.py │ │ ├── tcn_separator.py │ │ ├── tfgridnet_separator.py │ │ ├── tfgridnetv2_separator.py │ │ ├── tfgridnetv3_separator.py │ │ ├── transformer_separator.py │ │ └── uses_separator.py ├── fileio │ ├── __init__.py │ ├── datadir_writer.py │ ├── multi_sound_scp.py │ ├── npy_scp.py │ ├── rand_gen_dataset.py │ ├── read_text.py │ ├── rttm.py │ ├── score_scp.py │ ├── sound_scp.py │ └── vad_scp.py ├── fst │ ├── __init__.py │ └── lm_rescore.py ├── gan_codec │ ├── __init__.py │ ├── abs_gan_codec.py │ ├── dac │ │ ├── __init__.py │ │ └── dac.py │ ├── encodec │ │ ├── __init__.py │ │ └── encodec.py │ ├── espnet_model.py │ ├── funcodec │ │ ├── __init__.py │ │ └── funcodec.py │ ├── shared │ │ ├── __init__.py │ │ ├── decoder │ │ │ ├── __init__.py │ │ │ ├── seanet.py │ │ │ └── seanet_2d.py │ │ ├── discriminator │ │ │ ├── __init__.py │ │ │ ├── msmpmb_discriminator.py │ │ │ ├── msstft_conv.py │ │ │ ├── msstft_discriminator.py │ │ │ └── stft_discriminator.py │ │ ├── encoder │ │ │ ├── __init__.py │ │ │ ├── seanet.py │ │ │ ├── seanet_2d.py │ │ │ └── snake_activation.py │ │ ├── loss │ │ │ ├── __init__.py │ │ │ ├── freq_loss.py │ │ │ └── loss_balancer.py │ │ └── quantizer │ │ │ ├── __init__.py │ │ │ ├── modules │ │ │ ├── __init__.py │ │ │ ├── core_vq.py │ │ │ └── distrib.py │ │ │ └── residual_vq.py │ └── soundstream │ │ ├── __init__.py │ │ └── soundstream.py ├── gan_svs │ ├── __init__.py │ ├── abs_gan_svs.py │ ├── avocodo │ │ ├── __init__.py │ │ └── avocodo.py │ ├── espnet_model.py │ ├── joint │ │ ├── __init__.py │ │ └── joint_score2wav.py │ ├── pits │ │ ├── modules.py │ │ └── ying_decoder.py │ ├── post_frontend │ │ ├── __init__.py │ │ ├── fused.py │ │ └── s3prl.py │ ├── uhifigan │ │ ├── __init__.py │ │ ├── sine_generator.py │ │ └── uhifigan.py │ ├── utils │ │ ├── __init__.py │ │ └── expand_f0.py │ ├── visinger2 │ │ ├── __init__.py │ │ ├── ddsp.py │ │ └── visinger2_vocoder.py │ └── vits │ │ ├── __init__.py │ │ ├── duration_predictor.py │ │ ├── generator.py │ │ ├── length_regulator.py │ │ ├── modules.py │ │ ├── phoneme_predictor.py │ │ ├── pitch_predictor.py │ │ ├── prior_decoder.py │ │ ├── text_encoder.py │ │ └── vits.py ├── gan_tts │ ├── __init__.py │ ├── abs_gan_tts.py │ ├── espnet_model.py │ ├── hifigan │ │ ├── __init__.py │ │ ├── hifigan.py │ │ ├── loss.py │ │ └── residual_block.py │ ├── jets │ │ ├── __init__.py │ │ ├── alignments.py │ │ ├── generator.py │ │ ├── jets.py │ │ ├── length_regulator.py │ │ ├── loss.py │ │ └── prosody_generator.py │ ├── jets_new │ │ ├── __init__.py │ │ ├── alignments.py │ │ ├── generator.py │ │ ├── jets.py │ │ ├── length_regulator.py │ │ └── loss.py │ ├── joint │ │ ├── __init__.py │ │ └── joint_text2wav.py │ ├── melgan │ │ ├── __init__.py │ │ ├── melgan.py │ │ ├── pqmf.py │ │ └── residual_stack.py │ ├── parallel_wavegan │ │ ├── __init__.py │ │ ├── parallel_wavegan.py │ │ └── upsample.py │ ├── style_melgan │ │ ├── __init__.py │ │ ├── style_melgan.py │ │ └── tade_res_block.py │ ├── utils │ │ ├── __init__.py │ │ └── get_random_segments.py │ ├── vits │ │ ├── __init__.py │ │ ├── duration_predictor.py │ │ ├── flow.py │ │ ├── generator.py │ │ ├── loss.py │ │ ├── monotonic_align │ │ │ ├── __init__.py │ │ │ ├── core.pyx │ │ │ └── setup.py │ │ ├── posterior_encoder.py │ │ ├── residual_coupling.py │ │ ├── text_encoder.py │ │ ├── transform.py │ │ └── vits.py │ └── wavenet │ │ ├── __init__.py │ │ ├── residual_block.py │ │ └── wavenet.py ├── hubert │ ├── __init__.py │ ├── espnet_model.py │ └── hubert_loss.py ├── iterators │ ├── __init__.py │ ├── abs_iter_factory.py │ ├── category_iter_factory.py │ ├── chunk_iter_factory.py │ ├── multiple_iter_factory.py │ └── sequence_iter_factory.py ├── layers │ ├── __init__.py │ ├── abs_normalize.py │ ├── augmentation.py │ ├── create_adapter.py │ ├── create_adapter_fn.py │ ├── create_adapter_utils.py │ ├── global_mvn.py │ ├── houlsby_adapter_layer.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 │ ├── espnet_model_multitask.py │ ├── huggingface_pretrained_opt_lm.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 ├── mt │ ├── __init__.py │ ├── espnet_model.py │ └── frontend │ │ ├── __init__.py │ │ └── embedding.py ├── optimizers │ ├── __init__.py │ ├── optim_groups.py │ └── sgd.py ├── s2st │ ├── __init__.py │ ├── aux_attention │ │ ├── __init__.py │ │ ├── abs_aux_attention.py │ │ └── multihead.py │ ├── espnet_model.py │ ├── losses │ │ ├── __init__.py │ │ ├── abs_loss.py │ │ ├── attention_loss.py │ │ ├── ctc_loss.py │ │ ├── guided_attention_loss.py │ │ └── tacotron_loss.py │ ├── synthesizer │ │ ├── __init__.py │ │ ├── abs_synthesizer.py │ │ ├── discrete_synthesizer.py │ │ ├── translatotron.py │ │ ├── translatotron2.py │ │ └── unity_synthesizer.py │ └── tgt_feats_extract │ │ ├── __init__.py │ │ ├── abs_tgt_feats_extract.py │ │ ├── linear_spectrogram.py │ │ ├── log_mel_fbank.py │ │ └── log_spectrogram.py ├── s2t │ ├── __init__.py │ └── espnet_model.py ├── samplers │ ├── __init__.py │ ├── abs_sampler.py │ ├── build_batch_sampler.py │ ├── category_balanced_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 │ ├── cosine_anneal_warmup_restart.py │ ├── noam_lr.py │ ├── piecewise_linear_warmup_lr.py │ ├── warmup_lr.py │ ├── warmup_reducelronplateau.py │ └── warmup_step_lr.py ├── slu │ ├── __init__.py │ ├── espnet_model.py │ ├── postdecoder │ │ ├── __init__.py │ │ ├── abs_postdecoder.py │ │ └── hugging_face_transformers_postdecoder.py │ └── postencoder │ │ ├── __init__.py │ │ ├── conformer_postencoder.py │ │ └── transformer_postencoder.py ├── speechlm │ ├── __init__.py │ ├── core_lm │ │ ├── __init__.py │ │ ├── abs_core_lm.py │ │ ├── ar_multiscale.py │ │ └── valle.py │ ├── definitions.py │ ├── espnet_model.py │ ├── module │ │ ├── __init__.py │ │ ├── transformer.py │ │ └── valle.py │ ├── net_utils.py │ └── tokenizer │ │ ├── __init__.py │ │ ├── abs_tokenizer.py │ │ └── codec_tokenizer.py ├── spk │ ├── __init__.py │ ├── encoder │ │ ├── __init__.py │ │ ├── conformer_encoder.py │ │ ├── ecapa_tdnn_encoder.py │ │ ├── identity_encoder.py │ │ ├── rawnet3_encoder.py │ │ ├── ska_tdnn_encoder.py │ │ └── xvector_encoder.py │ ├── espnet_model.py │ ├── layers │ │ ├── __init__.py │ │ ├── ecapa_block.py │ │ └── rawnet_block.py │ ├── loss │ │ ├── __init__.py │ │ ├── aamsoftmax.py │ │ ├── aamsoftmax_subcenter_intertopk.py │ │ └── abs_loss.py │ ├── pooling │ │ ├── __init__.py │ │ ├── abs_pooling.py │ │ ├── chn_attn_stat_pooling.py │ │ ├── mean_pooling.py │ │ └── stat_pooling.py │ └── projector │ │ ├── __init__.py │ │ ├── abs_projector.py │ │ ├── rawnet3_projector.py │ │ ├── ska_tdnn_projector.py │ │ └── xvector_projector.py ├── st │ ├── __init__.py │ └── espnet_model.py ├── svs │ ├── __init__.py │ ├── abs_svs.py │ ├── espnet_model.py │ ├── feats_extract │ │ ├── __init__.py │ │ └── score_feats_extract.py │ ├── naive_rnn │ │ ├── __init__.py │ │ ├── naive_rnn.py │ │ └── naive_rnn_dp.py │ ├── singing_tacotron │ │ ├── __init__.py │ │ ├── decoder.py │ │ ├── encoder.py │ │ └── singing_tacotron.py │ └── xiaoice │ │ ├── XiaoiceSing.py │ │ ├── __init__.py │ │ └── loss.py ├── tasks │ ├── __init__.py │ ├── abs_task.py │ ├── asr.py │ ├── asr_transducer.py │ ├── asvspoof.py │ ├── diar.py │ ├── enh.py │ ├── enh_s2t.py │ ├── enh_tse.py │ ├── gan_codec.py │ ├── gan_svs.py │ ├── gan_tts.py │ ├── hubert.py │ ├── lm.py │ ├── mt.py │ ├── s2st.py │ ├── s2t.py │ ├── slu.py │ ├── speechlm.py │ ├── spk.py │ ├── st.py │ ├── svs.py │ ├── tts.py │ ├── tts2.py │ └── uasr.py ├── text │ ├── __init__.py │ ├── abs_tokenizer.py │ ├── build_tokenizer.py │ ├── char_tokenizer.py │ ├── cleaner.py │ ├── hugging_face_token_id_converter.py │ ├── hugging_face_tokenizer.py │ ├── korean_cleaner.py │ ├── mfa_cleaners.py │ ├── phoneme_tokenizer.py │ ├── sentencepiece_tokenizer.py │ ├── token_id_converter.py │ ├── whisper_token_id_converter.py │ ├── whisper_tokenizer.py │ └── word_tokenizer.py ├── torch_utils │ ├── __init__.py │ ├── add_gradient_noise.py │ ├── device_funcs.py │ ├── forward_adaptor.py │ ├── get_layer_from_string.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 │ ├── abs_gan_espnet_model.py │ ├── class_choices.py │ ├── collate_fn.py │ ├── dataset.py │ ├── distributed_utils.py │ ├── gan_trainer.py │ ├── iterable_dataset.py │ ├── preprocessor.py │ ├── reporter.py │ ├── spk_trainer.py │ ├── trainer.py │ └── uasr_trainer.py ├── tts │ ├── __init__.py │ ├── abs_tts.py │ ├── espnet_model.py │ ├── fastspeech │ │ ├── __init__.py │ │ └── fastspeech.py │ ├── fastspeech2 │ │ ├── __init__.py │ │ ├── fastspeech2.py │ │ ├── fs2_prosody.py │ │ ├── loss.py │ │ └── variance_predictor.py │ ├── feats_extract │ │ ├── __init__.py │ │ ├── abs_feats_extract.py │ │ ├── dio.py │ │ ├── energy.py │ │ ├── linear_spectrogram.py │ │ ├── log_mel_fbank.py │ │ ├── log_spectrogram.py │ │ ├── praat_pitch.py │ │ ├── yin.py │ │ └── ying.py │ ├── gst │ │ ├── __init__.py │ │ └── style_encoder.py │ ├── prodiff │ │ ├── __init__.py │ │ ├── denoiser.py │ │ ├── loss.py │ │ └── prodiff.py │ ├── tacotron2 │ │ ├── __init__.py │ │ └── tacotron2.py │ ├── transformer │ │ ├── __init__.py │ │ └── transformer.py │ └── utils │ │ ├── __init__.py │ │ ├── duration_calculator.py │ │ └── parallel_wavegan_pretrained_vocoder.py ├── tts2 │ ├── __init__.py │ ├── abs_tts2.py │ ├── espnet_model.py │ ├── fastspeech2 │ │ ├── __init__.py │ │ ├── fastspeech2_discrete.py │ │ └── loss.py │ └── feats_extract │ │ ├── __init__.py │ │ ├── abs_feats_extract.py │ │ └── identity.py ├── uasr │ ├── __init__.py │ ├── discriminator │ │ ├── __init__.py │ │ ├── abs_discriminator.py │ │ └── conv_discriminator.py │ ├── espnet_model.py │ ├── generator │ │ ├── __init__.py │ │ ├── abs_generator.py │ │ └── conv_generator.py │ ├── loss │ │ ├── __init__.py │ │ ├── abs_loss.py │ │ ├── discriminator_loss.py │ │ ├── gradient_penalty.py │ │ ├── phoneme_diversity_loss.py │ │ ├── pseudo_label_loss.py │ │ └── smoothness_penalty.py │ └── segmenter │ │ ├── __init__.py │ │ ├── abs_segmenter.py │ │ ├── join_segmenter.py │ │ └── random_segmenter.py └── utils │ ├── __init__.py │ ├── build_dataclass.py │ ├── config_argparse.py │ ├── eer.py │ ├── get_default_kwargs.py │ ├── griffin_lim.py │ ├── kwargs2args.py │ ├── nested_dict_action.py │ ├── sized_dict.py │ ├── types.py │ └── yaml_no_alias_safe_dump.py ├── espnetez ├── __init__.py ├── config.py ├── data │ ├── __init__.py │ └── dump.py ├── dataloader.py ├── dataset.py ├── preprocess │ ├── __init__.py │ ├── sentencepiece.py │ └── tokenizer.py ├── task.py └── trainer.py ├── prosody ├── aligner.ipynb ├── aligner.py ├── clean_esd.py ├── en_to_de.py ├── en_to_es.py ├── en_to_hu.py ├── en_to_zh.py ├── funasr │ └── mandarin_cer.ipynb ├── german.ipynb ├── hungarian.ipynb ├── mandarin.ipynb ├── paper │ ├── Subphoneme_Level_PRESENT__PRosody_Editing_without_Style_Embeddings_or_New_Training.pdf │ └── data.csv ├── pinyin.py ├── prosody.ipynb ├── psytoolkit.py ├── spanish.ipynb ├── test.py ├── text_effects.ipynb ├── transfer_prosody.py ├── utils │ ├── audio.py │ ├── cmudict-0.7b.txt │ ├── dict_changes.txt │ ├── g2p_dict.txt │ ├── g2p_letters.txt │ ├── text.py │ └── utils.py └── whisper │ ├── german_cer.ipynb │ ├── hungarian_cer.ipynb │ ├── mandarin_cer.ipynb │ └── spanish_cer.ipynb ├── setup.cfg ├── setup.py ├── test ├── __init__.py ├── beam_search_test.arpa ├── espnet2 │ ├── __init__.py │ ├── asr │ │ ├── __init__.py │ │ ├── decoder │ │ │ ├── __init__.py │ │ │ ├── test_hugging_face_transformers_decoder.py │ │ │ ├── test_mlm_decoder.py │ │ │ ├── test_rnn_decoder.py │ │ │ ├── test_s4_decoder.py │ │ │ ├── test_transducer_decoder.py │ │ │ ├── test_transformer_decoder.py │ │ │ └── test_whisper_decoder.py │ │ ├── encoder │ │ │ ├── __init__.py │ │ │ ├── test_avhubert_encoder.py │ │ │ ├── test_branchformer_encoder.py │ │ │ ├── test_conformer_encoder.py │ │ │ ├── test_contextual_block_transformer_encoder.py │ │ │ ├── test_e_branchformer_encoder.py │ │ │ ├── test_hubert_encoder.py │ │ │ ├── test_longformer_encoder.py │ │ │ ├── test_multiconvformer_encoder.py │ │ │ ├── test_rnn_encoder.py │ │ │ ├── test_transformer_encoder.py │ │ │ ├── test_transformer_encoder_multispkr.py │ │ │ ├── test_vgg_rnn_encoder.py │ │ │ └── test_whisper_encoder.py │ │ ├── frontend │ │ │ ├── __init__.py │ │ │ ├── test_asteroid.py │ │ │ ├── test_frontend.py │ │ │ ├── test_fused.py │ │ │ ├── test_melspec_torch.py │ │ │ ├── test_s3prl.py │ │ │ ├── test_whisper.py │ │ │ └── test_windowing.py │ │ ├── postencoder │ │ │ ├── test_hugging_face_transformers_postencoder.py │ │ │ └── test_length_adaptor_postencoder.py │ │ ├── preencoder │ │ │ ├── test_linear.py │ │ │ └── test_sinc.py │ │ ├── specaug │ │ │ └── test_specaug.py │ │ ├── test_ctc.py │ │ ├── test_discrete_asr_espnet_model.py │ │ ├── test_espnet_model.py │ │ ├── test_maskctc_model.py │ │ ├── test_partially_AR.py │ │ ├── test_pit_espnet_model.py │ │ └── transducer │ │ │ ├── test_transducer_beam_search.py │ │ │ ├── test_transducer_beam_search_streaming.py │ │ │ └── test_transducer_error_calculator.py │ ├── asr_transducer │ │ ├── test_activation.py │ │ ├── test_beam_search_transducer.py │ │ ├── test_decoder.py │ │ ├── test_encoder.py │ │ ├── test_error_calculator_transducer.py │ │ └── test_espnet_transducer_model.py │ ├── bin │ │ ├── __init__.py │ │ ├── test_aggregate_stats_dirs.py │ │ ├── test_asr_align.py │ │ ├── test_asr_inference.py │ │ ├── test_asr_inference_k2.py │ │ ├── test_asr_inference_maskctc.py │ │ ├── test_asr_train.py │ │ ├── test_asr_transducer_inference.py │ │ ├── test_asr_transducer_train.py │ │ ├── test_codec_train.py │ │ ├── test_diar_inference.py │ │ ├── test_diar_train.py │ │ ├── test_enh_inference.py │ │ ├── test_enh_inference_streaming.py │ │ ├── test_enh_s2t_train.py │ │ ├── test_enh_scoring.py │ │ ├── test_enh_train.py │ │ ├── test_enh_tse_inference.py │ │ ├── test_enh_tse_train.py │ │ ├── test_hubert_train.py │ │ ├── test_hugging_face_export_vocabulary.py │ │ ├── test_lm_calc_perplexity.py │ │ ├── test_lm_inference.py │ │ ├── test_lm_multitask_train.py │ │ ├── test_lm_train.py │ │ ├── test_pack.py │ │ ├── test_s2st_inference.py │ │ ├── test_s2st_train.py │ │ ├── test_s2t_inference.py │ │ ├── test_s2t_inference_language.py │ │ ├── test_s2t_train.py │ │ ├── test_slu_inference.py │ │ ├── test_slu_train.py │ │ ├── test_spk_inference.py │ │ ├── test_spk_train.py │ │ ├── test_st_inference.py │ │ ├── test_st_train.py │ │ ├── test_svs_inference.py │ │ ├── test_svs_train.py │ │ ├── test_tokenize_text.py │ │ ├── test_tts2_inference.py │ │ ├── test_tts2_train.py │ │ ├── test_tts_inference.py │ │ ├── test_tts_train.py │ │ └── test_whisper_export_vocabulary.py │ ├── diar │ │ ├── __init__.py │ │ ├── attractor │ │ │ └── test_rnn_attractor.py │ │ ├── decoder │ │ │ └── test_linear_decoder.py │ │ └── test_espnet_model.py │ ├── enh │ │ ├── decoder │ │ │ ├── test_conv_decoder.py │ │ │ └── test_stft_decoder.py │ │ ├── diffusion │ │ │ └── test_score_based_diffusion.py │ │ ├── encoder │ │ │ ├── test_conv_encoder.py │ │ │ └── test_stft_encoder.py │ │ ├── extractor │ │ │ └── test_td_speakerbeam_extractor.py │ │ ├── layers │ │ │ ├── test_complex_utils.py │ │ │ ├── test_conv_utils.py │ │ │ ├── test_dnsmos.py │ │ │ ├── test_enh_layers.py │ │ │ └── test_ncsnpp.py │ │ ├── loss │ │ │ ├── criterions │ │ │ │ ├── test_tf_domain.py │ │ │ │ └── test_time_domain.py │ │ │ └── wrappers │ │ │ │ ├── test_dpcl_solver.py │ │ │ │ ├── test_fixed_order_solver.py │ │ │ │ ├── test_mixit_solver.py │ │ │ │ ├── test_multilayer_pit_solver.py │ │ │ │ └── test_pit_solver.py │ │ ├── separator │ │ │ ├── test_beamformer.py │ │ │ ├── test_bsrnn_separator.py │ │ │ ├── test_conformer_separator.py │ │ │ ├── test_dan_separator.py │ │ │ ├── test_dc_crn_separator.py │ │ │ ├── test_dccrn_separator.py │ │ │ ├── test_dpcl_e2e_separator.py │ │ │ ├── test_dpcl_separator.py │ │ │ ├── test_dprnn_separator.py │ │ │ ├── test_dptnet_separator.py │ │ │ ├── test_fasnet_separator.py │ │ │ ├── test_rnn_separator.py │ │ │ ├── test_skim_separator.py │ │ │ ├── test_svoice_separator.py │ │ │ ├── test_tcn_separator.py │ │ │ ├── test_transformer_separator.py │ │ │ └── test_uses_separator.py │ │ ├── test_espnet_diffusion_se.py │ │ ├── test_espnet_enh_s2t_model.py │ │ ├── test_espnet_model.py │ │ └── test_espnet_model_tse.py │ ├── fileio │ │ ├── __init__.py │ │ ├── test_datadir_writer.py │ │ ├── test_npy_scp.py │ │ ├── test_read_text.py │ │ ├── test_score_scp.py │ │ └── test_sound_scp.py │ ├── gan_svs │ │ ├── joint │ │ │ └── test_joint_score2wav.py │ │ └── visinger │ │ │ ├── test_fused.py │ │ │ ├── test_postfrontend.py │ │ │ ├── test_visinger.py │ │ │ ├── test_visinger_generator.py │ │ │ └── test_visinger_plus.py │ ├── gan_tts │ │ ├── hifigan │ │ │ └── test_hifigan.py │ │ ├── jets │ │ │ └── test_jets.py │ │ ├── joint │ │ │ └── test_joint_text2wav.py │ │ ├── melgan │ │ │ └── test_melgan.py │ │ ├── parallel_wavegan │ │ │ └── test_parallel_wavegan.py │ │ ├── style_melgan │ │ │ └── test_style_melgan.py │ │ ├── vits │ │ │ ├── test_generator.py │ │ │ └── test_vits.py │ │ └── wavenet │ │ │ └── test_wavenet.py │ ├── hubert │ │ ├── test_hubert_espnet_model.py │ │ └── test_hubert_loss.py │ ├── iterators │ │ ├── __init__.py │ │ ├── test_chunk_iter_factory.py │ │ ├── test_multiple_iter_factory.py │ │ └── test_sequence_iter_factory.py │ ├── layers │ │ ├── __init__.py │ │ ├── test_augmentation.py │ │ ├── test_create_adapter.py │ │ ├── test_create_adapter_fn.py │ │ ├── test_global_mvn.py │ │ ├── test_houlsby_adapter_layer.py │ │ ├── test_label_aggregation.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_espnet_multitask.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 │ ├── s2st │ │ └── test_s2st_espnet_model.py │ ├── s2t │ │ ├── __init__.py │ │ └── test_espnet_model.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 │ │ ├── cosine_anneal_warmup_restart.py │ │ ├── test_noam_lr.py │ │ ├── test_piecewise_linear_warmup_lr.py │ │ ├── test_warmup_lr.py │ │ ├── test_warmup_reducelronplateau.py │ │ └── test_warmup_step_lr.py │ ├── slu │ │ ├── postdecoder │ │ │ └── test_hugging_face_transformers_postdecoder.py │ │ ├── postencoder │ │ │ ├── test_conformer_encoder.py │ │ │ └── test_transformer_encoder.py │ │ └── test_transcript_espnet_model.py │ ├── spk │ │ └── test_espnet_spk_model.py │ ├── svs │ │ ├── test_naive_rnn.py │ │ ├── test_naive_rnn_dp.py │ │ ├── test_singing_tacotron.py │ │ └── test_xiaoice.py │ ├── tasks │ │ ├── __init__.py │ │ ├── test_abs_task.py │ │ ├── test_asr.py │ │ ├── test_asr_transducer.py │ │ ├── test_codec.py │ │ ├── test_diar.py │ │ ├── test_enh.py │ │ ├── test_enh_s2t.py │ │ ├── test_hubert.py │ │ ├── test_lm.py │ │ ├── test_s2st.py │ │ ├── test_s2t.py │ │ ├── test_slu.py │ │ ├── test_svs.py │ │ ├── test_tse.py │ │ └── test_tts.py │ ├── text │ │ ├── __init__.py │ │ ├── test_char_tokenizer.py │ │ ├── test_cleaner.py │ │ ├── test_hugging_face_token_id_converter.py │ │ ├── test_hugging_face_tokenizer.py │ │ ├── test_phoneme_tokenizer.py │ │ ├── test_sentencepiece_tokenizer.py │ │ ├── test_token_id_converter.py │ │ ├── test_whisper_token_id_converter.py │ │ ├── test_whisper_tokenizer.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_linear_spectrogram.py │ │ │ ├── test_log_mel_fbank.py │ │ │ └── test_log_spectrogram.py │ │ ├── test_fastspeech.py │ │ ├── test_fastspeech2.py │ │ ├── test_prodiff.py │ │ ├── test_tacotron2.py │ │ └── test_transformer.py │ ├── tts2 │ │ └── test_fastspeech2_discrete.py │ └── utils │ │ ├── __init__.py │ │ ├── test_build_dataclass.py │ │ ├── test_config_argparse.py │ │ ├── test_eer.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 ├── espnetez │ ├── test_ez.py │ ├── test_integration_espnetez.py │ └── test_integration_espnetez_ft.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_beam_search_timesync.py ├── test_beam_search_timesync_streaming.py ├── test_cli.py ├── test_custom_transducer.py ├── test_distributed_launch.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_nets_utils.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 ├── asr_inference.1.log ├── ctc_align_test.wav ├── espnet2_scripts │ ├── test_format_wav_scp_sh.bats │ └── test_simple_dict.bats ├── hubert_test.txt ├── integration_test_asr_align_wav.bats ├── integration_test_translate_wav.bats ├── spk_trial_scores ├── st_test.wav ├── test_addjson_py.bats ├── test_apply-cmvn_py.bats ├── test_average_checkpoints_py.bats ├── test_calculate_eer_mindcf_py.bats ├── test_calculate_rtf_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_evaluate_asr.bats ├── test_evaluate_f0.bats ├── test_evaluate_mcd.bats ├── test_evaluate_pseudomos.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_scoreintent_py.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 ├── Makefile ├── README.md ├── check_install.py ├── extra_path.sh ├── installers │ ├── install_beamformit.sh │ ├── install_cauchy_mult.sh │ ├── install_chainer.sh │ ├── install_chainer_ctc.sh │ ├── install_datasets.sh │ ├── install_deepxi.sh │ ├── install_discrete_speech_metrics.sh │ ├── install_fairscale.sh │ ├── install_fairseq.sh │ ├── install_ffmpeg.sh │ ├── install_gss.sh │ ├── install_gtn.sh │ ├── install_ice_g2p.sh │ ├── install_k2.sh │ ├── install_kenlm.sh │ ├── install_longformer.sh │ ├── install_lora.sh │ ├── install_mfa.sh │ ├── install_muskits.sh │ ├── install_mwerSegmenter.sh │ ├── install_nkf.sh │ ├── install_openface.sh │ ├── install_parallel-wavegan.sh │ ├── install_pesq.sh │ ├── install_phonemizer.sh │ ├── install_py3mmseg.sh │ ├── install_pyopenjtalk.sh │ ├── install_rawnet.sh │ ├── install_reazonspeech.sh │ ├── install_s3prl.sh │ ├── install_sctk.sh │ ├── install_simuleval.sh │ ├── install_speechbrain.sh │ ├── install_sph2pipe.sh │ ├── install_tdmelodic_pyopenjtalk.sh │ ├── install_torch.sh │ ├── install_torch_optimizer.sh │ ├── install_transformers.sh │ ├── install_vidaug.sh │ ├── install_visual.sh │ ├── install_warp-transducer.sh │ ├── install_whisper.sh │ └── patch_mwerSegmenter │ │ ├── hyp2sgm.patch │ │ └── sgm2mref.patch ├── sentencepiece_commands │ ├── spm_decode │ ├── spm_encode │ └── spm_train ├── setup_anaconda.sh ├── setup_cuda_env.sh ├── setup_python.sh ├── setup_venv.sh └── test_soundfile.py └── 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 ├── 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 /.gitmodules: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /egs/aesrc2020/asr1/RESULTS.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /egs/an4/tts1/local: -------------------------------------------------------------------------------- 1 | ../asr1/local -------------------------------------------------------------------------------- /egs/arctic/vc1/conf/bdl.f0: -------------------------------------------------------------------------------- 1 | 70 210 2 | -------------------------------------------------------------------------------- /egs/arctic/vc1/conf/clb.f0: -------------------------------------------------------------------------------- 1 | 110 270 2 | -------------------------------------------------------------------------------- /egs/arctic/vc1/conf/rms.f0: -------------------------------------------------------------------------------- 1 | 55 200 2 | -------------------------------------------------------------------------------- /egs/arctic/vc1/conf/slt.f0: -------------------------------------------------------------------------------- 1 | 120 275 2 | -------------------------------------------------------------------------------- /egs/chime4/asr1_multich/local: -------------------------------------------------------------------------------- 1 | ../asr1/local -------------------------------------------------------------------------------- /egs/covost2/asr1/conf/lm.yaml: -------------------------------------------------------------------------------- 1 | tuning/lm.yaml -------------------------------------------------------------------------------- /egs/covost2/asr1/local: -------------------------------------------------------------------------------- 1 | ../st1/local -------------------------------------------------------------------------------- /egs/covost2/mt1/local: -------------------------------------------------------------------------------- 1 | ../st1/local -------------------------------------------------------------------------------- /egs/fisher_callhome_spanish/asr1b/local: -------------------------------------------------------------------------------- 1 | ../st1/local/ -------------------------------------------------------------------------------- /egs/fisher_callhome_spanish/mt1/local: -------------------------------------------------------------------------------- 1 | ../st1/local -------------------------------------------------------------------------------- /egs/how2/asr1/conf/lm.yaml: -------------------------------------------------------------------------------- 1 | tuning/lm.yaml -------------------------------------------------------------------------------- /egs/how2/asr1/local: -------------------------------------------------------------------------------- 1 | ../st1/local -------------------------------------------------------------------------------- /egs/how2/mt1/conf/decode.yaml: -------------------------------------------------------------------------------- 1 | tuning/decode_rnn.yaml -------------------------------------------------------------------------------- /egs/how2/mt1/conf/train.yaml: -------------------------------------------------------------------------------- 1 | tuning/train_rnn.yaml -------------------------------------------------------------------------------- /egs/how2/mt1/local: -------------------------------------------------------------------------------- 1 | ../st1/local -------------------------------------------------------------------------------- /egs/iwslt18/asr1/conf/lm.yaml: -------------------------------------------------------------------------------- 1 | tuning/lm_spm.yaml -------------------------------------------------------------------------------- /egs/iwslt18/asr1/local: -------------------------------------------------------------------------------- 1 | ../st1/local -------------------------------------------------------------------------------- /egs/iwslt18/mt1/local: -------------------------------------------------------------------------------- 1 | ../st1/local -------------------------------------------------------------------------------- /egs/iwslt19/asr1/conf/lm.yaml: -------------------------------------------------------------------------------- 1 | tuning/lm.yaml -------------------------------------------------------------------------------- /egs/iwslt19/asr1/conf/train.yaml: -------------------------------------------------------------------------------- 1 | tuning/train_rnn.yaml -------------------------------------------------------------------------------- /egs/iwslt19/asr1/local: -------------------------------------------------------------------------------- 1 | ../st1/local -------------------------------------------------------------------------------- /egs/iwslt21/asr1/conf/lm.yaml: -------------------------------------------------------------------------------- 1 | tuning/lm.yaml -------------------------------------------------------------------------------- /egs/iwslt21/mt1/local: -------------------------------------------------------------------------------- 1 | ../asr1/local -------------------------------------------------------------------------------- /egs/iwslt21/punc1/conf: -------------------------------------------------------------------------------- 1 | ../mt1/conf -------------------------------------------------------------------------------- /egs/iwslt21/punc1/local: -------------------------------------------------------------------------------- 1 | ../asr1/local -------------------------------------------------------------------------------- /egs/iwslt21/st1/local: -------------------------------------------------------------------------------- 1 | ../asr1/local -------------------------------------------------------------------------------- /egs/jnas/tts1/local: -------------------------------------------------------------------------------- 1 | ../asr1/local -------------------------------------------------------------------------------- /egs/libri_trans/asr1/conf/lm.yaml: -------------------------------------------------------------------------------- 1 | tuning/lm.yaml -------------------------------------------------------------------------------- /egs/libri_trans/asr1/local: -------------------------------------------------------------------------------- 1 | ../st1/local -------------------------------------------------------------------------------- /egs/libri_trans/mt1/local: -------------------------------------------------------------------------------- 1 | ../st1/local -------------------------------------------------------------------------------- /egs/ljspeech/asr1/local: -------------------------------------------------------------------------------- 1 | ../tts1/local -------------------------------------------------------------------------------- /egs/ljspeech/tts2/local: -------------------------------------------------------------------------------- 1 | ../tts1/local -------------------------------------------------------------------------------- /egs/mini_an4/asr_mix1/cmd.sh: -------------------------------------------------------------------------------- 1 | ../asr1/cmd.sh -------------------------------------------------------------------------------- /egs/mini_an4/asr_mix1/conf: -------------------------------------------------------------------------------- 1 | ../asr1/conf -------------------------------------------------------------------------------- /egs/mini_an4/mt1/cmd.sh: -------------------------------------------------------------------------------- 1 | ../asr1/cmd.sh -------------------------------------------------------------------------------- /egs/mini_an4/mt1/local: -------------------------------------------------------------------------------- 1 | ../asr1/local -------------------------------------------------------------------------------- /egs/mini_an4/st1/cmd.sh: -------------------------------------------------------------------------------- 1 | ../asr1/cmd.sh -------------------------------------------------------------------------------- /egs/mini_an4/st1/local: -------------------------------------------------------------------------------- 1 | ../asr1/local -------------------------------------------------------------------------------- /egs/mini_an4/tts1/cmd.sh: -------------------------------------------------------------------------------- 1 | ../asr1/cmd.sh -------------------------------------------------------------------------------- /egs/mini_an4/tts1/local: -------------------------------------------------------------------------------- 1 | ../asr1/local -------------------------------------------------------------------------------- /egs/mtedx/mt1/local: -------------------------------------------------------------------------------- 1 | ../st1/local -------------------------------------------------------------------------------- /egs/mucs21_subtask2/asr1/steps: -------------------------------------------------------------------------------- 1 | ../../wsj/asr1/steps -------------------------------------------------------------------------------- /egs/mucs21_subtask2/asr1/utils: -------------------------------------------------------------------------------- 1 | ../../wsj/asr1/utils -------------------------------------------------------------------------------- /egs/must_c/asr1/conf/lm.yaml: -------------------------------------------------------------------------------- 1 | tuning/lm.yaml -------------------------------------------------------------------------------- /egs/must_c/asr1/local: -------------------------------------------------------------------------------- 1 | ../st1/local -------------------------------------------------------------------------------- /egs/must_c/mt1/local: -------------------------------------------------------------------------------- 1 | ../st1/local -------------------------------------------------------------------------------- /egs/must_c_v2/asr1/conf/lm.yaml: -------------------------------------------------------------------------------- 1 | tuning/lm.yaml -------------------------------------------------------------------------------- /egs/must_c_v2/asr1/local: -------------------------------------------------------------------------------- 1 | ../../must_c/st1/local -------------------------------------------------------------------------------- /egs/must_c_v2/mt1/local: -------------------------------------------------------------------------------- 1 | ../../must_c/st1/local -------------------------------------------------------------------------------- /egs/must_c_v2/st1/local: -------------------------------------------------------------------------------- 1 | ../../must_c/st1/local -------------------------------------------------------------------------------- /egs/swbd/asr1/conf/lm.yaml: -------------------------------------------------------------------------------- 1 | tuning/lm_transformer.yaml -------------------------------------------------------------------------------- /egs/timit/asr1/conf/train.yaml: -------------------------------------------------------------------------------- 1 | tuning/train2.yaml -------------------------------------------------------------------------------- /egs/vcc20/vc1_task1/conf/TEF1.f0: -------------------------------------------------------------------------------- 1 | 127 405 2 | -------------------------------------------------------------------------------- /egs/vcc20/vc1_task1/conf/TEF2.f0: -------------------------------------------------------------------------------- 1 | 108 361 2 | -------------------------------------------------------------------------------- /egs/vcc20/vc1_task1/conf/TEM1.f0: -------------------------------------------------------------------------------- 1 | 71 227 2 | -------------------------------------------------------------------------------- /egs/vcc20/vc1_task1/conf/TEM2.f0: -------------------------------------------------------------------------------- 1 | 57 182 2 | -------------------------------------------------------------------------------- /egs/vcc20/vc1_task2/conf/TFF1.f0: -------------------------------------------------------------------------------- 1 | 139 387 2 | -------------------------------------------------------------------------------- /egs/vcc20/vc1_task2/conf/TFM1.f0: -------------------------------------------------------------------------------- 1 | 60 189 2 | -------------------------------------------------------------------------------- /egs/vcc20/vc1_task2/conf/TGF1.f0: -------------------------------------------------------------------------------- 1 | 109 345 2 | -------------------------------------------------------------------------------- /egs/vcc20/vc1_task2/conf/TGM1.f0: -------------------------------------------------------------------------------- 1 | 75 236 2 | -------------------------------------------------------------------------------- /egs/vcc20/vc1_task2/conf/TMF1.f0: -------------------------------------------------------------------------------- 1 | 126 409 2 | -------------------------------------------------------------------------------- /egs/vcc20/vc1_task2/conf/TMM1.f0: -------------------------------------------------------------------------------- 1 | 81 254 2 | -------------------------------------------------------------------------------- /egs/yesno/tts1/local: -------------------------------------------------------------------------------- 1 | ../asr1/local -------------------------------------------------------------------------------- /egs2/TEMPLATE/asr1/local/path.sh: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /egs2/TEMPLATE/asr1/utils/pbs.pl: -------------------------------------------------------------------------------- 1 | parallel/pbs.pl -------------------------------------------------------------------------------- /egs2/TEMPLATE/asr1/utils/queue.pl: -------------------------------------------------------------------------------- 1 | parallel/queue.pl -------------------------------------------------------------------------------- /egs2/TEMPLATE/asr1/utils/retry.pl: -------------------------------------------------------------------------------- 1 | parallel/retry.pl -------------------------------------------------------------------------------- /egs2/TEMPLATE/asr1/utils/run.pl: -------------------------------------------------------------------------------- 1 | parallel/run.pl -------------------------------------------------------------------------------- /egs2/TEMPLATE/asr1/utils/slurm.pl: -------------------------------------------------------------------------------- 1 | parallel/slurm.pl -------------------------------------------------------------------------------- /egs2/TEMPLATE/asr2/db.sh: -------------------------------------------------------------------------------- 1 | ../asr1/db.sh -------------------------------------------------------------------------------- /egs2/TEMPLATE/asr2/local/path.sh: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /egs2/TEMPLATE/asr2/pyscripts: -------------------------------------------------------------------------------- 1 | ../asr1/pyscripts -------------------------------------------------------------------------------- /egs2/TEMPLATE/asr2/scripts: -------------------------------------------------------------------------------- 1 | ../asr1/scripts -------------------------------------------------------------------------------- /egs2/TEMPLATE/asr2/steps: -------------------------------------------------------------------------------- 1 | ../asr1/steps -------------------------------------------------------------------------------- /egs2/TEMPLATE/asr2/utils: -------------------------------------------------------------------------------- 1 | ../asr1/utils -------------------------------------------------------------------------------- /egs2/TEMPLATE/asvspoof1/db.sh: -------------------------------------------------------------------------------- 1 | ../asr1/db.sh -------------------------------------------------------------------------------- /egs2/TEMPLATE/asvspoof1/local/path.sh: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /egs2/TEMPLATE/asvspoof1/pyscripts: -------------------------------------------------------------------------------- 1 | ../asr1/pyscripts -------------------------------------------------------------------------------- /egs2/TEMPLATE/asvspoof1/scripts: -------------------------------------------------------------------------------- 1 | ../asr1/scripts -------------------------------------------------------------------------------- /egs2/TEMPLATE/asvspoof1/steps: -------------------------------------------------------------------------------- 1 | ../asr1/steps -------------------------------------------------------------------------------- /egs2/TEMPLATE/asvspoof1/utils: -------------------------------------------------------------------------------- 1 | ../asr1/utils -------------------------------------------------------------------------------- /egs2/TEMPLATE/codec1/db.sh: -------------------------------------------------------------------------------- 1 | ../asr1/db.sh -------------------------------------------------------------------------------- /egs2/TEMPLATE/codec1/local/path.sh: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /egs2/TEMPLATE/codec1/pyscripts: -------------------------------------------------------------------------------- 1 | ../asr1/pyscripts -------------------------------------------------------------------------------- /egs2/TEMPLATE/codec1/scripts: -------------------------------------------------------------------------------- 1 | ../asr1/scripts -------------------------------------------------------------------------------- /egs2/TEMPLATE/codec1/steps: -------------------------------------------------------------------------------- 1 | ../asr1/steps -------------------------------------------------------------------------------- /egs2/TEMPLATE/codec1/utils: -------------------------------------------------------------------------------- 1 | ../asr1/utils -------------------------------------------------------------------------------- /egs2/TEMPLATE/diar1/db.sh: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/db.sh -------------------------------------------------------------------------------- /egs2/TEMPLATE/diar1/local/path.sh: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /egs2/TEMPLATE/diar1/pyscripts: -------------------------------------------------------------------------------- 1 | ../asr1/pyscripts -------------------------------------------------------------------------------- /egs2/TEMPLATE/diar1/steps: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/steps -------------------------------------------------------------------------------- /egs2/TEMPLATE/diar1/utils: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/utils -------------------------------------------------------------------------------- /egs2/TEMPLATE/enh1/db.sh: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/db.sh -------------------------------------------------------------------------------- /egs2/TEMPLATE/enh1/local/path.sh: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /egs2/TEMPLATE/enh1/steps: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/steps -------------------------------------------------------------------------------- /egs2/TEMPLATE/enh1/utils: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/utils -------------------------------------------------------------------------------- /egs2/TEMPLATE/enh_asr1/db.sh: -------------------------------------------------------------------------------- 1 | ../asr1/db.sh -------------------------------------------------------------------------------- /egs2/TEMPLATE/enh_asr1/local/path.sh: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /egs2/TEMPLATE/enh_asr1/pyscripts: -------------------------------------------------------------------------------- 1 | ../asr1/pyscripts -------------------------------------------------------------------------------- /egs2/TEMPLATE/enh_asr1/scripts: -------------------------------------------------------------------------------- 1 | ../asr1/scripts -------------------------------------------------------------------------------- /egs2/TEMPLATE/enh_asr1/steps: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/steps -------------------------------------------------------------------------------- /egs2/TEMPLATE/enh_asr1/utils: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/utils -------------------------------------------------------------------------------- /egs2/TEMPLATE/enh_diar1/local/path.sh: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /egs2/TEMPLATE/enh_diar1/pyscripts: -------------------------------------------------------------------------------- 1 | ../asr1/pyscripts -------------------------------------------------------------------------------- /egs2/TEMPLATE/enh_st1/db.sh: -------------------------------------------------------------------------------- 1 | ../asr1/db.sh -------------------------------------------------------------------------------- /egs2/TEMPLATE/enh_st1/local/path.sh: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /egs2/TEMPLATE/enh_st1/pyscripts: -------------------------------------------------------------------------------- 1 | ../asr1/pyscripts -------------------------------------------------------------------------------- /egs2/TEMPLATE/enh_st1/scripts: -------------------------------------------------------------------------------- 1 | ../enh_asr1/scripts -------------------------------------------------------------------------------- /egs2/TEMPLATE/enh_st1/steps: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/steps -------------------------------------------------------------------------------- /egs2/TEMPLATE/enh_st1/utils: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/utils -------------------------------------------------------------------------------- /egs2/TEMPLATE/lm1/db.sh: -------------------------------------------------------------------------------- 1 | ../asr1/db.sh -------------------------------------------------------------------------------- /egs2/TEMPLATE/lm1/local/path.sh: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /egs2/TEMPLATE/lm1/pyscripts: -------------------------------------------------------------------------------- 1 | ../asr1/pyscripts -------------------------------------------------------------------------------- /egs2/TEMPLATE/lm1/scripts: -------------------------------------------------------------------------------- 1 | ../asr1/scripts -------------------------------------------------------------------------------- /egs2/TEMPLATE/lm1/steps: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/steps -------------------------------------------------------------------------------- /egs2/TEMPLATE/lm1/utils: -------------------------------------------------------------------------------- 1 | ../asr1/utils -------------------------------------------------------------------------------- /egs2/TEMPLATE/mt1/db.sh: -------------------------------------------------------------------------------- 1 | ../asr1/db.sh -------------------------------------------------------------------------------- /egs2/TEMPLATE/mt1/local/path.sh: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /egs2/TEMPLATE/mt1/pyscripts: -------------------------------------------------------------------------------- 1 | ../asr1/pyscripts -------------------------------------------------------------------------------- /egs2/TEMPLATE/mt1/scripts: -------------------------------------------------------------------------------- 1 | ../asr1/scripts -------------------------------------------------------------------------------- /egs2/TEMPLATE/mt1/steps: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/steps -------------------------------------------------------------------------------- /egs2/TEMPLATE/mt1/utils: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/utils -------------------------------------------------------------------------------- /egs2/TEMPLATE/s2st1/db.sh: -------------------------------------------------------------------------------- 1 | ../asr1/db.sh -------------------------------------------------------------------------------- /egs2/TEMPLATE/s2st1/local/path.sh: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /egs2/TEMPLATE/s2st1/pyscripts: -------------------------------------------------------------------------------- 1 | ../asr1/pyscripts -------------------------------------------------------------------------------- /egs2/TEMPLATE/s2st1/scripts: -------------------------------------------------------------------------------- 1 | ../asr1/scripts -------------------------------------------------------------------------------- /egs2/TEMPLATE/s2st1/steps: -------------------------------------------------------------------------------- 1 | ../asr1/steps -------------------------------------------------------------------------------- /egs2/TEMPLATE/s2st1/utils: -------------------------------------------------------------------------------- 1 | ../asr1/utils -------------------------------------------------------------------------------- /egs2/TEMPLATE/s2t1/db.sh: -------------------------------------------------------------------------------- 1 | ../asr1/db.sh -------------------------------------------------------------------------------- /egs2/TEMPLATE/s2t1/local/path.sh: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /egs2/TEMPLATE/s2t1/pyscripts: -------------------------------------------------------------------------------- 1 | ../asr1/pyscripts/ -------------------------------------------------------------------------------- /egs2/TEMPLATE/s2t1/scripts: -------------------------------------------------------------------------------- 1 | ../asr1/scripts/ -------------------------------------------------------------------------------- /egs2/TEMPLATE/s2t1/steps: -------------------------------------------------------------------------------- 1 | ../asr1/steps/ -------------------------------------------------------------------------------- /egs2/TEMPLATE/s2t1/utils: -------------------------------------------------------------------------------- 1 | ../asr1/utils/ -------------------------------------------------------------------------------- /egs2/TEMPLATE/slu1/db.sh: -------------------------------------------------------------------------------- 1 | ../asr1/db.sh -------------------------------------------------------------------------------- /egs2/TEMPLATE/slu1/local/path.sh: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /egs2/TEMPLATE/slu1/pyscripts: -------------------------------------------------------------------------------- 1 | ../asr1/pyscripts -------------------------------------------------------------------------------- /egs2/TEMPLATE/slu1/scripts: -------------------------------------------------------------------------------- 1 | ../asr1/scripts -------------------------------------------------------------------------------- /egs2/TEMPLATE/slu1/steps: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/steps -------------------------------------------------------------------------------- /egs2/TEMPLATE/slu1/utils: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/utils -------------------------------------------------------------------------------- /egs2/TEMPLATE/speechlm1/db.sh: -------------------------------------------------------------------------------- 1 | ../asr1/db.sh -------------------------------------------------------------------------------- /egs2/TEMPLATE/speechlm1/local/path.sh: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /egs2/TEMPLATE/speechlm1/pyscripts: -------------------------------------------------------------------------------- 1 | ../asr1/pyscripts -------------------------------------------------------------------------------- /egs2/TEMPLATE/speechlm1/scripts: -------------------------------------------------------------------------------- 1 | ../asr1/scripts -------------------------------------------------------------------------------- /egs2/TEMPLATE/speechlm1/steps: -------------------------------------------------------------------------------- 1 | ../asr1/steps -------------------------------------------------------------------------------- /egs2/TEMPLATE/speechlm1/utils: -------------------------------------------------------------------------------- 1 | ../asr1/utils -------------------------------------------------------------------------------- /egs2/TEMPLATE/spk1/local/path.sh: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /egs2/TEMPLATE/spk1/pyscripts: -------------------------------------------------------------------------------- 1 | ../asr1/pyscripts -------------------------------------------------------------------------------- /egs2/TEMPLATE/spk1/scripts: -------------------------------------------------------------------------------- 1 | ../asr1/scripts -------------------------------------------------------------------------------- /egs2/TEMPLATE/spk1/steps: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/steps -------------------------------------------------------------------------------- /egs2/TEMPLATE/spk1/utils: -------------------------------------------------------------------------------- 1 | ../asr1/utils -------------------------------------------------------------------------------- /egs2/TEMPLATE/ssl1/db.sh: -------------------------------------------------------------------------------- 1 | ../asr1/db.sh -------------------------------------------------------------------------------- /egs2/TEMPLATE/ssl1/pyscripts: -------------------------------------------------------------------------------- 1 | ../asr1/pyscripts -------------------------------------------------------------------------------- /egs2/TEMPLATE/ssl1/scripts: -------------------------------------------------------------------------------- 1 | ../asr1/scripts -------------------------------------------------------------------------------- /egs2/TEMPLATE/ssl1/steps: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/steps -------------------------------------------------------------------------------- /egs2/TEMPLATE/ssl1/utils: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/utils -------------------------------------------------------------------------------- /egs2/TEMPLATE/st1/db.sh: -------------------------------------------------------------------------------- 1 | ../asr1/db.sh -------------------------------------------------------------------------------- /egs2/TEMPLATE/st1/local/path.sh: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /egs2/TEMPLATE/st1/pyscripts: -------------------------------------------------------------------------------- 1 | ../asr1/pyscripts -------------------------------------------------------------------------------- /egs2/TEMPLATE/st1/scripts: -------------------------------------------------------------------------------- 1 | ../asr1/scripts -------------------------------------------------------------------------------- /egs2/TEMPLATE/st1/steps: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/steps -------------------------------------------------------------------------------- /egs2/TEMPLATE/st1/utils: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/utils -------------------------------------------------------------------------------- /egs2/TEMPLATE/svs1/db.sh: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/db.sh -------------------------------------------------------------------------------- /egs2/TEMPLATE/svs1/local/path.sh: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /egs2/TEMPLATE/svs1/scripts: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/scripts -------------------------------------------------------------------------------- /egs2/TEMPLATE/svs1/steps: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/steps -------------------------------------------------------------------------------- /egs2/TEMPLATE/svs1/utils: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/utils -------------------------------------------------------------------------------- /egs2/TEMPLATE/tts1/db.sh: -------------------------------------------------------------------------------- 1 | ../asr1/db.sh -------------------------------------------------------------------------------- /egs2/TEMPLATE/tts1/local/path.sh: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /egs2/TEMPLATE/tts1/scripts: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/scripts -------------------------------------------------------------------------------- /egs2/TEMPLATE/tts1/steps: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/steps -------------------------------------------------------------------------------- /egs2/TEMPLATE/tts1/utils: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/utils -------------------------------------------------------------------------------- /egs2/TEMPLATE/tts2/db.sh: -------------------------------------------------------------------------------- 1 | ../asr1/db.sh -------------------------------------------------------------------------------- /egs2/TEMPLATE/tts2/local/path.sh: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /egs2/TEMPLATE/tts2/scripts: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/scripts -------------------------------------------------------------------------------- /egs2/TEMPLATE/tts2/sid: -------------------------------------------------------------------------------- 1 | ../tts1/sid -------------------------------------------------------------------------------- /egs2/TEMPLATE/tts2/steps: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/steps -------------------------------------------------------------------------------- /egs2/TEMPLATE/tts2/utils: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/utils -------------------------------------------------------------------------------- /egs2/TEMPLATE/uasr1/db.sh: -------------------------------------------------------------------------------- 1 | ../asr1/db.sh -------------------------------------------------------------------------------- /egs2/TEMPLATE/uasr1/pyscripts: -------------------------------------------------------------------------------- 1 | ../asr1/pyscripts -------------------------------------------------------------------------------- /egs2/TEMPLATE/uasr1/scripts: -------------------------------------------------------------------------------- 1 | ../asr1/scripts -------------------------------------------------------------------------------- /egs2/TEMPLATE/uasr1/steps: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/steps -------------------------------------------------------------------------------- /egs2/TEMPLATE/uasr1/utils: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/utils -------------------------------------------------------------------------------- /egs2/accentdb/asr1/asr.sh: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/asr.sh -------------------------------------------------------------------------------- /egs2/accentdb/asr1/cmd.sh: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/cmd.sh -------------------------------------------------------------------------------- /egs2/accentdb/asr1/db.sh: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/db.sh -------------------------------------------------------------------------------- /egs2/accentdb/asr1/local/path.sh: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /egs2/accentdb/asr1/path.sh: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/path.sh -------------------------------------------------------------------------------- /egs2/accentdb/asr1/scripts: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/scripts -------------------------------------------------------------------------------- /egs2/accentdb/asr1/steps: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/steps -------------------------------------------------------------------------------- /egs2/accentdb/asr1/utils: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/utils -------------------------------------------------------------------------------- /egs2/accented_french_openslr57/asr1/local/path.sh: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /egs2/acesinger/svs1/db.sh: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/db.sh -------------------------------------------------------------------------------- /egs2/acesinger/svs1/local/path.sh: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /egs2/acesinger/svs1/svs.sh: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/svs1/svs.sh -------------------------------------------------------------------------------- /egs2/acesinger/svs1/utils: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/utils -------------------------------------------------------------------------------- /egs2/aesrc2020/asr1/asr.sh: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/asr.sh -------------------------------------------------------------------------------- /egs2/aesrc2020/asr1/db.sh: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/db.sh -------------------------------------------------------------------------------- /egs2/aesrc2020/asr1/local/path.sh: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /egs2/aesrc2020/asr1/steps: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/steps -------------------------------------------------------------------------------- /egs2/aesrc2020/asr1/utils: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/utils -------------------------------------------------------------------------------- /egs2/aidatatang_200zh/asr1/local/path.sh: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /egs2/aishell/asr1/asr.sh: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/asr.sh -------------------------------------------------------------------------------- /egs2/aishell/asr1/db.sh: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/db.sh -------------------------------------------------------------------------------- /egs2/aishell/asr1/path.sh: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/path.sh -------------------------------------------------------------------------------- /egs2/aishell/asr1/scripts: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/scripts -------------------------------------------------------------------------------- /egs2/aishell/asr1/steps: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/steps -------------------------------------------------------------------------------- /egs2/aishell/asr1/utils: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/utils -------------------------------------------------------------------------------- /egs2/aishell2/asr1/asr.sh: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/asr.sh -------------------------------------------------------------------------------- /egs2/aishell2/asr1/db.sh: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/db.sh -------------------------------------------------------------------------------- /egs2/aishell2/asr1/local/path.sh: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /egs2/aishell2/asr1/path.sh: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/path.sh -------------------------------------------------------------------------------- /egs2/aishell2/asr1/scripts: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/scripts -------------------------------------------------------------------------------- /egs2/aishell2/asr1/steps: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/steps -------------------------------------------------------------------------------- /egs2/aishell2/asr1/utils: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/utils -------------------------------------------------------------------------------- /egs2/aishell3/tts1/db.sh: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/db.sh -------------------------------------------------------------------------------- /egs2/aishell3/tts1/local/path.sh: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /egs2/aishell3/tts1/path.sh: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/tts1/path.sh -------------------------------------------------------------------------------- /egs2/aishell3/tts1/scripts: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/scripts -------------------------------------------------------------------------------- /egs2/aishell3/tts1/steps: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/steps -------------------------------------------------------------------------------- /egs2/aishell3/tts1/tts.sh: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/tts1/tts.sh -------------------------------------------------------------------------------- /egs2/aishell3/tts1/utils: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/utils -------------------------------------------------------------------------------- /egs2/aishell4/asr1/asr.sh: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/asr.sh -------------------------------------------------------------------------------- /egs2/aishell4/asr1/db.sh: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/db.sh -------------------------------------------------------------------------------- /egs2/aishell4/asr1/local/path.sh: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /egs2/aishell4/asr1/path.sh: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/path.sh -------------------------------------------------------------------------------- /egs2/aishell4/asr1/scripts: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/scripts -------------------------------------------------------------------------------- /egs2/aishell4/asr1/steps: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/steps -------------------------------------------------------------------------------- /egs2/aishell4/asr1/utils: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/utils -------------------------------------------------------------------------------- /egs2/aishell4/enh1/db.sh: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/db.sh -------------------------------------------------------------------------------- /egs2/aishell4/enh1/enh.sh: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/enh1/enh.sh -------------------------------------------------------------------------------- /egs2/aishell4/enh1/path.sh: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/enh1/path.sh -------------------------------------------------------------------------------- /egs2/aishell4/enh1/scripts: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/enh1/scripts -------------------------------------------------------------------------------- /egs2/aishell4/enh1/steps: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/steps -------------------------------------------------------------------------------- /egs2/aishell4/enh1/utils: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/utils -------------------------------------------------------------------------------- /egs2/ameboshi/svs1/db.sh: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/db.sh -------------------------------------------------------------------------------- /egs2/ameboshi/svs1/local/path.sh: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /egs2/ameboshi/svs1/path.sh: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/svs1/path.sh -------------------------------------------------------------------------------- /egs2/ameboshi/svs1/scripts: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/svs1/scripts -------------------------------------------------------------------------------- /egs2/ameboshi/svs1/svs.sh: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/svs1/svs.sh -------------------------------------------------------------------------------- /egs2/ameboshi/svs1/utils: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/utils -------------------------------------------------------------------------------- /egs2/americasnlp22/asr1/local/path.sh: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /egs2/ami/asr1/asr.sh: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/asr.sh -------------------------------------------------------------------------------- /egs2/ami/asr1/db.sh: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/db.sh -------------------------------------------------------------------------------- /egs2/ami/asr1/local/path.sh: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /egs2/ami/asr1/path.sh: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/path.sh -------------------------------------------------------------------------------- /egs2/ami/asr1/pyscripts: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/pyscripts -------------------------------------------------------------------------------- /egs2/ami/asr1/scripts: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/scripts -------------------------------------------------------------------------------- /egs2/ami/asr1/steps: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/steps -------------------------------------------------------------------------------- /egs2/ami/asr1/utils: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/utils -------------------------------------------------------------------------------- /egs2/amuse/codec1/db.sh: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/codec1/db.sh -------------------------------------------------------------------------------- /egs2/amuse/codec1/local/path.sh: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /egs2/amuse/codec1/steps: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/codec1/steps -------------------------------------------------------------------------------- /egs2/amuse/codec1/utils: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/codec1/utils -------------------------------------------------------------------------------- /egs2/an4/asr1/asr.sh: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/asr.sh -------------------------------------------------------------------------------- /egs2/an4/asr1/db.sh: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/db.sh -------------------------------------------------------------------------------- /egs2/an4/asr1/local/path.sh: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /egs2/an4/asr1/path.sh: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/path.sh -------------------------------------------------------------------------------- /egs2/an4/asr1/pyscripts: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/pyscripts -------------------------------------------------------------------------------- /egs2/an4/asr1/scripts: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/scripts -------------------------------------------------------------------------------- /egs2/an4/asr1/steps: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/steps -------------------------------------------------------------------------------- /egs2/an4/asr1/utils: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/utils -------------------------------------------------------------------------------- /egs2/an4/tts1/db.sh: -------------------------------------------------------------------------------- 1 | ../../mini_an4/asr1/db.sh -------------------------------------------------------------------------------- /egs2/an4/tts1/downloads: -------------------------------------------------------------------------------- 1 | ../asr1/downloads -------------------------------------------------------------------------------- /egs2/an4/tts1/local: -------------------------------------------------------------------------------- 1 | ../asr1/local -------------------------------------------------------------------------------- /egs2/an4/tts1/path.sh: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/tts1/path.sh -------------------------------------------------------------------------------- /egs2/an4/tts1/pyscripts: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/pyscripts -------------------------------------------------------------------------------- /egs2/an4/tts1/scripts: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/scripts -------------------------------------------------------------------------------- /egs2/an4/tts1/steps: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/steps -------------------------------------------------------------------------------- /egs2/an4/tts1/tts.sh: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/tts1/tts.sh -------------------------------------------------------------------------------- /egs2/an4/tts1/utils: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/utils -------------------------------------------------------------------------------- /egs2/aphasiabank/asr1/db.sh: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/db.sh -------------------------------------------------------------------------------- /egs2/aphasiabank/asr1/local/path.sh: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /egs2/aphasiabank/asr1/steps: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/steps -------------------------------------------------------------------------------- /egs2/aphasiabank/asr1/utils: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/utils -------------------------------------------------------------------------------- /egs2/arabic_sc/asr1/asr.sh: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/asr.sh -------------------------------------------------------------------------------- /egs2/arabic_sc/asr1/cmd.sh: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/cmd.sh -------------------------------------------------------------------------------- /egs2/arabic_sc/asr1/db.sh: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/db.sh -------------------------------------------------------------------------------- /egs2/arabic_sc/asr1/local/path.sh: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /egs2/arabic_sc/asr1/steps: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/steps -------------------------------------------------------------------------------- /egs2/arabic_sc/asr1/utils: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/utils -------------------------------------------------------------------------------- /egs2/asvspoof/asr1/asr.sh: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/asr.sh -------------------------------------------------------------------------------- /egs2/asvspoof/asr1/cmd.sh: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/cmd.sh -------------------------------------------------------------------------------- /egs2/asvspoof/asr1/db.sh: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/db.sh -------------------------------------------------------------------------------- /egs2/asvspoof/asr1/local/path.sh: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /egs2/asvspoof/asr1/path.sh: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/path.sh -------------------------------------------------------------------------------- /egs2/asvspoof/asr1/scripts: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/scripts -------------------------------------------------------------------------------- /egs2/asvspoof/asr1/steps: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/steps -------------------------------------------------------------------------------- /egs2/asvspoof/asr1/utils: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/utils -------------------------------------------------------------------------------- /egs2/asvspoof/spk1/db.sh: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/spk1/db.sh -------------------------------------------------------------------------------- /egs2/asvspoof/spk1/local/path.sh: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /egs2/asvspoof/spk1/path.sh: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/spk1/path.sh -------------------------------------------------------------------------------- /egs2/asvspoof/spk1/scripts: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/spk1/scripts -------------------------------------------------------------------------------- /egs2/asvspoof/spk1/spk.sh: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/spk1/spk.sh -------------------------------------------------------------------------------- /egs2/asvspoof/spk1/steps: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/spk1/steps -------------------------------------------------------------------------------- /egs2/asvspoof/spk1/utils: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/spk1/utils -------------------------------------------------------------------------------- /egs2/babel/asr1/asr.sh: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/asr.sh -------------------------------------------------------------------------------- /egs2/babel/asr1/db.sh: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/db.sh -------------------------------------------------------------------------------- /egs2/babel/asr1/local/path.sh: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /egs2/babel/asr1/path.sh: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/path.sh -------------------------------------------------------------------------------- /egs2/babel/asr1/scripts: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/scripts -------------------------------------------------------------------------------- /egs2/babel/asr1/steps: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/steps -------------------------------------------------------------------------------- /egs2/babel/asr1/utils: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/utils -------------------------------------------------------------------------------- /egs2/bibletts/tts1/db.sh: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/db.sh -------------------------------------------------------------------------------- /egs2/bibletts/tts1/local/path.sh: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /egs2/bibletts/tts1/path.sh: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/tts1/path.sh -------------------------------------------------------------------------------- /egs2/bibletts/tts1/scripts: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/scripts -------------------------------------------------------------------------------- /egs2/bibletts/tts1/sid: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/tts1/sid -------------------------------------------------------------------------------- /egs2/bibletts/tts1/steps: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/steps -------------------------------------------------------------------------------- /egs2/bibletts/tts1/tts.sh: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/tts1/tts.sh -------------------------------------------------------------------------------- /egs2/bibletts/tts1/utils: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/utils -------------------------------------------------------------------------------- /egs2/bn_openslr53/asr1/db.sh: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/db.sh -------------------------------------------------------------------------------- /egs2/bn_openslr53/asr1/local/path.sh: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /egs2/bn_openslr53/asr1/steps: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/steps -------------------------------------------------------------------------------- /egs2/bn_openslr53/asr1/utils: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/utils -------------------------------------------------------------------------------- /egs2/bur_openslr80/asr1/local/path.sh: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /egs2/catslu/asr1/asr.sh: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/asr.sh -------------------------------------------------------------------------------- /egs2/catslu/asr1/db.sh: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/db.sh -------------------------------------------------------------------------------- /egs2/catslu/asr1/local/path.sh: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /egs2/catslu/asr1/path.sh: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/path.sh -------------------------------------------------------------------------------- /egs2/catslu/asr1/scripts: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/scripts -------------------------------------------------------------------------------- /egs2/catslu/asr1/steps: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/steps -------------------------------------------------------------------------------- /egs2/catslu/asr1/utils: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/utils -------------------------------------------------------------------------------- /egs2/catslu_entity/asr1/local/path.sh: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /egs2/chime1/enh1/db.sh: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/db.sh -------------------------------------------------------------------------------- /egs2/chime1/enh1/enh.sh: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/enh1/enh.sh -------------------------------------------------------------------------------- /egs2/chime1/enh1/local/path.sh: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /egs2/chime1/enh1/path.sh: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/enh1/path.sh -------------------------------------------------------------------------------- /egs2/chime1/enh1/scripts: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/enh1/scripts -------------------------------------------------------------------------------- /egs2/chime1/enh1/steps: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/steps -------------------------------------------------------------------------------- /egs2/chime1/enh1/utils: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/utils -------------------------------------------------------------------------------- /egs2/chime2/enh1/db.sh: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/db.sh -------------------------------------------------------------------------------- /egs2/chime2/enh1/enh.sh: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/enh1/enh.sh -------------------------------------------------------------------------------- /egs2/chime2/enh1/local/path.sh: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /egs2/chime2/enh1/path.sh: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/enh1/path.sh -------------------------------------------------------------------------------- /egs2/chime2/enh1/scripts: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/enh1/scripts -------------------------------------------------------------------------------- /egs2/chime2/enh1/steps: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/steps -------------------------------------------------------------------------------- /egs2/chime2/enh1/utils: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/utils -------------------------------------------------------------------------------- /egs2/chime4/asr1/asr.sh: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/asr.sh -------------------------------------------------------------------------------- /egs2/chime4/asr1/db.sh: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/db.sh -------------------------------------------------------------------------------- /egs2/chime4/asr1/local/path.sh: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /egs2/chime4/asr1/path.sh: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/path.sh -------------------------------------------------------------------------------- /egs2/chime4/asr1/scripts: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/scripts -------------------------------------------------------------------------------- /egs2/chime4/asr1/steps: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/steps -------------------------------------------------------------------------------- /egs2/chime4/asr1/utils: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/utils -------------------------------------------------------------------------------- /egs2/chime4/asr2/asr2.sh: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr2/asr2.sh -------------------------------------------------------------------------------- /egs2/chime4/asr2/db.sh: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr2/db.sh -------------------------------------------------------------------------------- /egs2/chime4/asr2/local/path.sh: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /egs2/chime4/asr2/path.sh: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr2/path.sh -------------------------------------------------------------------------------- /egs2/chime4/asr2/scripts: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr2/scripts -------------------------------------------------------------------------------- /egs2/chime4/asr2/steps: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr2/steps -------------------------------------------------------------------------------- /egs2/chime4/asr2/utils: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr2/utils -------------------------------------------------------------------------------- /egs2/chime4/enh1/db.sh: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/db.sh -------------------------------------------------------------------------------- /egs2/chime4/enh1/enh.sh: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/enh1/enh.sh -------------------------------------------------------------------------------- /egs2/chime4/enh1/local/path.sh: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /egs2/chime4/enh1/path.sh: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/enh1/path.sh -------------------------------------------------------------------------------- /egs2/chime4/enh1/scripts: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/enh1/scripts -------------------------------------------------------------------------------- /egs2/chime4/enh1/steps: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/steps -------------------------------------------------------------------------------- /egs2/chime4/enh1/utils: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/utils -------------------------------------------------------------------------------- /egs2/chime4/enh_asr1/local/path.sh: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /egs2/chime4/enh_asr1/steps: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/steps -------------------------------------------------------------------------------- /egs2/chime4/enh_asr1/utils: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/utils -------------------------------------------------------------------------------- /egs2/chime6/asr1/asr.sh: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/asr.sh -------------------------------------------------------------------------------- /egs2/chime6/asr1/db.sh: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/db.sh -------------------------------------------------------------------------------- /egs2/chime6/asr1/local/path.sh: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /egs2/chime6/asr1/path.sh: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/path.sh -------------------------------------------------------------------------------- /egs2/chime6/asr1/scripts: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/scripts -------------------------------------------------------------------------------- /egs2/chime6/asr1/steps: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/steps -------------------------------------------------------------------------------- /egs2/chime6/asr1/utils: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/utils -------------------------------------------------------------------------------- /egs2/chime7_task1/asr1/db.sh: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/db.sh -------------------------------------------------------------------------------- /egs2/chime7_task1/asr1/local/path.sh: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /egs2/chime7_task1/asr1/steps: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/steps -------------------------------------------------------------------------------- /egs2/chime7_task1/asr1/utils: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/utils -------------------------------------------------------------------------------- /egs2/chime8_task1/asr1/db.sh: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/db.sh -------------------------------------------------------------------------------- /egs2/chime8_task1/asr1/local/path.sh: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /egs2/chime8_task1/asr1/steps: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/steps -------------------------------------------------------------------------------- /egs2/chime8_task1/asr1/utils: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/utils -------------------------------------------------------------------------------- /egs2/chime8_task1/diar_asr1/conf: -------------------------------------------------------------------------------- 1 | ../asr1/conf -------------------------------------------------------------------------------- /egs2/clarity21/enh1/db.sh: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/db.sh -------------------------------------------------------------------------------- /egs2/clarity21/enh1/enh.sh: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/enh1/enh.sh -------------------------------------------------------------------------------- /egs2/clarity21/enh1/local/path.sh: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /egs2/clarity21/enh1/steps: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/steps -------------------------------------------------------------------------------- /egs2/clarity21/enh1/utils: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/utils -------------------------------------------------------------------------------- /egs2/cmu_arctic/tts1/db.sh: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/db.sh -------------------------------------------------------------------------------- /egs2/cmu_arctic/tts1/local/path.sh: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /egs2/cmu_arctic/tts1/steps: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/steps -------------------------------------------------------------------------------- /egs2/cmu_arctic/tts1/tts.sh: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/tts1/tts.sh -------------------------------------------------------------------------------- /egs2/cmu_arctic/tts1/utils: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/utils -------------------------------------------------------------------------------- /egs2/cmu_indic/tts1/db.sh: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/db.sh -------------------------------------------------------------------------------- /egs2/cmu_indic/tts1/local/path.sh: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /egs2/cmu_indic/tts1/steps: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/steps -------------------------------------------------------------------------------- /egs2/cmu_indic/tts1/tts.sh: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/tts1/tts.sh -------------------------------------------------------------------------------- /egs2/cmu_indic/tts1/utils: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/utils -------------------------------------------------------------------------------- /egs2/commonvoice/asr1/db.sh: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/db.sh -------------------------------------------------------------------------------- /egs2/commonvoice/asr1/local/path.sh: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /egs2/commonvoice/asr1/steps: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/steps -------------------------------------------------------------------------------- /egs2/commonvoice/asr1/utils: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/utils -------------------------------------------------------------------------------- /egs2/conferencingspeech21/enh1/local/path.sh: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /egs2/covost2/asr1/asr.sh: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/asr.sh -------------------------------------------------------------------------------- /egs2/covost2/asr1/db.sh: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/db.sh -------------------------------------------------------------------------------- /egs2/covost2/asr1/path.sh: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/path.sh -------------------------------------------------------------------------------- /egs2/covost2/asr1/scripts: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/scripts -------------------------------------------------------------------------------- /egs2/covost2/asr1/steps: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/steps -------------------------------------------------------------------------------- /egs2/covost2/asr1/utils: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/utils -------------------------------------------------------------------------------- /egs2/covost2/mt1/db.sh: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/mt1/db.sh -------------------------------------------------------------------------------- /egs2/covost2/mt1/local/data.sh: -------------------------------------------------------------------------------- 1 | ../../st1/local/data.sh -------------------------------------------------------------------------------- /egs2/covost2/mt1/local/path.sh: -------------------------------------------------------------------------------- 1 | ../../st1/local/path.sh -------------------------------------------------------------------------------- /egs2/covost2/mt1/mt.sh: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/mt1/mt.sh -------------------------------------------------------------------------------- /egs2/covost2/mt1/path.sh: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/mt1/path.sh -------------------------------------------------------------------------------- /egs2/covost2/mt1/scripts: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/mt1/scripts -------------------------------------------------------------------------------- /egs2/covost2/mt1/steps: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/steps -------------------------------------------------------------------------------- /egs2/covost2/mt1/utils: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/utils -------------------------------------------------------------------------------- /egs2/covost2/st1/db.sh: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/st1/db.sh -------------------------------------------------------------------------------- /egs2/covost2/st1/path.sh: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/st1/path.sh -------------------------------------------------------------------------------- /egs2/covost2/st1/scripts: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/st1/scripts -------------------------------------------------------------------------------- /egs2/covost2/st1/st.sh: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/st1/st.sh -------------------------------------------------------------------------------- /egs2/covost2/st1/steps: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/steps -------------------------------------------------------------------------------- /egs2/covost2/st1/utils: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/utils -------------------------------------------------------------------------------- /egs2/csj/asr1/asr.sh: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/asr.sh -------------------------------------------------------------------------------- /egs2/csj/asr1/db.sh: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/db.sh -------------------------------------------------------------------------------- /egs2/csj/asr1/path.sh: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/path.sh -------------------------------------------------------------------------------- /egs2/csj/asr1/pyscripts: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/pyscripts -------------------------------------------------------------------------------- /egs2/csj/asr1/scripts: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/scripts -------------------------------------------------------------------------------- /egs2/csj/asr1/steps: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/steps -------------------------------------------------------------------------------- /egs2/csj/asr1/utils: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/utils -------------------------------------------------------------------------------- /egs2/csmsc/tts1/db.sh: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/db.sh -------------------------------------------------------------------------------- /egs2/csmsc/tts1/path.sh: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/tts1/path.sh -------------------------------------------------------------------------------- /egs2/csmsc/tts1/scripts: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/scripts -------------------------------------------------------------------------------- /egs2/csmsc/tts1/steps: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/steps -------------------------------------------------------------------------------- /egs2/csmsc/tts1/tts.sh: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/tts1/tts.sh -------------------------------------------------------------------------------- /egs2/csmsc/tts1/utils: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/utils -------------------------------------------------------------------------------- /egs2/css10/tts1/db.sh: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/db.sh -------------------------------------------------------------------------------- /egs2/css10/tts1/path.sh: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/tts1/path.sh -------------------------------------------------------------------------------- /egs2/css10/tts1/scripts: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/scripts -------------------------------------------------------------------------------- /egs2/css10/tts1/steps: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/steps -------------------------------------------------------------------------------- /egs2/css10/tts1/tts.sh: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/tts1/tts.sh -------------------------------------------------------------------------------- /egs2/css10/tts1/utils: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/utils -------------------------------------------------------------------------------- /egs2/cvss/asr1/asr.sh: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/asr.sh -------------------------------------------------------------------------------- /egs2/cvss/asr1/db.sh: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/db.sh -------------------------------------------------------------------------------- /egs2/cvss/asr1/local/path.sh: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /egs2/cvss/asr1/path.sh: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/path.sh -------------------------------------------------------------------------------- /egs2/cvss/asr1/pyscripts: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/pyscripts -------------------------------------------------------------------------------- /egs2/cvss/asr1/scripts: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/scripts -------------------------------------------------------------------------------- /egs2/cvss/s2st1/db.sh: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/s2st1/db.sh -------------------------------------------------------------------------------- /egs2/cvss/s2st1/local/path.sh: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /egs2/cvss/s2st1/path.sh: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/s2st1/path.sh -------------------------------------------------------------------------------- /egs2/cvss/s2st1/s2st.sh: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/s2st1/s2st.sh -------------------------------------------------------------------------------- /egs2/cvss/s2st1/scripts: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/s2st1/scripts -------------------------------------------------------------------------------- /egs2/cvss/st1/db.sh: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/st1/db.sh -------------------------------------------------------------------------------- /egs2/cvss/st1/local/path.sh: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /egs2/cvss/st1/path.sh: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/st1/path.sh -------------------------------------------------------------------------------- /egs2/cvss/st1/pyscripts: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/st1/pyscripts -------------------------------------------------------------------------------- /egs2/cvss/st1/scripts: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/st1/scripts -------------------------------------------------------------------------------- /egs2/cvss/st1/st.sh: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/st1/st.sh -------------------------------------------------------------------------------- /egs2/dcase22_task1/asr1/local/path.sh: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /egs2/dirha_wsj/asr1/asr.sh: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/asr.sh -------------------------------------------------------------------------------- /egs2/dirha_wsj/asr1/db.sh: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/db.sh -------------------------------------------------------------------------------- /egs2/dirha_wsj/asr1/local/path.sh: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /egs2/dirha_wsj/asr1/steps: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/steps -------------------------------------------------------------------------------- /egs2/dirha_wsj/asr1/utils: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/utils -------------------------------------------------------------------------------- /egs2/dns_icassp21/enh1/db.sh: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/db.sh -------------------------------------------------------------------------------- /egs2/dns_icassp21/enh1/local/path.sh: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /egs2/dns_icassp21/enh1/steps: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/steps -------------------------------------------------------------------------------- /egs2/dns_icassp21/enh1/utils: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/utils -------------------------------------------------------------------------------- /egs2/dns_icassp22/enh1/db.sh: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/db.sh -------------------------------------------------------------------------------- /egs2/dns_icassp22/enh1/local/path.sh: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /egs2/dns_icassp22/enh1/steps: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/steps -------------------------------------------------------------------------------- /egs2/dns_icassp22/enh1/utils: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/utils -------------------------------------------------------------------------------- /egs2/dns_ins20/enh1/db.sh: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/db.sh -------------------------------------------------------------------------------- /egs2/dns_ins20/enh1/enh.sh: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/enh1/enh.sh -------------------------------------------------------------------------------- /egs2/dns_ins20/enh1/local/path.sh: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /egs2/dns_ins20/enh1/steps: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/steps -------------------------------------------------------------------------------- /egs2/dns_ins20/enh1/utils: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/utils -------------------------------------------------------------------------------- /egs2/dns_ins21/enh1/db.sh: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/db.sh -------------------------------------------------------------------------------- /egs2/dns_ins21/enh1/enh.sh: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/enh1/enh.sh -------------------------------------------------------------------------------- /egs2/dns_ins21/enh1/local/path.sh: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /egs2/dns_ins21/enh1/steps: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/steps -------------------------------------------------------------------------------- /egs2/dns_ins21/enh1/utils: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/utils -------------------------------------------------------------------------------- /egs2/dsing/asr1/asr.sh: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/asr.sh -------------------------------------------------------------------------------- /egs2/dsing/asr1/db.sh: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/db.sh -------------------------------------------------------------------------------- /egs2/dsing/asr1/local/path.sh: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /egs2/dsing/asr1/path.sh: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/path.sh -------------------------------------------------------------------------------- /egs2/dsing/asr1/scripts: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/scripts -------------------------------------------------------------------------------- /egs2/dsing/asr1/steps: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/steps -------------------------------------------------------------------------------- /egs2/dsing/asr1/utils: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/utils -------------------------------------------------------------------------------- /egs2/easycom/avsr1/asr.sh: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/asr.sh -------------------------------------------------------------------------------- /egs2/easycom/avsr1/db.sh: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/db.sh -------------------------------------------------------------------------------- /egs2/easycom/avsr1/local/path.sh: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /egs2/easycom/avsr1/path.sh: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/path.sh -------------------------------------------------------------------------------- /egs2/easycom/avsr1/scripts: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/scripts -------------------------------------------------------------------------------- /egs2/easycom/avsr1/steps: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/steps -------------------------------------------------------------------------------- /egs2/easycom/avsr1/utils: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/utils -------------------------------------------------------------------------------- /egs2/esc50/asr1/asr.sh: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/asr.sh -------------------------------------------------------------------------------- /egs2/esc50/asr1/cmd.sh: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/cmd.sh -------------------------------------------------------------------------------- /egs2/esc50/asr1/db.sh: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/db.sh -------------------------------------------------------------------------------- /egs2/esc50/asr1/local/path.sh: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /egs2/esc50/asr1/path.sh: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/path.sh -------------------------------------------------------------------------------- /egs2/esc50/asr1/scripts: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/scripts -------------------------------------------------------------------------------- /egs2/esc50/asr1/steps: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/steps -------------------------------------------------------------------------------- /egs2/esc50/asr1/utils: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/utils -------------------------------------------------------------------------------- /egs2/espnet_tutorial/asvspoof1/local/path.sh: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /egs2/fisher_callhome_spanish/asr1/local/path.sh: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /egs2/fleurs/asr1/asr.sh: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/asr.sh -------------------------------------------------------------------------------- /egs2/fleurs/asr1/db.sh: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/db.sh -------------------------------------------------------------------------------- /egs2/fleurs/asr1/path.sh: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/path.sh -------------------------------------------------------------------------------- /egs2/fleurs/asr1/scripts: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/scripts -------------------------------------------------------------------------------- /egs2/fleurs/asr1/steps: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/steps -------------------------------------------------------------------------------- /egs2/fleurs/asr1/utils: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/utils -------------------------------------------------------------------------------- /egs2/freesound/asr1/asr.sh: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/asr.sh -------------------------------------------------------------------------------- /egs2/freesound/asr1/cmd.sh: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/cmd.sh -------------------------------------------------------------------------------- /egs2/freesound/asr1/db.sh: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/db.sh -------------------------------------------------------------------------------- /egs2/freesound/asr1/local/path.sh: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /egs2/freesound/asr1/steps: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/steps -------------------------------------------------------------------------------- /egs2/freesound/asr1/utils: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/utils -------------------------------------------------------------------------------- /egs2/fsc/asr1/asr.sh: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/asr.sh -------------------------------------------------------------------------------- /egs2/fsc/asr1/db.sh: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/db.sh -------------------------------------------------------------------------------- /egs2/fsc/asr1/local/path.sh: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /egs2/fsc/asr1/path.sh: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/path.sh -------------------------------------------------------------------------------- /egs2/fsc/asr1/pyscripts: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/pyscripts -------------------------------------------------------------------------------- /egs2/fsc/asr1/scripts: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/scripts -------------------------------------------------------------------------------- /egs2/fsc/asr1/steps: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/steps -------------------------------------------------------------------------------- /egs2/fsc/asr1/utils: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/utils -------------------------------------------------------------------------------- /egs2/fsc_challenge/asr1/local/path.sh: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /egs2/fsc_challenge/slu1/local/path.sh: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /egs2/fsc_unseen/asr1/asr.sh: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/asr.sh -------------------------------------------------------------------------------- /egs2/fsc_unseen/asr1/db.sh: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/db.sh -------------------------------------------------------------------------------- /egs2/fsc_unseen/asr1/local/path.sh: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /egs2/fsc_unseen/asr1/steps: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/steps -------------------------------------------------------------------------------- /egs2/fsc_unseen/asr1/utils: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/utils -------------------------------------------------------------------------------- /egs2/gigaspeech/asr1/asr.sh: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/asr.sh -------------------------------------------------------------------------------- /egs2/gigaspeech/asr1/db.sh: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/db.sh -------------------------------------------------------------------------------- /egs2/gigaspeech/asr1/local/path.sh: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /egs2/gigaspeech/asr1/steps: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/steps -------------------------------------------------------------------------------- /egs2/gigaspeech/asr1/utils: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/utils -------------------------------------------------------------------------------- /egs2/gigaspeech/asr2/db.sh: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr2/db.sh -------------------------------------------------------------------------------- /egs2/gigaspeech/asr2/local/path.sh: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /egs2/gigaspeech/asr2/steps: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr2/steps -------------------------------------------------------------------------------- /egs2/gigaspeech/asr2/utils: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr2/utils -------------------------------------------------------------------------------- /egs2/googlei18n_lowresource/tts1/local/path.sh: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /egs2/grabo/asr1/asr.sh: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/asr.sh -------------------------------------------------------------------------------- /egs2/grabo/asr1/db.sh: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/db.sh -------------------------------------------------------------------------------- /egs2/grabo/asr1/local/path.sh: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /egs2/grabo/asr1/path.sh: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/path.sh -------------------------------------------------------------------------------- /egs2/grabo/asr1/scripts: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/scripts -------------------------------------------------------------------------------- /egs2/grabo/asr1/steps: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/steps -------------------------------------------------------------------------------- /egs2/grabo/asr1/utils: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/utils -------------------------------------------------------------------------------- /egs2/gramvaani/asr1/asr.sh: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/asr.sh -------------------------------------------------------------------------------- /egs2/gramvaani/asr1/db.sh: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/db.sh -------------------------------------------------------------------------------- /egs2/gramvaani/asr1/local/path.sh: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /egs2/gramvaani/asr1/steps: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/steps -------------------------------------------------------------------------------- /egs2/gramvaani/asr1/utils: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/utils -------------------------------------------------------------------------------- /egs2/harpervalley/asr1/db.sh: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/db.sh -------------------------------------------------------------------------------- /egs2/harpervalley/asr1/local/path.sh: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /egs2/harpervalley/asr1/steps: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/steps -------------------------------------------------------------------------------- /egs2/harpervalley/asr1/utils: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/utils -------------------------------------------------------------------------------- /egs2/hifitts/tts1/db.sh: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/db.sh -------------------------------------------------------------------------------- /egs2/hifitts/tts1/local/path.sh: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /egs2/hifitts/tts1/path.sh: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/tts1/path.sh -------------------------------------------------------------------------------- /egs2/hifitts/tts1/scripts: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/scripts -------------------------------------------------------------------------------- /egs2/hifitts/tts1/steps: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/steps -------------------------------------------------------------------------------- /egs2/hifitts/tts1/tts.sh: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/tts1/tts.sh -------------------------------------------------------------------------------- /egs2/hifitts/tts1/utils: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/utils -------------------------------------------------------------------------------- /egs2/hkust/asr1/asr.sh: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/asr.sh -------------------------------------------------------------------------------- /egs2/hkust/asr1/conf/decode.yaml: -------------------------------------------------------------------------------- 1 | tuning/decode.yaml -------------------------------------------------------------------------------- /egs2/hkust/asr1/db.sh: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/db.sh -------------------------------------------------------------------------------- /egs2/hkust/asr1/local/path.sh: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /egs2/hkust/asr1/path.sh: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/path.sh -------------------------------------------------------------------------------- /egs2/hkust/asr1/scripts: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/scripts -------------------------------------------------------------------------------- /egs2/hkust/asr1/steps: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/steps -------------------------------------------------------------------------------- /egs2/hkust/asr1/utils: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/utils -------------------------------------------------------------------------------- /egs2/how2/asr1/asr.sh: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/asr.sh -------------------------------------------------------------------------------- /egs2/how2/asr1/cmd.sh: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/cmd.sh -------------------------------------------------------------------------------- /egs2/how2/asr1/db.sh: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/db.sh -------------------------------------------------------------------------------- /egs2/how2/asr1/path.sh: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/path.sh -------------------------------------------------------------------------------- /egs2/how2/asr1/pyscripts: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/pyscripts -------------------------------------------------------------------------------- /egs2/how2/asr1/scripts: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/scripts -------------------------------------------------------------------------------- /egs2/how2/asr1/steps: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/steps -------------------------------------------------------------------------------- /egs2/how2/asr1/utils: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/utils -------------------------------------------------------------------------------- /egs2/how2_2000h/asr1/asr.sh: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/asr.sh -------------------------------------------------------------------------------- /egs2/how2_2000h/asr1/cmd.sh: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/cmd.sh -------------------------------------------------------------------------------- /egs2/how2_2000h/asr1/db.sh: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/db.sh -------------------------------------------------------------------------------- /egs2/how2_2000h/asr1/steps: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/steps -------------------------------------------------------------------------------- /egs2/how2_2000h/asr1/utils: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/utils -------------------------------------------------------------------------------- /egs2/how2_2000h/sum1/asr.sh: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/asr.sh -------------------------------------------------------------------------------- /egs2/how2_2000h/sum1/cmd.sh: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/cmd.sh -------------------------------------------------------------------------------- /egs2/how2_2000h/sum1/db.sh: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/db.sh -------------------------------------------------------------------------------- /egs2/how2_2000h/sum1/steps: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/steps -------------------------------------------------------------------------------- /egs2/how2_2000h/sum1/utils: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/utils -------------------------------------------------------------------------------- /egs2/hub4_spanish/asr1/db.sh: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/db.sh -------------------------------------------------------------------------------- /egs2/hub4_spanish/asr1/local/path.sh: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /egs2/hub4_spanish/asr1/steps: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/steps -------------------------------------------------------------------------------- /egs2/hub4_spanish/asr1/utils: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/utils -------------------------------------------------------------------------------- /egs2/hui_acg/tts1/db.sh: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/db.sh -------------------------------------------------------------------------------- /egs2/hui_acg/tts1/path.sh: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/tts1/path.sh -------------------------------------------------------------------------------- /egs2/hui_acg/tts1/scripts: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/scripts -------------------------------------------------------------------------------- /egs2/hui_acg/tts1/steps: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/steps -------------------------------------------------------------------------------- /egs2/hui_acg/tts1/tts.sh: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/tts1/tts.sh -------------------------------------------------------------------------------- /egs2/hui_acg/tts1/utils: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/utils -------------------------------------------------------------------------------- /egs2/iam/ocr1/asr.sh: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/asr.sh -------------------------------------------------------------------------------- /egs2/iam/ocr1/db.sh: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/db.sh -------------------------------------------------------------------------------- /egs2/iam/ocr1/local/path.sh: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /egs2/iam/ocr1/path.sh: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/path.sh -------------------------------------------------------------------------------- /egs2/iam/ocr1/pyscripts: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/pyscripts -------------------------------------------------------------------------------- /egs2/iam/ocr1/scripts: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/scripts -------------------------------------------------------------------------------- /egs2/iam/ocr1/steps: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/steps -------------------------------------------------------------------------------- /egs2/iam/ocr1/utils: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/utils -------------------------------------------------------------------------------- /egs2/iemocap/asr1/asr.sh: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/asr.sh -------------------------------------------------------------------------------- /egs2/iemocap/asr1/db.sh: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/db.sh -------------------------------------------------------------------------------- /egs2/iemocap/asr1/local/path.sh: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /egs2/iemocap/asr1/path.sh: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/path.sh -------------------------------------------------------------------------------- /egs2/iemocap/asr1/scripts: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/scripts -------------------------------------------------------------------------------- /egs2/iemocap/asr1/steps: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/steps -------------------------------------------------------------------------------- /egs2/iemocap/asr1/utils: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/utils -------------------------------------------------------------------------------- /egs2/indic_speech/tts1/db.sh: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/db.sh -------------------------------------------------------------------------------- /egs2/indic_speech/tts1/local/path.sh: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /egs2/indic_speech/tts1/steps: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/steps -------------------------------------------------------------------------------- /egs2/indic_speech/tts1/utils: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/utils -------------------------------------------------------------------------------- /egs2/interspeech2024_dsu_challenge/asr2/local/path.sh: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /egs2/itako/svs1/db.sh: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/db.sh -------------------------------------------------------------------------------- /egs2/itako/svs1/local/path.sh: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /egs2/itako/svs1/path.sh: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/svs1/path.sh -------------------------------------------------------------------------------- /egs2/itako/svs1/scripts: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/svs1/scripts -------------------------------------------------------------------------------- /egs2/itako/svs1/svs.sh: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/svs1/svs.sh -------------------------------------------------------------------------------- /egs2/itako/svs1/utils: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/utils -------------------------------------------------------------------------------- /egs2/iwslt14/mt1/db.sh: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/mt1/db.sh -------------------------------------------------------------------------------- /egs2/iwslt14/mt1/local/path.sh: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /egs2/iwslt14/mt1/mt.sh: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/mt1/mt.sh -------------------------------------------------------------------------------- /egs2/iwslt14/mt1/path.sh: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/mt1/path.sh -------------------------------------------------------------------------------- /egs2/iwslt14/mt1/scripts: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/mt1/scripts -------------------------------------------------------------------------------- /egs2/iwslt14/mt1/steps: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/steps -------------------------------------------------------------------------------- /egs2/iwslt14/mt1/utils: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/utils -------------------------------------------------------------------------------- /egs2/iwslt21_low_resource/asr1/local/path.sh: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /egs2/iwslt22_dialect/asr1/local/path.sh: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /egs2/iwslt22_low_resource/st1/local/path.sh: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /egs2/iwslt24_indic/st1/db.sh: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/db.sh -------------------------------------------------------------------------------- /egs2/iwslt24_indic/st1/local/path.sh: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /egs2/iwslt24_indic/st1/st.sh: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/st1/st.sh -------------------------------------------------------------------------------- /egs2/iwslt24_indic/st1/steps: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/steps -------------------------------------------------------------------------------- /egs2/iwslt24_indic/st1/utils: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/utils -------------------------------------------------------------------------------- /egs2/jdcinal/asr1/asr.sh: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/asr.sh -------------------------------------------------------------------------------- /egs2/jdcinal/asr1/db.sh: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/db.sh -------------------------------------------------------------------------------- /egs2/jdcinal/asr1/local/path.sh: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /egs2/jdcinal/asr1/path.sh: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/path.sh -------------------------------------------------------------------------------- /egs2/jdcinal/asr1/scripts: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/scripts -------------------------------------------------------------------------------- /egs2/jdcinal/asr1/steps: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/steps -------------------------------------------------------------------------------- /egs2/jdcinal/asr1/utils: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/utils -------------------------------------------------------------------------------- /egs2/jkac/tts1/db.sh: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/db.sh -------------------------------------------------------------------------------- /egs2/jkac/tts1/path.sh: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/tts1/path.sh -------------------------------------------------------------------------------- /egs2/jkac/tts1/pyscripts: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/pyscripts -------------------------------------------------------------------------------- /egs2/jkac/tts1/scripts: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/scripts -------------------------------------------------------------------------------- /egs2/jkac/tts1/steps: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/steps -------------------------------------------------------------------------------- /egs2/jkac/tts1/tts.sh: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/tts1/tts.sh -------------------------------------------------------------------------------- /egs2/jkac/tts1/utils: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/utils -------------------------------------------------------------------------------- /egs2/jmd/tts1/db.sh: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/db.sh -------------------------------------------------------------------------------- /egs2/jmd/tts1/path.sh: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/tts1/path.sh -------------------------------------------------------------------------------- /egs2/jmd/tts1/pyscripts: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/pyscripts -------------------------------------------------------------------------------- /egs2/jmd/tts1/scripts: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/scripts -------------------------------------------------------------------------------- /egs2/jmd/tts1/steps: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/steps -------------------------------------------------------------------------------- /egs2/jmd/tts1/tts.sh: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/tts1/tts.sh -------------------------------------------------------------------------------- /egs2/jmd/tts1/utils: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/utils -------------------------------------------------------------------------------- /egs2/jsss/tts1/db.sh: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/db.sh -------------------------------------------------------------------------------- /egs2/jsss/tts1/path.sh: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/tts1/path.sh -------------------------------------------------------------------------------- /egs2/jsss/tts1/pyscripts: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/pyscripts -------------------------------------------------------------------------------- /egs2/jsss/tts1/scripts: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/scripts -------------------------------------------------------------------------------- /egs2/jsss/tts1/steps: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/steps -------------------------------------------------------------------------------- /egs2/jsss/tts1/tts.sh: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/tts1/tts.sh -------------------------------------------------------------------------------- /egs2/jsss/tts1/utils: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/utils -------------------------------------------------------------------------------- /egs2/jsut/asr1/asr.sh: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/asr.sh -------------------------------------------------------------------------------- /egs2/jsut/asr1/db.sh: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/db.sh -------------------------------------------------------------------------------- /egs2/jsut/asr1/path.sh: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/path.sh -------------------------------------------------------------------------------- /egs2/jsut/asr1/steps: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/steps -------------------------------------------------------------------------------- /egs2/jsut/asr1/utils: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/utils -------------------------------------------------------------------------------- /egs2/jsut/tts1/db.sh: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/db.sh -------------------------------------------------------------------------------- /egs2/jsut/tts1/steps: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/steps -------------------------------------------------------------------------------- /egs2/jsut/tts1/tts.sh: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/tts1/tts.sh -------------------------------------------------------------------------------- /egs2/jsut/tts1/utils: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/utils -------------------------------------------------------------------------------- /egs2/jsut_song/svs1/local/path.sh: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /egs2/jtubespeech/asr1/local/path.sh: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /egs2/jtubespeech/tts1/sid: -------------------------------------------------------------------------------- 1 | ../../vctk/tts1/sid -------------------------------------------------------------------------------- /egs2/jv_openslr35/asr1/local/path.sh: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /egs2/jvs/tts1/db.sh: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/db.sh -------------------------------------------------------------------------------- /egs2/jvs/tts1/path.sh: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/tts1/path.sh -------------------------------------------------------------------------------- /egs2/jvs/tts1/scripts: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/scripts -------------------------------------------------------------------------------- /egs2/jvs/tts1/steps: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/steps -------------------------------------------------------------------------------- /egs2/jvs/tts1/tts.sh: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/tts1/tts.sh -------------------------------------------------------------------------------- /egs2/jvs/tts1/utils: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/utils -------------------------------------------------------------------------------- /egs2/kathbath/asr1/local/path.sh: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /egs2/kiritan/svs1/db.sh: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/db.sh -------------------------------------------------------------------------------- /egs2/kiritan/svs1/local/path.sh: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /egs2/kiritan/svs1/utils: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/utils -------------------------------------------------------------------------------- /egs2/kising/svs1/db.sh: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/db.sh -------------------------------------------------------------------------------- /egs2/kising/svs1/local/path.sh: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /egs2/kising/svs1/utils: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/utils -------------------------------------------------------------------------------- /egs2/ksc/asr1/asr.sh: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/asr.sh -------------------------------------------------------------------------------- /egs2/ksc/asr1/db.sh: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/db.sh -------------------------------------------------------------------------------- /egs2/ksc/asr1/local/path.sh: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /egs2/ksc/asr1/path.sh: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/path.sh -------------------------------------------------------------------------------- /egs2/ksc/asr1/scripts: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/scripts -------------------------------------------------------------------------------- /egs2/ksc/asr1/utils: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/utils -------------------------------------------------------------------------------- /egs2/ksponspeech/asr1/local/path.sh: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /egs2/kss/tts1/db.sh: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/db.sh -------------------------------------------------------------------------------- /egs2/kss/tts1/path.sh: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/tts1/path.sh -------------------------------------------------------------------------------- /egs2/kss/tts1/scripts: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/scripts -------------------------------------------------------------------------------- /egs2/kss/tts1/steps: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/steps -------------------------------------------------------------------------------- /egs2/kss/tts1/tts.sh: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/tts1/tts.sh -------------------------------------------------------------------------------- /egs2/kss/tts1/utils: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/utils -------------------------------------------------------------------------------- /egs2/l3das22/enh1/db.sh: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/db.sh -------------------------------------------------------------------------------- /egs2/l3das22/enh1/local/path.sh: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /egs2/l3das22/enh1/steps: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/steps -------------------------------------------------------------------------------- /egs2/l3das22/enh1/utils: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/utils -------------------------------------------------------------------------------- /egs2/laborotv/asr1/local/path.sh: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /egs2/libriheavy_medium/asr2/local/path.sh: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /egs2/libriheavy_small/asr2/local/path.sh: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /egs2/librilight_limited/asr1/local/path.sh: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /egs2/librimix/asr1/local/path.sh: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /egs2/librimix/diar1/local/path.sh: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /egs2/librimix/enh1/local/path.sh: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /egs2/librimix/enh_diar1/local/path.sh: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /egs2/librimix/sot_asr1/local/path.sh: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /egs2/librimix/tse1/local/path.sh: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /egs2/librispeech/asr1/local/path.sh: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /egs2/librispeech/asr2/db.sh: -------------------------------------------------------------------------------- 1 | ../asr1/db.sh -------------------------------------------------------------------------------- /egs2/librispeech/asr2/local/path.sh: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /egs2/librispeech_100/asr1/local/path.sh: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /egs2/librispeech_100/asr2/local/path.sh: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /egs2/libritts/asr1/local/path.sh: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /egs2/libritts/codec1/local/path.sh: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /egs2/libritts/speechlm1/local/path.sh: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /egs2/libritts/tts1/local/path.sh: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /egs2/libritts_r/tts1/local/path.sh: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /egs2/ljspeech/tts1/local/path.sh: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /egs2/ljspeech/tts2/sid: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/tts2/sid -------------------------------------------------------------------------------- /egs2/lrs2/lipreading1/local/path.sh: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /egs2/lrs3/asr1/asr.sh: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/asr.sh -------------------------------------------------------------------------------- /egs2/lrs3/asr1/db.sh: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/db.sh -------------------------------------------------------------------------------- /egs2/lrs3/asr1/local/path.sh: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /egs2/lrs3/asr1/steps: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/steps -------------------------------------------------------------------------------- /egs2/lrs3/asr1/utils: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/utils -------------------------------------------------------------------------------- /egs2/lrs3/avsr1/asr.sh: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/asr.sh -------------------------------------------------------------------------------- /egs2/lrs3/avsr1/db.sh: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/db.sh -------------------------------------------------------------------------------- /egs2/lrs3/avsr1/local/path.sh: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /egs2/lrs3/avsr1/utils: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/utils -------------------------------------------------------------------------------- /egs2/lt_slurp_spatialized/enh1/local/path.sh: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /egs2/lt_speech_commands/asr1/local/path.sh: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /egs2/m4singer/svs1/local/path.sh: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /egs2/m_ailabs/tts1/local/path.sh: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /egs2/magicdata/asr1/local/path.sh: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /egs2/makerere/asr1/local/path.sh: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /egs2/media/asr1/asr.sh: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/asr.sh -------------------------------------------------------------------------------- /egs2/media/asr1/db.sh: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/db.sh -------------------------------------------------------------------------------- /egs2/media/asr1/local/path.sh: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /egs2/media/asr1/steps: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/steps -------------------------------------------------------------------------------- /egs2/media/asr1/utils: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/utils -------------------------------------------------------------------------------- /egs2/mediaspeech/asr1/local/path.sh: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /egs2/meld/asr1/asr.sh: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/asr.sh -------------------------------------------------------------------------------- /egs2/meld/asr1/db.sh: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/db.sh -------------------------------------------------------------------------------- /egs2/meld/asr1/steps: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/steps -------------------------------------------------------------------------------- /egs2/meld/asr1/utils: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/utils -------------------------------------------------------------------------------- /egs2/microsoft_speech/asr1/local/path.sh: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /egs2/mini_an4/asr1/local/path.sh: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /egs2/mini_an4/asr2/local/path.sh: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /egs2/mini_an4/codec1/local/path.sh: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /egs2/mini_an4/enh1/downloads: -------------------------------------------------------------------------------- 1 | ../asr1/downloads -------------------------------------------------------------------------------- /egs2/mini_an4/enh1/local: -------------------------------------------------------------------------------- 1 | ../asr1/local -------------------------------------------------------------------------------- /egs2/mini_an4/enh_asr1/local/path.sh: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /egs2/mini_an4/lm1/db.sh: -------------------------------------------------------------------------------- 1 | ../asr1/db.sh -------------------------------------------------------------------------------- /egs2/mini_an4/lm1/lm.sh: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/lm1/lm.sh -------------------------------------------------------------------------------- /egs2/mini_an4/lm1/local/path.sh: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /egs2/mini_an4/lm1/pyscripts: -------------------------------------------------------------------------------- 1 | ../asr1/pyscripts -------------------------------------------------------------------------------- /egs2/mini_an4/lm1/scripts: -------------------------------------------------------------------------------- 1 | ../asr1/scripts -------------------------------------------------------------------------------- /egs2/mini_an4/lm1/utils: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/utils -------------------------------------------------------------------------------- /egs2/mini_an4/s2st1/local/path.sh: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /egs2/mini_an4/s2st1/steps: -------------------------------------------------------------------------------- 1 | ../asr1/steps -------------------------------------------------------------------------------- /egs2/mini_an4/s2st1/utils: -------------------------------------------------------------------------------- 1 | ../asr1/utils -------------------------------------------------------------------------------- /egs2/mini_an4/s2t1/local/path.sh: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /egs2/mini_an4/speechlm1/local/path.sh: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /egs2/mini_an4/spk1/local/path.sh: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /egs2/mini_an4/ssl1/local/path.sh: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /egs2/mini_an4/st1/db.sh: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/db.sh -------------------------------------------------------------------------------- /egs2/mini_an4/st1/local/path.sh: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /egs2/mini_an4/st1/st.sh: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/st1/st.sh -------------------------------------------------------------------------------- /egs2/mini_an4/st1/steps: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/steps -------------------------------------------------------------------------------- /egs2/mini_an4/st1/utils: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/utils -------------------------------------------------------------------------------- /egs2/mini_an4/tse1/local/path.sh: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /egs2/mini_an4/tts1/downloads: -------------------------------------------------------------------------------- 1 | ../asr1/downloads -------------------------------------------------------------------------------- /egs2/mini_an4/tts1/local: -------------------------------------------------------------------------------- 1 | ../asr1/local -------------------------------------------------------------------------------- /egs2/mini_an4/tts2/local/path.sh: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /egs2/mini_an4/tts2/sid: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/tts2/sid -------------------------------------------------------------------------------- /egs2/misp2021/asr1/local/path.sh: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /egs2/misp2021/avsr1/local/path.sh: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /egs2/ml_openslr63/asr1/local/path.sh: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /egs2/ml_superb/asr1/local/multi_superb_score.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /egs2/ml_superb/asr1/local/path.sh: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /egs2/mls/asr1/asr.sh: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/asr.sh -------------------------------------------------------------------------------- /egs2/mls/asr1/cmd.sh: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/cmd.sh -------------------------------------------------------------------------------- /egs2/mls/asr1/db.sh: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/db.sh -------------------------------------------------------------------------------- /egs2/mls/asr1/local/path.sh: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /egs2/mls/asr1/path.sh: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/path.sh -------------------------------------------------------------------------------- /egs2/mls/asr1/scripts: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/scripts -------------------------------------------------------------------------------- /egs2/mls/asr1/steps: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/steps -------------------------------------------------------------------------------- /egs2/mls/asr1/utils: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/utils -------------------------------------------------------------------------------- /egs2/mls/asr2/asr2.sh: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr2/asr2.sh -------------------------------------------------------------------------------- /egs2/mls/asr2/db.sh: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr2/db.sh -------------------------------------------------------------------------------- /egs2/mls/asr2/local/path.sh: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /egs2/mls/asr2/path.sh: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr2/path.sh -------------------------------------------------------------------------------- /egs2/mls/asr2/scripts: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr2/scripts -------------------------------------------------------------------------------- /egs2/mls/asr2/steps: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr2/steps -------------------------------------------------------------------------------- /egs2/mls/asr2/utils: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr2/utils -------------------------------------------------------------------------------- /egs2/mr_openslr64/asr1/local/path.sh: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /egs2/ms_indic_18/asr1/local/path.sh: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /egs2/mucs21_subtask1/asr1/local/path.sh: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /egs2/mucs21_subtask2/asr1/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /egs2/mucs21_subtask2/asr1/local/path.sh: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /egs2/musdb18/enh1/db.sh: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/db.sh -------------------------------------------------------------------------------- /egs2/musdb18/enh1/local/path.sh: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /egs2/musdb18/enh1/steps: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/steps -------------------------------------------------------------------------------- /egs2/musdb18/enh1/utils: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/utils -------------------------------------------------------------------------------- /egs2/must_c/asr1/db.sh: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/db.sh -------------------------------------------------------------------------------- /egs2/must_c/asr1/local: -------------------------------------------------------------------------------- 1 | ../st1/local -------------------------------------------------------------------------------- /egs2/must_c/asr1/steps: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/steps -------------------------------------------------------------------------------- /egs2/must_c/asr1/utils: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/utils -------------------------------------------------------------------------------- /egs2/must_c/st1/db.sh: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/st1/db.sh -------------------------------------------------------------------------------- /egs2/must_c/st1/local/path.sh: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /egs2/must_c/st1/st.sh: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/st1/st.sh -------------------------------------------------------------------------------- /egs2/must_c/st1/steps: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/steps -------------------------------------------------------------------------------- /egs2/must_c/st1/utils: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/utils -------------------------------------------------------------------------------- /egs2/must_c_v2/asr1/local/path.sh: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /egs2/must_c_v2/st1/db.sh: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/st1/db.sh -------------------------------------------------------------------------------- /egs2/must_c_v2/st1/local/path.sh: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /egs2/must_c_v2/st1/st.sh: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/st1/st.sh -------------------------------------------------------------------------------- /egs2/must_c_v2/st1/tar.gz/BdlILT.zip: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /egs2/mustard/asr1/db.sh: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/db.sh -------------------------------------------------------------------------------- /egs2/mustard/asr1/local/path.sh: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /egs2/mustard/asr1/steps: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/steps -------------------------------------------------------------------------------- /egs2/mustard/asr1/utils: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/utils -------------------------------------------------------------------------------- /egs2/mustard_plus_plus/asr1/local/path.sh: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /egs2/namine_ritsu_utagoe_db/svs1/local/path.sh: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /egs2/natsume/svs1/db.sh: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/db.sh -------------------------------------------------------------------------------- /egs2/natsume/svs1/local/path.sh: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /egs2/natsume/svs1/utils: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/utils -------------------------------------------------------------------------------- /egs2/nit_song070/svs1/local/path.sh: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /egs2/nsc/asr1/asr.sh: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/asr.sh -------------------------------------------------------------------------------- /egs2/nsc/asr1/db.sh: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/db.sh -------------------------------------------------------------------------------- /egs2/nsc/asr1/local/path.sh: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /egs2/nsc/asr1/path.sh: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/path.sh -------------------------------------------------------------------------------- /egs2/nsc/asr1/scripts: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/scripts -------------------------------------------------------------------------------- /egs2/nsc/asr1/steps: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/steps -------------------------------------------------------------------------------- /egs2/nsc/asr1/utils: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/utils -------------------------------------------------------------------------------- /egs2/ofuton_p_utagoe_db/svs1/local/path.sh: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /egs2/oniku_kurumi_utagoe_db/svs1/local/path.sh: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /egs2/open_li110/asr1/local/path.sh: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /egs2/open_li52/asr1/local/path.sh: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /egs2/opencpop/svs1/local/path.sh: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /egs2/owsm_v1/s2t1/db.sh: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/s2t1/db.sh -------------------------------------------------------------------------------- /egs2/owsm_v1/s2t1/local/path.sh: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /egs2/owsm_v1/s2t1/utils: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/s2t1/utils -------------------------------------------------------------------------------- /egs2/owsm_v2/s2t1/db.sh: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/s2t1/db.sh -------------------------------------------------------------------------------- /egs2/owsm_v2/s2t1/local/path.sh: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /egs2/owsm_v2/s2t1/utils: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/s2t1/utils -------------------------------------------------------------------------------- /egs2/owsm_v3.1/s2t1/local/path.sh: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /egs2/owsm_v3/s2t1/db.sh: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/s2t1/db.sh -------------------------------------------------------------------------------- /egs2/owsm_v3/s2t1/local/path.sh: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /egs2/owsm_v3/s2t1/utils: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/s2t1/utils -------------------------------------------------------------------------------- /egs2/pjs/svs1/db.sh: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/db.sh -------------------------------------------------------------------------------- /egs2/pjs/svs1/local/path.sh: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /egs2/pjs/svs1/path.sh: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/svs1/path.sh -------------------------------------------------------------------------------- /egs2/pjs/svs1/scripts: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/svs1/scripts -------------------------------------------------------------------------------- /egs2/pjs/svs1/svs.sh: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/svs1/svs.sh -------------------------------------------------------------------------------- /egs2/pjs/svs1/utils: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/utils -------------------------------------------------------------------------------- /egs2/portmedia_dom/asr1/local/path.sh: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /egs2/portmedia_lang/asr1/local/path.sh: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /egs2/primewords_chinese/asr1/local/path.sh: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /egs2/puebla_nahuatl/asr1/local/path.sh: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /egs2/puebla_nahuatl/st1/local/path.sh: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /egs2/qasr_tts/tts1/local/path.sh: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /egs2/reverb/asr1/db.sh: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/db.sh -------------------------------------------------------------------------------- /egs2/reverb/asr1/local/path.sh: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /egs2/reverb/asr1/steps: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/steps -------------------------------------------------------------------------------- /egs2/reverb/asr1/utils: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/utils -------------------------------------------------------------------------------- /egs2/reverb/enh1/db.sh: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/db.sh -------------------------------------------------------------------------------- /egs2/reverb/enh1/steps: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/steps -------------------------------------------------------------------------------- /egs2/reverb/enh1/utils: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/utils -------------------------------------------------------------------------------- /egs2/ru_open_stt/asr1/local/path.sh: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /egs2/ruslan/tts1/db.sh: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/db.sh -------------------------------------------------------------------------------- /egs2/ruslan/tts1/steps: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/steps -------------------------------------------------------------------------------- /egs2/ruslan/tts1/utils: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/utils -------------------------------------------------------------------------------- /egs2/sdsv21/spk1/db.sh: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/spk1/db.sh -------------------------------------------------------------------------------- /egs2/sdsv21/spk1/local/path.sh: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /egs2/sdsv21/spk1/steps: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/spk1/steps -------------------------------------------------------------------------------- /egs2/sdsv21/spk1/utils: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/spk1/utils -------------------------------------------------------------------------------- /egs2/seame/asr1/asr.sh: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/asr.sh -------------------------------------------------------------------------------- /egs2/seame/asr1/db.sh: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/db.sh -------------------------------------------------------------------------------- /egs2/seame/asr1/steps: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/steps -------------------------------------------------------------------------------- /egs2/seame/asr1/utils: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/utils -------------------------------------------------------------------------------- /egs2/sinhala/asr1/db.sh: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/db.sh -------------------------------------------------------------------------------- /egs2/sinhala/asr1/local/path.sh: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /egs2/sinhala/asr1/steps: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/steps -------------------------------------------------------------------------------- /egs2/sinhala/asr1/utils: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/utils -------------------------------------------------------------------------------- /egs2/siwis/tts1/db.sh: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/db.sh -------------------------------------------------------------------------------- /egs2/siwis/tts1/steps: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/steps -------------------------------------------------------------------------------- /egs2/siwis/tts1/tts.sh: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/tts1/tts.sh -------------------------------------------------------------------------------- /egs2/siwis/tts1/utils: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/utils -------------------------------------------------------------------------------- /egs2/slue-voxceleb/asr1/local/path.sh: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /egs2/slue-voxceleb/slu1/local/path.sh: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /egs2/slue-voxpopuli/asr1/local/path.sh: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /egs2/slue-voxpopuli/slu1/local/path.sh: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /egs2/slurp/asr1/asr.sh: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/asr.sh -------------------------------------------------------------------------------- /egs2/slurp/asr1/db.sh: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/db.sh -------------------------------------------------------------------------------- /egs2/slurp/asr1/local/path.sh: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /egs2/slurp/asr1/steps: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/steps -------------------------------------------------------------------------------- /egs2/slurp/asr1/utils: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/utils -------------------------------------------------------------------------------- /egs2/slurp/slu1/db.sh: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/slu1/db.sh -------------------------------------------------------------------------------- /egs2/slurp/slu1/local/path.sh: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /egs2/slurp/slu1/slu.sh: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/slu1/slu.sh -------------------------------------------------------------------------------- /egs2/slurp/slu1/steps: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/steps -------------------------------------------------------------------------------- /egs2/slurp/slu1/utils: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/utils -------------------------------------------------------------------------------- /egs2/slurp_spatialized/asr1/local/path.sh: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /egs2/sms_wsj/enh1/db.sh: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/db.sh -------------------------------------------------------------------------------- /egs2/sms_wsj/enh1/steps: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/steps -------------------------------------------------------------------------------- /egs2/sms_wsj/enh1/utils: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/utils -------------------------------------------------------------------------------- /egs2/snips/asr1/asr.sh: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/asr.sh -------------------------------------------------------------------------------- /egs2/snips/asr1/db.sh: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/db.sh -------------------------------------------------------------------------------- /egs2/snips/asr1/local/path.sh: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /egs2/snips/asr1/steps: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/steps -------------------------------------------------------------------------------- /egs2/snips/asr1/utils: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/utils -------------------------------------------------------------------------------- /egs2/speechcommands/asr1/local/path.sh: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /egs2/spgispeech/asr1/local/path.sh: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /egs2/spring_speech/asr.sh: -------------------------------------------------------------------------------- 1 | ../TEMPLATE/asr1/asr.sh -------------------------------------------------------------------------------- /egs2/spring_speech/db.sh: -------------------------------------------------------------------------------- 1 | ../TEMPLATE/asr1/db.sh -------------------------------------------------------------------------------- /egs2/spring_speech/steps: -------------------------------------------------------------------------------- 1 | ../TEMPLATE/asr1/steps/ -------------------------------------------------------------------------------- /egs2/spring_speech/utils: -------------------------------------------------------------------------------- 1 | ../TEMPLATE/asr1/utils/ -------------------------------------------------------------------------------- /egs2/stop/asr1/asr.sh: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/asr.sh -------------------------------------------------------------------------------- /egs2/stop/asr1/cmd.sh: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/cmd.sh -------------------------------------------------------------------------------- /egs2/stop/asr1/db.sh: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/db.sh -------------------------------------------------------------------------------- /egs2/stop/asr1/local/path.sh: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /egs2/stop/asr1_pipeline/local/path.sh: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /egs2/su_openslr36/asr1/local/path.sh: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /egs2/swbd/asr1/asr.sh: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/asr.sh -------------------------------------------------------------------------------- /egs2/swbd/asr1/db.sh: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/db.sh -------------------------------------------------------------------------------- /egs2/swbd/asr1/local/path.sh: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /egs2/swbd/asr1/steps: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/steps -------------------------------------------------------------------------------- /egs2/swbd/asr1/utils: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/utils -------------------------------------------------------------------------------- /egs2/swbd_da/asr1/db.sh: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/db.sh -------------------------------------------------------------------------------- /egs2/swbd_da/asr1/local/path.sh: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /egs2/swbd_da/asr1/steps: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/steps -------------------------------------------------------------------------------- /egs2/swbd_da/asr1/utils: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/utils -------------------------------------------------------------------------------- /egs2/swbd_sentiment/asr1/local/path.sh: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /egs2/talromur/tts1/local/path.sh: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /egs2/talromur2/tts1/local/path.sh: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /egs2/tedlium2/asr1/local/path.sh: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /egs2/tedlium3/asr1/local/path.sh: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /egs2/tedlium3/asr2/local/path.sh: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /egs2/tedx_spanish_openslr67/asr1/local/path.sh: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /egs2/thchs30/asr1/db.sh: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/db.sh -------------------------------------------------------------------------------- /egs2/thchs30/asr1/local/path.sh: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /egs2/thchs30/asr1/steps: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/steps -------------------------------------------------------------------------------- /egs2/thchs30/asr1/utils: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/utils -------------------------------------------------------------------------------- /egs2/thchs30/tts1/db.sh: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/db.sh -------------------------------------------------------------------------------- /egs2/thchs30/tts1/local/path.sh: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /egs2/thchs30/tts1/steps: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/steps -------------------------------------------------------------------------------- /egs2/thchs30/tts1/utils: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/utils -------------------------------------------------------------------------------- /egs2/timit/asr1/asr.sh: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/asr.sh -------------------------------------------------------------------------------- /egs2/timit/asr1/db.sh: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/db.sh -------------------------------------------------------------------------------- /egs2/timit/asr1/local/path.sh: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /egs2/timit/asr1/steps: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/steps -------------------------------------------------------------------------------- /egs2/timit/asr1/utils: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/utils -------------------------------------------------------------------------------- /egs2/timit/uasr1/db.sh: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/uasr1/db.sh -------------------------------------------------------------------------------- /egs2/timit/uasr1/steps: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/steps -------------------------------------------------------------------------------- /egs2/timit/uasr1/utils: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/utils -------------------------------------------------------------------------------- /egs2/totonac/asr1/db.sh: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/db.sh -------------------------------------------------------------------------------- /egs2/totonac/asr1/local/path.sh: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /egs2/totonac/asr1/steps: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/steps -------------------------------------------------------------------------------- /egs2/totonac/asr1/utils: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/utils -------------------------------------------------------------------------------- /egs2/universal_se_v1/enh1/local/path.sh: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /egs2/urgent24/enh1/local/path.sh: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /egs2/uslu14/asr1/db.sh: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/db.sh -------------------------------------------------------------------------------- /egs2/uslu14/asr1/local/path.sh: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /egs2/vctk/asr1/asr.sh: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/asr.sh -------------------------------------------------------------------------------- /egs2/vctk/asr1/db.sh: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/db.sh -------------------------------------------------------------------------------- /egs2/vctk/asr1/local/path.sh: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /egs2/vctk/asr1/steps: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/steps -------------------------------------------------------------------------------- /egs2/vctk/asr1/utils: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/utils -------------------------------------------------------------------------------- /egs2/vctk/tts1/db.sh: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/db.sh -------------------------------------------------------------------------------- /egs2/vctk/tts1/local/path.sh: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /egs2/vctk/tts1/steps: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/steps -------------------------------------------------------------------------------- /egs2/vctk/tts1/tts.sh: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/tts1/tts.sh -------------------------------------------------------------------------------- /egs2/vctk/tts1/utils: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/utils -------------------------------------------------------------------------------- /egs2/vctk_noisy/enh1/local/path.sh: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /egs2/vctk_noisyreverb/enh1/local/path.sh: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /egs2/vivos/asr1/asr.sh: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/asr.sh -------------------------------------------------------------------------------- /egs2/vivos/asr1/db.sh: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/db.sh -------------------------------------------------------------------------------- /egs2/vivos/asr1/local/path.sh: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /egs2/vivos/asr1/steps: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/steps -------------------------------------------------------------------------------- /egs2/vivos/asr1/utils: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/utils -------------------------------------------------------------------------------- /egs2/voices/asr1/db.sh: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/db.sh -------------------------------------------------------------------------------- /egs2/voices/asr1/local/path.sh: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /egs2/voices/asr1/utils: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/utils -------------------------------------------------------------------------------- /egs2/voxblink/spk1/local/path.sh: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /egs2/voxceleb/asr1/local/path.sh: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /egs2/voxceleb/spk1/local/path.sh: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /egs2/voxforge/lid1/local/path.sh: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /egs2/voxtlm_v1/lm1/lm.sh: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/lm1/lm.sh -------------------------------------------------------------------------------- /egs2/voxtlm_v1/lm1/local/path.sh: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /egs2/wenetspeech/asr1/local/path.sh: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /egs2/wham/enh1/db.sh: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/db.sh -------------------------------------------------------------------------------- /egs2/wham/enh1/enh.sh: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/enh1/enh.sh -------------------------------------------------------------------------------- /egs2/wham/enh1/local/path.sh: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /egs2/wham/enh1/steps: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/steps -------------------------------------------------------------------------------- /egs2/wham/enh1/utils: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/utils -------------------------------------------------------------------------------- /egs2/whamr/enh1/db.sh: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/db.sh -------------------------------------------------------------------------------- /egs2/whamr/enh1/enh.sh: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/enh1/enh.sh -------------------------------------------------------------------------------- /egs2/whamr/enh1/local/path.sh: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /egs2/whamr/enh1/steps: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/steps -------------------------------------------------------------------------------- /egs2/whamr/enh1/utils: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/utils -------------------------------------------------------------------------------- /egs2/wsj/asr1/asr.sh: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/asr.sh -------------------------------------------------------------------------------- /egs2/wsj/asr1/db.sh: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/db.sh -------------------------------------------------------------------------------- /egs2/wsj/asr1/local/path.sh: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /egs2/wsj/asr1/path.sh: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/path.sh -------------------------------------------------------------------------------- /egs2/wsj/asr1/scripts: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/scripts -------------------------------------------------------------------------------- /egs2/wsj/asr1/steps: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/steps -------------------------------------------------------------------------------- /egs2/wsj/asr1/utils: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/utils -------------------------------------------------------------------------------- /egs2/wsj0_2mix/enh1/local/path.sh: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /egs2/wsj0_2mix/mixit_enh1/local/path.sh: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /egs2/wsj0_2mix/tse1/local/path.sh: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /egs2/wsj0_2mix_spatialized/enh1/local/path.sh: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /egs2/wsj0_chime3/enh1/local/path.sh: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /egs2/wsj0_reverb/enh1/local/path.sh: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /egs2/wsj_kinect/enh1/local/path.sh: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /egs2/yesno/asr1/asr.sh: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/asr.sh -------------------------------------------------------------------------------- /egs2/yesno/asr1/db.sh: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/db.sh -------------------------------------------------------------------------------- /egs2/yesno/asr1/local/path.sh: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /egs2/yesno/asr1/steps: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/steps -------------------------------------------------------------------------------- /egs2/yesno/asr1/utils: -------------------------------------------------------------------------------- 1 | ../../TEMPLATE/asr1/utils -------------------------------------------------------------------------------- /egs2/yoloxochitl_mixtec/asr1/local/path.sh: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /espnet/version.txt: -------------------------------------------------------------------------------- 1 | 202402 2 | -------------------------------------------------------------------------------- /espnet2/asr/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /espnet2/asr/decoder/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /espnet2/asr/encoder/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /espnet2/asr/frontend/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /espnet2/asr/layers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /espnet2/asr/postencoder/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /espnet2/asr/preencoder/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /espnet2/asr/specaug/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /espnet2/asr/transducer/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /espnet2/asr_transducer/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /espnet2/asr_transducer/decoder/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /espnet2/asr_transducer/encoder/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /espnet2/asr_transducer/frontend/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /espnet2/asvspoof/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /espnet2/asvspoof/decoder/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /espnet2/asvspoof/loss/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /espnet2/bin/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /espnet2/diar/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /espnet2/diar/attractor/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /espnet2/diar/decoder/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /espnet2/diar/layers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /espnet2/diar/separator/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /espnet2/enh/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /espnet2/enh/decoder/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /espnet2/enh/diffusion/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /espnet2/enh/encoder/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /espnet2/enh/extractor/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /espnet2/enh/layers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /espnet2/enh/layers/ncsnpp_utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /espnet2/enh/loss/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /espnet2/enh/loss/criterions/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /espnet2/enh/loss/wrappers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /espnet2/enh/separator/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /espnet2/fileio/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /espnet2/fst/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /espnet2/gan_codec/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /espnet2/gan_codec/encodec/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /espnet2/gan_codec/shared/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /espnet2/gan_codec/shared/decoder/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /espnet2/gan_codec/shared/encoder/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /espnet2/gan_codec/shared/loss/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /espnet2/gan_codec/shared/quantizer/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /espnet2/gan_svs/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /espnet2/gan_tts/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /espnet2/hubert/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /espnet2/iterators/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /espnet2/layers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /espnet2/lm/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /espnet2/main_funcs/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /espnet2/mt/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /espnet2/mt/frontend/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /espnet2/optimizers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /espnet2/s2st/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /espnet2/s2st/aux_attention/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /espnet2/s2st/losses/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /espnet2/s2st/synthesizer/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /espnet2/s2st/tgt_feats_extract/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /espnet2/s2t/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /espnet2/samplers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /espnet2/schedulers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /espnet2/slu/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /espnet2/slu/postdecoder/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /espnet2/slu/postencoder/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /espnet2/speechlm/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /espnet2/speechlm/core_lm/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /espnet2/speechlm/module/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /espnet2/speechlm/tokenizer/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /espnet2/spk/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /espnet2/spk/encoder/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /espnet2/spk/layers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /espnet2/spk/loss/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /espnet2/spk/pooling/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /espnet2/spk/projector/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /espnet2/st/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /espnet2/svs/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /espnet2/svs/feats_extract/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /espnet2/svs/naive_rnn/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /espnet2/svs/singing_tacotron/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /espnet2/svs/xiaoice/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /espnet2/tasks/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /espnet2/text/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /espnet2/torch_utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /espnet2/train/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /espnet2/tts/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /espnet2/tts/feats_extract/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /espnet2/tts/gst/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /espnet2/tts2/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /espnet2/tts2/feats_extract/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /espnet2/uasr/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /espnet2/uasr/discriminator/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /espnet2/uasr/generator/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /espnet2/uasr/loss/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /espnet2/uasr/segmenter/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /espnet2/utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/espnet2/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/espnet2/asr/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/espnet2/asr/decoder/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/espnet2/asr/encoder/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/espnet2/asr/frontend/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/espnet2/bin/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/espnet2/diar/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/espnet2/fileio/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/espnet2/iterators/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/espnet2/layers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/espnet2/lm/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/espnet2/main_funcs/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/espnet2/optimizers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/espnet2/s2t/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/espnet2/samplers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/espnet2/schedulers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/espnet2/tasks/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/espnet2/text/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/espnet2/torch_utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/espnet2/train/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/espnet2/tts/feats_extract/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/espnet2/utils/__init__.py: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------