https://github.com/notjoemartinez/copcrawler-whisper
Fine tuned whisper model for police scanner audio
https://github.com/notjoemartinez/copcrawler-whisper
Last synced: over 1 year ago
JSON representation
Fine tuned whisper model for police scanner audio
- Host: GitHub
- URL: https://github.com/notjoemartinez/copcrawler-whisper
- Owner: NotJoeMartinez
- Created: 2024-12-08T01:36:59.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-12-10T06:14:00.000Z (over 1 year ago)
- Last Synced: 2025-04-03T11:42:01.629Z (over 1 year ago)
- Language: Python
- Size: 47.9 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# copcrawler-whsiper
An attempt to fine tune the OpenAI Whisper model for police scanner
audio transcription on [copcrawler.com](https://copcrawler.com).
Initially using this [Fine-Tuning-Whisper-on-Custom-Dataset](https://github.com/spmallick/learnopencv/tree/master/Fine-Tuning-Whisper-on-Custom-Dataset) boilerplate.
## Installation
Requires Python 3.11.6
```bash
pyenv install 3.11.6
pyenv local 3.11.6
eval "$(pyenv init -)"
eval "$(pyenv init --path)"
python3 -m venv .venv
source .venv/bin/activate
pip install -r requirements.txt
```