Mikeandmenny commited on
Commit
4295fd1
·
verified ·
1 Parent(s): c3b231f

Upload folder using huggingface_hub

Browse files
README.md ADDED
@@ -0,0 +1,20 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: mit
3
+ tags:
4
+ - midi
5
+ - music-generation
6
+ - tokenization
7
+ ---
8
+ # MIDI tokenization models (Lakh+HSMT pretrain → ASAP finetune)
9
+ Six composer/genre-conditional MIDI Transformers, one per tokenization mode.
10
+ | subfolder | tokenization_mode |
11
+ |---|---|
12
+ | `note` | note |
13
+ | `note_pedal` | note_pedal |
14
+ | `note_velocity` | note_velocity |
15
+ | `note_velocity_beat` | note_velocity_beat |
16
+ | `note_velocity_pedal` | note_velocity_pedal |
17
+ | `full` | full |
18
+ Each folder: `config.json` + `pytorch_model.bin`.
19
+ - Pretrain: Lakh MIDI + HSMT (`note_velocity_pedal`)
20
+ - Finetune: ASAP v2, mode as above
full/config.json ADDED
@@ -0,0 +1,143 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "vocab_size": 11264,
3
+ "num_composers": 63,
4
+ "num_genres": 52,
5
+ "d_model": 768,
6
+ "n_heads": 12,
7
+ "num_layers": 24,
8
+ "ffn_dim": 3072,
9
+ "dropout": 0.1,
10
+ "max_seq_len": 8192,
11
+ "cond_dim": 128,
12
+ "pad_token_id": 0,
13
+ "bos_token_id": 1,
14
+ "eos_token_id": 2,
15
+ "tokenization_mode": "full",
16
+ "num_composer_ids": 65,
17
+ "num_genre_ids": 54,
18
+ "composers": [
19
+ "Bach",
20
+ "Balakirev",
21
+ "Beethoven",
22
+ "Brahms",
23
+ "Chopin",
24
+ "Debussy",
25
+ "Glinka",
26
+ "Haydn",
27
+ "Liszt",
28
+ "Mozart",
29
+ "Prokofiev",
30
+ "Rachmaninoff",
31
+ "Ravel",
32
+ "Schubert",
33
+ "Schumann",
34
+ "Scriabin",
35
+ "Alban Berg",
36
+ "Antonio Soler",
37
+ "Carl Maria von Weber",
38
+ "C\u00e9sar Franck",
39
+ "Charles Gounod / Franz Liszt",
40
+ "Domenico Scarlatti",
41
+ "Edvard Grieg",
42
+ "Felix Mendelssohn",
43
+ "Felix Mendelssohn / Sergei Rachmaninoff",
44
+ "Franz Liszt / Camille Saint-Sa\u00ebns",
45
+ "Franz Liszt / Vladimir Horowitz",
46
+ "Franz Schubert / Franz Liszt",
47
+ "Franz Schubert / Leopold Godowsky",
48
+ "Fritz Kreisler / Sergei Rachmaninoff",
49
+ "George Enescu",
50
+ "George Frideric Handel",
51
+ "Georges Bizet / Ferruccio Busoni",
52
+ "Georges Bizet / Moritz Moszkowski",
53
+ "Georges Bizet / Vladimir Horowitz",
54
+ "Giuseppe Verdi / Franz Liszt",
55
+ "Henry Purcell",
56
+ "Isaac Alb\u00e9niz",
57
+ "Isaac Alb\u00e9niz / Leopold Godowsky",
58
+ "Jean-Philippe Rameau",
59
+ "Johann Christian Fischer / Wolfgang Amadeus Mozart",
60
+ "Johann Pachelbel",
61
+ "Johann Sebastian Bach / Egon Petri",
62
+ "Johann Sebastian Bach / Ferruccio Busoni",
63
+ "Johann Sebastian Bach / Franz Liszt",
64
+ "Johann Sebastian Bach / Myra Hess",
65
+ "Johann Strauss / Alfred Gr\u00fcnfeld",
66
+ "Leo\u0161 Jan\u00e1\u010dek",
67
+ "Mikhail Glinka / Mily Balakirev",
68
+ "Modest Mussorgsky",
69
+ "Muzio Clementi",
70
+ "Niccol\u00f2 Paganini / Franz Liszt",
71
+ "Nikolai Medtner",
72
+ "Nikolai Rimsky-Korsakov / Sergei Rachmaninoff",
73
+ "Orlando Gibbons",
74
+ "Percy Grainger",
75
+ "Pyotr Ilyich Tchaikovsky",
76
+ "Pyotr Ilyich Tchaikovsky / Mikhail Pletnev",
77
+ "Pyotr Ilyich Tchaikovsky / Sergei Rachmaninoff",
78
+ "Richard Wagner / Franz Liszt",
79
+ "Robert Schumann / Franz Liszt",
80
+ "Sergei Rachmaninoff / Gy\u00f6rgy Cziffra",
81
+ "Sergei Rachmaninoff / Vyacheslav Gryaznov"
82
+ ],
83
+ "genres": [
84
+ "annees_de_pelerinage",
85
+ "arabeske",
86
+ "arabesque",
87
+ "bagatelle",
88
+ "ballade",
89
+ "barcarolle",
90
+ "berceuse",
91
+ "capriccio",
92
+ "carnaval",
93
+ "chaconne",
94
+ "concerto",
95
+ "duet",
96
+ "dumka",
97
+ "elegy",
98
+ "estampes",
99
+ "etude",
100
+ "fantasie",
101
+ "fantasy",
102
+ "fugue",
103
+ "gaspard_de_la_nuit",
104
+ "humoresque",
105
+ "image",
106
+ "images",
107
+ "impromptu",
108
+ "intermezzo",
109
+ "islamey",
110
+ "kreisleriana",
111
+ "mazurka",
112
+ "miroirs",
113
+ "moment_musical",
114
+ "nocturne",
115
+ "overture",
116
+ "paraphrase",
117
+ "partita",
118
+ "pavan",
119
+ "piano_piece",
120
+ "piece",
121
+ "polonaise",
122
+ "prelude",
123
+ "rhapsody",
124
+ "romance",
125
+ "rondo",
126
+ "scherzo",
127
+ "sonata",
128
+ "sonatina",
129
+ "song_transcription",
130
+ "suite",
131
+ "tango",
132
+ "tarantella",
133
+ "toccata",
134
+ "variation",
135
+ "waltz"
136
+ ],
137
+ "composer_pad_id": 63,
138
+ "composer_unknown_id": 64,
139
+ "genre_pad_id": 52,
140
+ "genre_unknown_id": 53,
141
+ "window_duration_sec": 100.0,
142
+ "small_vocab": true
143
+ }
full/pytorch_model.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:b7d17fee170af8754501811dec9b30c7aff2d9775e20a4fcc3d7bd453ab602a6
3
+ size 970157102
note/config.json ADDED
@@ -0,0 +1,143 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "vocab_size": 11131,
3
+ "num_composers": 63,
4
+ "num_genres": 52,
5
+ "d_model": 768,
6
+ "n_heads": 12,
7
+ "num_layers": 24,
8
+ "ffn_dim": 3072,
9
+ "dropout": 0.1,
10
+ "max_seq_len": 8192,
11
+ "cond_dim": 128,
12
+ "pad_token_id": 0,
13
+ "bos_token_id": 1,
14
+ "eos_token_id": 2,
15
+ "tokenization_mode": "note",
16
+ "num_composer_ids": 65,
17
+ "num_genre_ids": 54,
18
+ "composers": [
19
+ "Bach",
20
+ "Balakirev",
21
+ "Beethoven",
22
+ "Brahms",
23
+ "Chopin",
24
+ "Debussy",
25
+ "Glinka",
26
+ "Haydn",
27
+ "Liszt",
28
+ "Mozart",
29
+ "Prokofiev",
30
+ "Rachmaninoff",
31
+ "Ravel",
32
+ "Schubert",
33
+ "Schumann",
34
+ "Scriabin",
35
+ "Alban Berg",
36
+ "Antonio Soler",
37
+ "Carl Maria von Weber",
38
+ "C\u00e9sar Franck",
39
+ "Charles Gounod / Franz Liszt",
40
+ "Domenico Scarlatti",
41
+ "Edvard Grieg",
42
+ "Felix Mendelssohn",
43
+ "Felix Mendelssohn / Sergei Rachmaninoff",
44
+ "Franz Liszt / Camille Saint-Sa\u00ebns",
45
+ "Franz Liszt / Vladimir Horowitz",
46
+ "Franz Schubert / Franz Liszt",
47
+ "Franz Schubert / Leopold Godowsky",
48
+ "Fritz Kreisler / Sergei Rachmaninoff",
49
+ "George Enescu",
50
+ "George Frideric Handel",
51
+ "Georges Bizet / Ferruccio Busoni",
52
+ "Georges Bizet / Moritz Moszkowski",
53
+ "Georges Bizet / Vladimir Horowitz",
54
+ "Giuseppe Verdi / Franz Liszt",
55
+ "Henry Purcell",
56
+ "Isaac Alb\u00e9niz",
57
+ "Isaac Alb\u00e9niz / Leopold Godowsky",
58
+ "Jean-Philippe Rameau",
59
+ "Johann Christian Fischer / Wolfgang Amadeus Mozart",
60
+ "Johann Pachelbel",
61
+ "Johann Sebastian Bach / Egon Petri",
62
+ "Johann Sebastian Bach / Ferruccio Busoni",
63
+ "Johann Sebastian Bach / Franz Liszt",
64
+ "Johann Sebastian Bach / Myra Hess",
65
+ "Johann Strauss / Alfred Gr\u00fcnfeld",
66
+ "Leo\u0161 Jan\u00e1\u010dek",
67
+ "Mikhail Glinka / Mily Balakirev",
68
+ "Modest Mussorgsky",
69
+ "Muzio Clementi",
70
+ "Niccol\u00f2 Paganini / Franz Liszt",
71
+ "Nikolai Medtner",
72
+ "Nikolai Rimsky-Korsakov / Sergei Rachmaninoff",
73
+ "Orlando Gibbons",
74
+ "Percy Grainger",
75
+ "Pyotr Ilyich Tchaikovsky",
76
+ "Pyotr Ilyich Tchaikovsky / Mikhail Pletnev",
77
+ "Pyotr Ilyich Tchaikovsky / Sergei Rachmaninoff",
78
+ "Richard Wagner / Franz Liszt",
79
+ "Robert Schumann / Franz Liszt",
80
+ "Sergei Rachmaninoff / Gy\u00f6rgy Cziffra",
81
+ "Sergei Rachmaninoff / Vyacheslav Gryaznov"
82
+ ],
83
+ "genres": [
84
+ "annees_de_pelerinage",
85
+ "arabeske",
86
+ "arabesque",
87
+ "bagatelle",
88
+ "ballade",
89
+ "barcarolle",
90
+ "berceuse",
91
+ "capriccio",
92
+ "carnaval",
93
+ "chaconne",
94
+ "concerto",
95
+ "duet",
96
+ "dumka",
97
+ "elegy",
98
+ "estampes",
99
+ "etude",
100
+ "fantasie",
101
+ "fantasy",
102
+ "fugue",
103
+ "gaspard_de_la_nuit",
104
+ "humoresque",
105
+ "image",
106
+ "images",
107
+ "impromptu",
108
+ "intermezzo",
109
+ "islamey",
110
+ "kreisleriana",
111
+ "mazurka",
112
+ "miroirs",
113
+ "moment_musical",
114
+ "nocturne",
115
+ "overture",
116
+ "paraphrase",
117
+ "partita",
118
+ "pavan",
119
+ "piano_piece",
120
+ "piece",
121
+ "polonaise",
122
+ "prelude",
123
+ "rhapsody",
124
+ "romance",
125
+ "rondo",
126
+ "scherzo",
127
+ "sonata",
128
+ "sonatina",
129
+ "song_transcription",
130
+ "suite",
131
+ "tango",
132
+ "tarantella",
133
+ "toccata",
134
+ "variation",
135
+ "waltz"
136
+ ],
137
+ "composer_pad_id": 63,
138
+ "composer_unknown_id": 64,
139
+ "genre_pad_id": 52,
140
+ "genre_unknown_id": 53,
141
+ "window_duration_sec": 100.0,
142
+ "small_vocab": true
143
+ }
note/pytorch_model.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:a9edfd29c5abb7b4d4715443213327ed2697781f30eb4482c3fc1644407716dd
3
+ size 969748526
note_pedal/config.json ADDED
@@ -0,0 +1,143 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "vocab_size": 11264,
3
+ "num_composers": 63,
4
+ "num_genres": 52,
5
+ "d_model": 768,
6
+ "n_heads": 12,
7
+ "num_layers": 24,
8
+ "ffn_dim": 3072,
9
+ "dropout": 0.1,
10
+ "max_seq_len": 8192,
11
+ "cond_dim": 128,
12
+ "pad_token_id": 0,
13
+ "bos_token_id": 1,
14
+ "eos_token_id": 2,
15
+ "tokenization_mode": "note_pedal",
16
+ "num_composer_ids": 65,
17
+ "num_genre_ids": 54,
18
+ "composers": [
19
+ "Bach",
20
+ "Balakirev",
21
+ "Beethoven",
22
+ "Brahms",
23
+ "Chopin",
24
+ "Debussy",
25
+ "Glinka",
26
+ "Haydn",
27
+ "Liszt",
28
+ "Mozart",
29
+ "Prokofiev",
30
+ "Rachmaninoff",
31
+ "Ravel",
32
+ "Schubert",
33
+ "Schumann",
34
+ "Scriabin",
35
+ "Alban Berg",
36
+ "Antonio Soler",
37
+ "Carl Maria von Weber",
38
+ "C\u00e9sar Franck",
39
+ "Charles Gounod / Franz Liszt",
40
+ "Domenico Scarlatti",
41
+ "Edvard Grieg",
42
+ "Felix Mendelssohn",
43
+ "Felix Mendelssohn / Sergei Rachmaninoff",
44
+ "Franz Liszt / Camille Saint-Sa\u00ebns",
45
+ "Franz Liszt / Vladimir Horowitz",
46
+ "Franz Schubert / Franz Liszt",
47
+ "Franz Schubert / Leopold Godowsky",
48
+ "Fritz Kreisler / Sergei Rachmaninoff",
49
+ "George Enescu",
50
+ "George Frideric Handel",
51
+ "Georges Bizet / Ferruccio Busoni",
52
+ "Georges Bizet / Moritz Moszkowski",
53
+ "Georges Bizet / Vladimir Horowitz",
54
+ "Giuseppe Verdi / Franz Liszt",
55
+ "Henry Purcell",
56
+ "Isaac Alb\u00e9niz",
57
+ "Isaac Alb\u00e9niz / Leopold Godowsky",
58
+ "Jean-Philippe Rameau",
59
+ "Johann Christian Fischer / Wolfgang Amadeus Mozart",
60
+ "Johann Pachelbel",
61
+ "Johann Sebastian Bach / Egon Petri",
62
+ "Johann Sebastian Bach / Ferruccio Busoni",
63
+ "Johann Sebastian Bach / Franz Liszt",
64
+ "Johann Sebastian Bach / Myra Hess",
65
+ "Johann Strauss / Alfred Gr\u00fcnfeld",
66
+ "Leo\u0161 Jan\u00e1\u010dek",
67
+ "Mikhail Glinka / Mily Balakirev",
68
+ "Modest Mussorgsky",
69
+ "Muzio Clementi",
70
+ "Niccol\u00f2 Paganini / Franz Liszt",
71
+ "Nikolai Medtner",
72
+ "Nikolai Rimsky-Korsakov / Sergei Rachmaninoff",
73
+ "Orlando Gibbons",
74
+ "Percy Grainger",
75
+ "Pyotr Ilyich Tchaikovsky",
76
+ "Pyotr Ilyich Tchaikovsky / Mikhail Pletnev",
77
+ "Pyotr Ilyich Tchaikovsky / Sergei Rachmaninoff",
78
+ "Richard Wagner / Franz Liszt",
79
+ "Robert Schumann / Franz Liszt",
80
+ "Sergei Rachmaninoff / Gy\u00f6rgy Cziffra",
81
+ "Sergei Rachmaninoff / Vyacheslav Gryaznov"
82
+ ],
83
+ "genres": [
84
+ "annees_de_pelerinage",
85
+ "arabeske",
86
+ "arabesque",
87
+ "bagatelle",
88
+ "ballade",
89
+ "barcarolle",
90
+ "berceuse",
91
+ "capriccio",
92
+ "carnaval",
93
+ "chaconne",
94
+ "concerto",
95
+ "duet",
96
+ "dumka",
97
+ "elegy",
98
+ "estampes",
99
+ "etude",
100
+ "fantasie",
101
+ "fantasy",
102
+ "fugue",
103
+ "gaspard_de_la_nuit",
104
+ "humoresque",
105
+ "image",
106
+ "images",
107
+ "impromptu",
108
+ "intermezzo",
109
+ "islamey",
110
+ "kreisleriana",
111
+ "mazurka",
112
+ "miroirs",
113
+ "moment_musical",
114
+ "nocturne",
115
+ "overture",
116
+ "paraphrase",
117
+ "partita",
118
+ "pavan",
119
+ "piano_piece",
120
+ "piece",
121
+ "polonaise",
122
+ "prelude",
123
+ "rhapsody",
124
+ "romance",
125
+ "rondo",
126
+ "scherzo",
127
+ "sonata",
128
+ "sonatina",
129
+ "song_transcription",
130
+ "suite",
131
+ "tango",
132
+ "tarantella",
133
+ "toccata",
134
+ "variation",
135
+ "waltz"
136
+ ],
137
+ "composer_pad_id": 63,
138
+ "composer_unknown_id": 64,
139
+ "genre_pad_id": 52,
140
+ "genre_unknown_id": 53,
141
+ "window_duration_sec": 100.0,
142
+ "small_vocab": true
143
+ }
note_pedal/pytorch_model.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:7ee2914676941b149a2f5b5f471963d7fd37d0ed7ca269a832fe3496cc34f2ba
3
+ size 970157102
note_velocity/config.json ADDED
@@ -0,0 +1,143 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "vocab_size": 11259,
3
+ "num_composers": 63,
4
+ "num_genres": 52,
5
+ "d_model": 768,
6
+ "n_heads": 12,
7
+ "num_layers": 24,
8
+ "ffn_dim": 3072,
9
+ "dropout": 0.1,
10
+ "max_seq_len": 8192,
11
+ "cond_dim": 128,
12
+ "pad_token_id": 0,
13
+ "bos_token_id": 1,
14
+ "eos_token_id": 2,
15
+ "tokenization_mode": "note_velocity",
16
+ "num_composer_ids": 65,
17
+ "num_genre_ids": 54,
18
+ "composers": [
19
+ "Bach",
20
+ "Balakirev",
21
+ "Beethoven",
22
+ "Brahms",
23
+ "Chopin",
24
+ "Debussy",
25
+ "Glinka",
26
+ "Haydn",
27
+ "Liszt",
28
+ "Mozart",
29
+ "Prokofiev",
30
+ "Rachmaninoff",
31
+ "Ravel",
32
+ "Schubert",
33
+ "Schumann",
34
+ "Scriabin",
35
+ "Alban Berg",
36
+ "Antonio Soler",
37
+ "Carl Maria von Weber",
38
+ "C\u00e9sar Franck",
39
+ "Charles Gounod / Franz Liszt",
40
+ "Domenico Scarlatti",
41
+ "Edvard Grieg",
42
+ "Felix Mendelssohn",
43
+ "Felix Mendelssohn / Sergei Rachmaninoff",
44
+ "Franz Liszt / Camille Saint-Sa\u00ebns",
45
+ "Franz Liszt / Vladimir Horowitz",
46
+ "Franz Schubert / Franz Liszt",
47
+ "Franz Schubert / Leopold Godowsky",
48
+ "Fritz Kreisler / Sergei Rachmaninoff",
49
+ "George Enescu",
50
+ "George Frideric Handel",
51
+ "Georges Bizet / Ferruccio Busoni",
52
+ "Georges Bizet / Moritz Moszkowski",
53
+ "Georges Bizet / Vladimir Horowitz",
54
+ "Giuseppe Verdi / Franz Liszt",
55
+ "Henry Purcell",
56
+ "Isaac Alb\u00e9niz",
57
+ "Isaac Alb\u00e9niz / Leopold Godowsky",
58
+ "Jean-Philippe Rameau",
59
+ "Johann Christian Fischer / Wolfgang Amadeus Mozart",
60
+ "Johann Pachelbel",
61
+ "Johann Sebastian Bach / Egon Petri",
62
+ "Johann Sebastian Bach / Ferruccio Busoni",
63
+ "Johann Sebastian Bach / Franz Liszt",
64
+ "Johann Sebastian Bach / Myra Hess",
65
+ "Johann Strauss / Alfred Gr\u00fcnfeld",
66
+ "Leo\u0161 Jan\u00e1\u010dek",
67
+ "Mikhail Glinka / Mily Balakirev",
68
+ "Modest Mussorgsky",
69
+ "Muzio Clementi",
70
+ "Niccol\u00f2 Paganini / Franz Liszt",
71
+ "Nikolai Medtner",
72
+ "Nikolai Rimsky-Korsakov / Sergei Rachmaninoff",
73
+ "Orlando Gibbons",
74
+ "Percy Grainger",
75
+ "Pyotr Ilyich Tchaikovsky",
76
+ "Pyotr Ilyich Tchaikovsky / Mikhail Pletnev",
77
+ "Pyotr Ilyich Tchaikovsky / Sergei Rachmaninoff",
78
+ "Richard Wagner / Franz Liszt",
79
+ "Robert Schumann / Franz Liszt",
80
+ "Sergei Rachmaninoff / Gy\u00f6rgy Cziffra",
81
+ "Sergei Rachmaninoff / Vyacheslav Gryaznov"
82
+ ],
83
+ "genres": [
84
+ "annees_de_pelerinage",
85
+ "arabeske",
86
+ "arabesque",
87
+ "bagatelle",
88
+ "ballade",
89
+ "barcarolle",
90
+ "berceuse",
91
+ "capriccio",
92
+ "carnaval",
93
+ "chaconne",
94
+ "concerto",
95
+ "duet",
96
+ "dumka",
97
+ "elegy",
98
+ "estampes",
99
+ "etude",
100
+ "fantasie",
101
+ "fantasy",
102
+ "fugue",
103
+ "gaspard_de_la_nuit",
104
+ "humoresque",
105
+ "image",
106
+ "images",
107
+ "impromptu",
108
+ "intermezzo",
109
+ "islamey",
110
+ "kreisleriana",
111
+ "mazurka",
112
+ "miroirs",
113
+ "moment_musical",
114
+ "nocturne",
115
+ "overture",
116
+ "paraphrase",
117
+ "partita",
118
+ "pavan",
119
+ "piano_piece",
120
+ "piece",
121
+ "polonaise",
122
+ "prelude",
123
+ "rhapsody",
124
+ "romance",
125
+ "rondo",
126
+ "scherzo",
127
+ "sonata",
128
+ "sonatina",
129
+ "song_transcription",
130
+ "suite",
131
+ "tango",
132
+ "tarantella",
133
+ "toccata",
134
+ "variation",
135
+ "waltz"
136
+ ],
137
+ "composer_pad_id": 63,
138
+ "composer_unknown_id": 64,
139
+ "genre_pad_id": 52,
140
+ "genre_unknown_id": 53,
141
+ "window_duration_sec": 100.0,
142
+ "small_vocab": true
143
+ }
note_velocity/pytorch_model.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:94466b415e7c1493eb6f1d5549f9a4d1161ec19cff7b721f3873d25490339cba
3
+ size 970141742
note_velocity_beat/config.json ADDED
@@ -0,0 +1,143 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "vocab_size": 11262,
3
+ "num_composers": 63,
4
+ "num_genres": 52,
5
+ "d_model": 768,
6
+ "n_heads": 12,
7
+ "num_layers": 24,
8
+ "ffn_dim": 3072,
9
+ "dropout": 0.1,
10
+ "max_seq_len": 8192,
11
+ "cond_dim": 128,
12
+ "pad_token_id": 0,
13
+ "bos_token_id": 1,
14
+ "eos_token_id": 2,
15
+ "tokenization_mode": "note_velocity_beat",
16
+ "num_composer_ids": 65,
17
+ "num_genre_ids": 54,
18
+ "composers": [
19
+ "Bach",
20
+ "Balakirev",
21
+ "Beethoven",
22
+ "Brahms",
23
+ "Chopin",
24
+ "Debussy",
25
+ "Glinka",
26
+ "Haydn",
27
+ "Liszt",
28
+ "Mozart",
29
+ "Prokofiev",
30
+ "Rachmaninoff",
31
+ "Ravel",
32
+ "Schubert",
33
+ "Schumann",
34
+ "Scriabin",
35
+ "Alban Berg",
36
+ "Antonio Soler",
37
+ "Carl Maria von Weber",
38
+ "C\u00e9sar Franck",
39
+ "Charles Gounod / Franz Liszt",
40
+ "Domenico Scarlatti",
41
+ "Edvard Grieg",
42
+ "Felix Mendelssohn",
43
+ "Felix Mendelssohn / Sergei Rachmaninoff",
44
+ "Franz Liszt / Camille Saint-Sa\u00ebns",
45
+ "Franz Liszt / Vladimir Horowitz",
46
+ "Franz Schubert / Franz Liszt",
47
+ "Franz Schubert / Leopold Godowsky",
48
+ "Fritz Kreisler / Sergei Rachmaninoff",
49
+ "George Enescu",
50
+ "George Frideric Handel",
51
+ "Georges Bizet / Ferruccio Busoni",
52
+ "Georges Bizet / Moritz Moszkowski",
53
+ "Georges Bizet / Vladimir Horowitz",
54
+ "Giuseppe Verdi / Franz Liszt",
55
+ "Henry Purcell",
56
+ "Isaac Alb\u00e9niz",
57
+ "Isaac Alb\u00e9niz / Leopold Godowsky",
58
+ "Jean-Philippe Rameau",
59
+ "Johann Christian Fischer / Wolfgang Amadeus Mozart",
60
+ "Johann Pachelbel",
61
+ "Johann Sebastian Bach / Egon Petri",
62
+ "Johann Sebastian Bach / Ferruccio Busoni",
63
+ "Johann Sebastian Bach / Franz Liszt",
64
+ "Johann Sebastian Bach / Myra Hess",
65
+ "Johann Strauss / Alfred Gr\u00fcnfeld",
66
+ "Leo\u0161 Jan\u00e1\u010dek",
67
+ "Mikhail Glinka / Mily Balakirev",
68
+ "Modest Mussorgsky",
69
+ "Muzio Clementi",
70
+ "Niccol\u00f2 Paganini / Franz Liszt",
71
+ "Nikolai Medtner",
72
+ "Nikolai Rimsky-Korsakov / Sergei Rachmaninoff",
73
+ "Orlando Gibbons",
74
+ "Percy Grainger",
75
+ "Pyotr Ilyich Tchaikovsky",
76
+ "Pyotr Ilyich Tchaikovsky / Mikhail Pletnev",
77
+ "Pyotr Ilyich Tchaikovsky / Sergei Rachmaninoff",
78
+ "Richard Wagner / Franz Liszt",
79
+ "Robert Schumann / Franz Liszt",
80
+ "Sergei Rachmaninoff / Gy\u00f6rgy Cziffra",
81
+ "Sergei Rachmaninoff / Vyacheslav Gryaznov"
82
+ ],
83
+ "genres": [
84
+ "annees_de_pelerinage",
85
+ "arabeske",
86
+ "arabesque",
87
+ "bagatelle",
88
+ "ballade",
89
+ "barcarolle",
90
+ "berceuse",
91
+ "capriccio",
92
+ "carnaval",
93
+ "chaconne",
94
+ "concerto",
95
+ "duet",
96
+ "dumka",
97
+ "elegy",
98
+ "estampes",
99
+ "etude",
100
+ "fantasie",
101
+ "fantasy",
102
+ "fugue",
103
+ "gaspard_de_la_nuit",
104
+ "humoresque",
105
+ "image",
106
+ "images",
107
+ "impromptu",
108
+ "intermezzo",
109
+ "islamey",
110
+ "kreisleriana",
111
+ "mazurka",
112
+ "miroirs",
113
+ "moment_musical",
114
+ "nocturne",
115
+ "overture",
116
+ "paraphrase",
117
+ "partita",
118
+ "pavan",
119
+ "piano_piece",
120
+ "piece",
121
+ "polonaise",
122
+ "prelude",
123
+ "rhapsody",
124
+ "romance",
125
+ "rondo",
126
+ "scherzo",
127
+ "sonata",
128
+ "sonatina",
129
+ "song_transcription",
130
+ "suite",
131
+ "tango",
132
+ "tarantella",
133
+ "toccata",
134
+ "variation",
135
+ "waltz"
136
+ ],
137
+ "composer_pad_id": 63,
138
+ "composer_unknown_id": 64,
139
+ "genre_pad_id": 52,
140
+ "genre_unknown_id": 53,
141
+ "window_duration_sec": 100.0,
142
+ "small_vocab": true
143
+ }
note_velocity_beat/pytorch_model.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:4dabee223ef818f98159c79b5addde1e641d12145727986e5f47993207ff05ec
3
+ size 970150958
note_velocity_pedal/config.json ADDED
@@ -0,0 +1,143 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "vocab_size": 11264,
3
+ "num_composers": 63,
4
+ "num_genres": 52,
5
+ "d_model": 768,
6
+ "n_heads": 12,
7
+ "num_layers": 24,
8
+ "ffn_dim": 3072,
9
+ "dropout": 0.1,
10
+ "max_seq_len": 8192,
11
+ "cond_dim": 128,
12
+ "pad_token_id": 0,
13
+ "bos_token_id": 1,
14
+ "eos_token_id": 2,
15
+ "tokenization_mode": "note_velocity_pedal",
16
+ "num_composer_ids": 65,
17
+ "num_genre_ids": 54,
18
+ "composers": [
19
+ "Bach",
20
+ "Balakirev",
21
+ "Beethoven",
22
+ "Brahms",
23
+ "Chopin",
24
+ "Debussy",
25
+ "Glinka",
26
+ "Haydn",
27
+ "Liszt",
28
+ "Mozart",
29
+ "Prokofiev",
30
+ "Rachmaninoff",
31
+ "Ravel",
32
+ "Schubert",
33
+ "Schumann",
34
+ "Scriabin",
35
+ "Alban Berg",
36
+ "Antonio Soler",
37
+ "Carl Maria von Weber",
38
+ "C\u00e9sar Franck",
39
+ "Charles Gounod / Franz Liszt",
40
+ "Domenico Scarlatti",
41
+ "Edvard Grieg",
42
+ "Felix Mendelssohn",
43
+ "Felix Mendelssohn / Sergei Rachmaninoff",
44
+ "Franz Liszt / Camille Saint-Sa\u00ebns",
45
+ "Franz Liszt / Vladimir Horowitz",
46
+ "Franz Schubert / Franz Liszt",
47
+ "Franz Schubert / Leopold Godowsky",
48
+ "Fritz Kreisler / Sergei Rachmaninoff",
49
+ "George Enescu",
50
+ "George Frideric Handel",
51
+ "Georges Bizet / Ferruccio Busoni",
52
+ "Georges Bizet / Moritz Moszkowski",
53
+ "Georges Bizet / Vladimir Horowitz",
54
+ "Giuseppe Verdi / Franz Liszt",
55
+ "Henry Purcell",
56
+ "Isaac Alb\u00e9niz",
57
+ "Isaac Alb\u00e9niz / Leopold Godowsky",
58
+ "Jean-Philippe Rameau",
59
+ "Johann Christian Fischer / Wolfgang Amadeus Mozart",
60
+ "Johann Pachelbel",
61
+ "Johann Sebastian Bach / Egon Petri",
62
+ "Johann Sebastian Bach / Ferruccio Busoni",
63
+ "Johann Sebastian Bach / Franz Liszt",
64
+ "Johann Sebastian Bach / Myra Hess",
65
+ "Johann Strauss / Alfred Gr\u00fcnfeld",
66
+ "Leo\u0161 Jan\u00e1\u010dek",
67
+ "Mikhail Glinka / Mily Balakirev",
68
+ "Modest Mussorgsky",
69
+ "Muzio Clementi",
70
+ "Niccol\u00f2 Paganini / Franz Liszt",
71
+ "Nikolai Medtner",
72
+ "Nikolai Rimsky-Korsakov / Sergei Rachmaninoff",
73
+ "Orlando Gibbons",
74
+ "Percy Grainger",
75
+ "Pyotr Ilyich Tchaikovsky",
76
+ "Pyotr Ilyich Tchaikovsky / Mikhail Pletnev",
77
+ "Pyotr Ilyich Tchaikovsky / Sergei Rachmaninoff",
78
+ "Richard Wagner / Franz Liszt",
79
+ "Robert Schumann / Franz Liszt",
80
+ "Sergei Rachmaninoff / Gy\u00f6rgy Cziffra",
81
+ "Sergei Rachmaninoff / Vyacheslav Gryaznov"
82
+ ],
83
+ "genres": [
84
+ "annees_de_pelerinage",
85
+ "arabeske",
86
+ "arabesque",
87
+ "bagatelle",
88
+ "ballade",
89
+ "barcarolle",
90
+ "berceuse",
91
+ "capriccio",
92
+ "carnaval",
93
+ "chaconne",
94
+ "concerto",
95
+ "duet",
96
+ "dumka",
97
+ "elegy",
98
+ "estampes",
99
+ "etude",
100
+ "fantasie",
101
+ "fantasy",
102
+ "fugue",
103
+ "gaspard_de_la_nuit",
104
+ "humoresque",
105
+ "image",
106
+ "images",
107
+ "impromptu",
108
+ "intermezzo",
109
+ "islamey",
110
+ "kreisleriana",
111
+ "mazurka",
112
+ "miroirs",
113
+ "moment_musical",
114
+ "nocturne",
115
+ "overture",
116
+ "paraphrase",
117
+ "partita",
118
+ "pavan",
119
+ "piano_piece",
120
+ "piece",
121
+ "polonaise",
122
+ "prelude",
123
+ "rhapsody",
124
+ "romance",
125
+ "rondo",
126
+ "scherzo",
127
+ "sonata",
128
+ "sonatina",
129
+ "song_transcription",
130
+ "suite",
131
+ "tango",
132
+ "tarantella",
133
+ "toccata",
134
+ "variation",
135
+ "waltz"
136
+ ],
137
+ "composer_pad_id": 63,
138
+ "composer_unknown_id": 64,
139
+ "genre_pad_id": 52,
140
+ "genre_unknown_id": 53,
141
+ "window_duration_sec": 100.0,
142
+ "small_vocab": true
143
+ }
note_velocity_pedal/pytorch_model.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:3cad39eb25e8bd20b38e77ab9e3bb3af8051431f2f109ff550260ae8202840a7
3
+ size 970157102