Ryan commited on
Commit
a895da1
·
verified ·
1 Parent(s): 89eacf8

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +42 -1
README.md CHANGED
@@ -1 +1,42 @@
1
- To improve copyright infringement detection, we developed a structured dataset designed to test a model's capability to identify songs based on 5 second clips. We extract a random 5 second span from the original song audio as query. We then define adversarial queries, such as adding background noise, pitch shifting and EQ balancing, to fool detectors. The dataset is sourced from the \texttt{benjamin-paine/free-music-archive-small} collection on Hugging Face, containing a total of 7,916 audio tracks. Each track has an approximate duration of 30 seconds and spans multiple genres, ensuring a diverse representation of musical styles. This dataset provides a comprehensive foundation for retrieval-based copyright detection, offering varied audio patterns necessary for robust model training and evaluation.
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # FMAR: A Dataset for Robust Song Identification
2
+
3
+ **Authors:** Ryan Lee, Yi-Chieh Chiu, Ayush Goyal, Abhir Karande, Harrison Pearl, Matthew Hong, Spencer Cobb
4
+
5
+ ## Overview
6
+
7
+ To improve copyright infringement detection, we developed a structured dataset designed to test a model's capability to identify songs based on 5-second clips, or queries. We create adversarial queries to replicate common strategies to evade copyright infringement detectors, such as pitch shifting, EQ balancing, and adding background noise.
8
+
9
+ ## Dataset Description
10
+
11
+ - **Query Audio:**
12
+ A random 5-second span is extracted from the original song audio.
13
+
14
+ - **Adversarial Queries:**
15
+ We define adversarial queries by applying modifications such as:
16
+ - Adding background noise
17
+ - Pitch shifting
18
+ - EQ balancing
19
+
20
+ ## Source
21
+
22
+
23
+ This dataset is sourced from the `benjamin-paine/free-music-archive-small` collection on Hugging Face. It includes:
24
+ - **Total Audio Tracks:** 7,916
25
+ - **Average Duration:** Approximately 30 seconds per track
26
+ - **Diversity:** Multiple genres to ensure a diverse representation of musical styles
27
+
28
+ Background noises applied to the adversarial queries were sourced from the following work:
29
+
30
+ ```bibtex
31
+ @inproceedings{piczak2015dataset,
32
+ title = {{ESC}: {Dataset} for {Environmental Sound Classification}},
33
+ author = {Piczak, Karol J.},
34
+ booktitle = {Proceedings of the 23rd {Annual ACM Conference} on {Multimedia}},
35
+ date = {2015-10-13},
36
+ url = {http://dl.acm.org/citation.cfm?doid=2733373.2806390},
37
+ doi = {10.1145/2733373.2806390},
38
+ location = {{Brisbane, Australia}},
39
+ isbn = {978-1-4503-3459-4},
40
+ publisher = {{ACM Press}},
41
+ pages = {1015--1018}
42
+ }