├── .gitignore ├── LICENSE ├── README.md ├── alignment.py ├── create_custom_tokenizer.py ├── dataloaders.py ├── denoiser.py ├── example.png ├── finetune_wav2vec_seq2seq.py ├── models.py ├── reproduce.sh ├── requirements.txt ├── resampling.py ├── submission.py └── train_valid_split.py /.gitignore: -------------------------------------------------------------------------------- 1 | /data 2 | /pretrained 3 | /checkpoints 4 | __pycache__ 5 | .DS_Store -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Telegram-Zalo/zac2022-lyric-alignment/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Telegram-Zalo/zac2022-lyric-alignment/HEAD/README.md -------------------------------------------------------------------------------- /alignment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Telegram-Zalo/zac2022-lyric-alignment/HEAD/alignment.py -------------------------------------------------------------------------------- /create_custom_tokenizer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Telegram-Zalo/zac2022-lyric-alignment/HEAD/create_custom_tokenizer.py -------------------------------------------------------------------------------- /dataloaders.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Telegram-Zalo/zac2022-lyric-alignment/HEAD/dataloaders.py -------------------------------------------------------------------------------- /denoiser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Telegram-Zalo/zac2022-lyric-alignment/HEAD/denoiser.py -------------------------------------------------------------------------------- /example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Telegram-Zalo/zac2022-lyric-alignment/HEAD/example.png -------------------------------------------------------------------------------- /finetune_wav2vec_seq2seq.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Telegram-Zalo/zac2022-lyric-alignment/HEAD/finetune_wav2vec_seq2seq.py -------------------------------------------------------------------------------- /models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Telegram-Zalo/zac2022-lyric-alignment/HEAD/models.py -------------------------------------------------------------------------------- /reproduce.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Telegram-Zalo/zac2022-lyric-alignment/HEAD/reproduce.sh -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Telegram-Zalo/zac2022-lyric-alignment/HEAD/requirements.txt -------------------------------------------------------------------------------- /resampling.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Telegram-Zalo/zac2022-lyric-alignment/HEAD/resampling.py -------------------------------------------------------------------------------- /submission.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Telegram-Zalo/zac2022-lyric-alignment/HEAD/submission.py -------------------------------------------------------------------------------- /train_valid_split.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Telegram-Zalo/zac2022-lyric-alignment/HEAD/train_valid_split.py --------------------------------------------------------------------------------