You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Making the model suitable for realtime inference over webrtc.
I have two approaches to my problem:
Take the dumb “Window” approach where both the AudioEncoder and the TextDecoder rerun on every new frame
An actual realtime approach(my desired approach), where the old computed context is reused and not recomputed on every frame. But I am facing difficulty here:
The AudioEncoder is using absolute positional embedding with a fixed context window. Making the reuse of the computed token not viable. Are there any masking hacks to transform the AudioEncoder to an autoregressive kind of model with a sliding window context, without retraining?
And the TextDecoder is using a learned positional embedding with fixed parameters 🙃
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
Making the model suitable for realtime inference over webrtc.
I have two approaches to my problem:
Any feedback is welcome.
Beta Was this translation helpful? Give feedback.
All reactions