Earlier quoted context omitted.
why did you want to transcribe it? What would you do with the output?
I wanted to make a twitter bot that posted whenever a pedestrian/cyclist got hit by a car. I'd need to: - Wait for a MED6 or AID response code to come across the live event stream - Listen to the radio chatter to see if it was a pedestrian getting hit (use GPT3 on the transcription to determine if the text was about a ped/cyclist getting hit) - Maybe also correlate to SPD logging a 'mvc with injuries' at the same loc…
Show HN: I made a free transcription service powered by Whisper AI
71–80 of 135 posts
Re: Show HN: I made a free transcription service powered by Whisper AI
#72Re: Show HN: I made a free transcription service powered by Whisper AI
#73Re: Show HN: I made a free transcription service powered by Whisper AI
#74https://scotts-podcasts.s3.amazonaws.com/temp/whisper/Intern...
Not sure if there's a use for this that's not me, but I like the idea of having subtitles for a podcast I'm listening to.
Re: Show HN: I made a free transcription service powered by Whisper AI
#75I didn't manage to transcribe anything (it just doesn't remember that I submitted anything), but whatever, I didn't need to anyway. I just wanted to ask: how good is Whisper with non-english? At least "major" ones, like, German, French, Russian, Spanish?
Re: Show HN: I made a free transcription service powered by Whisper AI
#76Free startup idea: Use Whisper with pyannote-audio[0]’s speaker diarization. Upload a recording, get back a multi-speaker annotated transcription. Make a JSON API and I’ll be your first customer. [0] https://github.com/pyannote/pyannote-audio
And you expect the API to be free? If not why not use one of a million other such services?
Re: Show HN: I made a free transcription service powered by Whisper AI
#77I recently tried Whisper to transcribe our local Seattle Fire Department radio scanner -- unfortunately it was not reliable enough for my use case, e.g. "adult male hit by car" gets transcribed as "don't mail it by car". I imagine future models will allow the user to input some context to disambiguate. Like if I could give it the audio along with the context "Seattle Fire Department and EMS radio traffic", it would b…
I was initially going to use Azure Cognitive Services and train it on a small amount of test data, after Whisper released for free I use Whisper + openai GPT-3 trained to fix the transcription errors by 1) taking a sample of transcripts by Whisper 2) fixing the errors and 3) fine-tuning GPT-3 by using the unfixed transcriptions as the prompt and the corrected transcripts as the result text.
Whisper with the --initial_prompt containing industry jargon plus training GPT-3 to fix the transcription errors should be nearly as accurate as using a custom-trained model in Azure Cognitive Services but at 5-10% of the cost. Biggest downside is the amount of labor to set that up, and the snail's pace of Whisper transcriptions.
Re: Show HN: I made a free transcription service powered by Whisper AI
#78I recently tried Whisper to transcribe our local Seattle Fire Department radio scanner -- unfortunately it was not reliable enough for my use case, e.g. "adult male hit by car" gets transcribed as "don't mail it by car". I imagine future models will allow the user to input some context to disambiguate. Like if I could give it the audio along with the context "Seattle Fire Department and EMS radio traffic", it would b…
Have you tried the --initial_prompt CLI arg? For my use, I put a bunch of industry jargon and names that are commonly misspelled in there and that fixes 1/3 to 1/2 of the errors. I was initially going to use Azure Cognitive Services and train it on a small amount of test data, after Whisper released for free I use Whisper + openai GPT-3 trained to fix the transcription errors by 1) taking a sample of transcripts by W…
Re: Show HN: I made a free transcription service powered by Whisper AI
#79I didn't manage to transcribe anything (it just doesn't remember that I submitted anything), but whatever, I didn't need to anyway. I just wanted to ask: how good is Whisper with non-english? At least "major" ones, like, German, French, Russian, Spanish?