Using openwakeword tflite with flutter #177
-
Hello guys I'm building my own virtual assistant and I'm facing a problem with using the wake word due to the shape of the model what I'm trying to do is |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
Using openWakeWord actually involves 3 separate models working together: a melspectrogram model, an embedding model, and then the wakeword prediction model. You can see how all three of these combine together here. Re-implementing this in flutter is possible, but you'll have to match the logic that prepares the audio and passes everything through these three models in the proper order. |
Beta Was this translation helpful? Give feedback.
Using openWakeWord actually involves 3 separate models working together: a melspectrogram model, an embedding model, and then the wakeword prediction model. You can see how all three of these combine together here.
Re-implementing this in flutter is possible, but you'll have to match the logic that prepares the audio and passes everything through these three models in the proper order.