-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathinference.json
20050 lines (20050 loc) · 561 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
{
"923035": {
"ground_truth": "wedding dinner music",
"prediction": "wedding - cocktail hour <eos>"
},
"634077": {
"ground_truth": "history of rap",
"prediction": "old school hip hop <eos>"
},
"346649": {
"ground_truth": "best of 2013",
"prediction": "best of 2013 <eos>"
},
"741394": {
"ground_truth": "noosa tastiest playlist",
"prediction": "peanut butter vibes <eos>"
},
"559812": {
"ground_truth": "road trip tunes",
"prediction": "peanut butter vibes <eos>"
},
"961621": {
"ground_truth": "drum & bass",
"prediction": "drum and bass <eos>"
},
"961554": {
"ground_truth": "in the mood",
"prediction": "rock and roll <eos>"
},
"554663": {
"ground_truth": "vibe with me",
"prediction": "in the feels <eos>"
},
"822199": {
"ground_truth": "spotify and chill",
"prediction": "in my feelings <eos>"
},
"93702": {
"ground_truth": "pump up songs",
"prediction": "best of the best <eos>"
},
"869054": {
"ground_truth": "2015 top tracks",
"prediction": "2015 top tracks <eos>"
},
"96792": {
"ground_truth": "daily mix 1",
"prediction": "the good stuff <eos>"
},
"457124": {
"ground_truth": "for the ladies",
"prediction": "songs i love <eos>"
},
"933081": {
"ground_truth": "new years 2016",
"prediction": "wedding dance party <eos>"
},
"411122": {
"ground_truth": "into the wild",
"prediction": "the good stuff <eos>"
},
"311110": {
"ground_truth": "friday the 13th",
"prediction": "best of 2015 <eos>"
},
"371057": {
"ground_truth": "it's a vibe",
"prediction": "spring summer 2017 <eos>"
},
"775236": {
"ground_truth": "twenty one pilots",
"prediction": "twenty one pilots — stressed out <eos>"
},
"199769": {
"ground_truth": "feels like summer",
"prediction": "feel good music <eos>"
},
"376805": {
"ground_truth": "songs to learn",
"prediction": "the feel-good flavors playlist <eos>"
},
"895823": {
"ground_truth": "wedding - ceremony",
"prediction": "country love songs <eos>"
},
"979241": {
"ground_truth": "dat good good",
"prediction": "hip hop rap <eos>"
},
"956835": {
"ground_truth": "best of 2011",
"prediction": "the good stuff <eos>"
},
"729604": {
"ground_truth": "rock of ages",
"prediction": "rock of ages <eos>"
},
"339452": {
"ground_truth": "doses & mimosas",
"prediction": "work out playlist <eos>"
},
"520723": {
"ground_truth": "drop the bass",
"prediction": "work out playlist <eos>"
},
"389645": {
"ground_truth": "punk goes pop",
"prediction": "punk goes pop <eos>"
},
"546394": {
"ground_truth": "spring sprang sprung",
"prediction": "songs i like <eos>"
},
"346933": {
"ground_truth": "love on top",
"prediction": "best of 2015 <eos>"
},
"987833": {
"ground_truth": "old school jamz",
"prediction": "middle school dance <eos>"
},
"452056": {
"ground_truth": "work out music",
"prediction": "the good stuff <eos>"
},
"269081": {
"ground_truth": "oldies but goodies",
"prediction": "oldies but goodies <eos>"
},
"746661": {
"ground_truth": "thinking of you",
"prediction": "love love love <eos>"
},
"777592": {
"ground_truth": "work it out",
"prediction": "work it out <eos>"
},
"615112": {
"ground_truth": "2015 top tracks",
"prediction": "slow it down <eos>"
},
"24665": {
"ground_truth": "feel good songs",
"prediction": "best of the best <eos>"
},
"160777": {
"ground_truth": "spring break 2017",
"prediction": "just good songs <eos>"
},
"983845": {
"ground_truth": "pump up music",
"prediction": "pump up music <eos>"
},
"243377": {
"ground_truth": "oldies but goodies",
"prediction": "old school r&b <eos>"
},
"920923": {
"ground_truth": "guns n' roses",
"prediction": "guns n' roses <eos>"
},
"425445": {
"ground_truth": "take me back",
"prediction": "oldies but goodies <eos>"
},
"693931": {
"ground_truth": "grad party playlist",
"prediction": "good vibes only <eos>"
},
"383870": {
"ground_truth": "wedding dance songs",
"prediction": "wedding - dance <eos>"
},
"207630": {
"ground_truth": "hip hop mix",
"prediction": "hip hop rap <eos>"
},
"591365": {
"ground_truth": "praise and worship",
"prediction": "praise & worship <eos>"
},
"740994": {
"ground_truth": "rock en español",
"prediction": "rock en español <eos>"
},
"709655": {
"ground_truth": "today's top hits",
"prediction": "for my love <eos>"
},
"203229": {
"ground_truth": "new playlist 2",
"prediction": "best of 2016 <eos>"
},
"289801": {
"ground_truth": "currently listening to",
"prediction": "new and improved <eos>"
},
"941168": {
"ground_truth": "spotify and chill",
"prediction": "baby making music <eos>"
},
"830547": {
"ground_truth": "all the feels",
"prediction": "in my feels <eos>"
},
"929911": {
"ground_truth": "oldies but goodies",
"prediction": "oldies but goodies <eos>"
},
"427285": {
"ground_truth": "lil uzi vert",
"prediction": "lil uzi vert <eos>"
},
"294294": {
"ground_truth": "under the covers",
"prediction": "baby making music <eos>"
},
"722630": {
"ground_truth": "sad nibba hours",
"prediction": "in my feelings <eos>"
},
"887898": {
"ground_truth": "stuff i like",
"prediction": "the good stuff <eos>"
},
"565440": {
"ground_truth": "turn up music",
"prediction": "you know it <eos>"
},
"789059": {
"ground_truth": "feel good music",
"prediction": "feel good music <eos>"
},
"731847": {
"ground_truth": "pump up songs",
"prediction": "hip hop rap <eos>"
},
"382291": {
"ground_truth": "way back when",
"prediction": "songs i like <eos>"
},
"974267": {
"ground_truth": "old hip hop",
"prediction": "old school rap <eos>"
},
"822573": {
"ground_truth": "west coast swing",
"prediction": "i don't care <eos>"
},
"965102": {
"ground_truth": "break up songs",
"prediction": "sense8 music map playlist <eos>"
},
"998422": {
"ground_truth": "rock en español",
"prediction": "rock en español <eos>"
},
"612711": {
"ground_truth": "do not disturb",
"prediction": "all the feels <eos>"
},
"992768": {
"ground_truth": "pump up songs",
"prediction": "work out music <eos>"
},
"676237": {
"ground_truth": "feel good songs",
"prediction": "songs i like <eos>"
},
"709272": {
"ground_truth": "old school hiphop",
"prediction": "old school hip hop <eos>"
},
"593007": {
"ground_truth": "oldies but goodies",
"prediction": "rock n roll <eos>"
},
"637711": {
"ground_truth": "all time faves",
"prediction": "oldies but goodies <eos>"
},
"320220": {
"ground_truth": "punk goes pop",
"prediction": "punk goes pop <eos>"
},
"778647": {
"ground_truth": "my high-intensity workout",
"prediction": "my high-intensity workout <eos>"
},
"430446": {
"ground_truth": "90s hip hop",
"prediction": "old school hip hop <eos>"
},
"432794": {
"ground_truth": "take it easy",
"prediction": "wedding cocktail hour <eos>"
},
"571302": {
"ground_truth": "in my feelings",
"prediction": "in my feelings <eos>"
},
"207715": {
"ground_truth": "study study study",
"prediction": "chill out bro <eos>"
},
"587201": {
"ground_truth": "hip hop rap",
"prediction": "hip hop rap <eos>"
},
"350483": {
"ground_truth": "way back when",
"prediction": "old school r&b <eos>"
},
"603069": {
"ground_truth": "ya like jazz?",
"prediction": "ya like jazz? <eos>"
},
"610245": {
"ground_truth": "dat new new",
"prediction": "the weeknd — the hills <eos>"
},
"897811": {
"ground_truth": "country 2 0",
"prediction": "good ole country <eos>"
},
"445559": {
"ground_truth": "lista oficial sense8",
"prediction": "songs i like <eos>"
},
"113417": {
"ground_truth": "praise and worship",
"prediction": "praise and worship <eos>"
},
"857451": {
"ground_truth": "on the road",
"prediction": "my favorite songs <eos>"
},
"842949": {
"ground_truth": "all the time",
"prediction": "in my feelings <eos>"
},
"219821": {
"ground_truth": "wedding - dancing",
"prediction": "happy happy happy <eos>"
},
"18860": {
"ground_truth": "feel good music",
"prediction": "chill hip hop <eos>"
},
"892554": {
"ground_truth": "cumbia y salsa",
"prediction": "musica en español <eos>"
},
"283300": {
"ground_truth": "2015 top tracks",
"prediction": "road trip playlist <eos>"
},
"756087": {
"ground_truth": "slow it down",
"prediction": "the good stuff <eos>"
},
"497916": {
"ground_truth": "middle school angst",
"prediction": "middle school angst <eos>"
},
"367860": {
"ground_truth": "throw it back",
"prediction": "throw it back <eos>"
},
"67345": {
"ground_truth": "white girl wasted",
"prediction": "oldies but goodies <eos>"
},
"536016": {
"ground_truth": "going to california",
"prediction": "best of 2014 <eos>"
},
"233557": {
"ground_truth": "best of 2017",
"prediction": "best of 2017 <eos>"
},
"454327": {
"ground_truth": "2015 top tracks",
"prediction": "2015 top tracks <eos>"
},
"511052": {
"ground_truth": "take me back",
"prediction": "oldies but goodies <eos>"
},
"345470": {
"ground_truth": "oldies but goodies",
"prediction": "oldies but goodies <eos>"
},
"18691": {
"ground_truth": "new years day",
"prediction": "all time favorites <eos>"
},
"169407": {
"ground_truth": "fall out boy",
"prediction": "fall out boy <eos>"
},
"4083": {
"ground_truth": "lets get it",
"prediction": "spring break 2017 <eos>"
},
"671562": {
"ground_truth": "old school hip-hop",
"prediction": "old school rap <eos>"
},
"338175": {
"ground_truth": "you know it",
"prediction": "old school r&b <eos>"
},
"134289": {
"ground_truth": "rock en español",
"prediction": "rock en español <eos>"
},
"580485": {
"ground_truth": "rock it out",
"prediction": "rock and roll <eos>"
},
"866618": {
"ground_truth": "that new new",
"prediction": "for the soul <eos>"
},
"130463": {
"ground_truth": "new playlist 3",
"prediction": "the good stuff <eos>"
},
"872306": {
"ground_truth": "things i like",
"prediction": "the good stuff <eos>"
},
"756194": {
"ground_truth": "check it out",
"prediction": "west coast swing <eos>"
},
"532823": {
"ground_truth": "oldies but goodies",
"prediction": "oldies but goodies <eos>"
},
"574509": {
"ground_truth": "california road trip",
"prediction": "the good stuff <eos>"
},
"884707": {
"ground_truth": "my high-intensity workout",
"prediction": "my high-intensity workout <eos>"
},
"355118": {
"ground_truth": "work it out",
"prediction": "the good stuff <eos>"
},
"51879": {
"ground_truth": "bad and boujee",
"prediction": "my favorite songs <eos>"
},
"660178": {
"ground_truth": "2015 top tracks",
"prediction": "songs i like <eos>"
},
"456911": {
"ground_truth": "throwin' it back",
"prediction": "middle school dance <eos>"
},
"389175": {
"ground_truth": "road trip playlist",
"prediction": "road trip playlist <eos>"
},
"492383": {
"ground_truth": "songs to share",
"prediction": "little bit of everything <eos>"
},
"906307": {
"ground_truth": "2015 top tracks",
"prediction": "my favorite songs <eos>"
},
"56946": {
"ground_truth": "2015 top tracks",
"prediction": "the good stuff <eos>"
},
"268657": {
"ground_truth": "best of 2013",
"prediction": "best of 2013 <eos>"
},
"636699": {
"ground_truth": "back to school",
"prediction": "the feel-good flavors playlist <eos>"
},
"749005": {
"ground_truth": "best of rock",
"prediction": "rock out with your cock out <eos>"
},
"531937": {
"ground_truth": "90s hip hop",
"prediction": "old school hip hop <eos>"
},
"766706": {
"ground_truth": "strip that down",
"prediction": "that new new <eos>"
},
"67096": {
"ground_truth": "work it out",
"prediction": "work out music <eos>"
},
"437658": {
"ground_truth": "oldies but goodies",
"prediction": "oldies but goodies <eos>"
},
"467638": {
"ground_truth": "70's and 80's",
"prediction": "oldies but goodies <eos>"
},
"27695": {
"ground_truth": "taking it back",
"prediction": "oldies but goodies <eos>"
},
"802803": {
"ground_truth": "blue eyed soul",
"prediction": "oldies but goodies <eos>"
},
"194678": {
"ground_truth": "work out playlist",
"prediction": "dance dance dance <eos>"
},
"954152": {
"ground_truth": "that good good",
"prediction": "right in the feels <eos>"
},
"14674": {
"ground_truth": "play it forward",
"prediction": "for my love <eos>"
},
"573970": {
"ground_truth": "for my girl",
"prediction": "best of 2015 <eos>"
},
"252138": {
"ground_truth": "going to california",
"prediction": "old school rock <eos>"
},
"386382": {
"ground_truth": "road trip playlist",
"prediction": "feel good songs <eos>"
},
"367713": {
"ground_truth": "best of 2016",
"prediction": "best of 2016 <eos>"
},
"765473": {
"ground_truth": "middle school dance",
"prediction": "play it again <eos>"
},
"708834": {
"ground_truth": "blue eyed soul",
"prediction": "oldies but goodies <eos>"
},
"723723": {
"ground_truth": "that new new",
"prediction": "the feel-good flavors playlist <eos>"
},
"474507": {
"ground_truth": "70s 80s 90s",
"prediction": "oldies but goodies <eos>"
},
"972027": {
"ground_truth": "music is life",
"prediction": "my favorite songs <eos>"
},
"929219": {
"ground_truth": "go to sleep",
"prediction": "jazz and blues <eos>"
},
"470679": {
"ground_truth": "oldies but goodies",
"prediction": "throw it back <eos>"
},
"303706": {
"ground_truth": "that good good",
"prediction": "spring break 2017 <eos>"
},
"821809": {
"ground_truth": "just a playlist",
"prediction": "feel it still <eos>"
},
"878346": {
"ground_truth": "oldies but goodies",
"prediction": "oldies but goodies <eos>"
},
"919283": {
"ground_truth": "2015 top tracks",
"prediction": "2015 top tracks <eos>"
},
"425291": {
"ground_truth": "one more time",
"prediction": "best of the best <eos>"
},
"592654": {
"ground_truth": "70s 80s 90s",
"prediction": "oldies but goodies <eos>"
},
"126624": {
"ground_truth": "peace of mind",
"prediction": "in the feels <eos>"
},
"723229": {
"ground_truth": "throw it back",
"prediction": "oldies but goodies <eos>"
},
"758515": {
"ground_truth": "rock en espanol",
"prediction": "rock en español <eos>"
},
"907224": {
"ground_truth": "mis canciones favoritas",
"prediction": "rock en español <eos>"
},
"813648": {
"ground_truth": "pump up music",
"prediction": "pump up music <eos>"
},
"637723": {
"ground_truth": "old school music",
"prediction": "oldies but goodies <eos>"
},
"383722": {
"ground_truth": "baby making music",
"prediction": "old but gold <eos>"
},
"633590": {
"ground_truth": "best of 2015",
"prediction": "2015 top tracks <eos>"
},
"660585": {
"ground_truth": "old but gold",
"prediction": "rap hip hop <eos>"
},
"972987": {
"ground_truth": "rock n roll",
"prediction": "rock and roll <eos>"
},
"75030": {
"ground_truth": "oldies but goodies",
"prediction": "oldies but goodies <eos>"
},
"672778": {
"ground_truth": "90s hip hop",
"prediction": "old school jams <eos>"
},
"426217": {
"ground_truth": "best of country",
"prediction": "country 2 0 <eos>"
},
"577153": {
"ground_truth": "no role modelz",
"prediction": "the good stuff <eos>"
},
"798162": {
"ground_truth": "new new new",
"prediction": "the best playlist ever <eos>"
},
"233825": {
"ground_truth": "baby making music",
"prediction": "baby making music <eos>"
},
"664543": {
"ground_truth": "phineas and ferb",
"prediction": "phineas and ferb <eos>"
},
"575759": {
"ground_truth": "for the kids",
"prediction": "the good stuff <eos>"
},
"365971": {
"ground_truth": "feel good songs",
"prediction": "songs to sing in the car <eos>"
},
"247030": {
"ground_truth": "my morning jacket",
"prediction": "my morning jacket <eos>"
},
"456081": {
"ground_truth": "all the feels",
"prediction": "in my feels <eos>"
},
"188649": {
"ground_truth": "that good good",
"prediction": "best of the best <eos>"
},
"121754": {
"ground_truth": "here and now",
"prediction": "chill hip hop <eos>"
},
"233334": {
"ground_truth": "praise & worship",
"prediction": "praise & worship <eos>"
},
"544197": {
"ground_truth": "new years 2016",
"prediction": "the good stuff <eos>"
},
"340632": {
"ground_truth": "saint pablo tour",
"prediction": "saint pablo tour <eos>"
},
"601551": {
"ground_truth": "rock en espanol",
"prediction": "rock en español <eos>"
},
"368509": {
"ground_truth": "me gustas tu",
"prediction": "for the boys <eos>"
},
"490526": {
"ground_truth": "high school musical",
"prediction": "high school musical <eos>"
},
"907912": {
"ground_truth": "take a breath",
"prediction": "songs to sing in the car <eos>"
},
"478061": {
"ground_truth": "rhythm and poetry",
"prediction": "the feel-good flavors playlist <eos>"
},
"474167": {
"ground_truth": "take it back",
"prediction": "old school hip hop <eos>"
},
"421765": {
"ground_truth": "chill tf out",
"prediction": "my favorite songs <eos>"
},
"591842": {
"ground_truth": "good vibes only",
"prediction": "that good good <eos>"
},
"525867": {
"ground_truth": "old school rap",
"prediction": "old school hip hop <eos>"
},
"178211": {
"ground_truth": "love love love",
"prediction": "spring break 2017 <eos>"
},
"593001": {
"ground_truth": "break up songs",
"prediction": "in the feels <eos>"
},
"91807": {
"ground_truth": "80s and 90s",
"prediction": "new years eve <eos>"
},
"63910": {
"ground_truth": "songs to learn",
"prediction": "new playlist 2 <eos>"
},
"535052": {
"ground_truth": "the party playlist",
"prediction": "good vibes only <eos>"
},
"997029": {
"ground_truth": "just good songs",
"prediction": "take me back <eos>"
},
"444568": {
"ground_truth": "feel good inc",
"prediction": "feel good music <eos>"
},
"311620": {
"ground_truth": "salsa y merengue",
"prediction": "vivir mi vida <eos>"
},
"509597": {
"ground_truth": "middle school jamz",
"prediction": "old school rap <eos>"
},
"152042": {
"ground_truth": "dance dance dance",
"prediction": "that new new <eos>"
},
"867932": {
"ground_truth": "spring has sprung",
"prediction": "best of 2014 <eos>"
},
"674512": {
"ground_truth": "in my feelings",
"prediction": "in the feels <eos>"
},
"756748": {
"ground_truth": "it's a vibe",
"prediction": "that good good <eos>"
},
"102226": {
"ground_truth": "oldies but goodies",
"prediction": "awesome mix vol 2 <eos>"
},
"762674": {
"ground_truth": "high school musical",
"prediction": "high school musical <eos>"
},
"788587": {
"ground_truth": "the great gatsby",
"prediction": "the great gatsby <eos>"
},
"526772": {
"ground_truth": "praise and worship",
"prediction": "praise and worship <eos>"
},
"503968": {
"ground_truth": "oldies but goodies",
"prediction": "oldies but goodies <eos>"
},
"946056": {
"ground_truth": "rap hip hop",
"prediction": "hip hop rap <eos>"
},
"375175": {
"ground_truth": "'till i collapse",
"prediction": "pump up music <eos>"
},
"567001": {
"ground_truth": "my high-intensity workout",
"prediction": "my high-intensity workout <eos>"
},
"680631": {
"ground_truth": "all that jazz",
"prediction": "in a sentimental mood <eos>"
},
"654524": {
"ground_truth": "rock of ages",
"prediction": "rock of ages <eos>"
},
"90048": {
"ground_truth": "phineas and ferb",
"prediction": "phineas and ferb <eos>"
},
"91543": {
"ground_truth": "video game music",
"prediction": "the feel-good flavors playlist <eos>"
},
"90394": {
"ground_truth": "songs for you",
"prediction": "oldies but goodies <eos>"
},
"453561": {
"ground_truth": "mix of everything",
"prediction": "best of 2013 <eos>"
},
"909470": {
"ground_truth": "feel good jams",
"prediction": "noosa tastiest playlist <eos>"
},
"894880": {
"ground_truth": "old school r&b",
"prediction": "old school rnb <eos>"
},
"369685": {
"ground_truth": "take a walk",
"prediction": "feel good music <eos>"
},
"575753": {
"ground_truth": "good ole country",
"prediction": "the good stuff <eos>"
},
"726950": {
"ground_truth": "oldies but goodies",
"prediction": "the good stuff <eos>"
},
"394528": {
"ground_truth": "songs i like",
"prediction": "best of 2013 <eos>"
},
"385622": {
"ground_truth": "para mi amor",
"prediction": "songs i love <eos>"
},
"822969": {
"ground_truth": "on the rocks",
"prediction": "that good good <eos>"
},
"725004": {
"ground_truth": "in my feels",
"prediction": "that good good <eos>"
},
"919690": {
"ground_truth": "spring break 2k17",
"prediction": "spring break 2017 <eos>"
},
"660171": {
"ground_truth": "baby makin music",
"prediction": "baby making music <eos>"
},
"276131": {
"ground_truth": "good vibes only",
"prediction": "2015 top tracks <eos>"
},
"919175": {
"ground_truth": "road trip 2016",
"prediction": "white girl wasted <eos>"
},
"899169": {
"ground_truth": "chance the rapper",
"prediction": "chance the rapper <eos>"
},
"740733": {
"ground_truth": "get over it",
"prediction": "that good good <eos>"
},
"147604": {
"ground_truth": "ultimate christmas playlist",
"prediction": "tis the season <eos>"
},
"936876": {
"ground_truth": "that good good",
"prediction": "throwin it back <eos>"
},
"85505": {
"ground_truth": "middle school angst",
"prediction": "middle school angst <eos>"
},
"307495": {
"ground_truth": "best of 2014",
"prediction": "best of 2014 <eos>"
},
"491335": {
"ground_truth": "rap hip hop",
"prediction": "hip hop rap <eos>"
},
"900221": {
"ground_truth": "taking it back",
"prediction": "let the good times roll <eos>"
},
"146658": {
"ground_truth": "that new new",
"prediction": "that good good <eos>"
},
"319025": {
"ground_truth": "daily mix 4",
"prediction": "daily mix 1 <eos>"
},
"510772": {
"ground_truth": "you go girl",
"prediction": "girls girls girls <eos>"
},
"229576": {
"ground_truth": "today's top hits",
"prediction": "the good stuff <eos>"
},
"338343": {
"ground_truth": "best of country",
"prediction": "spring break 2017 <eos>"
},
"470990": {
"ground_truth": "all that jazz",
"prediction": "ya like jazz? <eos>"
},
"588002": {
"ground_truth": "songs for you",
"prediction": "twenty one pilots — stressed out <eos>"
},
"442331": {
"ground_truth": "oldies but goodies",
"prediction": "oldies but goodies <eos>"
},
"861720": {
"ground_truth": "in my feelings",
"prediction": "in my feelings <eos>"
},
"432339": {
"ground_truth": "the good stuff",
"prediction": "play it forward <eos>"
},
"449107": {
"ground_truth": "ya like jazz?",
"prediction": "oldies but goodies <eos>"
},
"593913": {
"ground_truth": "bangers & mash",
"prediction": "run run run <eos>"
},
"305968": {
"ground_truth": "across the universe",
"prediction": "across the universe <eos>"
},
"961721": {
"ground_truth": "dance dance dance",
"prediction": "run run run <eos>"
},
"881282": {
"ground_truth": "rock n roll",
"prediction": "back in the day <eos>"
},
"125980": {
"ground_truth": "take me back",
"prediction": "old school country <eos>"
},
"681422": {
"ground_truth": "the good stuff",
"prediction": "the good stuff <eos>"