mirror of
https://github.com/shivammehta25/Matcha-TTS.git
synced 2026-02-04 09:49:21 +08:00
updating configs and experiments
This commit is contained in:
10
configs/data/joe_spont_only.yaml
Normal file
10
configs/data/joe_spont_only.yaml
Normal file
@@ -0,0 +1,10 @@
|
||||
defaults:
|
||||
- ljspeech
|
||||
- _self_
|
||||
|
||||
name: joe_spont_only
|
||||
train_filelist_path: data/filelists/joe_spontonly_train.txt
|
||||
valid_filelist_path: data/filelists/joe_spontonly_val.txt
|
||||
data_statistics:
|
||||
mel_mean: -5.882903
|
||||
mel_std: 2.458284
|
||||
10
configs/data/ryan.yaml
Normal file
10
configs/data/ryan.yaml
Normal file
@@ -0,0 +1,10 @@
|
||||
defaults:
|
||||
- ljspeech
|
||||
- _self_
|
||||
|
||||
name: ryan
|
||||
train_filelist_path: data/filelists/ryan_train.csv
|
||||
valid_filelist_path: data/filelists/ryan_val.csv
|
||||
data_statistics:
|
||||
mel_mean: -4.715779
|
||||
mel_std: 2.124502
|
||||
14
configs/experiment/joe_det_dur.yaml
Normal file
14
configs/experiment/joe_det_dur.yaml
Normal file
@@ -0,0 +1,14 @@
|
||||
# @package _global_
|
||||
|
||||
# to execute this experiment run:
|
||||
# python train.py experiment=multispeaker
|
||||
|
||||
defaults:
|
||||
- override /data: joe_spont_only.yaml
|
||||
|
||||
# all parameters below will be merged with parameters from default configurations set above
|
||||
# this allows you to overwrite only specified parameters
|
||||
|
||||
tags: ["joe"]
|
||||
|
||||
run_name: joe_det_dur
|
||||
20
configs/experiment/joe_stoc_dur.yaml
Normal file
20
configs/experiment/joe_stoc_dur.yaml
Normal file
@@ -0,0 +1,20 @@
|
||||
# @package _global_
|
||||
|
||||
# to execute this experiment run:
|
||||
# python train.py experiment=multispeaker
|
||||
|
||||
defaults:
|
||||
- override /data: joe_spont_only.yaml
|
||||
- override /model/duration_predictor: flow_matching.yaml
|
||||
|
||||
# all parameters below will be merged with parameters from default configurations set above
|
||||
# this allows you to overwrite only specified parameters
|
||||
|
||||
tags: ["joe"]
|
||||
|
||||
|
||||
run_name: joe_stoc_dur
|
||||
|
||||
model:
|
||||
duration_predictor:
|
||||
p_dropout: 0.2
|
||||
18
configs/experiment/ryan_det_dur.yaml
Normal file
18
configs/experiment/ryan_det_dur.yaml
Normal file
@@ -0,0 +1,18 @@
|
||||
# @package _global_
|
||||
|
||||
# to execute this experiment run:
|
||||
# python train.py experiment=multispeaker
|
||||
|
||||
defaults:
|
||||
- override /data: joe_spont_only.yaml
|
||||
|
||||
# all parameters below will be merged with parameters from default configurations set above
|
||||
# this allows you to overwrite only specified parameters
|
||||
|
||||
tags: ["ryan"]
|
||||
|
||||
run_name: ryan_det_dur
|
||||
|
||||
|
||||
trainer:
|
||||
max_epochs: 3000
|
||||
24
configs/experiment/ryan_stoc_dur.yaml
Normal file
24
configs/experiment/ryan_stoc_dur.yaml
Normal file
@@ -0,0 +1,24 @@
|
||||
# @package _global_
|
||||
|
||||
# to execute this experiment run:
|
||||
# python train.py experiment=multispeaker
|
||||
|
||||
defaults:
|
||||
- override /data: joe_spont_only.yaml
|
||||
- override /model/duration_predictor: flow_matching.yaml
|
||||
|
||||
# all parameters below will be merged with parameters from default configurations set above
|
||||
# this allows you to overwrite only specified parameters
|
||||
|
||||
tags: ["ryan"]
|
||||
|
||||
|
||||
run_name: ryan_stoc_dur
|
||||
|
||||
model:
|
||||
duration_predictor:
|
||||
p_dropout: 0.2
|
||||
|
||||
|
||||
trainer:
|
||||
max_epochs: 3000
|
||||
@@ -131,7 +131,7 @@ def main():
|
||||
if args.output_folder is not None:
|
||||
output_folder = Path(args.output_folder)
|
||||
else:
|
||||
output_folder = Path("data") / "processed_data" / "durations" / cfg["name"]
|
||||
output_folder = Path("data") / "processed_data" / cfg["name"] / "durations"
|
||||
|
||||
if os.path.exists(output_folder) and not args.force:
|
||||
print("Folder already exists. Use -f to force overwrite")
|
||||
|
||||
Reference in New Issue
Block a user