├── .gitignore ├── LICENSE ├── README.md ├── nix ├── __init__.py ├── models │ └── TTS.py └── tokenizers │ └── tokenizer_en.py └── requirements.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rendchevi/nix-tts/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rendchevi/nix-tts/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rendchevi/nix-tts/HEAD/README.md -------------------------------------------------------------------------------- /nix/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /nix/models/TTS.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rendchevi/nix-tts/HEAD/nix/models/TTS.py -------------------------------------------------------------------------------- /nix/tokenizers/tokenizer_en.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rendchevi/nix-tts/HEAD/nix/tokenizers/tokenizer_en.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | numpy 2 | onnxruntime==1.7.0 3 | phonemizer==2.2.1 4 | --------------------------------------------------------------------------------