parquet-converter commited on
Commit
3aa3c29
1 Parent(s): 77843c7

Update parquet files

Browse files
.gitattributes DELETED
@@ -1,38 +0,0 @@
1
- *.7z filter=lfs diff=lfs merge=lfs -text
2
- *.arrow filter=lfs diff=lfs merge=lfs -text
3
- *.bin filter=lfs diff=lfs merge=lfs -text
4
- *.bz2 filter=lfs diff=lfs merge=lfs -text
5
- *.ftz filter=lfs diff=lfs merge=lfs -text
6
- *.gz filter=lfs diff=lfs merge=lfs -text
7
- *.h5 filter=lfs diff=lfs merge=lfs -text
8
- *.joblib filter=lfs diff=lfs merge=lfs -text
9
- *.lfs.* filter=lfs diff=lfs merge=lfs -text
10
- *.model filter=lfs diff=lfs merge=lfs -text
11
- *.msgpack filter=lfs diff=lfs merge=lfs -text
12
- *.onnx filter=lfs diff=lfs merge=lfs -text
13
- *.ot filter=lfs diff=lfs merge=lfs -text
14
- *.parquet filter=lfs diff=lfs merge=lfs -text
15
- *.pb filter=lfs diff=lfs merge=lfs -text
16
- *.pt filter=lfs diff=lfs merge=lfs -text
17
- *.pth filter=lfs diff=lfs merge=lfs -text
18
- *.rar filter=lfs diff=lfs merge=lfs -text
19
- saved_model/**/* filter=lfs diff=lfs merge=lfs -text
20
- *.tar.* filter=lfs diff=lfs merge=lfs -text
21
- *.tflite filter=lfs diff=lfs merge=lfs -text
22
- *.tgz filter=lfs diff=lfs merge=lfs -text
23
- *.wasm filter=lfs diff=lfs merge=lfs -text
24
- *.xz filter=lfs diff=lfs merge=lfs -text
25
- *.zip filter=lfs diff=lfs merge=lfs -text
26
- *.zstandard filter=lfs diff=lfs merge=lfs -text
27
- *tfevents* filter=lfs diff=lfs merge=lfs -text
28
- # Audio files - uncompressed
29
- *.pcm filter=lfs diff=lfs merge=lfs -text
30
- *.sam filter=lfs diff=lfs merge=lfs -text
31
- *.raw filter=lfs diff=lfs merge=lfs -text
32
- # Audio files - compressed
33
- *.aac filter=lfs diff=lfs merge=lfs -text
34
- *.flac filter=lfs diff=lfs merge=lfs -text
35
- *.mp3 filter=lfs diff=lfs merge=lfs -text
36
- *.ogg filter=lfs diff=lfs merge=lfs -text
37
- *.wav filter=lfs diff=lfs merge=lfs -text
38
- *.txt filter=lfs diff=lfs merge=lfs -text
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
README.md DELETED
@@ -1,76 +0,0 @@
1
- ---
2
- license:
3
- - cc
4
- multilinguality:
5
- - other-music
6
- pretty_name: Mutopia Guitar Dataset
7
- task_categories:
8
- - text-generation
9
- task_ids:
10
- - language-modeling
11
- ---
12
-
13
- # Mutopia Guitar Dataset
14
-
15
- ## Table of Contents
16
- - [Dataset Card Creation Guide](#mutopia-guitar-dataset)
17
- - [Table of Contents](#table-of-contents)
18
- - [Dataset Description](#dataset-description)
19
- - [Dataset Summary](#dataset-summary)
20
- - [Supported Tasks and Leaderboards](#supported-tasks-and-leaderboards)
21
- - [Dataset Structure](#dataset-structure)
22
- - [Data Instances](#data-instances)
23
- - [Data Fields](#data-fields)
24
- - [Data Splits](#data-splits)
25
-
26
- ## Dataset Description
27
-
28
- - **Homepage:** [Mutopia Project](https://www.mutopiaproject.org/)
29
- - **Repository implementation of the paper:** [MMM: Exploring Conditional Multi-Track Music Generation with the Transformer and the Johann Sebastian Bach Chorales Dataset](https://github.com/AI-Guru/MMM-JSB)
30
- - **Based on Paper:** [MMM: Exploring Conditional Multi-Track Music Generation with the Transformer](https://arxiv.org/abs/2008.06048)
31
- - **Point of Contact:** [Juan Carlos Piñeros](https://www.linkedin.com/in/juancarlospinerosp/)
32
-
33
- ### Dataset Summary
34
-
35
- Mutopia guitar dataset consists of the soloist guitar pieces of the [Mutopia Project](https://www.mutopiaproject.org/). I encoded the MIDI files into text tokens using the excellent [implementation](https://github.com/AI-Guru/MMM-JSB) of Dr. Tristan Beheren of the paper: [MMM: Exploring Conditional Multi-Track Music Generation with the Transformer](https://arxiv.org/abs/2008.06048).
36
-
37
- The dataset mainly contains guitar music from western classical composers, such as Sor, Aguado, Carcassi, and Giuliani.
38
-
39
- ### Supported Tasks and Leaderboards
40
-
41
- Anyone interested can use the dataset to train a model for symbolic music generation, which consists in treating symbols for music sounds (notes) as text tokens. Then, one can implement a generative model using NLP techniques, such as Transformers.
42
-
43
- ## Dataset Structure
44
-
45
- ### Data Instances
46
-
47
- Each guitar piece is represented as a line of text that contains a series of tokens, for instance:
48
-
49
- PIECE_START: Where the piece begins
50
- PIECE_ENDS: Where the piece ends
51
- TIME_SIGNATURE: Time signature for the piece
52
- BPM: Tempo of the piece
53
- BAR_START: Begining of a new bar
54
- NOTE_ON: Start of a new musical note specifying its MIDI note number
55
- TIME_DELTA: Duration until the next event
56
- NOTE_OFF: End of musical note specifying its MIDI note number
57
-
58
- ```
59
- {
60
- 'text': PIECE_START TIME_SIGNATURE=2_4 BPM=74 TRACK_START INST=0 DENSITY=4 BAR_START NOTE_ON=52 TIME_DELTA=2.0 NOTE_OFF=52 NOTE_ON=45 NOTE_ON=49 TIME_DELTA=2.0 NOTE_OFF=49 NOTE_ON=52 TIME_DELTA=2.0 NOTE_OFF=45 NOTE_ON=47 NOTE_OFF=52 NOTE_ON=44 TIME_DELTA=2.0,
61
- ...
62
- }
63
- ```
64
-
65
- ### Data Fields
66
-
67
- - `text`: Sequence of tokens that represent the guitar piece as explained in the paper [MMM: Exploring Conditional Multi-Track Music Generation with the Transformer](https://arxiv.org/abs/2008.06048).
68
-
69
- ### Data Splits
70
-
71
- There are, at this moment, 395 MIDI guitar files in the Mutopia Project. I removed files of pieces that were not music for soloist guitar. After this removal, there were 372 MIDI files.
72
-
73
- I used an 80/20 split and augmented the training dataset by transposing the piece 1 octave above and below (24 semitones). The final result is then:
74
-
75
- **Train dataset:** 7325 pieces
76
- **Test dataset:** 74 pieces
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
test.txt → juancopi81--mutopia_guitar_dataset/text-test.parquet RENAMED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:0144b385e2dca3cf8fa47e0e49266c7b8d6abc807c7dba140a8aad2ddb131c11
3
- size 903014
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:c4b0dd48be4cfcbc9b218620ee2c4293b8bc5f8e3bcca2d5ab2a632c5f25c503
3
+ size 137545
train.txt → juancopi81--mutopia_guitar_dataset/text-train.parquet RENAMED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:d7d287d57c22abba724067596a7c2193a53d8767cbc315c6bc519192e801335d
3
- size 99491906
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:6f5bfe1adb03b118efb01733ba5921b5599b6e05025394cb8e4244314e41f0be
3
+ size 14260783