Niranjan Yadla

Results 79 comments of Niranjan Yadla

and it is expected result and if you need more to be transcribe need to split audio file into 30s chunk each and feed as input to model and you...

I need to work on to support long files

https://github.com/bjnortier/whisper-tflite-ios/tree/main

https://colab.research.google.com/github/nyadla-sys/whisper.tflite/blob/main/models/generate_tflite_from_whisper.ipynb

@Rohith-Altrai whisper tflite multilanguage support needs more attention and require seperate tflite file based on the language selection

Refer this link to build android app https://github.com/vilassn/whisper_android

https://colab.research.google.com/github/nyadla-sys/whisper.tflite/blob/main/models/tflt_vocab_mel.ipynb

Try something like below ``` import tensorflow as tf class GenerateModel(tf.Module): def __init__(self, model): super(GenerateModel, self).__init__() self.model = model @tf.function( input_signature=[ tf.TensorSpec((1, 80, 3000), tf.float32, name="new_input_name"), # Updated input name...