Skip to content

Commit

Permalink
minor changes on prerequisites
Browse files Browse the repository at this point in the history
  • Loading branch information
blaisewf authored Sep 29, 2024
1 parent 47a298e commit 205c6e6
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions core.py
Original file line number Diff line number Diff line change
Expand Up @@ -1617,7 +1617,7 @@ def parse_arguments():
"--pretraineds_v1_f0",
type=lambda x: bool(strtobool(x)),
choices=[True, False],
default=True,
default=False,
help="Download pretrained models for RVC v1.",
)
prerequisites_parser.add_argument(
Expand All @@ -1631,14 +1631,14 @@ def parse_arguments():
"--pretraineds_v1_nof0",
type=lambda x: bool(strtobool(x)),
choices=[True, False],
default=True,
default=False,
help="Download non f0 pretrained models for RVC v1.",
)
prerequisites_parser.add_argument(
"--pretraineds_v2_nof0",
type=lambda x: bool(strtobool(x)),
choices=[True, False],
default=True,
default=False,
help="Download non f0 pretrained models for RVC v2.",
)
prerequisites_parser.add_argument(
Expand Down

0 comments on commit 205c6e6

Please sign in to comment.