├── .gitignore ├── LICENSE ├── LJ003-0259-synth.wav ├── LJ016-0073-synth.wav ├── README.md ├── attend.py ├── encodec_util.py ├── g2p_util.py ├── general_out.wav ├── ljspeech.py ├── main.ipynb ├── megabyte.py ├── old_out.wav └── train.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiscellaneousStuff/PhoneLM/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiscellaneousStuff/PhoneLM/HEAD/LICENSE -------------------------------------------------------------------------------- /LJ003-0259-synth.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiscellaneousStuff/PhoneLM/HEAD/LJ003-0259-synth.wav -------------------------------------------------------------------------------- /LJ016-0073-synth.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiscellaneousStuff/PhoneLM/HEAD/LJ016-0073-synth.wav -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiscellaneousStuff/PhoneLM/HEAD/README.md -------------------------------------------------------------------------------- /attend.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiscellaneousStuff/PhoneLM/HEAD/attend.py -------------------------------------------------------------------------------- /encodec_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiscellaneousStuff/PhoneLM/HEAD/encodec_util.py -------------------------------------------------------------------------------- /g2p_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiscellaneousStuff/PhoneLM/HEAD/g2p_util.py -------------------------------------------------------------------------------- /general_out.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiscellaneousStuff/PhoneLM/HEAD/general_out.wav -------------------------------------------------------------------------------- /ljspeech.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiscellaneousStuff/PhoneLM/HEAD/ljspeech.py -------------------------------------------------------------------------------- /main.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiscellaneousStuff/PhoneLM/HEAD/main.ipynb -------------------------------------------------------------------------------- /megabyte.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiscellaneousStuff/PhoneLM/HEAD/megabyte.py -------------------------------------------------------------------------------- /old_out.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiscellaneousStuff/PhoneLM/HEAD/old_out.wav -------------------------------------------------------------------------------- /train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiscellaneousStuff/PhoneLM/HEAD/train.py --------------------------------------------------------------------------------