KiwiWilkinson

Results 11 comments of KiwiWilkinson

> Yes. Multilingual model support transcription and translation. For Transcription, it supports Any -> Any For Translation, it supports Any -> English > > I see your requirement is first...

Thanks Vilas. Same thing: My limited understanding is that libtensorflowlite_jni.so and the other .so files need recompiling with clang flags to support 16kB page sizes

Thanks. The problem seems to be that that pre-built library doesn't support 16kB page sizes. So the new Android restriction will stop it being used in apps.

The issue remains after updating to org.tensorflow:tensorflow-lite:2.17.0 and org.tensorflow:tensorflow-lite-support:0.5.0 I don't understand tensorflow at all, or .so files. Is there a way of getting an .so file that's compiled for...

The libtensorflowlite.so file is being picked up from your repo here: whisper_native/app/src/main/cpp/tf-lite-api/generated-libs/arm64-v8a Is it possible to replace it with a new version that supports 16kB page sizes?

Thanks Vilas. I also needed to change a couple of things in the project to get other .so files to be 16BK aligned: * libaudioEngine.so: I added set(CMAKE_SHARED_LINKER_FLAGS "${CMAKE_SHARED_LINKER_FLAGS} -Wl,-z,max-page-size=16384")...

Thanks Yong, that looks like a great step forward. However, when I compile it into whisper_native I get: Has something changed in TensorFlow than requires changes in whisper_native?

Thanks Yong. You were quite right. I'd copied the source code to the wrong place in the directory hierarchy! It's now working properly. Thank you very much.

Do I also need a libtensorflowlite.so for other ABIs: armabi-v7a and x86_64? I'm getting a linking error when I try to build an apk.