removing unwanted features (bugs)

This commit is contained in:
DeepBeepMeep 2025-07-08 19:05:33 +02:00
parent 9efbd9911c
commit 63ad3e7baa
3 changed files with 3 additions and 2 deletions

View File

@ -93,7 +93,7 @@ class OptimizedPyannote31SpeakerSeparator:
xprint(f"Error loading pipeline: {e}")
xprint(f"Error type: {type(e)}")
import traceback
traceback.xprint_exc()
traceback.print_exc()
raise

View File

@ -44,5 +44,6 @@ pyloudnorm
misaki
soundfile
ffmpeg
pyannote.audio
# num2words
# spacy

2
wgp.py
View File

@ -2372,7 +2372,7 @@ def download_models(model_filename, model_type):
model_family = get_model_family(model_type)
finetune_def = get_model_finetune_def(model_type)
if finetune_def != None:
if finetune_def != None and not model_type in modules_files:
if not os.path.isfile(model_filename ):
use_url = model_filename
for url in finetune_def["URLs"]: