Skip to content

Commit 5c71b83

Browse files
committed
Disabled feature extraction options:
FCPE F0 (not good enough) Chinese/Japanese/Korean huberts since there are no language specific pretrains available.
1 parent 872fd3a commit 5c71b83

1 file changed

Lines changed: 11 additions & 6 deletions

File tree

tabs/train/train.py

Lines changed: 11 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -523,7 +523,12 @@ def train_tab():
523523
info=i18n(
524524
"Pitch extraction algorithm to use for the audio conversion. The default algorithm is rmvpe, which is recommended for most cases."
525525
),
526-
choices=["crepe", "crepe-tiny", "rmvpe", "fcpe"],
526+
choices=[
527+
"crepe",
528+
"crepe-tiny",
529+
"rmvpe",
530+
#"fcpe"
531+
],
527532
value="rmvpe",
528533
interactive=True,
529534
)
@@ -533,11 +538,11 @@ def train_tab():
533538
info=i18n("Model used for learning speaker embedding."),
534539
choices=[
535540
"contentvec",
536-
"spin",
541+
#"spin",
537542
"spin-v2",
538-
"chinese-hubert-base",
539-
"japanese-hubert-base",
540-
"korean-hubert-base",
543+
#"chinese-hubert-base",
544+
#"japanese-hubert-base",
545+
#"korean-hubert-base",
541546
"custom",
542547
],
543548
value="contentvec",
@@ -628,7 +633,7 @@ def train_tab():
628633
total_epoch = gr.Slider(
629634
1,
630635
10000,
631-
500,
636+
200,
632637
step=1,
633638
label=i18n("Total Epoch"),
634639
info=i18n(

0 commit comments

Comments
 (0)