arch-raven
commited on
Commit
β’
dae4dcc
1
Parent(s):
e588159
add readme
Browse files
README.md
ADDED
@@ -0,0 +1,55 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# Neural Audio Fingerprint Dataset
|
2 |
+
(c) 2021 by Sungkyun Chang
|
3 |
+
https://github.com/mimbres/neural-audio-fp
|
4 |
+
|
5 |
+
This dataset includes all music sources, background noise and impulse-reponses
|
6 |
+
(IR) samples that have been used in the work ["Neural Audio Fingerprint for
|
7 |
+
High-specific Audio Retrieval based on Contrastive Learning"]
|
8 |
+
(https://arxiv.org/abs/2010.11910).
|
9 |
+
|
10 |
+
### Format:
|
11 |
+
16-bit PCM Mono WAV, Sampling rate 8000 Hz
|
12 |
+
|
13 |
+
### Description:
|
14 |
+
```
|
15 |
+
/
|
16 |
+
fingerprint_dataset_icassp2021/
|
17 |
+
βββ aug
|
18 |
+
β βββ bg <=== Pub/cafe etc. background noise mix
|
19 |
+
β βββ ir <=== IR data for microphone and room reverb simulatio
|
20 |
+
β βββ speech <=== English conversation, NOT USED IN THE PAPER RESULT
|
21 |
+
βββ extras
|
22 |
+
β βββ fma_info <=== Meta data for music sources.
|
23 |
+
βββ music
|
24 |
+
βββ test-dummy-db-100k-full <== 100K songs of full-lengths
|
25 |
+
βββ test-query-db-500-30s <== 500 songs (30s) and 2K synthesized queries
|
26 |
+
βββ train-10k-30s <== 10K songs (30s) for training
|
27 |
+
βββ val-query-db-500-30s <== 500 songs (30s) for validation/mini-search
|
28 |
+
```
|
29 |
+
### Data source:
|
30 |
+
β’ Bacgkound noise from Audioset was retrieved using key words ['subway',
|
31 |
+
'metro', 'underground', 'not music']
|
32 |
+
β’ Cochlear.ai pub-noise was recorded at the Strabucks branches in Seoul by
|
33 |
+
Jeongsoo Park.
|
34 |
+
β’ Random noise was generated by Donmoon Lee.
|
35 |
+
β’ Room/space IR data was collected from Aachen IR and OpenAIR 1.4 dataset.
|
36 |
+
β’ Portions of MIC IRs were from Vintage MIC (http://recordinghacks.com/), and
|
37 |
+
pre-processed with room/space IR data.
|
38 |
+
β’ Portions of MIC IRs were recorded by Donmoon Lee, Jeonsu Park and Hyungui Lim
|
39 |
+
using mobile devices in the anechoic chamber at Seoul National University.
|
40 |
+
β’ All music sources were taken from the Free Music Archive (FMA) data set,
|
41 |
+
and converted from `stereo 44Khz` to `mono 8Khz`.
|
42 |
+
β’ train-10k-30s contains all 8K songs from FMA_small. The remaining 2K songs
|
43 |
+
were from FMA_medium.
|
44 |
+
β’ val- and test- data were isolated from train-, and taken from FMA_medium.
|
45 |
+
β’ test-query-db-500-30s/query consists of the pre-synthesized 2,000 queries
|
46 |
+
of 10s each (SNR 0~10dB) and their corresponding 500 songs of 30s each.
|
47 |
+
β’ Additionally, query_fixed_SNR directory contains synthesized queries with
|
48 |
+
fixed SNR of 0dB and -3dB.
|
49 |
+
β’ dummy-db-100k was taken from FMA_full, and duplicates with other sets were
|
50 |
+
removed.
|
51 |
+
|
52 |
+
### License:
|
53 |
+
This dataset is distributed under the CC BY-SA 2.0 license separately from the
|
54 |
+
github source code, and licenses for composites from other datasets are
|
55 |
+
attached to each sub-directory.
|