-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgenre_map.py
1414 lines (1413 loc) · 42.2 KB
/
genre_map.py
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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
# Generalize Niche Genres
subgenre_to_general_genre = {
'a cappella': 'Others',
'abstract': 'Experimental',
'abstract beats': 'Electronic',
'abstract hip hop': 'Experimental',
'abstract idm': 'Electronic',
'abstractro': 'Experimental',
'accordion': 'Others',
'acid house': 'Electronic',
'acid jazz': 'Jazz',
'acid techno': 'Electronic',
'acousmatic': 'Experimental',
'acoustic blues': 'RnB/Soul',
'acoustic pop': 'Pop',
'adult standards': 'Others',
'african percussion': 'Others',
'african rock': 'Rock',
'afrikaans': 'Others',
'afrobeat': 'Funk',
'afrobeats': 'Funk',
'aggrotech': 'Electronic',
'albanian pop': 'Pop',
'album rock': 'Rock',
'albuquerque indie': 'Indie',
'alternative americana': 'Country/Folk',
'alternative country': 'Country/Folk',
'alternative dance': 'Electronic',
'alternative emo': 'Rock',
'alternative hardcore': 'Rock',
'alternative hip hop': 'Hip-Hop',
'alternative metal': 'Rock',
'alternative metalcore': 'Rock',
'alternative new age': 'Experimental',
'alternative pop': 'Pop',
'alternative pop rock': 'Rock',
'alternative r&b': 'RnB/Soul',
'alternative rock': 'Rock',
'alternative roots rock': 'Rock',
'ambeat': 'Electronic',
'ambient': 'Electronic',
'ambient dub techno': 'Electronic',
'ambient fusion': 'Electronic',
'ambient idm': 'Electronic',
'ambient psychill': 'Electronic',
'ambient trance': 'Electronic',
'anarcho-punk': 'Rock',
'andean': 'Others',
'anime': 'Others',
'anime score': 'Soundtracks',
'anti-folk': 'Indie',
'antiviral pop': 'Pop',
'appalachian folk': 'Country/Folk',
'arab folk': 'Country/Folk',
'arab pop': 'Pop',
'arabesk': 'Others',
'argentine indie': 'Indie',
'argentine reggae': 'Others',
'argentine rock': 'Rock',
'armenian folk': 'Others',
'art rock': 'Rock',
'athens indie': 'Indie',
'atmospheric black metal': 'Rock',
'atmospheric post rock': 'Rock',
'atmospheric post-metal': 'Rock',
'aussietronica': 'Electronic',
'austindie': 'Indie',
'australian alternative rock': 'Rock',
'australian country': 'Country/Folk',
'australian dance': 'Electronic',
'australian hip hop': 'Hip-Hop',
'australian indie': 'Indie',
'australian pop': 'Pop',
'austrian hip hop': 'Hip-Hop',
'austropop': 'Pop',
'avant-garde': 'Experimental',
'avant-garde jazz': 'Jazz',
'avantgarde metal': 'Rock',
'axe': 'Others',
'azonto': 'Others',
'bachata': 'Others',
'baile funk': 'Funk',
'balearic': 'Electronic',
'balkan brass': 'Others',
'banda': 'Others',
'bangla': 'Others',
'barbershop': 'Others',
'barnemusikk': 'Others',
'barnmusik': 'Others',
'baroque': 'Classical',
'baroque ensemble': 'Classical',
'basque rock': 'Rock',
'bass music': 'Electronic',
'bass trip': 'Electronic',
'bassline': 'Electronic',
'bay area hip hop': 'Hip-Hop',
'beach music': 'Others',
'beatdown': 'Rock',
'beats & rhymes': 'Hip-Hop',
'bebop': 'Jazz',
'belgian indie': 'Indie',
'belgian rock': 'Rock',
'belly dance': 'Others',
'belorush': 'Others',
'bemani': 'Others',
'benga': 'Others',
'bhangra': 'Others',
'big band': 'Jazz',
'big beat': 'Electronic',
'big room': 'Electronic',
'black death': 'Rock',
'black metal': 'Rock',
'black sludge': 'Rock',
'black thrash': 'Rock',
'blackgaze': 'Rock',
'blaskapelle': 'Others',
'bluegrass': 'Country/Folk',
'blues': 'Jazz',
'blues-rock': 'Jazz',
'blues-rock guitar':'Jazz',
'bmore': 'Others',
'bolero': 'Others',
'boogaloo': 'Others',
'boogie-woogie': 'Others',
'bossa nova': 'Jazz',
'bossa nova jazz': 'Jazz',
'boston rock': 'Rock',
'bounce': 'Hip-Hop',
'bouncy house': 'Electronic',
'bow pop': 'Pop',
'boy band': 'Pop',
'brass band': 'Others',
'brass ensemble': 'Others',
'brazilian composition': 'Others',
'brazilian gospel': 'Others',
'brazilian hip hop': 'Hip-Hop',
'brazilian indie': 'Indie',
'brazilian pop music': 'Pop',
'brazilian punk': 'Rock',
'breakbeat': 'Electronic',
'breakcore': 'Electronic',
'breaks': 'Electronic',
'brega': 'Others',
'breton folk': 'Country/Folk',
'brill building pop': 'Pop',
'british alternative rock': 'Rock',
'british blues': 'Jazz',
'british brass band': 'Others',
'british dance band': 'Others',
'british folk': 'Country/Folk',
'british indie rock': 'Indie',
'british invasion': 'Rock',
'britpop': 'Pop',
'broadway': 'Others',
'broken beat': 'Others',
'brooklyn indie': 'Indie',
'brostep': 'Electronic',
'brutal death metal': 'Rock',
'brutal deathcore': 'Rock',
'bubble trance': 'Electronic',
'bubblegum dance': 'Pop',
'bubblegum pop': 'Pop',
'bulgarian rock': 'Rock',
'byzantine': 'Others',
'c-pop': 'Pop',
'c64': 'Others',
'c86': 'Indie',
'cabaret': 'Others',
'cajun': 'Others',
'calypso': 'Others',
'canadian country': 'Country/Folk',
'canadian hip hop': 'Hip-Hop',
'canadian indie': 'Indie',
'canadian metal': 'Rock',
'canadian pop': 'Pop',
'candy pop': 'Pop',
'cantautor': 'Others',
'cante flamenco': 'Others',
'canterbury scene': 'Rock',
'cantopop': 'Pop',
'canzone napoletana': 'Others',
'capoeira': 'Others',
'carnatic': 'Classical',
'catstep': 'Electronic',
'caucasian folk': 'Country/Folk',
'ccm': 'Others',
'ceilidh': 'Others',
'cello': 'Classical',
'celtic': 'Country/Folk',
'celtic christmas': 'Others',
'celtic punk': 'Rock',
'celtic rock': 'Rock',
'central asian folk': 'Country/Folk',
'chalga': 'Others',
'chamber pop': 'Indie',
'chanson': 'Others',
'chanson quebecois': 'Others',
'chaotic black metal': 'Rock',
'chaotic hardcore': 'Rock',
'charred death': 'Rock',
'chicago blues': 'Jazz',
'chicago house': 'Electronic',
'chicago indie': 'Indie',
'chicago soul': 'RnB/Soul',
'chicano rap': 'Hip-Hop',
'children\'s christmas': 'Others',
'children\'s music': 'Others',
'chilean rock': 'Rock',
'chill groove': 'Electronic',
'chill lounge': 'Electronic',
'chill-out': 'Electronic',
'chill-out trance': 'Electronic',
'chillstep': 'Electronic',
'chillwave': 'Electronic',
'chinese indie rock': 'Rock',
'chinese opera': 'Classical',
'chinese traditional': 'Classical',
'chip hop': 'Hip-Hop',
'chiptune': 'Electronic',
'choral': 'Classical',
'choro': 'Others',
'christian alternative rock': 'Rock',
'christian christmas': 'Others',
'christian dance': 'Electronic',
'christian hardcore': 'Rock',
'christian hip hop': 'Hip-Hop',
'christian metal': 'Rock',
'christian music': 'Others',
'christian punk': 'Rock',
'christian rock': 'Rock',
'christmas': 'Others',
'christmas product': 'Others',
'cinematic dubstep': 'Electronic',
'clarinet': 'Classical',
'classic afrobeat': 'Funk',
'classic belgian pop': 'Pop',
'classic chinese pop': 'Pop',
'classic colombian pop': 'Pop',
'classic czech pop': 'Pop',
'classic danish pop': 'Pop',
'classic dutch pop': 'Pop',
'classic eurovision': 'Others',
'classic finnish pop': 'Pop',
'classic finnish rock': 'Rock',
'classic french pop': 'Pop',
'classic funk rock': 'Funk',
'classic garage rock': 'Rock',
'classic italian pop': 'Pop',
'classic norwegian pop': 'Pop',
'classic peruvian pop': 'Pop',
'classic polish pop': 'Pop',
'classic psychedelic rock': 'Rock',
'classic rock': 'Rock',
'classic russian pop': 'Pop',
'classic russian rock': 'Rock',
'classic schlager': 'Others',
'classic soundtrack': 'Soundtracks',
'classic swedish pop': 'Pop',
'classic turkish pop': 'Pop',
'classic venezuelan pop': 'Pop',
'classical': 'Classical',
'classical christmas': 'Classical',
'classical flute': 'Classical',
'classical guitar': 'Classical',
'classical organ': 'Classical',
'classical performance': 'Classical',
'classical period': 'Classical',
'classical piano': 'Classical',
'college a cappella': 'Others',
'college marching band': 'Others',
'colombian rock': 'Rock',
'columbus ohio indie': 'Indie',
'comedy': 'Others',
'comedy rock': 'Rock',
'comic': 'Others',
'commons': 'Others',
'complextro': 'Electronic',
'composition d': 'Others',
'concert piano': 'Classical',
'consort': 'Classical',
'contemporary classical': 'Classical',
'contemporary country': 'Country/Folk',
'contemporary folk': 'Country/Folk',
'contemporary jazz': 'Jazz',
'contemporary post-bop': 'Jazz',
'cool jazz': 'Jazz',
'corrosion': 'Others',
'corsican folk': 'Country/Folk',
'country': 'Country/Folk',
'country blues': 'Country/Folk',
'country christmas': 'Country/Folk',
'country dawn': 'Country/Folk',
'country gospel': 'Country/Folk',
'country road': 'Country/Folk',
'country rock': 'Country/Folk',
'coupe decale': 'Others',
'coverchill': 'Others',
'covertrance': 'Others',
'cowboy western': 'Others',
'cowpunk': 'Rock',
'crack rock steady': 'Rock',
'croatian pop': 'Pop',
'crossover prog': 'Rock',
'crossover thrash': 'Rock',
'crunk': 'Hip-Hop',
'crust punk': 'Rock',
'cryptic black metal': 'Rock',
'cuban rumba': 'Others',
'cubaton': 'Others',
'cumbia': 'Others',
'cumbia funk': 'Funk',
'cumbia sonidera': 'Others',
'cumbia villera': 'Others',
'cyber metal': 'Rock',
'czech folk': 'Country/Folk',
'czech rock': 'Rock',
'dallas indie': 'Indie',
'dance pop': 'Pop',
'dance rock': 'Rock',
'dance-punk': 'Rock',
'dancehall': 'Others',
'dangdut': 'Others',
'danish hip hop': 'Hip-Hop',
'danish indie': 'Indie',
'danish jazz': 'Jazz',
'danish pop': 'Pop',
'danish pop rock': 'Rock',
'dansband': 'Others',
'danseband': 'Others',
'dansktop': 'Others',
'dark ambient': 'Experimental',
'dark black metal': 'Rock',
'dark cabaret': 'Others',
'dark electro-industrial': 'Electronic',
'dark hardcore': 'Rock',
'dark jazz': 'Jazz',
'dark minimal techno': 'Electronic',
'dark progressive house': 'Electronic',
'dark psytrance': 'Electronic',
'dark wave': 'Others',
'darkstep': 'Electronic',
'death core': 'Rock',
'death metal': 'Rock',
'deathgrind': 'Rock',
'deep acoustic pop': 'Pop',
'deep adult standards': 'Others',
'deep alternative r&b': 'RnB/Soul',
'deep ambient': 'Electronic',
'deep baroque': 'Classical',
'deep brazilian pop': 'Pop',
'deep breakcore': 'Electronic',
'deep canadian indie': 'Indie',
'deep ccm': 'Others',
'deep cello': 'Classical',
'deep chill': 'Electronic',
'deep chill-out': 'Electronic',
'deep christian rock': 'Rock',
'deep classic garage rock': 'Rock',
'deep classical piano': 'Classical',
'deep comedy': 'Others',
'deep contemporary country': 'Country/Folk',
'deep dance pop': 'Pop',
'deep darkpsy': 'Electronic',
'deep deep house': 'Electronic',
'deep deep tech house': 'Electronic',
'deep delta blues': 'Jazz',
'deep disco': 'Electronic',
'deep disco house': 'Electronic',
'deep discofox': 'Others',
'deep downtempo fusion': 'Electronic',
'deep dub techno': 'Electronic',
'deep east coast hip hop': 'Hip-Hop',
'deep euro house': 'Electronic',
'deep eurodance': 'Electronic',
'deep filthstep': 'Electronic',
'deep flow': 'Others',
'deep folk metal': 'Rock',
'deep free jazz': 'Jazz',
'deep freestyle': 'Others',
'deep full on': 'Others',
'deep funk': 'Funk',
'deep funk house': 'Funk',
'deep g funk': 'Funk',
'deep german indie': 'Indie',
'deep german punk': 'Rock',
'deep gothic post-punk': 'Rock',
'deep happy hardcore': 'Electronic',
'deep hardcore': 'Rock',
'deep hardcore punk': 'Rock',
'deep hardstyle': 'Electronic',
'deep house': 'Electronic',
'deep indian pop': 'Pop',
'deep indie pop': 'Indie',
'deep indie rock': 'Indie',
'deep indie singer-songwriter': 'Indie',
'deep italo disco': 'Electronic',
'deep jazz fusion': 'Jazz',
'deep jazz guitar': 'Jazz',
'deep jazz piano': 'Jazz',
'deep latin alternative': 'Others',
'deep liquid': 'Electronic',
'deep liquid bass': 'Electronic',
'deep melodic death metal': 'Rock',
'deep melodic hard rock': 'Rock',
'deep melodic house': 'Electronic',
'deep melodic metalcore': 'Rock',
'deep minimal techno': 'Electronic',
'deep motown': 'RnB/Soul',
'deep neo-synthpop': 'Pop',
'deep neofolk': 'Country/Folk',
'deep new wave': 'Pop',
'deep nordic folk': 'Country/Folk',
'deep northern soul': 'RnB/Soul',
'deep opera': 'Classical',
'deep orchestral': 'Classical',
'deep orgcore': 'Rock',
'deep pop emo': 'Rock',
'deep pop punk': 'Rock',
'deep power-pop punk': 'Rock',
'deep progressive house': 'Electronic',
'deep progressive trance': 'Electronic',
'deep psychobilly': 'Rock',
'deep psytrance': 'Electronic',
'deep punk rock': 'Rock',
'deep ragga': 'Others',
'deep rai': 'Others',
'deep regional mexican': 'Others',
'deep smooth jazz': 'Jazz',
'deep soft rock': 'Rock',
'deep soul house': 'Electronic',
'deep soundtrack': 'Soundtracks',
'deep southern soul': 'RnB/Soul',
'deep space rock': 'Rock',
'deep string quartet': 'Classical',
'deep sunset lounge': 'Electronic',
'deep surf music': 'Others',
'deep symphonic black metal': 'Rock',
'deep talent show': 'Others',
'deep tech house': 'Electronic',
'deep thrash metal': 'Rock',
'deep trap': 'Hip-Hop',
'deep turkish pop': 'Pop',
'deep uplifting trance': 'Electronic',
'deep vocal house': 'Electronic',
'deep vocal jazz': 'Jazz',
'delta blues': 'Jazz',
'demoscene': 'Others',
'denver indie': 'Indie',
'depressive black metal': 'Rock',
'desert blues': 'Jazz',
'desi': 'Others',
'destroy techno': 'Electronic',
'detroit hip hop': 'Hip-Hop',
'detroit techno': 'Electronic',
'didgeridoo': 'Others',
'digital hardcore': 'Electronic',
'dirty south rap': 'Hip-Hop',
'dirty texas rap': 'Hip-Hop',
'disco': 'Pop',
'disco house': 'Electronic',
'discofox': 'Others',
'dixieland': 'Jazz',
'djent': 'Rock',
'dominican pop': 'Pop',
'doo-wop': 'Others',
'doom metal': 'Rock',
'doomcore': 'Rock',
'doujin': 'Others',
'downtempo': 'Electronic',
'downtempo fusion': 'Electronic',
'downtempo trip hop': 'Electronic',
'drama': 'Others',
'dream pop': 'Pop',
'dreamo': 'Others',
'drill and bass': 'Electronic',
'drone': 'Others',
'drone folk': 'Country/Folk',
'drone metal': 'Rock',
'drone psych': 'Others',
'drum and bass': 'Electronic',
'drumfunk': 'Electronic',
'dub': 'Others',
'dub techno': 'Electronic',
'dubstep': 'Electronic',
'dubstep product': 'Others',
'dubsteppe': 'Others',
'duranguense': 'Others',
'dutch hip hop': 'Hip-Hop',
'dutch house': 'Electronic',
'dutch pop': 'Pop',
'dutch rock': 'Rock',
'e6fi': 'Others',
'early music': 'Classical',
'early music ensemble': 'Classical',
'east coast hip hop': 'Hip-Hop',
'easy listening': 'Others',
'ebm': 'Electronic',
'ectofolk': 'Country/Folk',
'ecuadoria': 'Others',
'edm': 'Electronic',
'electric blues': 'RnB/Soul',
'electro': 'Electronic',
'electro dub': 'Electronic',
'electro house': 'Electronic',
'electro jazz': 'Jazz',
'electro latino': 'Electronic',
'electro swing': 'Electronic',
'electro trash': 'Electronic',
'electro-industrial': 'Electronic',
'electroacoustic improvisation': 'Experimental',
'electroclash': 'Electronic',
'electrofox': 'Electronic',
'electronic': 'Electronic',
'electronica': 'Electronic',
'electronicore': 'Electronic',
'electropowerpop': 'Pop',
'electropunk': 'Electronic',
'emo': 'Rock',
'emo punk': 'Rock',
'enka': 'Others',
'entehno': 'Others',
'environmental': 'Others',
'epicore': 'Others',
'estonian pop': 'Pop',
'ethereal gothic': 'Others',
'ethereal wave': 'Others',
'etherpop': 'Pop',
'ethiopian pop': 'Pop',
'eurobeat': 'Electronic',
'eurodance': 'Electronic',
'europop': 'Pop',
'euroska': 'Others',
'eurovision': 'Others',
'exotica': 'Others',
'experimental': 'Experimental',
'experimental dubstep': 'Electronic',
'experimental psych': 'Experimental',
'experimental rock': 'Rock',
'fado': 'Others',
'fake': 'Others',
'fallen angel': 'Others',
'faroese pop': 'Pop',
'fast melodic punk': 'Rock',
'fidget house': 'Electronic',
'filmi': 'Others',
'filter house': 'Electronic',
'filthstep': 'Electronic',
'fingerstyle': 'Others',
'finnish hardcore': 'Rock',
'finnish hip hop': 'Hip-Hop',
'finnish indie': 'Indie',
'finnish jazz': 'Jazz',
'finnish metal': 'Rock',
'finnish pop': 'Pop',
'flamenco': 'Others',
'flick hop': 'Hip-Hop',
'folk': 'Country/Folk',
'folk christmas': 'Country/Folk',
'folk metal': 'Rock',
'folk punk': 'Rock',
'folk rock': 'Rock',
'folk-pop': 'Pop',
'folk-prog': 'Rock',
'folklore argentino': 'Others',
'folkmusik': 'Others',
'footwork': 'Electronic',
'forro': 'Others',
'fourth world': 'Others',
'freak folk': 'Indie',
'freakbeat': 'Rock',
'free improvisation': 'Experimental',
'free jazz': 'Jazz',
'freestyle': 'Hip-Hop',
'french folk': 'Country/Folk',
'french folk pop': 'Pop',
'french hip hop': 'Hip-Hop',
'french indie pop': 'Pop',
'french movie tunes': 'Soundtracks',
'french pop': 'Pop',
'french punk': 'Rock',
'french reggae': 'Others',
'french rock': 'Rock',
'full on': 'Electronic',
'funeral doom': 'Rock',
'funk': 'Funk',
'funk carioca': 'Funk',
'funk metal': 'Rock',
'funk rock': 'Funk',
'funky breaks': 'Electronic',
'future ambient': 'Electronic',
'future garage': 'Electronic',
'futurepop': 'Electronic',
'g funk': 'Hip-Hop',
'gabba': 'Electronic',
'galego': 'Others',
'gamecore': 'Electronic',
'gamelan': 'Others',
'gangster rap': 'Hip-Hop',
'garage pop': 'Pop',
'garage punk': 'Rock',
'garage punk blues': 'Rock',
'garage rock': 'Rock',
'gauze pop': 'Pop',
'gbvfi': 'Indie',
'geek folk': 'Folk',
'geek rock': 'Rock',
'german ccm': 'Others',
'german hip hop': 'Hip-Hop',
'german indie': 'Indie',
'german metal': 'Rock',
'german oi': 'Rock',
'german pop': 'Pop',
'german pop rock': 'Pop',
'german punk': 'Rock',
'german show tunes': 'Others',
'german techno': 'Electronic',
'ghettotech': 'Electronic',
'ghoststep': 'Electronic',
'girl group': 'Pop',
'glam metal': 'Rock',
'glam rock': 'Rock',
'glitch': 'Electronic',
'glitch beats': 'Electronic',
'glitch hop': 'Electronic',
'glitter trance': 'Electronic',
'goa trance': 'Electronic',
'goregrind': 'Rock',
'gospel': 'Others',
'gospel blues': 'Jazz',
'gospel reggae': 'Others',
'gothic alternative': 'Rock',
'gothic americana': 'Rock',
'gothic doom': 'Rock',
'gothic metal': 'Rock',
'gothic post-punk': 'Rock',
'gothic rock': 'Rock',
'gothic symphonic metal': 'Rock',
'grave wave': 'Others',
'greek hip hop': 'Hip-Hop',
'greek house': 'Electronic',
'greek indie': 'Indie',
'grim death metal': 'Rock',
'grime': 'Hip-Hop',
'grindcore': 'Rock',
'grisly death metal': 'Rock',
'groove metal': 'Rock',
'grunge': 'Rock',
'grunge pop': 'Pop',
'grupera': 'Others',
'guidance': 'Others',
'gypsy jazz': 'Jazz',
'hands up': 'Electronic',
'happy hardcore': 'Electronic',
'hard alternative': 'Rock',
'hard bop': 'Jazz',
'hard glam': 'Rock',
'hard house': 'Electronic',
'hard rock': 'Rock',
'hard stoner rock': 'Rock',
'hard trance': 'Electronic',
'hardcore': 'Rock',
'hardcore breaks': 'Electronic',
'hardcore hip hop': 'Hip-Hop',
'hardcore punk': 'Rock',
'hardcore techno': 'Electronic',
'hardstyle': 'Electronic',
'harmonica blues': 'Jazz',
'harp': 'Classical',
'hatecore': 'Rock',
'hauntology': 'Others',
'hawaiian': 'Others',
'healing': 'Others',
'heavy alternative': 'Rock',
'heavy christmas': 'Others',
'heavy gothic rock': 'Rock',
'hi nrg': 'Electronic',
'highlife': 'Others',
'hindustani classical': 'Classical',
'hip hop': 'Hip-Hop',
'hip hop quebecois': 'Hip-Hop',
'hip hop tuga': 'Hip-Hop',
'hip house': 'Electronic',
'hip pop': 'Pop',
'hiplife': 'Hip-Hop',
'hoerspiel': 'Others',
'hollywood': 'Others',
'honky tonk': 'Country/Folk',
'horror punk': 'Rock',
'horrorcore': 'Hip-Hop',
'house': 'Electronic',
'hungarian hip hop': 'Hip-Hop',
'hungarian pop': 'Pop',
'hungarian rock': 'Rock',
'hurban': 'Others',
'hyphy': 'Hip-Hop',
'icelandic pop': 'Pop',
'idol': 'Others',
'illbient': 'Electronic',
'indian classical': 'Classical',
'indian pop': 'Pop',
'indian rock': 'Rock',
'indie christmas': 'Indie',
'indie dream pop': 'Indie',
'indie emo': 'Indie',
'indie emo rock': 'Indie',
'indie folk': 'Indie',
'indie fuzzpop': 'Indie',
'indie pop': 'Indie',
'indie pop rock': 'Indie',
'indie post-punk': 'Indie',
'indie psych-pop': 'Indie',
'indie r&b': 'Indie',
'indie rock': 'Indie',
'indie shoegaze': 'Indie',
'indie singer-songwriter': 'Indie',
'indietronica': 'Indie',
'indonesian indie': 'Indie',
'indonesian pop': 'Pop',
'indorock': 'Rock',
'industrial': 'Electronic',
'industrial metal': 'Rock',
'industrial rock': 'Rock',
'instrumental post rock': 'Rock',
'intelligent dance music': 'Electronic',
'irish folk': 'Country/Folk',
'irish indie': 'Indie',
'irish rock': 'Rock',
'iskelma': 'Others',
'islamic recitation': 'Others',
'israeli rock': 'Rock',
'italian disco': 'Pop',
'italian folk': 'Others',
'italian hip hop': 'Hip-Hop',
'italian indie pop': 'Pop',
'italian jazz': 'Jazz',
'italian pop': 'Pop',
'italian pop rock': 'Pop',
'italian progressive rock': 'Rock',
'italian punk': 'Rock',
'italo dance': 'Electronic',
'j-alt': 'Rock',
'j-ambient': 'Electronic',
'j-core': 'Electronic',
'j-dance': 'Pop',
'j-idol': 'Pop',
'j-indie': 'Indie',
'j-metal': 'Rock',
'j-pop': 'Pop',
'j-poppunk': 'Rock',
'j-poprock': 'Rock',
'j-punk': 'Rock',
'j-rap': 'Hip-Hop',
'j-rock': 'Rock',
'j-theme': 'Others',
'jam band': 'Rock',
'jangle pop': 'Pop',
'jangle rock': 'Rock',
'japanese jazztronica': 'Jazz',
'japanese psychedelic': 'Rock',
'japanese r&b': 'RnB/Soul',
'japanese standards': 'Others',
'japanese traditional': 'Others',
'japanoise': 'Experimental',
'jazz': 'Jazz',
'jazz bass': 'Jazz',
'jazz blues': 'Jazz',
'jazz brass': 'Jazz',
'jazz christmas': 'Jazz',
'jazz funk': 'Jazz',
'jazz fusion': 'Jazz',
'jazz metal': 'Jazz',
'jazz orchestra': 'Jazz',
'jazz trio': 'Jazz',
'jerk': 'Hip-Hop',
'jig and reel': 'Others',
'judaica': 'Others',
'jug band': 'Others',
'juggalo': 'Others',
'jump blues': 'Jazz',
'jump up': 'Electronic',
'jumpstyle': 'Electronic',
'jungle': 'Electronic',
'k-hop': 'Hip-Hop',
'k-indie': 'Indie',
'k-pop': 'Pop',
'k-rock': 'Rock',
'kabarett': 'Others',
'karneval': 'Others',
'kc indie': 'Indie',
'kindermusik': 'Others',
'kirtan': 'Others',
'kiwi rock': 'Rock',
'kizomba': 'Others',
'klapa': 'Others',
'klezmer': 'Others',
'kompa': 'Others',
'kraut rock': 'Rock',
'kuduro': 'Others',
'kurdish folk': 'Country/Folk',
'kwaito': 'Others',
'la indie': 'Indie',
'laboratorio': 'Experimental',
'laiko': 'Others',
'latin': 'Others',
'latin alternative': 'Others',
'latin christian': 'Others',
'latin christmas': 'Others',
'latin electronica': 'Electronic',
'latin hip hop': 'Hip-Hop',
'latin jazz': 'Jazz',
'latin metal': 'Rock',
'latin pop': 'Pop',
'latvian pop': 'Pop',
'lds': 'Others',
'leeds indie': 'Indie',
'levenslied': 'Others',
'liedermacher': 'Others',
'light music': 'Others',
'lilith': 'Others',
'liquid funk': 'Electronic',
'lithumania': 'Others',
'liturgical': 'Classical',
'lo star': 'Others',
'lo-fi': 'Indie',
'louisiana blues': 'Jazz',
'louisville indie': 'Indie',
'lounge': 'Others',
'lounge house': 'Electronic',
'lovers rock': 'Others',
'lowercase': 'Experimental',
'luk thung': 'Others',
'madchester': 'Rock',
'maghreb': 'Others',
'magyar': 'Others',
'makossa': 'Others',
'malagasy folk': 'Country/Folk',
'malaysian pop': 'Pop',
'mallet': 'Others',
'mambo': 'Others',
'mande pop': 'Pop',
'mandopop': 'Pop',
'manele': 'Others',
'marching band': 'Others',
'mariachi': 'Others',
'martial industrial': 'Electronic',
'mashup': 'Others',
'math pop': 'Indie',
'math rock': 'Rock',
'mathcore': 'Rock',
'mbalax': 'Others',
'medieval': 'Others',
'medieval rock': 'Rock',
'meditation': 'Others',
'melancholia': 'Others',
'melbourne bounce': 'Electronic',
'mellow gold': 'Others',
'melodic death metal': 'Rock',
'melodic hard rock': 'Rock',
'melodic hardcore': 'Rock',
'melodic metalcore': 'Rock',
'melodic power metal': 'Rock',
'melodic progressive metal': 'Rock',
'memphis blues': 'Jazz',
'memphis hip hop': 'Hip-Hop',
'memphis soul': 'RnB/Soul',
'merengue': 'Others',
'merengue urbano': 'Others',
'merseybeat': 'Rock',
'metal': 'Rock',
'metal guitar': 'Rock',
'metalcore': 'Rock',
'metropopolis': 'Pop',
'mexican indie': 'Indie',
'mexican rock-and-roll': 'Rock',
'mexican son': 'Others',
'mexican traditional': 'Others',
'miami bass': 'Hip-Hop',
'michigan indie': 'Indie',
'microhouse': 'Electronic',
'military band': 'Others',
'minimal': 'Electronic',
'minimal dub': 'Electronic',
'minimal dubstep': 'Electronic',
'minimal melodic techno': 'Electronic',
'minimal tech house': 'Electronic',
'minimal techno': 'Electronic',
'minimal wave': 'Electronic',
'mizrahi': 'Others',
'mod revival': 'Rock',
'modern blues': 'Jazz',
'modern classical': 'Classical',
'modern country rock': 'Country/Folk',
'modern downshift': 'Others',
'modern free jazz': 'Jazz',
'modern performance': 'Others',
'modern southern rock': 'Rock',
'modern uplift': 'Others',
'monastic': 'Others',
'moombahton': 'Electronic',
'morna': 'Others',
'motivation': 'Others',
'motown': 'RnB/Soul',
'movie tunes': 'Soundtracks',
'mpb': 'Pop',
'musica para ninos': 'Others',
'musiikkia lapsille': 'Others',
'musique concrete': 'Experimental',
'musique pour enfants': 'Others',
'muziek voor kinderen': 'Others',
'nasheed': 'Others',
'nashville sound': 'Country/Folk',
'native american': 'Others',
'necrogrind': 'Rock',
'neo classical metal': 'Rock',
'neo honky tonk': 'Country/Folk',
'neo mellow': 'Pop',
'neo metal': 'Rock',
'neo soul': 'RnB/Soul',
'neo soul-jazz': 'Jazz',
'neo-industrial rock': 'Rock',
'neo-pagan': 'Others',
'neo-progressive': 'Rock',
'neo-psychedelic': 'Rock',
'neo-rockabilly': 'Rock',
'neo-singer-songwriter': 'Indie',
'neo-synthpop': 'Pop',
'neo-trad metal': 'Rock',
'neo-traditional country': 'Country/Folk',
'neoclassical': 'Classical',
'neofolk': 'Others',
'nepali': 'Others',
'nerdcore': 'Hip-Hop',
'neue deutsche harte': 'Rock',
'neue deutsche welle': 'Pop',
'neurofunk': 'Electronic',
'neurostep': 'Electronic',
'new age': 'Others',
'new age piano': 'Others',
'new americana': 'Country/Folk',
'new beat': 'Electronic',
'new jack smooth': 'RnB/Soul',
'new jack swing': 'RnB/Soul',
'new orleans blues': 'Jazz',
'new orleans jazz': 'Jazz',
'new rave': 'Electronic',
'new romantic': 'Pop',
'new tribe': 'Others',
'new wave': 'Pop',
'new wave pop': 'Pop',
'new weird america': 'Indie',
'ninja': 'Others',
'nintendocore': 'Rock',
'nl folk': 'Country/Folk',
'no wave': 'Rock',
'noise': 'Experimental',
'noise pop': 'Indie',
'noise punk': 'Rock',
'noise rock': 'Rock',
'nordic folk': 'Country/Folk',
'nordic house': 'Electronic',
'norteno': 'Others',
'northern irish indie': 'Indie',
'northern soul': 'RnB/Soul',
'norwegian gospel': 'Others',
'norwegian hip hop': 'Hip-Hop',
'norwegian jazz': 'Jazz',
'norwegian metal': 'Rock',
'norwegian pop': 'Pop',
'norwegian punk': 'Rock',
'norwegian rock': 'Rock',
'nu age': 'Others',
'nu disco': 'Electronic',
'nu electro': 'Electronic',
'nu gaze': 'Indie',
'nu jazz': 'Jazz',
'nu metal': 'Rock',
'nu skool breaks': 'Electronic',
'nu-cumbia': 'Others',
'nueva cancion': 'Others',
'nursery': 'Others',
'nwobhm': 'Rock',
'nwothm': 'Rock',
'nz indie': 'Indie',
'oi': 'Rock',
'old school hip hop': 'Hip-Hop',
'old-time': 'Country/Folk',
'opera': 'Classical',
'operatic pop': 'Pop',
'opm': 'Pop',
'oratory': 'Classical',
'orchestral': 'Classical',
'organic ambient': 'Electronic',
'orgcore': 'Rock',
'orquesta tipica': 'Others',
'orquesta tropical': 'Others',
'oshare kei': 'Others',
'ostrock': 'Rock',
'outer hip hop': 'Hip-Hop',
'outlaw country': 'Country/Folk',
'outsider': 'Experimental',