Upload 2 files
Browse files- config/data/en001.yaml +25 -0
- config/experiment/en001.yaml +18 -0
config/data/en001.yaml
ADDED
@@ -0,0 +1,25 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
_target_: matcha.data.text_mel_datamodule.TextMelDataModule
|
2 |
+
name: en001
|
3 |
+
train_filelist_path: datas/en001/train_enhanced.txt
|
4 |
+
valid_filelist_path: datas/en001/validate_enhanced.txt
|
5 |
+
batch_size: 128
|
6 |
+
num_workers: 1
|
7 |
+
pin_memory: True
|
8 |
+
cleaners: [basic_cleaners2]
|
9 |
+
add_blank: True
|
10 |
+
n_spks: 1
|
11 |
+
n_fft: 1024
|
12 |
+
n_feats: 80
|
13 |
+
sample_rate: 22050
|
14 |
+
hop_length: 256
|
15 |
+
win_length: 1024
|
16 |
+
f_min: 0
|
17 |
+
f_max: 8000
|
18 |
+
data_statistics: # Computed for ljspeech dataset
|
19 |
+
#raw {'mel_mean': -7.6427531242370605, 'mel_std': 2.622195243835449}
|
20 |
+
#enhanced {'mel_mean': -5.836115837097168, 'mel_std': 2.243063449859619}
|
21 |
+
#{'mel_mean': -5.714657783508301, 'mel_std': 2.199086904525757}
|
22 |
+
mel_mean: -5.714657783508301
|
23 |
+
mel_std: 2.199086904525757
|
24 |
+
|
25 |
+
seed: 3000
|
config/experiment/en001.yaml
ADDED
@@ -0,0 +1,18 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# @package _global_
|
2 |
+
|
3 |
+
# to execute this experiment run:
|
4 |
+
# python train.py experiment=multispeaker
|
5 |
+
|
6 |
+
defaults:
|
7 |
+
- override /data: en001.yaml
|
8 |
+
|
9 |
+
# all parameters below will be merged with parameters from default configurations set above
|
10 |
+
# this allows you to overwrite only specified parameters
|
11 |
+
|
12 |
+
tags: [en001]
|
13 |
+
|
14 |
+
run_name: en001
|
15 |
+
ckpt_path: datas/en001/checkpoint_epoch=3599.ckpt
|
16 |
+
#ckpt_path: /root/.local/share/matcha_tts/matcha_ljspeech.ckpt
|
17 |
+
|
18 |
+
|