-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
ec0a6dc
commit c9427bc
Showing
1 changed file
with
28 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,28 @@ | ||
# tts_project_1 | ||
# FastSpeech2 | ||
|
||
## Installation guide | ||
|
||
Installation guide is pretty simple. | ||
|
||
Minimal requirements sufficient to run the code are just pytorch and the following libraries, make sure to run the following code | ||
```shell | ||
pip install wandb | ||
pip install textgrid | ||
pip install librosa | ||
pip install pyworld | ||
pip install inflect | ||
``` | ||
|
||
Weights can be downloaded here https://www.kaggle.com/datasets/yanmaximov/myanchik | ||
|
||
To run the inference please run the following code | ||
|
||
```shell | ||
python test.py -r WEIGHTS -c CONFIG | ||
``` | ||
|
||
## Details | ||
|
||
This is just a fine implementation of FastSpeech2 model, without unnecessary details and things. | ||
|
||
During project author tried to study optimization, however it did not workout. Though, the generations are pretty good. |