remotewith commited on
Commit
ff1e37d
1 Parent(s): 09e4d52

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +23 -1
app.py CHANGED
@@ -1 +1,23 @@
1
- import pytorch
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import whisper
2
+ import gradio as gr
3
+ import datetime
4
+
5
+ import subprocess
6
+
7
+ import torch
8
+ import pyannote.audio
9
+ from pyannote.audio.pipelines.speaker_verification import PretrainedSpeakerEmbedding
10
+
11
+ from pyannote.audio import Audio
12
+ from pyannote.core import Segment
13
+
14
+ import wave
15
+ import contextlib
16
+
17
+ from sklearn.cluster import AgglomerativeClustering
18
+ import numpy as np
19
+
20
+
21
+
22
+
23
+