Georgi Gerganov

Results 420 comments of Georgi Gerganov

It seems in order to support large meshes with 16-bit indices, you need the OpenGL renderer to support the `glDrawElementsBaseVertex()` function: https://github.com/ocornut/imgui/commit/b3dd03f5822aa34be03008db3dd1ad35618cb141#diff-55777f445e451bfff7805abb611c00b44c025149fae791c7d1a1535818788c5fR107-R113 Currently, it seems to not be supported by...

It turns out that some browsers actually support 32-bit vertex indices, so I just created a branch that uses this: https://github.com/ggerganov/imgui-ws/pull/23 See https://computergraphics.stackexchange.com/questions/3637/how-to-use-32-bit-integers-for-element-indices-in-webgl-1-0 for more information. @Eragon-Brisingr You can give...

I think it should not be very hard if you are OK with using MSYS2 + MinGW - probably some minor modifications to the CMakeLists.txt files. As an example, you...

Hi, thanks for the kind words. I don't think I will be able to help much with the porting as I have almost 0 experience with that. I did manage...

I don't know what this means ..

I don't know what this means ..

To generate Ultrasound messages you have to switch this parameter: https://github.com/ggerganov/ggwave/blob/48830a1e18c5780f9c5cdac74230636c525ebccb/examples/ggwave-js/index-tmpl.html#L89-L91 to one of the following: - `GGWAVE_PROTOCOL_ULTRASOUND_NORMAL` - `GGWAVE_PROTOCOL_ULTRASOUND_FAST` - `GGWAVE_PROTOCOL_ULTRASOUND_FASTEST` To save the sound into WAV file, checkout...

@DiegoGiovany Forgot to update the Makefile - it should work now. `make clean` + `make`

Thank you very much for your interest in the project! I think we first need a proper C-style wrapper of the model loading / encode and decode functionality / sampling...

The initial API is now available on `master`: https://github.com/ggerganov/whisper.cpp/blob/master/whisper.h The first part allows more fine-grained control over the inference and also allows the user to implement their own sampling strategy...