-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathinference.json
20594 lines (20594 loc) · 829 KB
/
inference.json
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
{
"25269": {
"ground_truth": "취향저격 감성힙합+α 두번째",
"prediction": "r&b soul introduction 버벌진트 <eos>"
},
"69588": {
"ground_truth": "걸그룹의 대표적인 곡들",
"prediction": "신나는 댄스곡 모음 <eos>"
},
"38440": {
"ground_truth": "감성 발라드-2012년 11월",
"prediction": "푸른바다 그리움 가득한 마음으로 5 <eos>"
},
"34988": {
"ground_truth": "가을 드라이브 part1",
"prediction": "아름다운 선율과 함께하는 꿀휴식 <eos>"
},
"66941": {
"ground_truth": "미리 메리 크리스마스",
"prediction": "크리스마스 캐롤 크리스마스 캐롤 <eos>"
},
"26940": {
"ground_truth": "funky dance mix",
"prediction": "2017 08 09 배철수의 음악캠프 <eos>"
},
"92039": {
"ground_truth": "여름밤 팔베개가 되어줘",
"prediction": "요즘 날씨에 들으면 좋을 노래들 <eos>"
},
"11231": {
"ground_truth": "뉴에이지 신예 o'lee",
"prediction": "뉴에이지 최신곡 모음집 2015년 06월 09일 <eos>"
},
"51386": {
"ground_truth": "피아노 선율에 빠져든다",
"prediction": "아름다운 선율이 흐르는 감미로운 클래식 <eos>"
},
"36452": {
"ground_truth": "새로운 가능성 norovein",
"prediction": "뉴에이지 최신곡 모음집 2015년 08월 06일 <eos>"
},
"87143": {
"ground_truth": "걸크러시 제대로인 팝송",
"prediction": "아이돌 메이커 작사 작곡가 주영훈의 1990년대 댄스곡들 <eos>"
},
"106588": {
"ground_truth": "나 오늘부터 공부한다",
"prediction": "2014 08 02 배철수의 음악캠프 <eos>"
},
"119527": {
"ground_truth": "촉촉히 젖어드는 음악",
"prediction": "콘서트 7080 롤러장 <eos>"
},
"142996": {
"ground_truth": "\" 캐간지 supertrax\"",
"prediction": "시대별차트 1971년 해외차트 <eos>"
},
"77109": {
"ground_truth": "씩씩하게 만드는 발랄송",
"prediction": "내가 좋아하는 시끄러운 <eos>"
},
"109788": {
"ground_truth": "별다방을 가득채우는 감성뮤직",
"prediction": "달빛아래 들려오는 감미로운 멜로디 <eos>"
},
"27673": {
"ground_truth": "포스트패닉 모가비 입술을깨물다",
"prediction": "콘서트 7080 롤러장 <eos>"
},
"45649": {
"ground_truth": "듣기좋은 여성보컬 팝송★",
"prediction": "나만 알고싶은 인디입문곡 <eos>"
},
"114939": {
"ground_truth": "헤어지면서 느끼는 감정",
"prediction": "내가 좋아하는 시끄러운 <eos>"
},
"70074": {
"ground_truth": "전설의 기타리스트 재즈&블루스",
"prediction": "뉴에이지 최신곡 모음집 2015년 06월 09일 <eos>"
},
"106991": {
"ground_truth": "그르부 타게되는 감성힙합",
"prediction": "카페에서 듣기좋은 노래 <eos>"
},
"69193": {
"ground_truth": "클럽에서 이노래 나와",
"prediction": "mic swagger 5 <eos>"
},
"136402": {
"ground_truth": "기계음군과 메탈양의 만남",
"prediction": "아름다운 클래식 음악으로 위한 클래식 <eos>"
},
"51278": {
"ground_truth": "감성 새벽 플레이리스트",
"prediction": "마음이 편안해지는 음악 <eos>"
},
"83540": {
"ground_truth": "불은 위험해 소방안전동요",
"prediction": "the weeknd 스타보이가 되어 돌아오다 <eos>"
},
"57557": {
"ground_truth": "레이블 ‘어느새봄’을 응원합니다",
"prediction": "비오는날 듣기좋은 노래 <eos>"
},
"82597": {
"ground_truth": "차분하고 포근한 곡들",
"prediction": "『가수바라기 no 73』 베스트 20 <eos>"
},
"81015": {
"ground_truth": "2019 신곡 뽀시래기",
"prediction": "요즘 인기있는 노래들 <eos>"
},
"128356": {
"ground_truth": "모두가 좋아할수있는 한국노래",
"prediction": "20대 30대 감성 발라드 <eos>"
},
"30685": {
"ground_truth": "독서를 부르는 리스트",
"prediction": "아름다운 선율과 함께하는 꿀휴식 <eos>"
},
"1133": {
"ground_truth": "po운동wer할때 듣는 노동요",
"prediction": "운동할때 듣는 신나는 음악 <eos>"
},
"152720": {
"ground_truth": "가을느낌 물씬나는 음악",
"prediction": "가을에 어울리는 발라드 <eos>"
},
"32566": {
"ground_truth": "여름에 듣기 좋은음악",
"prediction": "여름에 어울리는 신나는 노래 <eos>"
},
"82174": {
"ground_truth": "가사가 너무 좋은노래",
"prediction": "발라드 r&b 262 <eos>"
},
"104791": {
"ground_truth": "위로가 필요한 사람들에게",
"prediction": "오늘 하루도 수고한 나에게 들려주는 노래 <eos>"
},
"37882": {
"ground_truth": "추억의 성인가요 1970",
"prediction": "『가수바라기 no 73』 베스트 20 <eos>"
},
"94992": {
"ground_truth": "올리비아 ong 베스트",
"prediction": "달달한 인디로 때 듣는 음악 <eos>"
},
"54071": {
"ground_truth": "●소울을 지닌 rnb",
"prediction": "dj 미러볼 12회 best <eos>"
},
"126512": {
"ground_truth": "듣고있으면 제목을검색하고싶은 겨울감성노래",
"prediction": "듣자마자 카톡으로 너와 공유하고싶은 겨울감성노래 <eos>"
},
"114590": {
"ground_truth": "추운요즘에 들으며 힐링해요",
"prediction": "비오는날 듣기좋은 발라드 <eos>"
},
"40337": {
"ground_truth": "감성 충만 플레이리스트",
"prediction": "카페에서 듣는 뉴에이지 <eos>"
},
"42465": {
"ground_truth": "쌀쌀함을 달래는 옛날발라드",
"prediction": "이별에 대처하는 우리들의 자세 <eos>"
},
"123463": {
"ground_truth": "레어블랙뮤직 vol 14",
"prediction": "시대별차트 1971년 해외차트 <eos>"
},
"42543": {
"ground_truth": "들으면 울컥하는 사랑노래",
"prediction": "요즘 인기있는 노래들 <eos>"
},
"135519": {
"ground_truth": "그루브타고싶을땐 역시 알앤비소울뮤직",
"prediction": "요즘 날씨에 어울리는 음악 <eos>"
},
"145948": {
"ground_truth": "결혼식 축가 프로포즈노래",
"prediction": "듣기만해도 설레는 봄노래 <eos>"
},
"67637": {
"ground_truth": "기분따라 듣고싶은 노래",
"prediction": "겨울에 어울리는 노래 <eos>"
},
"100152": {
"ground_truth": "30대발라드cd 굽기위한 모음곡",
"prediction": "발라드 발라드 발라드 <eos>"
},
"133677": {
"ground_truth": "2008년의 명곡을 아시나요?",
"prediction": "2000년대 추억의 노래 <eos>"
},
"31153": {
"ground_truth": "아프니까 더 아파보려고",
"prediction": "비오는날 듣기좋은 노래 <eos>"
},
"104305": {
"ground_truth": "더울때는 시원한음악 해외편",
"prediction": "드라이브할때 듣기좋은 트렌디한 edm <eos>"
},
"110736": {
"ground_truth": "수능기념 수능금지곡 메들리",
"prediction": "k-pop 보이그룹 데뷔곡 모음 <eos>"
},
"10100": {
"ground_truth": "시작하는 연인들을 위해",
"prediction": "유희열의 스케치북 겨울이야기 <eos>"
},
"74648": {
"ground_truth": "어쿠스틱 우쿨렐레로치기 딱조아",
"prediction": "따뜻한 커피와 함께하는 발라드 <eos>"
},
"26950": {
"ground_truth": "7080 신나는 드라이브",
"prediction": "아이돌 메이커 작사 작곡가 황현 <eos>"
},
"51778": {
"ground_truth": "이불덮고 혼자서듣기 좋은노래",
"prediction": "『가수바라기 no 73』 베스트 20 <eos>"
},
"70030": {
"ground_truth": "편안하게 듣는 클래식명곡들",
"prediction": "공부할때 듣는 잔잔한 뉴에이지 <eos>"
},
"78771": {
"ground_truth": "세시봉 콘서트 노래모음-2",
"prediction": "쓸쓸한 가을 밤 <eos>"
},
"134186": {
"ground_truth": "스트레스에 도움되는 연주",
"prediction": "잔잔한 뉴에이지 피아노 연주곡 <eos>"
},
"127331": {
"ground_truth": "가을 인디로짙어가는 밤\"",
"prediction": "비오는날 듣는 음악 <eos>"
},
"94528": {
"ground_truth": "해피 크리스마스 가요&pop",
"prediction": "크리스마스 캐롤 모음 <eos>"
},
"49847": {
"ground_truth": "센치한날 듣기좋은 발라드",
"prediction": "마음을 위로해주는 음악 <eos>"
},
"113501": {
"ground_truth": "감성이 터지는 팝음악들",
"prediction": "pop music <eos>"
},
"45998": {
"ground_truth": "비와 함께하는 감성발라드",
"prediction": "따뜻한 봄날의 상쾌한 아침을 열어주는 음악들 <eos>"
},
"74884": {
"ground_truth": "지워도 잊어버려도 떠오르는",
"prediction": "버블디아님 추천곡 <eos>"
},
"27033": {
"ground_truth": "슈가맨에 나왔으면 좋겠다",
"prediction": "마음이 편안해지는 발라드 <eos>"
},
"34871": {
"ground_truth": "잔잔한 매력있는 팝송",
"prediction": "잔잔한 pop pop <eos>"
},
"73668": {
"ground_truth": "일상에 스며드는 뉴에이지",
"prediction": "뉴에이지 최신곡 모음집 2015년 06월 09일 <eos>"
},
"61387": {
"ground_truth": "비가오면 생각나는 노래들어요",
"prediction": "쓸쓸한 가을 발라드 <eos>"
},
"23027": {
"ground_truth": "♥비련의 여주인공♥슬픈 ost",
"prediction": "생생한 고음질로 만나는 hi-fi 가요 위클리 11월 24일자 <eos>"
},
"78427": {
"ground_truth": "feat chris brown",
"prediction": "내가 좋아하는 pop <eos>"
},
"149447": {
"ground_truth": "마음이 차분해지는 힐링음악",
"prediction": "따뜻한 크리스마스를 위한 감성 뉴에이지 <eos>"
},
"48216": {
"ground_truth": "크리스마스는 가요도 좋타",
"prediction": "크리스마스 솔로대첩 <eos>"
},
"41465": {
"ground_truth": "첫눈처럼 편안한 아기동요음악",
"prediction": "뉴에이지 최신곡 모음집 2015년 06월 18일 <eos>"
},
"5648": {
"ground_truth": "레드벨벳 수록곡 추천",
"prediction": "아이돌 숨은명곡 찾기 <eos>"
},
"51651": {
"ground_truth": "상큼발랄 달달한 인디음악",
"prediction": "비오는날 듣기좋은 노래 <eos>"
},
"60554": {
"ground_truth": "눈오는날 겨울겨울스러운 노래들",
"prediction": "크리스마스에 듣는 노래 <eos>"
},
"67729": {
"ground_truth": "요즘 감성힙합이 대세라면서요?",
"prediction": "요즘 인기있는 노래들 <eos>"
},
"118703": {
"ground_truth": "연애하고 싶지 않으세요?",
"prediction": "내가 좋아하는 노래들 <eos>"
},
"140908": {
"ground_truth": "무더위 카페에서 라떼한잔",
"prediction": "카페에서 듣는 잔잔한 음악 <eos>"
},
"31325": {
"ground_truth": "비소리와 함께하는 퇴근길",
"prediction": "카페에서 듣는 노래 <eos>"
},
"126573": {
"ground_truth": "remembering whitney houston",
"prediction": "시대별차트 1971년 해외차트 <eos>"
},
"65580": {
"ground_truth": "피겨선수들이 썼던 곡들",
"prediction": "생생한 고음질로 만나는 hi-fi 가요 위클리 11월 24일자 <eos>"
},
"85075": {
"ground_truth": "취향저격 느낌있는음악 뉴군의음악추천",
"prediction": "사랑하는 사람과 함께 듣는 노래 <eos>"
},
"31951": {
"ground_truth": "홈파티하면 힙합 아니겄습니까?",
"prediction": "요즘 인기있는 pop <eos>"
},
"2955": {
"ground_truth": "뭔가몽환적이고 슬픈유니크한 노래들",
"prediction": "2017 지산 밸리록 페스티벌 <eos>"
},
"72350": {
"ground_truth": "가슴을 울리느 발라드",
"prediction": "가을에 어울리는 노래 <eos>"
},
"6181": {
"ground_truth": "이별후에 너에게 하는말",
"prediction": "요즘 날씨에 들으면 좋을 노래들 <eos>"
},
"149229": {
"ground_truth": "adios hasta luego",
"prediction": "발라드 r&b 262 <eos>"
},
"134732": {
"ground_truth": "분위기좋은 가요 듣기",
"prediction": "카페에서 듣는 노래 <eos>"
},
"115933": {
"ground_truth": "사랑 이야기 노래모음",
"prediction": "2000년대 발라드 모음 <eos>"
},
"51855": {
"ground_truth": "요즘유행인 달달한 감성힙합모음",
"prediction": "○ 가을&발라드 2000년대 명품발라드 100곡 소장용 part 2 <eos>"
},
"150614": {
"ground_truth": "매일매일 듣고싶은 ost",
"prediction": "드라마 ost 모음 <eos>"
},
"10447": {
"ground_truth": "딥&트로피컬 하우스로 기운내세요",
"prediction": "내가 좋아하는 시끄러운 <eos>"
},
"127538": {
"ground_truth": "크리스마스하면 생각나는 노래❤",
"prediction": "크리스마스 솔로대첩 남자편 <eos>"
},
"48472": {
"ground_truth": "비오는날 고요한 재즈팝송",
"prediction": "카페에서 듣는 감각적인 음악 <eos>"
},
"72341": {
"ground_truth": "유희열의 스케치북 121회",
"prediction": "『가수바라기 no 73』 베스트 20 <eos>"
},
"237": {
"ground_truth": "크리스마스가 기다려지는 재즈음악들",
"prediction": "크리스마스 캐롤 christmas carol <eos>"
},
"28066": {
"ground_truth": "시원한 바람타고 수목원갈래??",
"prediction": "클럽 타 unplugged concert set list <eos>"
},
"77821": {
"ground_truth": "노래방가면 이노래 간간히들리더군요",
"prediction": "2000년대 추억의 2000년대 발라드 <eos>"
},
"86164": {
"ground_truth": "음주가무 다음날 숙취해소송",
"prediction": "신나는 금요일 신나는 노래 <eos>"
},
"2049": {
"ground_truth": "진정한 일본노래 모음집6",
"prediction": "생생한 고음질로 만나는 hi-fi 가요 위클리 11월 24일자 <eos>"
},
"130006": {
"ground_truth": "사랑하는 사람을 생각하며",
"prediction": "잔잔한 크리스마스 캐롤 모음 <eos>"
},
"99095": {
"ground_truth": "피곤함을 달래줄 클래식",
"prediction": "아름다운 뉴에이지 피아노 연주곡 <eos>"
},
"126198": {
"ground_truth": "주말의 힐링 연주곡모음",
"prediction": "따뜻한 커피와 함께하는 뉴에이지 <eos>"
},
"77493": {
"ground_truth": "나른한 봄날의 피아노",
"prediction": "공부할때 듣는 잔잔한 연주곡 <eos>"
},
"22469": {
"ground_truth": "여름철에 어울리는 음악",
"prediction": "신나는 아이돌 댄스곡 모음 <eos>"
},
"82936": {
"ground_truth": "사랑하는 사람에게 고백하세요♥",
"prediction": "○ 차트에없지만 알리구싶은 좋은 100곡 part 1 <eos>"
},
"133828": {
"ground_truth": "한번만 들어봐 빠져들거야",
"prediction": "나만 알고싶은 숨겨진 명곡 <eos>"
},
"53622": {
"ground_truth": "당신과 저는 헤어졌어요",
"prediction": "비오는날 듣는 노래 <eos>"
},
"34838": {
"ground_truth": "첫사랑 그것에 관하여",
"prediction": "『가수바라기 no 73』 베스트 20 <eos>"
},
"70470": {
"ground_truth": "시원한 감성 rock",
"prediction": "클래식으로 듣는 잔잔한 음악 <eos>"
},
"128157": {
"ground_truth": "창가가 내다보이는 카페에서",
"prediction": "비오는날 듣는 잔잔한 음악 <eos>"
},
"37624": {
"ground_truth": "old school r&b",
"prediction": "『가수바라기 no 73』 베스트 20 <eos>"
},
"124270": {
"ground_truth": "개인의 취향 클럽음악",
"prediction": "운동할때 신나는 외국힙합 <eos>"
},
"153045": {
"ground_truth": "두근두근 로맨틱한 재즈음악♥",
"prediction": "따뜻한 봄날의 상쾌한 클래식 <eos>"
},
"133599": {
"ground_truth": "나만의 best3 민채",
"prediction": "『가수바라기 no 73』 베스트 20 <eos>"
},
"25888": {
"ground_truth": "우울할땐 더 우울하게",
"prediction": "발라드 이별을 말하다 <eos>"
},
"85140": {
"ground_truth": "지워도 잊어버려도 떠오르는",
"prediction": "버블디아님 추천곡 <eos>"
},
"124004": {
"ground_truth": "고독함을 즐기고 싶을때",
"prediction": "마음이 편안해지는 노래 <eos>"
},
"1208": {
"ground_truth": "감성힙합 part 1",
"prediction": "○ 잠들기전 음색에취하게 만드는리스트 여성보컬곡 <eos>"
},
"138622": {
"ground_truth": "여름이니까 시원하고 발랄하게",
"prediction": "신나는 아이돌 노래 <eos>"
},
"108011": {
"ground_truth": "진정한 팝의 디바는?",
"prediction": "시대별차트 1971년 해외차트 <eos>"
},
"9214": {
"ground_truth": "귀에착착 감기는 노래",
"prediction": "새벽감성 자극하는 노래 <eos>"
},
"66088": {
"ground_truth": "르네상스 어디까지 들어봤니?",
"prediction": "클래식 최신곡 모음집 2015년 06월 18일 <eos>"
},
"146956": {
"ground_truth": "짝사랑한다면 공감가는 노래들",
"prediction": "2019년 10월에 들은 노래 <eos>"
},
"51943": {
"ground_truth": "비오는 날의 뉴에이지",
"prediction": "뉴에이지 피아노 연주곡 <eos>"
},
"113397": {
"ground_truth": "♥새벽2시 우리둘이 와인한잔",
"prediction": "카페에서 듣는 잔잔한 음악 <eos>"
},
"113365": {
"ground_truth": "카페에서 잔잔하게 음악듣기",
"prediction": "공부할때 듣는 잔잔한 연주곡 <eos>"
},
"44115": {
"ground_truth": "피처링은 피처링을 부르지요",
"prediction": "내가 좋아하는 노래 <eos>"
},
"47835": {
"ground_truth": "차곡차곡 모아뒀던 느낌들",
"prediction": "요즘 인기있는 pop <eos>"
},
"5910": {
"ground_truth": "마음이 힐링되는 연주음악들",
"prediction": "따뜻한 커피와 함께하는 뉴에이지 <eos>"
},
"71240": {
"ground_truth": "딱 10곡만 들어주세요",
"prediction": "기분이 좋아지는 통통튀고 세련된 곡들 <eos>"
},
"66827": {
"ground_truth": "♥사랑노래♥ 달달함에 빠져들기",
"prediction": "달달한 사랑노래 모음 <eos>"
},
"15960": {
"ground_truth": "미리 메리 크리스마스",
"prediction": "몽환적인 느낌의 pop <eos>"
},
"57454": {
"ground_truth": "기분전환 해주는 팝송들",
"prediction": "아는만큼 들리는 트렌디한 pop <eos>"
},
"153297": {
"ground_truth": "만약 00년대 토토가를한다면?",
"prediction": "『가수바라기 no 73』 베스트 20 <eos>"
},
"86711": {
"ground_truth": "인기만발 트렌디 뮤직",
"prediction": "2019 한국대중음악상 수상작 모음 <eos>"
},
"35654": {
"ground_truth": "✯nct '도시의 아이돌'",
"prediction": "콘서트 7080 348회 <eos>"
},
"40800": {
"ground_truth": "슈퍼주니어 명곡 모음",
"prediction": "시대별차트 1971년 해외차트 <eos>"
},
"45371": {
"ground_truth": "요즘 듣는 playlist",
"prediction": "취향저격 감성힙합 <eos>"
},
"8281": {
"ground_truth": "저절로 리듬타는 신나는pop",
"prediction": "신나는 edm으로 야외 위한 신나는 음악 <eos>"
},
"44536": {
"ground_truth": "취향저격 justin bieber",
"prediction": "시대별차트 1971년 해외차트 <eos>"
},
"106706": {
"ground_truth": "발라드가 듣고싶은 날",
"prediction": "달빛아래 들려오는 감미로운 목소리 <eos>"
},
"112413": {
"ground_truth": "이별후 감성적인 여자보컬",
"prediction": "가을에 어울리는 발라드 <eos>"
},
"23258": {
"ground_truth": "나만의 플레이리스트 \"",
"prediction": "내가 좋아하는 노래 <eos>"
},
"150361": {
"ground_truth": "arthur fiedller 베스트",
"prediction": "내가 좋아하는 시끄러운 <eos>"
},
"17865": {
"ground_truth": "여름 플레이리스트 시동걸기",
"prediction": "요즘 인기있는 pop <eos>"
},
"97305": {
"ground_truth": "권태로운 우리 이별노래",
"prediction": "푸른바다 그리움 가득한 마음으로 5 <eos>"
},
"128301": {
"ground_truth": "떠돌고있는새벽 옆에흐르는노래 팝송ver",
"prediction": "퇴근길 듣기좋은 팝송 <eos>"
},
"137178": {
"ground_truth": "문예감성 뿜뿜 가요모음",
"prediction": "인디 introduction the soul <eos>"
},
"151316": {
"ground_truth": "netflix & €hill",
"prediction": "생생한 고음질로 만나는 hi-fi 가요 위클리 11월 24일자 <eos>"
},
"39679": {
"ground_truth": "혼자만의 시간이 필요할때",
"prediction": "달빛아래 들려오는 감미로운 목소리 <eos>"
},
"146135": {
"ground_truth": "혼자듣기 아까운 캐롤들",
"prediction": "크리스마스 캐롤 크리스마스 캐롤 <eos>"
},
"104490": {
"ground_truth": "중독성 갑인 팝송모음",
"prediction": "groove한 음악모음 vol 9 <eos>"
},
"38079": {
"ground_truth": "rainy day hiphop",
"prediction": "2015 그래미 어워드 수상곡 모음 <eos>"
},
"75316": {
"ground_truth": "카페테라스에 들리는 발라드",
"prediction": "밤에 듣는 감성발라드 <eos>"
},
"55032": {
"ground_truth": "비트가 내스타일인 곡",
"prediction": "재즈 최신곡 모음집 2015년 06월 25일 <eos>"
},
"120964": {
"ground_truth": "사랑이 오려는 걸까?",
"prediction": "사랑하는 사람과 함께 듣는 노래 <eos>"
},
"66988": {
"ground_truth": "봄카페에 어울리는 음악",
"prediction": "달달한 봄 그리고 커피한잔 <eos>"
},
"100730": {
"ground_truth": "가을밤에 어울리는 songs",
"prediction": "비오는날 듣기좋은 노래 <eos>"
},
"147679": {
"ground_truth": "그루비하고 감각적인 음악들",
"prediction": "늦은밤 드라이브할때 듣는 잔잔한 음악 <eos>"
},
"35252": {
"ground_truth": "추억의 노래 ᴋ-ᴘᴏᴘ",
"prediction": "『가수바라기 no 73』 베스트 20 <eos>"
},
"64549": {
"ground_truth": "이거시 추억의 힙합이다",
"prediction": "pop best of best <eos>"
},
"120288": {
"ground_truth": "약기운 몽롱한 국내사이키델릭",
"prediction": "사랑하는 사람과 함께 듣는 음악 <eos>"
},
"114996": {
"ground_truth": "네팔을 위해 기도해요",
"prediction": "뉴에이지 최신곡 모음집 2015년 08월 03일 <eos>"
},
"36139": {
"ground_truth": "조용한팝에 한없이 빠져들고싶어요-ll",
"prediction": "잔잔한 분위기의 팝송들 <eos>"
},
"52948": {
"ground_truth": "뛰고 달리고 런닝하고",
"prediction": "기분이 좋아지는 통통튀고 세련된 음악 <eos>"
},
"30239": {
"ground_truth": "겨울감성 이별을 노래하다",
"prediction": "비오는날 듣는 발라드 <eos>"
},
"63545": {
"ground_truth": "2000년대 누구나 다시듣고싶은노래",
"prediction": "○ 가을&발라드 2000년대 명품발라드 100곡 소장용 part 3 <eos>"
},
"105631": {
"ground_truth": "주말에 감성노래와 함께해요",
"prediction": "잔잔한 발라드 <eos>"
},
"59059": {
"ground_truth": "요즘들어 자주듣게되는 노래",
"prediction": "내가 좋아하는 노래 <eos>"
},
"120952": {
"ground_truth": "한번들으면 계속 듣고싶은노래",
"prediction": "아이돌 숨은명곡 찾기 <eos>"
},
"124901": {
"ground_truth": "힘이 불끈★솟는 보신음악",
"prediction": "클럽 타 unplugged concert set list <eos>"
},
"81769": {
"ground_truth": "듣자마자 행복해지는 곡들",
"prediction": "내가 좋아하는 노래 <eos>"
},
"140237": {
"ground_truth": "안무가 나카소네 리노",
"prediction": "시대별차트 1971년 해외차트 <eos>"
},
"74302": {
"ground_truth": "이별했을때 듣는 노래",
"prediction": "비오는날 듣는 발라드 <eos>"
},
"89991": {
"ground_truth": "김혜지 플레이리스트 ⓐ",
"prediction": "카페에서 듣기좋은 팝송 <eos>"
},
"88842": {
"ground_truth": "deep house elec",
"prediction": "감각적인 매장음악 <eos>"
},
"98050": {
"ground_truth": "♥들으면 무한반복할 노래들♥",
"prediction": "내가 좋아하는 노래 <eos>"
},
"32680": {
"ground_truth": "여름새벽 빗소리에 잠기며",
"prediction": "마음이 따뜻해지는 노래 <eos>"
},
"67363": {
"ground_truth": "혼자 울고웃는 짝사랑",
"prediction": "추억의 드라마 ost <eos>"
},
"100142": {
"ground_truth": "l-o-v-e vol 1",
"prediction": "dj 미러볼 12회 best 10 <eos>"
},
"63663": {
"ground_truth": "마음이 편안해지는 뉴에이지",
"prediction": "공부할때 듣는 뉴에이지 <eos>"
},
"121743": {
"ground_truth": "bon nuit hayoni",
"prediction": "재즈 explore bossa nova <eos>"
},
"115379": {
"ground_truth": "조금 촌스러운걸 좋아해",
"prediction": "요즘 듣고있는 노래들 <eos>"
},
"11831": {
"ground_truth": "jyp여성아티스트 노래 탐구하기",
"prediction": "내가 좋아하는 노래 <eos>"
},
"10502": {
"ground_truth": "요즘 즐겨듣는 발라드",
"prediction": "겨울밤 따뜻한 발라드 <eos>"
},
"104532": {
"ground_truth": "2013년 대한민국 감성힙합",
"prediction": "내가 사랑하는 당신이라면 <eos>"
},
"24051": {
"ground_truth": "차트를 고속질주중인 팝트랙",
"prediction": "듣자마자 카톡으로 너와 공유하고싶어 <eos>"
},
"35811": {
"ground_truth": "노래방에서 분위기 후끈후끈",
"prediction": "『가수바라기 no 73』 베스트 20 <eos>"
},
"9857": {
"ground_truth": "네오소울 그 정점은??",
"prediction": "시대별차트 1971년 해외차트 <eos>"
},
"94060": {
"ground_truth": "2000년대 최고의 명곡모음",
"prediction": "2000년대 추억의 노래 <eos>"
},
"129730": {
"ground_truth": "매스 viphex13 bagagee",
"prediction": "groove한 음악모음 vol 7 <eos>"
},
"100144": {
"ground_truth": "편집샵에서 흘러나올듯한 8",
"prediction": "pop & pop <eos>"
},
"86907": {
"ground_truth": "캬 듣기좋네 듣기좋은노래모음집",
"prediction": "2019 11월 24일자 <eos>"
},
"61385": {
"ground_truth": "달콤한 보사노바 한입",
"prediction": "카페에서 듣는 뉴에이지 <eos>"
},
"101589": {
"ground_truth": "기타와 함께하는 음악",
"prediction": "퇴근길에 듣기좋은 팝송 <eos>"
},
"131359": {
"ground_truth": "swag 넘치는 hiphop",
"prediction": "클럽 타 unplugged concert set list <eos>"
},
"124292": {
"ground_truth": "lover refresh remind",
"prediction": "재즈 최신곡 모음집 2015년 03월 06일 <eos>"
},
"17204": {
"ground_truth": "그리움에 가슴이 하얗게",
"prediction": "『가수바라기 no 73』 베스트 20 <eos>"
},
"72872": {
"ground_truth": "오늘만큼은 조용한날이 되고싶어",
"prediction": "내가 좋아하는 노래 <eos>"
},
"12107": {
"ground_truth": "차트인을 바라는 힙합",
"prediction": "요즘 인기있는 노래 <eos>"
},
"29421": {
"ground_truth": "마음이 따뜻해지는 재즈",
"prediction": "아름다운 선율이 흐르는 jazz <eos>"
},
"104592": {
"ground_truth": "설연휴 드라이빙 뮤직-국내음악",
"prediction": "내가 좋아하는 pop <eos>"
},
"31979": {
"ground_truth": "실력발휘 위풍당당 아이돌",
"prediction": "추억의 인기팝 모음 <eos>"
},
"121135": {
"ground_truth": "병역비리 가수들 노래모음",
"prediction": "클래식 최신곡 모음집 2015년 08월 03일 <eos>"
},
"117545": {
"ground_truth": "여자아이돌 랜덤플레이 상시업뎃",
"prediction": "아이돌 숨은명곡 찾기 <eos>"
},
"18365": {
"ground_truth": "수능끝났다 수능금지곡 듣자",
"prediction": "신나는 아이돌 댄스곡 모음 <eos>"
},
"20490": {
"ground_truth": "추천해주고 싶은 노래모음",
"prediction": "○ 잠들기전 음색에취하게 만드는리스트 여성보컬곡 part 1 <eos>"
},
"121779": {
"ground_truth": "당신에게만 들려주고싶은 러브송",
"prediction": "달달한 설렘과 짠짠한 그리움이 섞인 <eos>"
},
"144984": {
"ground_truth": "출근길을 즐겁게 해줄거야",
"prediction": "신나는 아이돌 노래 <eos>"
},
"105820": {
"ground_truth": "초콜렛 처럼 달달한노래",
"prediction": "달달한 봄 그리고 커피한잔 <eos>"
},
"143024": {
"ground_truth": "콘서트 7080 355회",
"prediction": "비오는날 듣기좋은 음악 <eos>"
},
"72453": {
"ground_truth": "헤어진 연인이 생각날때",
"prediction": "마음을 울리는 팝송들 <eos>"
},
"25248": {
"ground_truth": "2020 재생목록 정리",
"prediction": "노래방에서 부르기 좋은 노래 <eos>"
},
"140851": {
"ground_truth": "아이돌의 숨은 명곡1-애잔한",
"prediction": "추억의 인기팝 모음 <eos>"
},
"89756": {
"ground_truth": "시대별차트 2008년 해외차트",
"prediction": "시대별차트 1971년 해외차트 <eos>"
},
"39020": {
"ground_truth": "배경음악으로 듣는 노래",
"prediction": "카페에서 듣는 잔잔한 연주곡 <eos>"
},
"11013": {
"ground_truth": "독서나 휴식할때 듣기좋은음악",
"prediction": "공부할때 듣는 잔잔한음악 <eos>"
},
"144516": {
"ground_truth": "가을에 듣고싶은 감성힙합",
"prediction": "○ 잠들기전 음색에취하게 만드는리스트 여성보컬곡 <eos>"
},
"72504": {
"ground_truth": "쇼미더머니 시즌4 정리",
"prediction": "2014 08 10 배철수의 음악캠프 <eos>"
},
"151812": {
"ground_truth": "음악을입다 노래를입다 ♬",
"prediction": "내가 좋아하는 노래 <eos>"
},
"1397": {
"ground_truth": "최정상 r&b 명곡들",
"prediction": "2014 08 02 배철수의 음악캠프 <eos>"
},
"120122": {
"ground_truth": "겨울저녁 카페에서 감성acoustic",
"prediction": "뉴에이지 최신곡 모음집 2015년 07월 06일 <eos>"
},
"53794": {
"ground_truth": "취향대로 골라본 재즈힙합",
"prediction": "감각적인 커버가 인상적인 팝 <eos>"
},
"89883": {
"ground_truth": "부모님 취향저격 노래",
"prediction": "시대별차트 1971년 해외차트 <eos>"
},
"148703": {
"ground_truth": "따스하고 달콤한 나들이송",
"prediction": "달달한 어쿠스틱 인디 <eos>"
},
"36685": {
"ground_truth": "가을비#감성 어쿠스티송♡vol 04",
"prediction": "기분 좋아지는 통통튀고 세련된 음악 <eos>"
},
"26518": {
"ground_truth": "korean old pop",
"prediction": "『가수바라기 no 73』 베스트 20 <eos>"
},
"55883": {
"ground_truth": "glastonbury 2014-pyramid stage",
"prediction": "생생한 고음질로 만나는 hi-fi 가요 위클리 11월 24일자 <eos>"
},
"150552": {
"ground_truth": "매장에서 흘러나오는 음악",
"prediction": "r&b soul introduction 버벌진트 <eos>"
},
"126976": {
"ground_truth": "여름밤 무더운 당신에게",
"prediction": "요즘 인기있는 노래들 <eos>"
},
"78324": {
"ground_truth": "가볍게 듣기좋은 팝송",
"prediction": "선선한 바람과 어울리는 플레이리스트 <eos>"
},
"41602": {
"ground_truth": "인생을 되돌아보게되는 음악들",
"prediction": "내가 좋아하는 노래 <eos>"
},
"103239": {
"ground_truth": "-트렌디&스타일리쉬한 노래 좋아해?-",
"prediction": "감각적인 커버가 인상적인 팝 <eos>"
},
"97296": {
"ground_truth": "최애 electronica 30",
"prediction": "신나는 드라이브 뮤직 <eos>"
},
"16134": {
"ground_truth": "운치있고 감성적인 choice",
"prediction": "내가 좋아하는 시끄러운 <eos>"
},
"38754": {
"ground_truth": "메말라져버린 감성 불러일으키는노래",
"prediction": "내가 좋아하는 노래 <eos>"
},
"102313": {
"ground_truth": "팝팝터지는 인디풍 pop",
"prediction": "새벽에 듣기좋은 pop <eos>"
},
"38589": {
"ground_truth": "매혹적인 여성보컬리스트 모음",
"prediction": "요즘 인기있는 노래들 <eos>"
},
"58162": {
"ground_truth": "매일 운동하자 project",
"prediction": "프로듀스101 시즌2 포지션 평가 곡 <eos>"
},
"85563": {
"ground_truth": "사랑하는 사람과 함께",
"prediction": "『가수바라기 no 73』 베스트 20 <eos>"
},
"149970": {
"ground_truth": "편하게 듣는 감성발라드",
"prediction": "자기전에 듣기 좋은 노래 <eos>"
},
"119010": {
"ground_truth": "dance with rock",
"prediction": "재즈 최신곡 모음집 2015년 03월 20일 <eos>"
},
"123585": {
"ground_truth": "lovely modern pop",
"prediction": "내가 좋아하는 pop <eos>"
},
"29445": {
"ground_truth": "분위기있는 레스토랑 bgm",
"prediction": "비오는날 듣는 잔잔한 연주곡 <eos>"
},
"34408": {
"ground_truth": "변환되는 재즈멜로디로 기분전환하기",
"prediction": "기분좋은 하루를 마무리 <eos>"
},
"40015": {
"ground_truth": "위로가 되어주는 인디음악",
"prediction": "내가 좋아하는 노래 <eos>"
},
"95448": {
"ground_truth": "마음을 울리는 music",
"prediction": "『가수바라기 no 73』 베스트 20 <eos>"