mirror of https://github.com/coqui-ai/TTS.git
update folder structure
This commit is contained in:
parent
22b96e8994
commit
613339d144
28
README.md
28
README.md
|
@ -84,18 +84,22 @@ Or you can use ```requirements.txt``` to install the requirements only.
|
||||||
|
|
||||||
### Directory Structure
|
### Directory Structure
|
||||||
```
|
```
|
||||||
|- TTS/
|
|- bin/ (folder for all the executables.)
|
||||||
| |- train.py (train your TTS model.)
|
|- train*.py (train your target model.)
|
||||||
| |- distribute.py (train your TTS model using Multiple GPUs)
|
|- distribute.py (train your TTS model using Multiple GPUs.)
|
||||||
| |- config.json (TTS model configuration file)
|
|- compute_statistics.py (compute dataset statistics for normalization.)
|
||||||
| |- tf/ (Tensorflow 2 utilities and model implementations)
|
|- convert*.py (convert target torch model to TF.)
|
||||||
| |- layers/ (model layer definitions)
|
|- notebooks/ (Jupyter Notebooks for model evaluation, parameter selection and data analysis.)
|
||||||
| |- models/ (model definitions)
|
|- utils/ (common utilities.)
|
||||||
| |- notebooks/ (Jupyter Notebooks for model evaluation and parameter selection)
|
|- tts/ (text to speech models)
|
||||||
| |- data_analysis/ (TTS Dataset analysis tools and notebooks.)
|
|- layers/ (model layer definitions)
|
||||||
| |- utils/ (TTS utilities -io, visualization, data processing etc.-)
|
|- models/ (model definitions)
|
||||||
| |- speaker_encoder/ (Speaker Encoder implementation with the same folder structure.)
|
|- tf/ (Tensorflow 2 utilities and model implementations)
|
||||||
| |- vocoder/ (Vocoder implementations with the same folder structure.)
|
|- utils/ (model specific utilities.)
|
||||||
|
|- speaker_encoder/ (Speaker Encoder models.)
|
||||||
|
|- (same)
|
||||||
|
|- vocoder/ (Vocoder models.)
|
||||||
|
|- (same)
|
||||||
```
|
```
|
||||||
|
|
||||||
### Docker
|
### Docker
|
||||||
|
|
Loading…
Reference in New Issue