├── Dockerfile ├── LICENSE ├── README.md └── a2l ├── cmd.sh ├── conf ├── decode.config ├── dict │ ├── extra_questions.txt │ ├── lexicon_raw.txt │ ├── nonsilence_phones.txt │ ├── optional_silence.txt │ └── silence_phones.txt ├── mfcc.conf ├── mfcc_hires.conf ├── queue.conf └── vad.conf ├── environment.yml ├── local ├── align_chain.sh ├── alignment │ ├── build_biased_lm.sh │ ├── build_transducer.sh │ ├── classes │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-36.pyc │ │ │ ├── entry.cpython-36.pyc │ │ │ ├── entry_manager.cpython-36.pyc │ │ │ └── word_time_entry.cpython-36.pyc │ │ ├── entry.py │ │ ├── entry_manager.py │ │ └── word_time_entry.py │ ├── cleanup_status.py │ ├── correct_segment.py │ ├── decode_biased.sh │ ├── decode_biased_ivec.sh │ ├── format_text_and_segment.py │ ├── gen_transducer.py │ ├── int2sym.py │ ├── islands_to_status.py │ ├── postprocess_segments.py │ ├── prepare_word_timings.sh │ ├── segment_to_actual_word_time.py │ └── sym2int.py ├── convert_ctm.pl ├── data_preparation.py ├── data_preparation_ALT.py ├── demucs │ └── separate.py ├── extend_lexicon.py ├── format_output_ALT.py ├── generate_output_alignment.sh ├── prepare_dict.sh ├── reformat_ctm.py ├── reformat_phone_post.py ├── remove_unk.py ├── run_lyrics_segmentation.sh ├── run_recursive_segmentation_ivec.sh └── vad_to_segments.sh ├── path.sh └── run_lyrics_alignment_long.sh /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emirdemirel/ASA_ICASSP2021/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emirdemirel/ASA_ICASSP2021/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emirdemirel/ASA_ICASSP2021/HEAD/README.md -------------------------------------------------------------------------------- /a2l/cmd.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emirdemirel/ASA_ICASSP2021/HEAD/a2l/cmd.sh -------------------------------------------------------------------------------- /a2l/conf/decode.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emirdemirel/ASA_ICASSP2021/HEAD/a2l/conf/decode.config -------------------------------------------------------------------------------- /a2l/conf/dict/extra_questions.txt: -------------------------------------------------------------------------------- 1 | SIL SPN 2 | -------------------------------------------------------------------------------- /a2l/conf/dict/lexicon_raw.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emirdemirel/ASA_ICASSP2021/HEAD/a2l/conf/dict/lexicon_raw.txt -------------------------------------------------------------------------------- /a2l/conf/dict/nonsilence_phones.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emirdemirel/ASA_ICASSP2021/HEAD/a2l/conf/dict/nonsilence_phones.txt -------------------------------------------------------------------------------- /a2l/conf/dict/optional_silence.txt: -------------------------------------------------------------------------------- 1 | SIL 2 | -------------------------------------------------------------------------------- /a2l/conf/dict/silence_phones.txt: -------------------------------------------------------------------------------- 1 | SIL 2 | SPN 3 | -------------------------------------------------------------------------------- /a2l/conf/mfcc.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emirdemirel/ASA_ICASSP2021/HEAD/a2l/conf/mfcc.conf -------------------------------------------------------------------------------- /a2l/conf/mfcc_hires.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emirdemirel/ASA_ICASSP2021/HEAD/a2l/conf/mfcc_hires.conf -------------------------------------------------------------------------------- /a2l/conf/queue.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emirdemirel/ASA_ICASSP2021/HEAD/a2l/conf/queue.conf -------------------------------------------------------------------------------- /a2l/conf/vad.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emirdemirel/ASA_ICASSP2021/HEAD/a2l/conf/vad.conf -------------------------------------------------------------------------------- /a2l/environment.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emirdemirel/ASA_ICASSP2021/HEAD/a2l/environment.yml -------------------------------------------------------------------------------- /a2l/local/align_chain.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emirdemirel/ASA_ICASSP2021/HEAD/a2l/local/align_chain.sh -------------------------------------------------------------------------------- /a2l/local/alignment/build_biased_lm.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emirdemirel/ASA_ICASSP2021/HEAD/a2l/local/alignment/build_biased_lm.sh -------------------------------------------------------------------------------- /a2l/local/alignment/build_transducer.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emirdemirel/ASA_ICASSP2021/HEAD/a2l/local/alignment/build_transducer.sh -------------------------------------------------------------------------------- /a2l/local/alignment/classes/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /a2l/local/alignment/classes/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emirdemirel/ASA_ICASSP2021/HEAD/a2l/local/alignment/classes/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /a2l/local/alignment/classes/__pycache__/entry.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emirdemirel/ASA_ICASSP2021/HEAD/a2l/local/alignment/classes/__pycache__/entry.cpython-36.pyc -------------------------------------------------------------------------------- /a2l/local/alignment/classes/__pycache__/entry_manager.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emirdemirel/ASA_ICASSP2021/HEAD/a2l/local/alignment/classes/__pycache__/entry_manager.cpython-36.pyc -------------------------------------------------------------------------------- /a2l/local/alignment/classes/__pycache__/word_time_entry.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emirdemirel/ASA_ICASSP2021/HEAD/a2l/local/alignment/classes/__pycache__/word_time_entry.cpython-36.pyc -------------------------------------------------------------------------------- /a2l/local/alignment/classes/entry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emirdemirel/ASA_ICASSP2021/HEAD/a2l/local/alignment/classes/entry.py -------------------------------------------------------------------------------- /a2l/local/alignment/classes/entry_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emirdemirel/ASA_ICASSP2021/HEAD/a2l/local/alignment/classes/entry_manager.py -------------------------------------------------------------------------------- /a2l/local/alignment/classes/word_time_entry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emirdemirel/ASA_ICASSP2021/HEAD/a2l/local/alignment/classes/word_time_entry.py -------------------------------------------------------------------------------- /a2l/local/alignment/cleanup_status.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emirdemirel/ASA_ICASSP2021/HEAD/a2l/local/alignment/cleanup_status.py -------------------------------------------------------------------------------- /a2l/local/alignment/correct_segment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emirdemirel/ASA_ICASSP2021/HEAD/a2l/local/alignment/correct_segment.py -------------------------------------------------------------------------------- /a2l/local/alignment/decode_biased.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emirdemirel/ASA_ICASSP2021/HEAD/a2l/local/alignment/decode_biased.sh -------------------------------------------------------------------------------- /a2l/local/alignment/decode_biased_ivec.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emirdemirel/ASA_ICASSP2021/HEAD/a2l/local/alignment/decode_biased_ivec.sh -------------------------------------------------------------------------------- /a2l/local/alignment/format_text_and_segment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emirdemirel/ASA_ICASSP2021/HEAD/a2l/local/alignment/format_text_and_segment.py -------------------------------------------------------------------------------- /a2l/local/alignment/gen_transducer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emirdemirel/ASA_ICASSP2021/HEAD/a2l/local/alignment/gen_transducer.py -------------------------------------------------------------------------------- /a2l/local/alignment/int2sym.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emirdemirel/ASA_ICASSP2021/HEAD/a2l/local/alignment/int2sym.py -------------------------------------------------------------------------------- /a2l/local/alignment/islands_to_status.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emirdemirel/ASA_ICASSP2021/HEAD/a2l/local/alignment/islands_to_status.py -------------------------------------------------------------------------------- /a2l/local/alignment/postprocess_segments.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emirdemirel/ASA_ICASSP2021/HEAD/a2l/local/alignment/postprocess_segments.py -------------------------------------------------------------------------------- /a2l/local/alignment/prepare_word_timings.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emirdemirel/ASA_ICASSP2021/HEAD/a2l/local/alignment/prepare_word_timings.sh -------------------------------------------------------------------------------- /a2l/local/alignment/segment_to_actual_word_time.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emirdemirel/ASA_ICASSP2021/HEAD/a2l/local/alignment/segment_to_actual_word_time.py -------------------------------------------------------------------------------- /a2l/local/alignment/sym2int.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emirdemirel/ASA_ICASSP2021/HEAD/a2l/local/alignment/sym2int.py -------------------------------------------------------------------------------- /a2l/local/convert_ctm.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emirdemirel/ASA_ICASSP2021/HEAD/a2l/local/convert_ctm.pl -------------------------------------------------------------------------------- /a2l/local/data_preparation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emirdemirel/ASA_ICASSP2021/HEAD/a2l/local/data_preparation.py -------------------------------------------------------------------------------- /a2l/local/data_preparation_ALT.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emirdemirel/ASA_ICASSP2021/HEAD/a2l/local/data_preparation_ALT.py -------------------------------------------------------------------------------- /a2l/local/demucs/separate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emirdemirel/ASA_ICASSP2021/HEAD/a2l/local/demucs/separate.py -------------------------------------------------------------------------------- /a2l/local/extend_lexicon.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emirdemirel/ASA_ICASSP2021/HEAD/a2l/local/extend_lexicon.py -------------------------------------------------------------------------------- /a2l/local/format_output_ALT.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emirdemirel/ASA_ICASSP2021/HEAD/a2l/local/format_output_ALT.py -------------------------------------------------------------------------------- /a2l/local/generate_output_alignment.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emirdemirel/ASA_ICASSP2021/HEAD/a2l/local/generate_output_alignment.sh -------------------------------------------------------------------------------- /a2l/local/prepare_dict.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emirdemirel/ASA_ICASSP2021/HEAD/a2l/local/prepare_dict.sh -------------------------------------------------------------------------------- /a2l/local/reformat_ctm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emirdemirel/ASA_ICASSP2021/HEAD/a2l/local/reformat_ctm.py -------------------------------------------------------------------------------- /a2l/local/reformat_phone_post.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emirdemirel/ASA_ICASSP2021/HEAD/a2l/local/reformat_phone_post.py -------------------------------------------------------------------------------- /a2l/local/remove_unk.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emirdemirel/ASA_ICASSP2021/HEAD/a2l/local/remove_unk.py -------------------------------------------------------------------------------- /a2l/local/run_lyrics_segmentation.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emirdemirel/ASA_ICASSP2021/HEAD/a2l/local/run_lyrics_segmentation.sh -------------------------------------------------------------------------------- /a2l/local/run_recursive_segmentation_ivec.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emirdemirel/ASA_ICASSP2021/HEAD/a2l/local/run_recursive_segmentation_ivec.sh -------------------------------------------------------------------------------- /a2l/local/vad_to_segments.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emirdemirel/ASA_ICASSP2021/HEAD/a2l/local/vad_to_segments.sh -------------------------------------------------------------------------------- /a2l/path.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emirdemirel/ASA_ICASSP2021/HEAD/a2l/path.sh -------------------------------------------------------------------------------- /a2l/run_lyrics_alignment_long.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emirdemirel/ASA_ICASSP2021/HEAD/a2l/run_lyrics_alignment_long.sh --------------------------------------------------------------------------------