Skip to content

Commit 47cb703

Browse files
committed
Updated fine-tuned 44k singing voice conversion model with better audio quality
1 parent 8a2ad42 commit 47cb703

File tree

3 files changed

+5
-3
lines changed

3 files changed

+5
-3
lines changed

README.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -205,10 +205,12 @@ Generally, latency is around 1~2s to prevent quality drop (the sad nature of dif
205205
- [x] Changed to BigVGAN from NVIDIA for singing voice decoding
206206
- [x] Whisper version model for singing voice conversion
207207
- [x] Objective evaluation and comparison with RVC/SoVITS for singing voice conversion
208-
- [ ] Improve audio quality
208+
- [x] Improve audio quality
209209
- [ ] More to be added
210210

211211
## CHANGELOGS🗒️
212+
- 2024-10-28:
213+
- Updated fine-tuned 44k singing voice conversion model with better audio quality
212214
- 2024-10-27:
213215
- Added real-time voice conversion GUI
214216
- 2024-10-25:

app.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@
8484

8585
# f0 conditioned model
8686
dit_checkpoint_path, dit_config_path = load_custom_model_from_hf("Plachta/Seed-VC",
87-
"DiT_seed_v2_uvit_whisper_base_f0_44k_bigvgan_pruned_ema.pth",
87+
"DiT_seed_v2_uvit_whisper_base_f0_44k_bigvgan_pruned_ft_ema.pth",
8888
"config_dit_mel_seed_uvit_whisper_base_f0_44k.yml")
8989

9090
config = yaml.safe_load(open(dit_config_path, 'r'))

inference.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ def load_models(args):
3131
"config_dit_mel_seed_uvit_whisper_small_wavenet.yml")
3232
else:
3333
dit_checkpoint_path, dit_config_path = load_custom_model_from_hf("Plachta/Seed-VC",
34-
"DiT_seed_v2_uvit_whisper_base_f0_44k_bigvgan_pruned_ema.pth",
34+
"DiT_seed_v2_uvit_whisper_base_f0_44k_bigvgan_pruned_ema_ft.pth",
3535
"config_dit_mel_seed_uvit_whisper_base_f0_44k.yml")
3636
# f0 extractor
3737
from modules.rmvpe import RMVPE

0 commit comments

Comments
 (0)