ssolito commited on
Commit
551bdb6
·
verified ·
1 Parent(s): ecb7cc4

Update whisper.py

Browse files
Files changed (1) hide show
  1. whisper.py +1 -1
whisper.py CHANGED
@@ -17,7 +17,7 @@ CKPT = "projecte-aina/whisper-large-v3-tiny-caesar"
17
  BATCH_SIZE = 1
18
  model = WhisperForConditionalGeneration.from_pretrained(MODEL_NAME, torch_dtype=torch_dtype).to(device)
19
  processor = WhisperProcessor.from_pretrained(MODEL_NAME)
20
- pipeline_vad = Pipeline.from_pretrained("pyannote/voice-activity-detection", use_auth_token=os.getenv("HF_TOKEN"))
21
  threshold = 10000
22
  segments_dir = "."
23
 
 
17
  BATCH_SIZE = 1
18
  model = WhisperForConditionalGeneration.from_pretrained(MODEL_NAME, torch_dtype=torch_dtype).to(device)
19
  processor = WhisperProcessor.from_pretrained(MODEL_NAME)
20
+ pipeline_vad = Pipeline.from_pretrained("./pyannote/config.yaml")
21
  threshold = 10000
22
  segments_dir = "."
23