Use pyannote develop branch and torch version 2

This commit is contained in:
Simon
2023-05-02 18:44:43 +02:00
parent 5becc99e56
commit 067189248f
2 changed files with 3 additions and 4 deletions

View File

@ -1,6 +1,5 @@
torch==1.13.1
torchaudio==0.13.1
pyannote.audio==2.1.1
torch==2.0.0
torchaudio==2.0.1
faster-whisper
transformers
ffmpeg-python==0.2.0

View File

@ -19,7 +19,7 @@ setup(
for r in pkg_resources.parse_requirements(
open(os.path.join(os.path.dirname(__file__), "requirements.txt"))
)
],
] + ["pyannote.audio @ https://github.com/pyannote/pyannote-audio/archive/refs/heads/develop.zip"],
entry_points = {
'console_scripts': ['whisperx=whisperx.transcribe:cli'],
},