gitextract_gq5vqgst/ ├── .gitattributes ├── .gitignore ├── LICENSE ├── README.md ├── engine.py ├── glados.py ├── models/ │ ├── emb/ │ │ ├── glados_p1.pt │ │ └── glados_p2.pt │ ├── en_us_cmudict_ipa_forward.pt │ ├── glados-new.pt │ ├── glados.pt │ ├── vocoder-cpu-hq.pt │ ├── vocoder-cpu-lq.pt │ └── vocoder-gpu.pt ├── requirements.txt └── utils/ ├── __init__.py ├── text/ │ ├── LICENSE │ ├── __init__.py │ ├── cleaners.py │ ├── numbers.py │ ├── recipes.py │ ├── symbols.py │ └── tokenizer.py └── tools.py