freevc plugin
Browse files- README.md +1 -1
- freevc_example.py +1 -1
README.md
CHANGED
@@ -42,8 +42,8 @@ import soundfile as sf
|
|
42 |
from dreamvoice import DreamVoice_Plugin
|
43 |
from dreamvoice.freevc_wrapper import get_freevc_models, convert
|
44 |
|
45 |
-
freevc, cmodel, hps = get_freevc_models('ckpts_freevc/', 'dreamvoice/', 'cuda')
|
46 |
device = 'cuda'
|
|
|
47 |
|
48 |
# init dreamvoice
|
49 |
dreamvoice = DreamVoice_Plugin(config='plugin_freevc.yaml', device=device)
|
|
|
42 |
from dreamvoice import DreamVoice_Plugin
|
43 |
from dreamvoice.freevc_wrapper import get_freevc_models, convert
|
44 |
|
|
|
45 |
device = 'cuda'
|
46 |
+
freevc, cmodel, hps = get_freevc_models('ckpts_freevc/', 'dreamvoice/', device)
|
47 |
|
48 |
# init dreamvoice
|
49 |
dreamvoice = DreamVoice_Plugin(config='plugin_freevc.yaml', device=device)
|
freevc_example.py
CHANGED
@@ -4,8 +4,8 @@ import soundfile as sf
|
|
4 |
from dreamvoice import DreamVoice_Plugin
|
5 |
from dreamvoice.freevc_wrapper import get_freevc_models, convert
|
6 |
|
7 |
-
freevc, cmodel, hps = get_freevc_models('ckpts_freevc/', 'dreamvoice/', 'cuda')
|
8 |
device = 'cuda'
|
|
|
9 |
|
10 |
# init dreamvoice
|
11 |
dreamvoice = DreamVoice_Plugin(config='plugin_freevc.yaml', device=device)
|
|
|
4 |
from dreamvoice import DreamVoice_Plugin
|
5 |
from dreamvoice.freevc_wrapper import get_freevc_models, convert
|
6 |
|
|
|
7 |
device = 'cuda'
|
8 |
+
freevc, cmodel, hps = get_freevc_models('ckpts_freevc/', 'dreamvoice/', device)
|
9 |
|
10 |
# init dreamvoice
|
11 |
dreamvoice = DreamVoice_Plugin(config='plugin_freevc.yaml', device=device)
|