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
When I call mirdata.datasets.beatles.load_sections for Beatles' "Birthday" song, I get the following error ValueError: Interval start times must be smaller than end times. If we check lab file of this song (the content is below) we will really see that silence section has end time = 162.907 which is smaller than start time = 162.922. I confirm that issue exists in original annotations at original source website http://www.isophonics.net/files/annotations/seglab/The%20Beatles/10CD2_-_The_Beatles/CD2_-_01_-_Birthday.lab.
According to FAQ you are probably not editing annotations, but at least other researchers can find the issue faster by searching in mirdata issues. However, can community create a new version of dataset in this case with editions as stated here?
The file is contained at beatles/annotations/seglab/The Beatles/10CD2_-_The_Beatles/CD2_-_01_-_Birthday.lab
import mirdata
import os
beatles_set = mirdata.initialize('beatles', data_home=os.path.join('data/beatles'))
beatles_set.download() # download the dataset
beatles_set.validate() # validate that all the expected files are there
section_data = mirdata.datasets.beatles.load_sections(os.path.join('data/beatles/annotations/seglab/The Beatles/10CD2_-_The_Beatles/CD2_-_01_-_Birthday.lab')
The text was updated successfully, but these errors were encountered:
When I call
mirdata.datasets.beatles.load_sections
for Beatles' "Birthday" song, I get the following errorValueError: Interval start times must be smaller than end times
. If we checklab
file of this song (the content is below) we will really see thatsilence
section has end time = 162.907 which is smaller than start time = 162.922. I confirm that issue exists in original annotations at original source website http://www.isophonics.net/files/annotations/seglab/The%20Beatles/10CD2_-_The_Beatles/CD2_-_01_-_Birthday.lab.According to FAQ you are probably not editing annotations, but at least other researchers can find the issue faster by searching in
mirdata
issues. However, can community create a new version of dataset in this case with editions as stated here?The file is contained at
beatles/annotations/seglab/The Beatles/10CD2_-_The_Beatles/CD2_-_01_-_Birthday.lab
Content of
CD2_-_01_-_Birthday.lab
file:The other files with the same issue:
My code to reproduce:
The text was updated successfully, but these errors were encountered: