File size: 602 Bytes
a6df73d
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# Warning: This config has a breaking change in Feb 12, 2023.
# It updates the arch from diff_svc to diff_svc_v2 and switch to the cosine scheduler.

_base_ = [
    "./_base_/archs/diff_svc_v2.py",
    "./_base_/trainers/base.py",
    "./_base_/schedulers/warmup_cosine.py",
    "./_base_/datasets/audio_folder.py",
]


preprocessing = dict(
    text_features_extractor=dict(
        type="HubertSoft",
    ),
    pitch_extractor=dict(
        # ParselMouth is much faster than Crepe
        # However, Crepe may have better performance in some cases
        type="ParselMouthPitchExtractor",
    ),
)