Difference between revisions of "2010:Query by Singing/Humming"
(→Description) |
(→Task Description) |
||
Line 30: | Line 30: | ||
If there are not enough user-contributed corpora, then we shall adopt "no hidden dataset" policy for QBSH task as usual. | If there are not enough user-contributed corpora, then we shall adopt "no hidden dataset" policy for QBSH task as usual. | ||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
== Command Format I: Breakdown Version == | == Command Format I: Breakdown Version == |
Revision as of 15:23, 26 May 2010
Contents
Description
The text of this section is copied from the 2009 page. Please add your comments and discussions for 2010.
The goal of the Query-by-Singing/Humming (QBSH) task is the evaluation of MIR systems that take as query input queries sung or hummed by real-world users. More information can be found in:
- 2009:Query_by_Singing/Humming
- 2008:Query_by_Singing/Humming
- 2007:Query_by_Singing/Humming
- 2006:QBSH:_Query-by-Singing/Humming
Data
Currently we have 3 publicly available corpora for QBSH:
- Roger Jang's MIR-QBSH corpus which is comprised of 4431 queries along with 48 ground-truth MIDI files. All queries are from the beginning of references. Manually labeled pitch for each recording is available.
- IOACAS corpus 1 comprised of 355 queries and 106 monophonic ground-truth MIDI files (with MIDI 0 or 1 format). There are no "singing from beginning" gurantee.
- IOACAS corpus 2 comprised of 404 queries and 192 monophonic ground-truth MIDI files. There are no "singing from beginning" gurantee.
The noise MIDI will be the 5000+ Essen collection(can be accessed from http://www.esac-data.org/).
To build a large test set which can reflect real-world queries, it is suggested that every participant makes a contribution to the evaluation corpus. Sometimes this is hard in practice. So we shall adopt "no hidden dataset" policy if there are not enough user-contributed copora.
Evaluation Corpus Contribution
Every participant will be asked to contribute 100~200 wave queries (8k 16bits) as well as the ground truth MIDI as test data. Please make your contributed data conformed to the format used in the ThinkIT corpus (TITcorpus). These test data will be released after the competition as a public-domain QBSH dataset.
Here is a simple tool for recording query data. You may need to have .NET 2.0 or above installed in your system in order to run this program. The generated files conform to the format used in the ThinkIT corpus. Of course you are also welcomed to use your own program to record the query data.
If there are not enough user-contributed corpora, then we shall adopt "no hidden dataset" policy for QBSH task as usual.
Command Format I: Breakdown Version
The following was based on the suggestion by Xiao Wu last year with some modifications.
1. Database indexing/building. Command format should look like this:
indexing %dbMidi.list% %dir_workspace_root%
where %dbMidi.list% is the input list of database midi files named as uniq_key.mid. For example:
./QBSH/midiDatabase/00001.mid ./QBSH/midiDatabase/00002.mid ./QBSH/midiDatabase/00003.mid ./QBSH/midiDatabase/00004.mid ...
Output indexed files are placed into %dir_workspace_root%. (For task 2, %dbMidi.list% is in fact a list of wav files in the database.)
2. Pitch tracker. Command format:
pitch_tracker %queryWave.list% %dir_query_pitch%
where %queryWave.list% looks like
queryWave/query_00001.wav queryWave/query_00002.wav queryWave/query_00003.wav ...
Each input file dir_query/query_xxxxx.wav in %queryWave.list% outputs a corresponding transcription %dir_query_pitch%/query_xxxxx.pitch which gives the pitch sequence in midi note scale with the resolution of 10ms:
0 0 62.23 62.25 62.21 ...
Thus a query with x seconds should output a pitch file with 100*x lines. Places of silence/rest are set to be 0.
3. Pitch matcher. Command format:
pitch_matcher %dbMidi.list% %queryPitch.list% %resultFile%
where %queryPitch.list% looks like
queryPitch/query_00001.pitch queryPitch/query_00002.pitch queryPitch/query_00003.pitch ...
and the result file gives top-10 candidates(if has) for each query:
queryPitch/query_00001.pitch: 00025 01003 02200 ... queryPitch/query_00002.pitch: 01547 02313 07653 ... queryPitch/query_00003.pitch: 03142 00320 00973 ... ...
Command Format II: Integrated Version
If you want to pack everything together, the command format should be much simpler:
qbshProgram %dbMidi.list% %queryWave.list% %resultFile% %dir_workspace_root%
You can use %dir_workspace_root% to store any temporary indexing/database structures. The result file should have the same format as mentioned previously. (For task 2, %dbMidi.list% is in fact a list of wav files in the database to be retrieved.)
Participants
If you think there is a slight chance that you might want to participate, please add your name and e-mail address to this list
Tzu-chun Yeh, Yi-Fan Fang (Tzu-chun.Yeh at mirlab dot org)