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
>>>segment.process_signal(signal, sampling_rate)
MultiIndex([('0 days 00:00:00', '0 days 00:00:03'),
('0 days 00:00:01', '0 days 00:00:02')],
names=['start', 'end'])
But when providing the file argument, end times are reordered (maybe sorted?):
>>>segment.process_signal(signal, sampling_rate, file='f')
MultiIndex([('f', '0 days 00:00:00', '0 days 00:00:02'),
('f', '0 days 00:00:01', '0 days 00:00:03')],
names=['file', 'start', 'end'])
The text was updated successfully, but these errors were encountered:
Uh oh!
There was an error while loading. Please reload this page.
Then we get correctly:
But when providing the
file
argument,end
times are reordered (maybe sorted?):The text was updated successfully, but these errors were encountered: