Skip to content

Commit

Permalink
fixed custom embedder value
Browse files Browse the repository at this point in the history
  • Loading branch information
AznamirWoW committed Dec 1, 2024
1 parent eb9c4cf commit 2a35f50
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion rvc/train/extract/extract.py
Original file line number Diff line number Diff line change
Expand Up @@ -249,7 +249,7 @@ def run_embedding_extraction(
version = sys.argv[6]
sample_rate = sys.argv[7]
embedder_model = sys.argv[8]
embedder_model_custom = sys.argv[9] if len(sys.argv) > 10 else None
embedder_model_custom = sys.argv[9] if len(sys.argv) > 9 else None

# prep
wav_path = os.path.join(exp_dir, "sliced_audios_16k")
Expand Down

0 comments on commit 2a35f50

Please sign in to comment.