whisper.cpp
whisper.cpp copied to clipboard
Port of OpenAI's Whisper model in C/C++
https://github.com/golang/go/wiki/Modules#should-i-commit-my-gosum-file-as-well-as-my-gomod-file
Hi, here is a small patch that makes the whisper_print_segment_callback function more readable. Main idea was to avoid duplicate code (e.g. if-blocks for colored output with timestamps and without or...
Adds SSE3 support for SIMD and support for using Imath for fp16-fp32 conversions. Imath can be faster on systems where whisper.cpp doesn't already have a native method for doing the...
Hi, a small/quick change: ``` --- main.cpp_ori 2023-01-04 10:58:52.669456000 +0100 +++ main.cpp 2023-01-04 11:21:27.479196000 +0100 @@ -557,7 +557,7 @@ } if (wav.sampleRate != WHISPER_SAMPLE_RATE) { - fprintf(stderr, "%s: WAV file...
I could not eliminate the separate index argument in the f16 load and store macros, so this patch set needs testing on other architectures. The existing GGML_F32x4_REDUCE macro performs as...
CSV format export trims leading spaces and it's an issue. `vtt` and `srt` formats don't do it. Command I use to transcribe audio file: `./main --model ./models/ggml-large.bin --file audio.wav --output-csv...
Fixes #437
**Question 1:** This is a whisper medium model finetuned in Nepali language. The inference for audio of length 39 second takes forever(13 mins). Is there any issues with the ggml...
I tried to call Whisper in the node environment through addon. I hope I can contribute it to examples for reference. The speed difference between calling in node environment and...