-
-
Notifications
You must be signed in to change notification settings - Fork 1.3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
latest faster-whisper support added #875
base: main
Are you sure you want to change the base?
latest faster-whisper support added #875
Conversation
Hasan-Naseer
commented
Sep 5, 2024
•
edited
Loading
edited
- requirements.txt updated
- latest distil models are now available
- asr.py updated with new parameters for faster-whisper 1.0.3
- support for hotwords added
hellow ,Now I want to use the hotwords feature in the latest version of FastWhisper. Which branch do you recommend using. Additionally, I attempted to use the fastwhisper model separately and employed Whisperx Dialization Pipeline may encounter errors due to model conflicts. def load_asr_model():
model = faster_whisper.WhisperModel("large-v3", device=global_var.MODEL_DEVICE, compute_type=global_var.MODEL_COMPUTE_TYPE)
return model
def load_speaker_model():
diarize_model = whisperx.DiarizationPipeline(use_auth_token='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',
device=global_var.MODEL_DEVICE)
return diarize_model simultaneous loading print error:
··· ··· |
Hey. It depends on whether you're cloning the repo and building it to run or just installing using pip. For cloning the repo: git pull origin release/latest-faster-whisper-version This should give you the required branch. Now when you install the dependencies from requirements.txt you should have everything up to date. Alternatively, and this is the method I recommend, use it through pip. Install the fork https://github.com/Hasan-Naseer/whisperX.git. The main branch has the commits for latest faster-whisper (hotwords) support and has prnt_segments and prnt_duration parameters for better verbose and debugging. Make sure you're in the directory environment with whisperX installed pip uninstall faster-whisper whisperx pip install git+https://github.com/Hasan-Naseer/whisperX.git This should give you the latest commit with all the features. PS. Your error seems to be related to a dependency problem in the "libcudnn" library. It is seemingly unrelated to faster-whisper or whisperx. Please look into a solution for that. |
@m-bain any news about merge this ? |