From bc2776017e9775a39b529ba89cf1dd8bca971db0 Mon Sep 17 00:00:00 2001 From: Max Bain Date: Sat, 1 Apr 2023 00:09:29 +0100 Subject: [PATCH] v2 lets go --- README.md | 7 +++++++ setup.py | 2 +- 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index e96a905..16e898e 100644 --- a/README.md +++ b/README.md @@ -78,6 +78,13 @@ $ pip install -e . You may also need to install ffmpeg, rust etc. Follow openAI instructions here https://github.com/openai/whisper#setup. +### Setup not working??? +Safest to use install pytorch as follows (for gpu) + +`conda install pytorch==1.11.0 torchvision==0.12.0 torchaudio==0.11.0 -c pytorch +` + + ### Voice Activity Detection Filtering & Diarization To **enable VAD filtering and Diarization**, include your Hugging Face access token that you can generate from [Here](https://huggingface.co/settings/tokens) after the `--hf_token` argument and accept the user agreement for the following models: [Segmentation](https://huggingface.co/pyannote/segmentation) , [Voice Activity Detection (VAD)](https://huggingface.co/pyannote/voice-activity-detection) , and [Speaker Diarization](https://huggingface.co/pyannote/speaker-diarization) diff --git a/setup.py b/setup.py index 4aa1f3f..d6472e1 100644 --- a/setup.py +++ b/setup.py @@ -9,7 +9,7 @@ setup( version="2.0", description="Time-Accurate Automatic Speech Recognition using Whisper.", readme="README.md", - python_requires=">=3.7", + python_requires=">=3.8", author="Max Bain", url="https://github.com/m-bain/whisperx", license="MIT",