├── .gitignore ├── LICENSE ├── README.md ├── images ├── diagram.png ├── diagram1.png └── diagram2.png └── voicebox └── __init__.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpeechifyInc/Meta-voicebox/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpeechifyInc/Meta-voicebox/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpeechifyInc/Meta-voicebox/HEAD/README.md -------------------------------------------------------------------------------- /images/diagram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpeechifyInc/Meta-voicebox/HEAD/images/diagram.png -------------------------------------------------------------------------------- /images/diagram1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpeechifyInc/Meta-voicebox/HEAD/images/diagram1.png -------------------------------------------------------------------------------- /images/diagram2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpeechifyInc/Meta-voicebox/HEAD/images/diagram2.png -------------------------------------------------------------------------------- /voicebox/__init__.py: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------