Replies: 1 comment 1 reply
-
An overlap of 1.0 seconds means that two consecutive segments overlap by 1 second. So the resulting timestamps for predictions would be:
In other words, a 1.0s overlap results in a 2.0s hop length/step size. |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
I'm not sure exactly how the --overlap option works. The guide says:
--overlap, Overlap of prediction segments. Values in [0.0, 2.9]. Defaults to 0.0.
By default, analysis proceeds in 3 sec non-overlapping sections, so:
0.0-3.0, 3.0-6.0, 6.0-9.0 etc
If I set overlap to 1.0, does this mean additional 3 sec sections at 1.0 sec intervals, thus:
0.0-3.0, 1.0-4.0, 2.0-5.0, 3.0-6.0, 4.0-7.0 etc ?
If so, what happens if the overlap is not a dividend of 3.0 secs?
Beta Was this translation helpful? Give feedback.
All reactions