EfficientWord-Net icon indicating copy to clipboard operation
EfficientWord-Net copied to clipboard

automictic wake word detect without even sound

Open Siyamfahad opened this issue 1 year ago • 6 comments

it detecting wake word on silence , specially when i 1 times , its repeat it self twice, any solution?

Siyamfahad avatar Aug 19 '23 11:08 Siyamfahad

This is happening because of the sliding window approach

TheSeriousProgrammer avatar Aug 19 '23 11:08 TheSeriousProgrammer

You can controll it in the following snippet

mic_stream = SimpleMicStream(
    window_length_secs=1.5,
    sliding_window_secs=0.75,
)

TheSeriousProgrammer avatar Aug 19 '23 11:08 TheSeriousProgrammer

thanks for your fast reply <3 @TheSeriousProgrammer which one should i increase or decrease?

Siyamfahad avatar Aug 19 '23 11:08 Siyamfahad

You can try experimenting, in your case of repeated detection try increasing it

TheSeriousProgrammer avatar Aug 19 '23 11:08 TheSeriousProgrammer

sliding_window_sec?

Siyamfahad avatar Aug 19 '23 12:08 Siyamfahad

yess

TheSeriousProgrammer avatar Aug 19 '23 13:08 TheSeriousProgrammer