Topping1

Results 20 comments of Topping1

just in case you want to replicate the issue, the audio is from https://youtu.be/ZLkYpSMkgS4.

Thanks for the suggestion, the offset argument did the trick. I think that a nice feature to add will be to add an argument to specify the start number for...

> I have found a solution. It might not be the best one, but it seems to work. > > First, apply the following patch: > > ```diff > diff...

> When I implemented the x2 speed-up option I did a small research on tempo speed-up algorithms and it looks like the general solution is not very trivial to implement...

If you want to use KoboldCpp API, you can try my fork of askGPT here: https://github.com/Topping1/AskKobold/tree/main

I have tweaked the script [https://gist.github.com/bitingsock/e8a56446ad9c1ed92d872aeb38edf124](url) **(speed-transition-Audio.lua)** and it works better now. Mainly the speed up to 5x during silences was too much and sometimes the upcoming audio would cut...

> @Topping1 Very nice! Can you try cross-compiling using `x86_64-w64-mingw32-gcc-posix` + `-lwinpthread` without using `mingw-std-threads`? > > ``` > x86_64-w64-mingw32-gcc-posix -I. -O3 -std=c11 -mfma -mf16c -mavx -mavx2 -c ggml.c -o...

> Ah yes - I didn't even realise that the job already produces the executable. Not sure how to reference the latest one though - I would like to put...

@ggerganov compiling with the POSIX version worked! In summary: **sudo apt install g++-mingw-w64-x86-64-posix** **sudo apt install gcc-mingw-w64-x86-64-posix** In ggml.c line 18 change #include to #include #include x86_64-w64-mingw32-gcc-posix -I. -O3 -std=c11...

@ggerganov I found a workaround (the problem might be with MinGW): before using main.exe on a command prompt window, execute the command **chcp 65001** (UTF-8 encoding).