File size: 516 Bytes
4bf2934
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#!/bin/bash

gender='male'

config='../../config/hifi/config_v1.json'
modeldir='../../checkpoints/hifi/'$gender
logdir='../../logs/hifi/'$gender


####################################################



python ../../src/hifi_gan/train.py \
    --config $config \
    --input_training_file '../../data/hifi/'$gender'/train.txt' \
    --input_validation_file '../../data/hifi/'$gender'/valid.txt' \
    --checkpoint_path $modeldir \
    --logs_path $logdir \
    --checkpoint_interval 10000 \
    --stdout_interval 50