|
|
|
@ -47,7 +47,12 @@ os.makedirs(wav32dir,exist_ok=True)
|
|
|
|
|
|
|
|
|
|
maxx=0.95
|
|
|
|
|
alpha=0.5
|
|
|
|
|
device="cuda:0" if torch.cuda.is_available() else "mps"
|
|
|
|
|
if torch.cuda.is_available():
|
|
|
|
|
device = "cuda:0"
|
|
|
|
|
elif torch.backends.mps.is_available():
|
|
|
|
|
device = "mps"
|
|
|
|
|
else:
|
|
|
|
|
device = "cpu"
|
|
|
|
|
model=cnhubert.get_model()
|
|
|
|
|
# is_half=False
|
|
|
|
|
if(is_half==True):
|
|
|
|
@ -106,4 +111,4 @@ if(len(nan_fails)>0 and is_half==True):
|
|
|
|
|
try:
|
|
|
|
|
name2go(wav_name)
|
|
|
|
|
except:
|
|
|
|
|
print(wav_name,traceback.format_exc())
|
|
|
|
|
print(wav_name,traceback.format_exc())
|
|
|
|
|