https://github.com/seblemaguer/hts-gradle-training-demo
HTS voice building using gradle
https://github.com/seblemaguer/hts-gradle-training-demo
hmm speech synthesis training
Last synced: 9 days ago
JSON representation
HTS voice building using gradle
- Host: GitHub
- URL: https://github.com/seblemaguer/hts-gradle-training-demo
- Owner: seblemaguer
- Created: 2017-02-21T11:12:45.000Z (almost 9 years ago)
- Default Branch: master
- Last Pushed: 2021-12-12T12:14:51.000Z (almost 4 years ago)
- Last Synced: 2025-06-26T17:32:01.051Z (5 months ago)
- Topics: hmm, speech, synthesis, training
- Language: Perl
- Homepage:
- Size: 422 KB
- Stars: 1
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Parametrical acoustic/articulatory speech synthesis
The goal of this repository is to show how to use the different gradle plugins to achieve a full HTS training/synthesis/analysis process.
## Repository architecture
The repository is divided into 4 main project directories:
- **extraction** which contains the coefficient extraction project.
- **training** which contains the model training project. This project should be run after the extraction project.
- **synthesis** which contains the test corpus synthesis project. This project should be run after the training project.
- **analysis** which contains the analysis project. This project should be run after the synthesis **and** extraction projects.
A special directory has been created to store the configuration files **src/configuration/**
## How to Run
```sh
# Some example parameters
export NB_PROC=2
export EVAL_NAME=cmu_slt_arctic_straight_dnn
(cd 10-extraction; ./gradlew b --parallel --max-workers=$NB_PROC -Deval_name=$EVAL_NAME)
(cd 20-training; ./gradlew b --parallel --max-workers=$NB_PROC -Deval_name=$EVAL_NAME)
(cd 30-synthesis; ./gradlew b --parallel --max-workers=$NB_PROC -Deval_name=$EVAL_NAME)
(cd 40-analysis; ./gradlew b --parallel --max-workers=$NB_PROC -Deval_name=$EVAL_NAME)
```
## References