-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtrain.sh
executable file
·55 lines (47 loc) · 1.63 KB
/
train.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
#!/bin/bash
. ./path.sh || exit 1;
export CUDA_VISIBLE_DEVICES=0
########## Train BiLSTM oneshot VC model ##########
# python main.py --config ./conf/bilstm_ppg2mel_vctk_libri_oneshotvc.yaml \
# --oneshotvc \
# --bilstm
###################################################
########## Train Seq2seq oneshot VC model ###########
# python main.py --config ./conf/seq2seq_mol_ppg2mel_vctk_libri_oneshotvc.yaml \
# --oneshotvc \
###################################################
########## Train Own oneshot VC model ##########
# python main.py --config ./conf/own.yaml \
# --ownarc \
# --bilstm
########## Train Transformer VC model ##########
# Config 1:
# Speaker Embed = atinput
# pitch = no
python main.py --config /mnt/data1/waris/repo/transformer-vc/conf/transformer_vc_ppg2mel_outspkdloss_inp_conct.yaml \
--name=transformer-vc \
--seed=2 \
--transvcsplinpconc
#
# Status: Running
#
# Config 2:
# Speaker Embed = atinput
# pitch = yes
# python main.py --config /mnt/data1/waris/repo/transformer-vc/conf/transformer_vc_ppg2mel_outspkdloss_inp_conct_with_pitch.yaml \
# --name=transformer-vc-config2 \
# --seed=2 \
# --transvcsplinpconc
#
# Status: Waiting to run
#
# Config 3:
# Speaker Embed = after_encoder
# pitch = yes
# python main.py --config /mnt/data1/waris/repo/transformer-vc/conf/transformer_vc_ppg2mel_outspkdloss_attn_conct_with_pitch.yaml \
# --name=transformer-vc-config3 \
# --seed=2 \
# --transvcsplinpconc
#
# Status: Waiting to run
#