File size: 396 Bytes
8146713
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#!/usr/bin/env bash

set -e

: ${DATA_DIR:=ALL_SAMI}
: ${ARGS="--extract-mels"}

python prepare_dataset.py \
    --wav-text-filelists filelists/all_sami_filelist_shuf_200_train.txt \
    --n-workers 8 \
    --batch-size 1 \
    --dataset-path $DATA_DIR \
    --extract-pitch \
    --f0-method pyin \
    --pitch_mean 150\
    --pitch_std 40\
    --n-speakers 10 \
    --n-languages 3 \
    $ARGS