Georgi Gerganov

Results 420 comments of Georgi Gerganov

WASM performance is not great overall. AVX and AVX2 and all other stuff is not available for WASM. #368 just landed on `master` - it should give about 20-30% speedup...

I think the only place that has little-endian assumptions is in the FP16 FP32 naive conversion. What would change in the POWER port if it supported big-endian compared to the...

There are a few things that do not go through `read_safe`. For example: - mel filters: https://github.com/ggerganov/whisper.cpp/blob/52a3e0c92a8be5150d2a59e492b4943ca8a623b0/whisper.cpp#L542-L543 - tensor weights: https://github.com/ggerganov/whisper.cpp/blob/52a3e0c92a8be5150d2a59e492b4943ca8a623b0/whisper.cpp#L1064-L1066 Maybe you have to byte-swap there too.

Would be great to implement this in `whisper.cpp` and I want to give it a try, but I won't be able to work on this anytime soon as there are...

On second thought, I think `.clang-format` is not a good option. In this project, I use a unique code formatting where sequential lines are vertically aligned and I really like...

Thanks for reporting this. > I haven't yet been able to track down what line/function the error comes from, but I am fairly certain it was introduced by https://github.com/ggerganov/whisper.cpp/commit/ac521a566ea6a79ba968c30101140db9f65d187b. I...

The CPU does not support FMA. I believe this should be fixed now thanks to 322f4e6c4ea8f8b3526bb6cebce0113cd157fe62

Xcode is not supported at the moment. The easiest way to run the `examples/command` is: ```bash # install sdl2 library if you don't have it already brew install sdl2 #...

@boxabirds No - I'm not familiar with the training process yet. It would be very cool to have a way to create "micro" models for wake word detection, but I...

Weird - what `main` parameters are you using when this happens?