├── .github └── workflows │ └── importtest.yml ├── .gitignore ├── LICENSE ├── Makefile ├── README.md ├── doc ├── Makefile └── images │ ├── Makefile │ ├── example_id.svg │ ├── example_id.tex │ └── room.svg ├── scripts ├── cmd.sh ├── get_nnet3_model.bash ├── get_tri3_model.bash ├── path.sh ├── prepare_nnet3_model_training.bash └── run_ivector_common.sh ├── setup.py ├── sms_wsj ├── __init__.py ├── database │ ├── __init__.py │ ├── create_intermediate_json.py │ ├── create_json_for_written_files.py │ ├── create_rirs.py │ ├── database.py │ ├── dynamic_mixing.py │ ├── utils.py │ ├── write_files.py │ └── wsj │ │ ├── __init__.py │ │ ├── create_json.py │ │ └── write_wav.py ├── examples │ ├── metric_target_comparison.py │ └── reference_systems.py ├── io.py ├── kaldi │ ├── __init__.py │ ├── get_kaldi_wer.py │ └── utils.py ├── reverb │ ├── __init__.py │ ├── reverb_utils.py │ ├── rotation.py │ └── scenario.py ├── train_baseline_asr.py └── visualization.py └── tests ├── database.py └── test_import.py /.github/workflows/importtest.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgnt/sms_wsj/HEAD/.github/workflows/importtest.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgnt/sms_wsj/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgnt/sms_wsj/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgnt/sms_wsj/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgnt/sms_wsj/HEAD/README.md -------------------------------------------------------------------------------- /doc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgnt/sms_wsj/HEAD/doc/Makefile -------------------------------------------------------------------------------- /doc/images/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgnt/sms_wsj/HEAD/doc/images/Makefile -------------------------------------------------------------------------------- /doc/images/example_id.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgnt/sms_wsj/HEAD/doc/images/example_id.svg -------------------------------------------------------------------------------- /doc/images/example_id.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgnt/sms_wsj/HEAD/doc/images/example_id.tex -------------------------------------------------------------------------------- /doc/images/room.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgnt/sms_wsj/HEAD/doc/images/room.svg -------------------------------------------------------------------------------- /scripts/cmd.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgnt/sms_wsj/HEAD/scripts/cmd.sh -------------------------------------------------------------------------------- /scripts/get_nnet3_model.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgnt/sms_wsj/HEAD/scripts/get_nnet3_model.bash -------------------------------------------------------------------------------- /scripts/get_tri3_model.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgnt/sms_wsj/HEAD/scripts/get_tri3_model.bash -------------------------------------------------------------------------------- /scripts/path.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgnt/sms_wsj/HEAD/scripts/path.sh -------------------------------------------------------------------------------- /scripts/prepare_nnet3_model_training.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgnt/sms_wsj/HEAD/scripts/prepare_nnet3_model_training.bash -------------------------------------------------------------------------------- /scripts/run_ivector_common.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgnt/sms_wsj/HEAD/scripts/run_ivector_common.sh -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgnt/sms_wsj/HEAD/setup.py -------------------------------------------------------------------------------- /sms_wsj/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgnt/sms_wsj/HEAD/sms_wsj/__init__.py -------------------------------------------------------------------------------- /sms_wsj/database/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgnt/sms_wsj/HEAD/sms_wsj/database/__init__.py -------------------------------------------------------------------------------- /sms_wsj/database/create_intermediate_json.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgnt/sms_wsj/HEAD/sms_wsj/database/create_intermediate_json.py -------------------------------------------------------------------------------- /sms_wsj/database/create_json_for_written_files.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgnt/sms_wsj/HEAD/sms_wsj/database/create_json_for_written_files.py -------------------------------------------------------------------------------- /sms_wsj/database/create_rirs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgnt/sms_wsj/HEAD/sms_wsj/database/create_rirs.py -------------------------------------------------------------------------------- /sms_wsj/database/database.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgnt/sms_wsj/HEAD/sms_wsj/database/database.py -------------------------------------------------------------------------------- /sms_wsj/database/dynamic_mixing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgnt/sms_wsj/HEAD/sms_wsj/database/dynamic_mixing.py -------------------------------------------------------------------------------- /sms_wsj/database/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgnt/sms_wsj/HEAD/sms_wsj/database/utils.py -------------------------------------------------------------------------------- /sms_wsj/database/write_files.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgnt/sms_wsj/HEAD/sms_wsj/database/write_files.py -------------------------------------------------------------------------------- /sms_wsj/database/wsj/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sms_wsj/database/wsj/create_json.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgnt/sms_wsj/HEAD/sms_wsj/database/wsj/create_json.py -------------------------------------------------------------------------------- /sms_wsj/database/wsj/write_wav.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgnt/sms_wsj/HEAD/sms_wsj/database/wsj/write_wav.py -------------------------------------------------------------------------------- /sms_wsj/examples/metric_target_comparison.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgnt/sms_wsj/HEAD/sms_wsj/examples/metric_target_comparison.py -------------------------------------------------------------------------------- /sms_wsj/examples/reference_systems.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgnt/sms_wsj/HEAD/sms_wsj/examples/reference_systems.py -------------------------------------------------------------------------------- /sms_wsj/io.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgnt/sms_wsj/HEAD/sms_wsj/io.py -------------------------------------------------------------------------------- /sms_wsj/kaldi/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sms_wsj/kaldi/get_kaldi_wer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgnt/sms_wsj/HEAD/sms_wsj/kaldi/get_kaldi_wer.py -------------------------------------------------------------------------------- /sms_wsj/kaldi/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgnt/sms_wsj/HEAD/sms_wsj/kaldi/utils.py -------------------------------------------------------------------------------- /sms_wsj/reverb/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sms_wsj/reverb/reverb_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgnt/sms_wsj/HEAD/sms_wsj/reverb/reverb_utils.py -------------------------------------------------------------------------------- /sms_wsj/reverb/rotation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgnt/sms_wsj/HEAD/sms_wsj/reverb/rotation.py -------------------------------------------------------------------------------- /sms_wsj/reverb/scenario.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgnt/sms_wsj/HEAD/sms_wsj/reverb/scenario.py -------------------------------------------------------------------------------- /sms_wsj/train_baseline_asr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgnt/sms_wsj/HEAD/sms_wsj/train_baseline_asr.py -------------------------------------------------------------------------------- /sms_wsj/visualization.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgnt/sms_wsj/HEAD/sms_wsj/visualization.py -------------------------------------------------------------------------------- /tests/database.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgnt/sms_wsj/HEAD/tests/database.py -------------------------------------------------------------------------------- /tests/test_import.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgnt/sms_wsj/HEAD/tests/test_import.py --------------------------------------------------------------------------------