File size: 1,700 Bytes
ea4fd77
 
4ec3acf
 
 
ea4fd77
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
18b7a89
 
b0e935a
ea4fd77
 
18b7a89
 
ea4fd77
 
 
 
 
b0e935a
 
ea4fd77
 
4ec3acf
96aa105
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
---
license: mit
size_categories:
- 1K<n<10K
pretty_name: EDM CUE
dataset_info:
  features:
  - name: id
    dtype: int64
  - name: title
    dtype: string
  - name: artists
    dtype: string
  - name: duration
    dtype: int64
  - name: genre
    sequence: string
  - name: key
    sequence: string
  - name: beat_grid
    struct:
    - name: bpm
      dtype: float64
    - name: init_beat
      dtype: int64
    - name: start_pos
      dtype: float64
    - name: time_sig
      dtype: string
  - name: cue_pts
    sequence: float64
  splits:
  - name: train
    num_bytes: 690103
    num_examples: 4609
  - name: valid
    num_bytes: 16842
    num_examples: 101
  download_size: 292711
  dataset_size: 706945
configs:
- config_name: default
  data_files:
  - split: train
    path: data/train-*
  - split: valid
    path: data/valid-*
tags:
- music
---

# What is EDM-CUE?

The EDM-CUE dataset contains metadata for ~5k EDM tracks, most importantly cue points manually placed by human experts.

For more information see our ISMIR'24 paper *Cue Point Estimation using Object Detection* [link coming soon].


## Dataset Structure

The dataset contains the following features:

* id: Track ID on Deezer.
* title: Track name.
* artists: Track artists.
* duration: Track duration in seconds.
* genre: List of genres (possibly incomplete).
* key: Alphanumeric key of the track generated by rekordbox (possibly incorrect).
* beat_grid: Contains 4 values to compute the grid. 'start_pos' is the starting position in seconds, 'init_beat' is the beat count of 'start_pos', 'bpm' is the beats per minute tempo, and 'time_sig' is the time signature in string format.
* cue_pts: Cue point position in seconds.