mirror of
https://github.com/RVC-Project/Retrieval-based-Voice-Conversion-WebUI.git
synced 2025-04-05 04:08:58 +08:00
Hubert
This commit is contained in:
parent
fbda348b9a
commit
dac00219c3
@ -20,6 +20,12 @@ from infer.modules.vc.utils import *
|
|||||||
from fairseq.data.dictionary import Dictionary
|
from fairseq.data.dictionary import Dictionary
|
||||||
import torch
|
import torch
|
||||||
|
|
||||||
|
def load_hubert_with_safe_globals(config):
|
||||||
|
safe_globals = {"fairseq.data.dictionary.Dictionary": Dictionary}
|
||||||
|
# Wrap the loading call in the safe_globals context manager.
|
||||||
|
with torch.serialization.safe_globals(safe_globals):
|
||||||
|
return load_hubert(config)
|
||||||
|
|
||||||
class VC:
|
class VC:
|
||||||
def __init__(self, config):
|
def __init__(self, config):
|
||||||
self.n_spk = None
|
self.n_spk = None
|
||||||
@ -170,8 +176,7 @@ class VC:
|
|||||||
times = [0, 0, 0]
|
times = [0, 0, 0]
|
||||||
|
|
||||||
if self.hubert_model is None:
|
if self.hubert_model is None:
|
||||||
with torch.serialization.safe_globals({"fairseq.data.dictionary.Dictionary": Dictionary}):
|
self.hubert_model = load_hubert_with_safe_globals(self.config)
|
||||||
self.hubert_model = load_hubert(self.config)
|
|
||||||
|
|
||||||
if file_index:
|
if file_index:
|
||||||
file_index = (
|
file_index = (
|
||||||
|
Loading…
x
Reference in New Issue
Block a user