-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdemoData.js
3702 lines (3702 loc) · 377 KB
/
demoData.js
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
const data = [
{
"Unnamed: 0": 28197,
"track_id": "TRYVCQP128F92E9CCB",
"song_id": "SODIYOG12A58A78AFB",
"7digital_id": 3715629,
"title": "Sunshine On My Shoulder",
"hd5_fp": "../datasets/lmd/lmd_matched_h5/Y/V/C/TRYVCQP128F92E9CCB.h5",
"artist_name": "Jan Howard",
"artist_id": "AR9EZGO1187B9A401F",
"artist_terms": "['classic country', 'country rock', 'country blues', 'oldies', 'female vocalist', 'country pop', 'country', 'rock', 'folk', 'world', 'female country']",
"artist_terms_freq": "[1.0, 1.0, 1.0, 1.0, 0.9053529385724454, 0.7177848597461501, 0.8440756834504007, 1.0, 0.806753394442866, 0.7256898309377857, 0.4181484442225883]",
"artist_terms_weight": "[1.0, 1.0, 1.0, 0.892632781200167, 0.8172240594999882, 0.7993607970273942, 0.7799014948308861, 0.7453305102487251, 0.6674302953520417, 0.6674227952756907, 0.5863360403182405]",
"duration": 198.76526,
"artist_longitude": -91.85307,
"artist_latitude": 36.73112,
"artist_location": "West Plains, MO",
"artist_mbid": "67d74586-59ba-4999-9e56-bdb5bb4b183d",
"energy": 0.0,
"loudness": -18.879,
"tempo": 86.064,
"year": 0,
"danceability": 0.0,
"song_hotttnesss": 0.2408613173726659,
"artist_mbtags": "[]",
"key": 2,
"mode": 1,
"time_signature": 4,
"audio_md5": "8aab6ce8869c2c3cceb935a3ecbab8fc",
"captions": {
"General description": "The song is a mellow country ballad featuring gentle vocals and heartfelt lyrics that evoke a sense of warmth and optimism, reminiscent of the pleasant feeling of sunlight on one's skin.",
"Vibe": "The track exudes a warm, soothing country melody that evokes the serene, comforting feeling of a gentle sunbeam caressing one's skin on a peaceful, lazy afternoon.",
"Arrangement": "The track features a gentle country arrangement, with a combination of acoustic guitars, soft pedal steel guitar flourishes, a steady bass line, and a soothing vocal melody, all designed to evoke a warm, relaxed, and sentimental atmosphere.",
"Production": "The track features a gentle, melodic country style with a blend of acoustic guitar, soothing backup vocals, and heartfelt, storytelling lyrics that evoke a sense of nostalgic warmth and comfort.",
"AI instruction": "Please generate a gentle, warm acoustic folk melody that captures the essence of a soft, sunny day with uplifting, sentimental tones and a touch of country nostalgia.",
"Movie scene": "A gentle, sunlit scene unfolds where an aging man reflects on fond memories at a picturesque lakeside cabin, smiling at old photographs as golden beams dance through the window, caressing his face with warmth."
}
},
{
"Unnamed: 0": 24885,
"track_id": "TRBLZFX128F4246B0A",
"song_id": "SOMMQDQ12A8C134372",
"7digital_id": 2692520,
"title": "Long Live 83rd",
"hd5_fp": "../datasets/lmd/lmd_matched_h5/B/L/Z/TRBLZFX128F4246B0A.h5",
"artist_name": "Z-RO",
"artist_id": "AR1M4LH1187B9B9F32",
"artist_terms": "['rap', 'hip hop', 'hardcore rap', 'southern rap', 'gangster rap', 'instrumental', 'funk', 'underground', 'sexy', 'classic', 'breakbeat', 'soulful', 'hardcore', 'soul', 'mainstream', 'southern']",
"artist_terms_freq": "[1.0, 0.9456513839475328, 0.5601703921577337, 0.542609542509352, 0.41734591298955115, 0.5759011589182306, 0.4719447833277765, 0.24347992872816004, 0.23981556945062552, 0.23597239166388825, 0.15327840738280177, 0.05459887033822532, 0.27776972401996664, 0.23981556945062552, 0.0, 0.0]",
"artist_terms_weight": "[1.0, 0.9575592867018977, 0.7938546887489734, 0.7787495858372837, 0.6710030899174386, 0.6279521131720505, 0.556729895650971, 0.4724845151042963, 0.44316681416030945, 0.4329396339375166, 0.37734876697221253, 0.35898336878371, 0.3581200442093254, 0.35767329586141544, 0.3120197211337286, 0.3120197211337286]",
"duration": 333.92281,
"artist_longitude": -100.07715,
"artist_latitude": 31.1689,
"artist_location": "Peabody",
"artist_mbid": "36cf5c5e-14fb-42c0-a232-56bd449a81df",
"energy": 0.0,
"loudness": -19.258,
"tempo": 134.16,
"year": 0,
"danceability": 0.0,
"song_hotttnesss": NaN,
"artist_mbtags": "[]",
"key": 6,
"mode": 0,
"time_signature": 4,
"audio_md5": "6934cfce3835edcb8cdaf62a3fcde87e",
"captions": {
"General description": "The track is a heartfelt hip-hop ode with gritty lyrics and a soulful beat, reflecting on street life, personal struggles, and resilience.",
"Vibe": "The track exudes a gritty and reflective aura, combining hard-hitting beats with introspective lyrics that paint the raw reality of street life and personal resilience.",
"Arrangement": "The track unfolds as a blend of Southern hip-hop grooves with smooth beats, layered with introspective lyrics delivered in a relaxed flow, punctuated by a melodic hook that encapsulates the reflective mood of the song.",
"Production": "The track features a gritty blend of Southern hip-hop rhythms with a raw, melodic flow, underpinned by a looping soulful sample and subtle electronic elements that create an atmospheric, yet streetwise vibe.",
"AI instruction": "Generate an introspective hip-hop instrumental that fuses melancholic piano chords with a steady, gritty beat and smooth bass lines, reminiscent of underground Southern rap from the early 2000s.",
"Movie scene": "As the protagonist, a grizzled detective with a haunted past, cruises through the rain-slicked streets of a neon-lit cityscape, his gaze reflects a mosaic of sorrow and determination, knowing this might be his last chance to right a wrong that has festered in the underbelly of the metropolis for far too long."
}
},
{
"Unnamed: 0": 23723,
"track_id": "TREYHVT128F9307B66",
"song_id": "SOYRMGP12AB017D515",
"7digital_id": 6876292,
"title": "Angel (Explicit Soundtrack LP Version)",
"hd5_fp": "../datasets/lmd/lmd_matched_h5/E/Y/H/TREYHVT128F9307B66.h5",
"artist_name": "Simply Red",
"artist_id": "ARIJVPZ11EBCD7B521",
"artist_terms": "['pop punk', 'power pop', 'rap', 'hardcore', 'acoustic', 'rock', 'indie', 'old school', 'norway', '2 step', 'melodramatic popular song']",
"artist_terms_freq": "[1.0, 0.8927873745664621, 0.888840159174622, 0.8589462123515446, 0.8109648027203173, 0.944403076698987, 0.8983089210187718, 0.6375125662649366, 0.5756788920208329, 0.33462032609669073, 0.176130281413562]",
"artist_terms_weight": "[1.0, 0.9219728427960857, 0.8291513402719025, 0.7864290108844971, 0.7864288842763093, 0.7772685850141104, 0.7682927554895203, 0.7427116683013021, 0.742690974351323, 0.5534861060703089, 0.4288406344424857]",
"duration": 219.92444,
"artist_longitude": NaN,
"artist_latitude": NaN,
"artist_location": NaN,
"artist_mbid": "3f4fb24a-4832-4b7a-8f39-c0663699ed5c",
"energy": 0.0,
"loudness": -8.316,
"tempo": 168.208,
"year": 0,
"danceability": 0.0,
"song_hotttnesss": 0.3347065490692206,
"artist_mbtags": "[]",
"key": 11,
"mode": 0,
"time_signature": 4,
"audio_md5": "59414ea62fcb1cc880648d605c6ce6f0",
"captions": {
"General description": "The track is a smooth, soulful ballad featuring a rich vocal performance set against lush instrumentation, with lyrics that delve into themes of love and admiration.",
"Vibe": "The track exudes a sultry and soulful ambiance, blending smooth vocals with a laid-back groove that evokes a sense of relaxed sophistication.",
"Arrangement": "The arrangement features smooth, soulful vocals layered over a mellow mix of groovy bass lines, subtle drum beats, light keyboard harmonies, and occasional guitar riffs, resulting in a laid-back and emotive soundscape.",
"Production": "This track features a smooth blend of soulful vocals with lush instrumentation, incorporating elements of R&B and pop, and is characterized by its laid-back groove, rich bass line, and polished production.",
"AI instruction": "\"Generate a smooth and soulful pop ballad with a mellow groove, expressive vocal lines, and a rich blend of synthesizers and saxophone, conveying a sense of heartfelt emotion and romantic longing.\"",
"Movie scene": "Sunset hues cascade over the skyline as two long-lost lovers reunite, their silhouettes melting into an embrace on a bustling city bridge, the world around them fading into a blur of unwavering affection."
}
},
{
"Unnamed: 0": 28076,
"track_id": "TRYJCNE128F931ABFA",
"song_id": "SONCUHP12AB0185E1E",
"7digital_id": 5514049,
"title": "2. Adagio",
"hd5_fp": "../datasets/lmd/lmd_matched_h5/Y/J/C/TRYJCNE128F931ABFA.h5",
"artist_name": "Pepe Romero / Christine Pendrill / The Academy of St. Martin in the Fields / Sir Neville Marriner",
"artist_id": "ARYR56R1187FB3DEEE",
"artist_terms": "['flamenco', 'classical', 'romantic', 'world music', 'male vocalist', 'guitar', 'spanish', 'world', 'acoustic', 'germany', 'spain', 'guitar virtuoso', 'classical guitar', 'acoustic guitar', 'modern', 'spanish guitar', 'spanish folk', 'chamber music', 'flamenco guitar', 'world reggae']",
"artist_terms_freq": "[1.0, 0.982326275188162, 0.8313968480126638, 0.8814440769946685, 0.6969438072014025, 0.7513614444670424, 0.7318402606336156, 0.7547069289647814, 0.7588208017125168, 0.6267949363479436, 0.554241512953155, 0.5474985839852182, 0.5266838710397972, 0.5089927183370373, 0.4888233108251044, 0.4387244709170854, 0.4118485198243999, 0.38880142583857946, 0.3298137781801194, 0.19948293044177445]",
"artist_terms_weight": "[1.0, 0.8699453258992579, 0.8306362710944272, 0.8285857421034879, 0.7299666800407414, 0.7186000716128587, 0.7185976960950473, 0.6962968525472766, 0.6962968300429093, 0.6581646941263782, 0.65814260036946, 0.6581403901112692, 0.6465760162008324, 0.6333660761974259, 0.618305629452465, 0.5808969495012742, 0.5608287432382945, 0.5436195351148431, 0.4995736043831069, 0.4022558824605531]",
"duration": 689.78893,
"artist_longitude": NaN,
"artist_latitude": NaN,
"artist_location": NaN,
"artist_mbid": "b3620030-fdea-4cf4-b9b0-cb5121451e53",
"energy": 0.0,
"loudness": -22.379,
"tempo": 105.987,
"year": 0,
"danceability": 0.0,
"song_hotttnesss": NaN,
"artist_mbtags": "['guitar']",
"key": 11,
"mode": 0,
"time_signature": 4,
"audio_md5": "420d81d8c802d17bc2faf148d2e17ee1",
"captions": {
"General description": "This track is likely a slow-paced, expressive piece of classical music featuring a blend of guitar and orchestral elements, possibly with an English horn, performed by a renowned guitarist, accompanied by a professional oboist, and backed by a prestigious chamber orchestra under the direction of a celebrated conductor.",
"Vibe": "The track exudes a serene and contemplative atmosphere, underscored by the warm, expressive tones of a classical guitar, enveloping orchestral textures, and the subtle interplay of winds, all conjuring a sense of elegant, timeless tranquility.",
"Arrangement": "The musical arrangement for track 2 features a classical guitar solo accompanied by an English horn and a string ensemble, all collaborating under the guidance of a renowned conductor to deliver a flowing and emotive adagio movement.",
"Production": "The production style of the track is a classical arrangement featuring string orchestra and solo guitar, with a rich, emotive tone and gentle interaction between the soloist and the ensemble, conducted to accentuate the lyrical qualities and romantic sensibilities inherent in the adagio tempo.",
"AI instruction": "\"Generate a serene and profound adagio with classical guitar leads, accompanied by a warm, embracing orchestra embellished with expressive horn solos, capturing the essence of a timeless, reflective European pastoral landscape.\"",
"Movie scene": "A lone figure stands on the edge of a windswept cliff, gazing out at the turbulent sea below as memories of a long-lost love flash through their mind, the poignant strings swelling with each cresting wave and heartache."
}
},
{
"Unnamed: 0": 14501,
"track_id": "TRMNTGP128F92EABFD",
"song_id": "SOGBBRE12AB017B641",
"7digital_id": 4854367,
"title": "Why Did You Do It?",
"hd5_fp": "../datasets/lmd/lmd_matched_h5/M/N/T/TRMNTGP128F92EABFD.h5",
"artist_name": "Beneath Autumn Sky",
"artist_id": "ARYI0FH1187B98972B",
"artist_terms": "['hip hop', 'glitch', 'downtempo', 'deep house', 'intelligent dance music', 'dub', 'post rock', 'electro', 'electronic', 'techno', 'jazz', 'experimental', 'abstract', 'united states', 'rock', 'electro dub', 'abstract hip hop', 'experimental electronic', 'minimal', 'alternative rock']",
"artist_terms_freq": "[1.0, 0.8458744758327658, 0.939008450030894, 0.8145095008257689, 0.7446004946725572, 0.8458744758327658, 0.7608907218983515, 0.8458744758327658, 0.9366573787398152, 0.7608907218983515, 0.7608907218983515, 0.7503127294034234, 0.4953519813598769, 0.44741095759149213, 0.7608907218983515, 0.43420659200339423, 0.4117643457328842, 0.40709827539719196, 0.5424260104113061, 0.2041457218640213]",
"artist_terms_weight": "[1.0, 0.9868885147559233, 0.9850676656202673, 0.9576795341626696, 0.9452667678430433, 0.9261392854734428, 0.8875777191113453, 0.8690072010518567, 0.8586806039763443, 0.7929316063862317, 0.7568431419585534, 0.7454445730317178, 0.7262529202487622, 0.6900757987307875, 0.6897515768060569, 0.6787374626506041, 0.6594667351846328, 0.6554600698672518, 0.6533380130436948, 0.30228674197001026]",
"duration": 66.35057,
"artist_longitude": NaN,
"artist_latitude": NaN,
"artist_location": NaN,
"artist_mbid": "313d7d18-4049-47f0-8b1c-0caefbffa74f",
"energy": 0.0,
"loudness": -9.565,
"tempo": 86.889,
"year": 0,
"danceability": 0.0,
"song_hotttnesss": NaN,
"artist_mbtags": "[]",
"key": 0,
"mode": 1,
"time_signature": 1,
"audio_md5": "f429e5235de165918abe79c2ff06866a",
"captions": {
"General description": "This track features an atmospheric blend of downtempo beats and ambient electronic textures, creating a reflective and moody soundscape with subtle melodic elements and perhaps a touch of hip-hop influence.",
"Vibe": "The track exudes a chilled-out, contemplative atmosphere with its blend of crisp beats, laid-back grooves, and introspective overtones, inviting the listener into a reflective headspace.",
"Arrangement": "The track features a blend of mellow electronic beats, smooth bass lines, chilled instrumental loops, and subtle atmospheric synths, creating a laid-back, introspective vibe.",
"Production": "The track features a laid-back instrumental hip-hop vibe, characterized by its use of mellow, looping jazz samples, understated beats, and a smooth, atmospheric aesthetic that invites introspective listening.",
"AI instruction": "Generate a track that blends lush, atmospheric soundscapes with intricate, jazzy beats, incorporating elements of downtempo and trip-hop, that evokes a moody, introspective vibe.",
"Movie scene": "In the dimly lit shadows of an abandoned urban rooftop, a solitary dancer breaks into a hauntingly fluid routine that echoes a story of betrayal and heartache amidst the city's sleeping skyline."
}
},
{
"Unnamed: 0": 6519,
"track_id": "TRZHVUC128F425F184",
"song_id": "SORLVLU12A8AE488EA",
"7digital_id": 3126636,
"title": "Misty",
"hd5_fp": "../datasets/lmd/lmd_matched_h5/Z/H/V/TRZHVUC128F425F184.h5",
"artist_name": "Johnny Mathis",
"artist_id": "ARF6C551187FB40741",
"artist_terms": "['easy listening', 'ballad', 'soft rock', 'chanson', 'jazz', 'country rock', 'pop rock', 'german pop', 'disco', 'doo-wop', 'blues-rock', 'pop', 'rock', 'j pop', 'big beat', 'soul jazz', 'latin jazz', 'folk rock', 'smooth jazz', 'vocal', 'classic rock', 'jazz funk', 'italian disco', 'europop', 'exotica', 'samba', 'blues', 'swing', 'lounge', 'hip hop', 'trip hop', 'country', 'psychedelic rock', 'soundtrack', 'oldies', 'folk', 'reggae', 'world', 'deep house', 'funk', 'dub', 'rockabilly', 'electronic', 'soul', 'new wave', 'downtempo', 'classical', 'techno', 'dance', 'indie rock']",
"artist_terms_freq": "[0.985786580329273, 0.9047240647731902, 0.913582757074537, 0.8679207601819833, 1.0, 0.8011867182549068, 0.8761631755677274, 0.794267387679316, 0.8460091611229934, 0.776832067123369, 0.7503621016130256, 0.9264403370427107, 0.9505989183408132, 0.7293517079915275, 0.7293517079915275, 0.7293517079915275, 0.7293517079915275, 0.794267387679316, 0.7503621016130256, 0.7792096232868494, 0.822197111876405, 0.6934342028598378, 0.6934342028598378, 0.6934342028598378, 0.6934342028598378, 0.6934342028598378, 0.8072900003662133, 0.7277599806718995, 0.7743577461916726, 0.8011867182549068, 0.6934342028598378, 0.7580082381483433, 0.7293517079915275, 0.776832067123369, 0.7503621016130256, 0.8206821247628877, 0.7652692131232172, 0.7700311428031543, 0.6934342028598378, 0.776832067123369, 0.7293517079915275, 0.6934342028598378, 0.8156836205249259, 0.7328818414465151, 0.6934342028598378, 0.6934342028598378, 0.6936554530441672, 0.6934342028598378, 0.6934342028598378, 0.6934342028598378]",
"artist_terms_weight": "[1.0, 0.9788392460780215, 0.9674305769468846, 0.9449769906621479, 0.9346750911076929, 0.8992943765906751, 0.895388792422708, 0.8933101386513718, 0.8791123901461076, 0.8782310633542783, 0.8553383036965967, 0.8499476530389944, 0.8466843785364123, 0.8371672980977305, 0.8371672980977305, 0.8371672980977305, 0.8371672980977305, 0.8361044368814851, 0.8327332831591543, 0.823673196930564, 0.8235854570703629, 0.8061037588512581, 0.8061037588512581, 0.8061037588512581, 0.8061037588512581, 0.8061037588512581, 0.8043077869551557, 0.8013819744968996, 0.7955398071228751, 0.7882588470777386, 0.7873686589770775, 0.7839517614100464, 0.782694134762205, 0.7800817981362214, 0.7786796656195293, 0.7767978995611396, 0.7759570421680975, 0.7741348154560416, 0.7739773583885404, 0.7715828957294443, 0.7655901017305439, 0.7622430196149032, 0.74214722970417, 0.7339764446620232, 0.7203549128481516, 0.7203284653914834, 0.7110836448556727, 0.6938876410165059, 0.6792329837754918, 0.6783435562184821]",
"duration": 140.93016,
"artist_longitude": -95.0906,
"artist_latitude": 42.27485,
"artist_location": "Wall Lake, Iowa",
"artist_mbid": "ab7c3708-9761-4f7e-9636-68ed38f609ca",
"energy": 0.0,
"loudness": -11.412,
"tempo": 91.139,
"year": 0,
"danceability": 0.0,
"song_hotttnesss": 0.6822313956382333,
"artist_mbtags": "[]",
"key": 0,
"mode": 1,
"time_signature": 4,
"audio_md5": "96c7ce30d7db01df2a125918bb5dae60",
"captions": {
"General description": "The song is a romantic ballad featuring smooth vocals and lush orchestration, expressing a sense of enchantment and rapture in the presence of a loved one.",
"Vibe": "The track exudes a dreamy and romantic ambiance, enveloped by a velvety voice and lush orchestration that perfectly captures the essence of being lovestruck.",
"Arrangement": "The arrangement features a lush orchestration with strings and a gentle rhythm section, underpinning smooth, expressive vocals that deliver a classic ballad with elegance and romantic sentiment.",
"Production": "The production style boasts a lush orchestral arrangement with swirling strings and a gentle rhythm section, cradling velvety vocal crooning that embodies the classic romantic balladry of the late 1950s and early 1960s.",
"AI instruction": "Please generate a smooth and velvety jazz ballad, rich in piano and string accompaniment, evoking a romantic atmosphere reminiscent of a classic love song from the 1950s.",
"Movie scene": "A slow-motion montage of an elegant couple dancing in a dimly lit ballroom, their eyes locked in a tender gaze as they gracefully waltz among shadows and soft light flickers from crystal chandeliers."
}
},
{
"Unnamed: 0": 30427,
"track_id": "TRWJDOJ128F14972B7",
"song_id": "SOGRGAQ12A6D4FB527",
"7digital_id": 567138,
"title": "Light My Fire [Live At The Aquarius - The Second Performance] (LP Version)",
"hd5_fp": "../datasets/lmd/lmd_matched_h5/W/J/D/TRWJDOJ128F14972B7.h5",
"artist_name": "The Doors",
"artist_id": "ARUGU0E1187B9B30F6",
"artist_terms": "['classic rock', 'blues', 'rock', 'psychedelic', 'psychedelic rock', 'soundtrack', 'jazz', 'guitar', 'funk', 'experimental', 'pop', 'guitarist', '60s', 'classic', 'instrumental', 'vocal', '70s', 'jam', 'country', 'acid', 'psychedelia', 'influential', 'cover']",
"artist_terms_freq": "[0.9999191738764296, 0.9999371429253786, 1.0, 0.8362186256759743, 0.4400640071719654, 0.41893419415224653, 0.46984480597993294, 0.3639980002672219, 0.389153395344279, 0.4087056059805254, 0.43433784989026625, 0.1527318354830592, 0.25222116527626237, 0.2200320035859827, 0.29565599218247873, 0.1938347685271059, 0.18839165008203443, 0.0509106118276864, 0.1761217802808683, 0.0509106118276864, 0.0, 0.0, 0.0]",
"artist_terms_weight": "[1.0, 0.99117896966393, 0.8783562702161697, 0.8443119111595738, 0.581803154808885, 0.5035194795525615, 0.49334564310010126, 0.48500641396367933, 0.46661177623139, 0.4395590164604372, 0.43415244533209923, 0.4145693251974792, 0.4010866332222253, 0.3962889508372478, 0.37100817610773346, 0.37092922197864553, 0.34951251818071244, 0.32859348378312, 0.326378303305187, 0.3128009655429089, 0.28560556307594037, 0.28560556307594037, 0.28560556307594037]",
"duration": 833.09669,
"artist_longitude": -118.24532,
"artist_latitude": 34.05349,
"artist_location": "Los Angeles, California, United States",
"artist_mbid": "9efff43b-3b29-4082-824e-bc82f646f93d",
"energy": 0.0,
"loudness": -13.497,
"tempo": 126.038,
"year": 0,
"danceability": 0.0,
"song_hotttnesss": NaN,
"artist_mbtags": "['hard rock', 'psychedelic rock', 'rock', 'acid rock', 'american', 'blues rock', 'classic pop and rock']",
"key": 7,
"mode": 1,
"time_signature": 4,
"audio_md5": "c22e641b198a6fd93189b094fe4ad9ad",
"captions": {
"General description": "This track is a live recording of an iconic 1960s rock band performing an extended and improvisational version of their hit song, featuring a notable organ solo and an energetic vocal performance, at a historic Hollywood venue during a series of concerts.",
"Vibe": "The track exudes a raw, psychedelic ambience with an organ-driven groove, extended solos, and a charismatic frontman's soulful voice exalting the atmosphere in an immersive live performance.",
"Arrangement": "The live track features an extended organ and guitar intro leading into a sultry, improvisational performance that showcases an energetic vocal delivery, a blend of rock, jazz, and psychedelic influences, and lengthy instrumental solos, all typical of the era's jam-band aesthetic.",
"Production": "This live performance track features a psychedelic rock sound infused with blues, characterized by its extended organ and electric guitar solos, a dynamic and improvisational structure, and a captivating baritone lead vocal that rides over a backdrop of energetic drumming and an immersive, atmospheric crowd ambience.",
"AI instruction": "Generate an upbeat, psychedelic rock track with prominent organ solos, a smooth bass line, and a charismatic baritone voice blending with a live audience ambiance reminiscent of the late 1960s West Coast rock music scene.",
"Movie scene": "As the smoky, hypnotic guitar riffs fill the air, a group of young, carefree spirits dance wildly around a roaring beach bonfire under a starlit sky, their silhouettes flickering with every passionate move."
}
},
{
"Unnamed: 0": 29860,
"track_id": "TRWUIFK12903CA04DF",
"song_id": "SOUOVSH12A582A2701",
"7digital_id": 6337726,
"title": "Miss Independent",
"hd5_fp": "../datasets/lmd/lmd_matched_h5/W/U/I/TRWUIFK12903CA04DF.h5",
"artist_name": "Kelly Clarkson",
"artist_id": "ARJGIOD1187B9AE920",
"artist_terms": "['teen pop', 'pop', 'adult contemporary', 'ballad', 'disco', 'rock', 'hard rock', 'jazz', 'punk', 'singer', 'voice', 'sexy', 'vocal', 'soul', 'sad', 'female', 'country', 'diva']",
"artist_terms_freq": "[1.0, 0.9517426433741679, 0.627813111478387, 0.523196673745636, 0.4043833021478608, 0.5184882527703493, 0.37563688342466045, 0.37563688342466045, 0.3820711310955519, 0.16324727801571634, 0.13795995468874434, 0.2049198196260841, 0.2158487008051725, 0.2649910281984003, 0.07788874611642815, 0.20875304460834485, 0.20086743715237737, 0.0]",
"artist_terms_weight": "[1.0, 0.7755772477713191, 0.7194207191960812, 0.6286274829772286, 0.48068347875246703, 0.4201512587135382, 0.4035323103530445, 0.3664449239584545, 0.36338754454860167, 0.35870360503720705, 0.3501367635534957, 0.34134839103261494, 0.3413357971497986, 0.319193441601178, 0.30485108311162834, 0.3046685495498727, 0.304537609022182, 0.24613335542682474]",
"duration": 213.002,
"artist_longitude": NaN,
"artist_latitude": NaN,
"artist_location": NaN,
"artist_mbid": "d339efbb-77b9-4147-ba9e-59f2f24550b2",
"energy": 0.0,
"loudness": -6.965,
"tempo": 87.988,
"year": 2003,
"danceability": 0.0,
"song_hotttnesss": NaN,
"artist_mbtags": "['american idol', 'pop and chart']",
"key": 11,
"mode": 0,
"time_signature": 4,
"audio_md5": "a579fd2a9042a89e7dc7fc1d781f8284",
"captions": {
"General description": "The song is an upbeat pop-rock anthem celebrating a woman's self-sufficiency and strength, rejecting the notion that she needs a partner to be complete.",
"Vibe": "The track exudes an empowering and upbeat vibe, celebrating self-sufficiency and strength with a punchy pop-rock sound.",
"Arrangement": "The song features a pop-rock arrangement with a driving beat, prominent electric guitar riffs, and dynamic vocals that range from vulnerable verses to a powerful, anthemic chorus.",
"Production": "The song features a pop rock production with driving guitar riffs, punchy drums, and soaring vocals that emphasize themes of empowerment and self-sufficiency.",
"AI instruction": "Generate an upbeat pop-rock track with strong female vocals, punchy guitar riffs, and empowering lyrics reflecting themes of self-sufficiency and confidence.",
"Movie scene": "A high-powered executive strides confidently through a bustling office, her heels clicking assertively on the marble floor as her team looks on in admiration, acknowledging her success and autonomy with every step."
}
},
{
"Unnamed: 0": 23297,
"track_id": "TRECQOB128F145A714",
"song_id": "SOMXEMG12A6D4F7CA6",
"7digital_id": 248036,
"title": "The Summer Knows",
"hd5_fp": "../datasets/lmd/lmd_matched_h5/E/C/Q/TRECQOB128F145A714.h5",
"artist_name": "Paul Mauriat And His Orchestra",
"artist_id": "AR0HO681187FB3BE2A",
"artist_terms": "['europop', 'german pop', 'ballad', 'disco', 'instrumental pop', 'classical', 'easy listening', 'romantic', 'pop', 'jazz funk', 'orchestra', 'jungle music', 'chanson', 'opera', 'soft rock', 'jazz', 'eurodance', 'club', 'united states', 'classic rock', 'pop rock', 'drum and bass', 'oldies', 'emo', 'soundtrack', 'funk', 'electronic', 'trance', 'hip hop', 'techno', 'dance', 'japan', 'french', 'female vocalist', 'rock', 'instrumental', '80s', '70s', 'soul', 'minimal', 'synthpop', 'ambient', 'folk', '90s', 'alternative', 'house', 'german', 'swedish']",
"artist_terms_freq": "[0.9980730255640835, 0.9976794973939634, 1.0, 0.9791011210794835, 0.8916439308704192, 0.901590442012076, 0.8444629931595833, 0.7908802005317687, 0.9413411569669804, 0.722112730322093, 0.722112730322093, 0.722112730322093, 0.722112730322093, 0.722112730322093, 0.722112730322093, 0.8503298885677244, 0.722112730322093, 0.722112730322093, 0.6481837925710351, 0.7607099409128234, 0.722112730322093, 0.722112730322093, 0.722112730322093, 0.722112730322093, 0.722112730322093, 0.722112730322093, 0.7988663393468534, 0.722112730322093, 0.722112730322093, 0.722112730322093, 0.722112730322093, 0.5900212754917921, 0.6503541825717568, 0.6398396643923804, 0.7607099409128234, 0.6743214588361884, 0.6367626371659458, 0.5897223415043473, 0.636285785703768, 0.6034688493081056, 0.5713611678257327, 0.6291005116115375, 0.6388329568693092, 0.5885517914033151, 0.6620857527725967, 0.6028703747162993, 0.5946301269667069, 0.5694934719504003]",
"artist_terms_weight": "[1.0, 0.999686308595472, 0.9916313347195536, 0.9264930253014833, 0.9151626370561576, 0.8287892312696301, 0.8191695179720536, 0.7997632764822481, 0.7986103227112857, 0.780024965983965, 0.780024965983965, 0.780024965983965, 0.7681070496335418, 0.7606293897887015, 0.7512322346214094, 0.7469700584219303, 0.7454329565592416, 0.7344978170153845, 0.7210943122741709, 0.717808588353365, 0.7119320786090471, 0.7110037603938975, 0.704098554284392, 0.6847109403112797, 0.6828132008667069, 0.6743954780983645, 0.673143122601408, 0.6721950054449527, 0.6700500233218764, 0.6688807117189259, 0.6543660325267552, 0.6371477120958302, 0.6355844350728429, 0.6327744339969692, 0.6306982716759855, 0.6243788214690137, 0.6063812788424945, 0.6063811611650702, 0.6063810067023383, 0.6063808422744216, 0.5955593698042838, 0.5756145192144922, 0.5756143966529571, 0.5756143342295245, 0.5756142924451181, 0.5756141807976044, 0.5756136656056512, 0.5756132742406878]",
"duration": 150.72608,
"artist_longitude": 5.37249,
"artist_latitude": 43.29368,
"artist_location": "Marseille, France",
"artist_mbid": "87496c04-c857-4bd5-b86b-345129a1be63",
"energy": 0.0,
"loudness": -14.823,
"tempo": 137.793,
"year": 1990,
"danceability": 0.0,
"song_hotttnesss": 0.4454545254934259,
"artist_mbtags": "[]",
"key": 5,
"mode": 1,
"time_signature": 4,
"audio_md5": "877a27577e90dcbf0ac0143136ba6ab7",
"captions": {
"General description": "This track is a lush orchestral rendition of a classic film theme, known for its evocative melody that captures the essence of summer romance and nostalgia.",
"Vibe": "The track exudes a lush, nostalgic warmth, evoking serene images of golden sunsets, gentle breezes, and the poignant, yet sweet melancholy of fleeting summer moments wrapped in elegant orchestral harmonies.",
"Arrangement": "The arrangement features a lush orchestral interpretation with strings and winds creating a warm, evocative melody underscored by a gentle rhythm section, embodying a feeling of serene nostalgia typical of classic romantic instrumental covers from the 1970s.",
"Production": "The production style is characterized by lush orchestration, featuring sweeping strings, gentle woodwinds, and a romantic melody evocative of warm, breezy summer evenings.",
"AI instruction": "Please generate a soothing, orchestral piece that captures the warmth and nostalgia of a summer evening, with lush strings and a romantic, flowing melody reminiscent of classic French cinema themes from the 1970s.",
"Movie scene": "As the golden hues of sunset bathe a serene beach, an elderly couple walks hand in hand, reliving tender memories while the waves gently kiss their feet."
}
},
{
"Unnamed: 0": 24762,
"track_id": "TRBEBVU128E078A356",
"song_id": "SOASULR12A6701FA63",
"7digital_id": 123547,
"title": "Healing Chant",
"hd5_fp": "../datasets/lmd/lmd_matched_h5/B/E/B/TRBEBVU128E078A356.h5",
"artist_name": "Neville Brothers",
"artist_id": "ARCMOUY1187FB46CFC",
"artist_terms": "['r&b', 'funk', 'new orleans blues', 'religious music', 'funk rock', 'los angeles', 'blues', 'soul', 'classic rock', 'soundtrack', 'jazz', 'male vocalist', 'rock', 'new orleans', '80s', 'chill-out', 'adult contemporary', 'american', '90s', '70s', 'gospel', 'funky', 'jam', 'mod', 'spiritual', 'southern soul', 'southern', 'blues-rock', 'louisiana', 'group', 'family act', 'nola', 'alternative soul', 'new orleans funk', 'new orleans rhythm and blues', 'grammy winner', 'pp vips']",
"artist_terms_freq": "[0.8911139785694933, 1.0, 0.8157754644679633, 0.8157754644679633, 0.8157754644679633, 0.8157754644679633, 0.8887727096007259, 0.8726910337143542, 0.8157754644679633, 0.8157754644679633, 0.8157754644679633, 0.6493576647052292, 0.8618315983509726, 0.5769446459402531, 0.7139303403026619, 0.5360838598633705, 0.5130152094018017, 0.6831706080026894, 0.656402240552646, 0.6117410269105429, 0.5334070066796874, 0.5621657119554029, 0.5025365302421118, 0.5002196726575214, 0.4777841523917279, 0.4696443772519324, 0.4450661258340688, 0.43825634574253836, 0.42069636154857754, 0.36818901219606587, 0.35465248261674737, 0.3363839039901894, 0.3338115199335034, 0.321346538295944, 0.321346538295944, 0.3181046779866427, 0.26380587132658934]",
"artist_terms_weight": "[1.0, 0.9696619637170235, 0.9476111337872459, 0.9476111337872459, 0.9476111337872459, 0.9476111337872459, 0.8836973586043932, 0.8626240816367486, 0.8300301095022704, 0.8246829239222883, 0.7765692712627376, 0.7623927777149503, 0.7587814875588302, 0.745858910810732, 0.7280307386241422, 0.7113417807585968, 0.6918545490002311, 0.689124760263488, 0.6891242762866194, 0.6891227224463079, 0.6891223553190282, 0.6891188174688561, 0.6830026896490903, 0.6810455252810553, 0.6620931299613813, 0.6552170586942547, 0.6344545922295078, 0.6287020336614096, 0.6138682451729572, 0.569512686205409, 0.5580777091331433, 0.5426453358270086, 0.5404723155904032, 0.5299425281440345, 0.5299425281440345, 0.5272039681541102, 0.48133507645843204]",
"duration": 274.36363,
"artist_longitude": NaN,
"artist_latitude": NaN,
"artist_location": "New Orleans, LA",
"artist_mbid": "5464e20c-7dcb-4a3e-9b25-13bb959fadc9",
"energy": 0.0,
"loudness": -19.029,
"tempo": 120.718,
"year": 1989,
"danceability": 0.0,
"song_hotttnesss": 0.56142851762879,
"artist_mbtags": "[]",
"key": 2,
"mode": 1,
"time_signature": 3,
"audio_md5": "2024233f23b04aa847434b81c0a21c31",
"captions": {
"General description": "The song is a soul-stirring a cappella piece that interweaves rich harmonies and traditional spiritual elements to evoke a sense of peace and spiritual rejuvenation.",
"Vibe": "The song exudes a serene, soulful aura, combining smooth, rich harmonies with a deeply spiritual undertone that invokes a sense of tranquility and restorative peace.",
"Arrangement": "This track features a serene blend of a capella vocals that interweave in a soulful, spiritual harmony, creating an atmosphere of meditative and soothing reverence.",
"Production": "The track features a meditative blend of rich, layered acapella vocals that reverberate with a spiritual cadence, creating a soothing and soulful soundscape.",
"AI instruction": "Create a soulful and spiritual acapella track featuring a rich tapestry of layered harmonious vocals that evoke a sense of deep healing and profound peace.",
"Movie scene": "As the first rays of dawn filter through the curtains of a small, hospitable room, a diverse group of individuals sit in a circle, their eyes closed and expressions serene, while a gentle melody underscores their collective moment of peaceful reflection and emotional recovery."
}
},
{
"Unnamed: 0": 3830,
"track_id": "TRNSIYB128F92F7C8B",
"song_id": "SOBRSLI12AB017EEA1",
"7digital_id": 4909047,
"title": "Castle On A Cloud",
"hd5_fp": "../datasets/lmd/lmd_matched_h5/N/S/I/TRNSIYB128F92F7C8B.h5",
"artist_name": "Judy Kuhn / Robert Billig",
"artist_id": "AR5OW1D1187B9939FC",
"artist_terms": "['chill-out', 'soft rock', 'indie rock', 'soundtrack', 'rock', 'female vocalist', 'ethereal', 'singer-songwriter', 'disney music', 'broadway', 'pop', 'american', 'canada', 'female', 'vocal', 'ost', 'musical theater', 'adult contemporary', 'children music', 'show tunes', 'alternative rock', 'broadway female vocalists']",
"artist_terms_freq": "[0.8356603912058957, 0.8356603912058957, 1.0, 0.9238417633920258, 1.0, 0.8126682512579184, 0.6964258870441927, 0.8356603912058957, 0.4953009092765641, 0.48455479152144665, 0.7497626953952549, 0.6779327962339492, 0.5117576320880965, 0.6178319905893437, 0.5714932848793024, 0.49953440283595685, 0.45103661221270946, 0.42068091843161126, 0.3547398328999734, 0.15378653654571656, 0.2661195654228195, 0.0]",
"artist_terms_weight": "[1.0, 0.9572652584427086, 0.9491812290509933, 0.9292247439307231, 0.8696958331132454, 0.8596195618767043, 0.833596272491225, 0.816453568944149, 0.7162748799044372, 0.7073168701749923, 0.6966087929011736, 0.6966042254648706, 0.6966039864765949, 0.6965887301888011, 0.6965639958109032, 0.6965172463147126, 0.6793759725221672, 0.6540713363333788, 0.5991025653573427, 0.43158703789644237, 0.3477901557072442, 0.30338992317767705]",
"duration": 100.44036,
"artist_longitude": NaN,
"artist_latitude": NaN,
"artist_location": NaN,
"artist_mbid": "1bac9c04-11ac-4728-ac2b-87e4e357941f",
"energy": 0.0,
"loudness": -28.554,
"tempo": 108.536,
"year": 0,
"danceability": 0.0,
"song_hotttnesss": 0.54481084207138,
"artist_mbtags": "[]",
"key": 5,
"mode": 1,
"time_signature": 4,
"audio_md5": "8d55259cbb16e9a61bda15f297e04e05",
"captions": {
"General description": "The track is a gentle, dreamy ballad sung from the perspective of a young girl fantasizing about a peaceful, idyllic place of escape from her harsh reality in a well-known musical about the French Revolution.",
"Vibe": "The track exudes a gentle, dreamy atmosphere, filled with a child's innocent hope and longing for a serene, safe haven amid a harsh reality.",
"Arrangement": "The track features a gentle, lullaby-like melody with a soft vocal performance accompanied by minimalist piano, creating an atmosphere of dreamy solitude reminiscent of a young child's imagination.",
"Production": "The production style is characterized by a gentle, lullaby-like musical arrangement with a soft, orchestral backdrop complemented by delicate and emotive singing, creating a sense of dreaminess and whimsy.",
"AI instruction": "Please generate a gentle and dreamy lullaby melody with a soothing and innocent feel, featuring soft piano and strings, reminiscent of a young child's daydream about a serene and comforting place in the clouds.",
"Movie scene": "A young, orphaned girl sits alone in a dimly lit attic, her eyes sparkling with unshed tears as she clutches a tattered doll and gazes out of a small window towards the twinkling stars, daring to dream of a happier life far away from her current sorrow."
}
},
{
"Unnamed: 0": 25362,
"track_id": "TRKSUFV128F4265476",
"song_id": "SOMYDSJ12AF72A853E",
"7digital_id": 3159738,
"title": "I Love You More Than You'll Ever Know",
"hd5_fp": "../datasets/lmd/lmd_matched_h5/K/S/U/TRKSUFV128F4265476.h5",
"artist_name": "Blood_ Sweat & Tears",
"artist_id": "ART9VTZ1187FB48DDC",
"artist_terms": "['pop rock', 'blues-rock', 'blues', 'jazz fusion', 'r&b', 'psychedelic rock', 'glitch', 'classic rock', 'rock', 'folk rock', 'oldies', 'techno', 'jazz', 'reggae', 'progressive rock', 'hard rock', 'funk', 'trance', 'jazz rock', 'electro', 'rap', 'electronic', 'experimental', 'abstract', 'pop', 'psychedelic', 'ambient', 'minimal', 'soul', 'new york', 'album rock', 'fusion', 'indie', 'punk', 'metal', 'acoustic', 'canadian', 'house', 'american', 'industrial', '80s', '60s', 'lounge', '70s', 'trumpet']",
"artist_terms_freq": "[0.9611899926489269, 0.8281512462663991, 0.9694541857451369, 0.8281512462663991, 0.7858342778865941, 0.8281512462663991, 0.7823845612100331, 0.8739179313227653, 1.0, 0.7823845612100331, 0.7823845612100331, 0.8281512462663991, 0.8549230408066888, 0.7823845612100331, 0.7823845612100331, 0.7823845612100331, 0.7823845612100331, 0.7823845612100331, 0.6201507476130087, 0.7823845612100331, 0.7823845612100331, 0.8568015808988675, 0.7880897899640077, 0.5748010558062749, 0.7831595893122913, 0.7077624551447559, 0.7446333050160059, 0.6684735107279598, 0.6806157786594981, 0.5839968201254315, 0.5045523994465297, 0.5714810457826791, 0.7176456197129655, 0.6892897183015148, 0.6845971495613246, 0.626705504907329, 0.5936152068626593, 0.6409910077606663, 0.6506117032109059, 0.6316168126948293, 0.6354106213583215, 0.5821046783030128, 0.5969908612094081, 0.5796301083012116, 0.4638778147200258]",
"artist_terms_weight": "[1.0, 0.9727240526333006, 0.9672083715288667, 0.9549904018695322, 0.9249952689281701, 0.9037730608150571, 0.8946836687409436, 0.8932123840767604, 0.8902076226792828, 0.8609946919271216, 0.8363715716597059, 0.830683235670997, 0.8228640043081022, 0.8166062321154504, 0.8075422476843359, 0.7999066424170203, 0.7984114518527389, 0.7955992782909055, 0.7940243719493044, 0.7940124979754243, 0.7892514864239778, 0.7825548334733354, 0.7634680813261712, 0.7508024863387455, 0.7344907443608574, 0.7344906536382776, 0.7344904739048886, 0.7344895398026035, 0.7114904253785868, 0.7114871550109746, 0.6947102451145876, 0.6721708465387005, 0.6721706305135153, 0.6721701827293332, 0.672170133835807, 0.6721699901719551, 0.6721694329963473, 0.6721687772855349, 0.672168461633552, 0.672168461633552, 0.6721678442411013, 0.6721674810994422, 0.6721668173581511, 0.6721656056818159, 0.6597654476278632]",
"duration": 354.35057,
"artist_longitude": -74.00712,
"artist_latitude": 40.71455,
"artist_location": "New York, NY",
"artist_mbid": "f81d592c-993f-4693-b53a-57db5a6257b9",
"energy": 0.0,
"loudness": -7.728,
"tempo": 92.417,
"year": 1968,
"danceability": 0.0,
"song_hotttnesss": NaN,
"artist_mbtags": "[]",
"key": 0,
"mode": 0,
"time_signature": 7,
"audio_md5": "33df2158e3e313b5a444be2b719483e7",
"captions": {
"General description": "The track is a soulful and emotional ballad characterized by its powerful vocal performance and rich brass instrumentation, reflecting the depth of feeling one person can hold for another, often considered a classic in the blues-rock genre.",
"Vibe": "The track exudes a soulful, bluesy depth with an impassioned vocal performance that conveys a deep, almost painful devotion.",
"Arrangement": "The track is a soulful blend of rock and jazz elements, featuring a powerful lead vocal performance underscored by a dynamic brass section, poignant keyboard work, and emotive electric guitar solos, all underpinned by a steady, groovy rhythm section.",
"Production": "The production style of the track is characterized by a rich blend of soulful vocals, a full horn section, and blues-rock influences, creating a powerful and emotive ballad.",
"AI instruction": "Generate a soulful and bluesy ballad with powerful lead vocals, a prominent Hammond organ, and a rich brass section, all expressing the deep, emotive longing and passion of a heartfelt love confession.",
"Movie scene": "In a softly lit, rain-streaked bar, a grizzled man, whiskey in hand, stares through a haze of smoke at an old black and white photograph of a lover lost to time, while memories and music swell around him."
}
},
{
"Unnamed: 0": 9663,
"track_id": "TRAGVSG128F42782F2",
"song_id": "SOKBHNV12A8C13AD97",
"7digital_id": 2318587,
"title": "Silver Wings",
"hd5_fp": "../datasets/lmd/lmd_matched_h5/A/G/V/TRAGVSG128F42782F2.h5",
"artist_name": "RICKY LYNN GREGG",
"artist_id": "ARZ13QU1187B99E798",
"artist_terms": "['country rock', 'country', 'contemporary country', 'country music', 'rock', 'folk', 'world', 'new traditionalist country', 'california', 'ballad', 'beautiful', 'texas', 'new traditionalist', 'vocal', 'female', 'classic', 'guitar', 'contemporary', 'southern', '90s', 'soul', 'smooth', 'beats', 'modern', 'guitarist', 'fiddle', 'voice', 'european']",
"artist_terms_freq": "[1.0, 0.6657400064599663, 0.528778312358042, 0.44349469526105867, 0.734894649248153, 0.6219754602617616, 0.5540010734567038, 0.385206211549004, 0.44349469526105867, 0.3921871901933908, 0.2541874523013959, 0.13262797660548203, 0.10261501013533567, 0.19534588195788058, 0.2382646749903873, 0.18986032959112342, 0.20971752044135575, 0.05130750506766783, 0.05130750506766783, 0.21394844814329622, 0.22535884842802698, 0.08132047153781422, 0.08132047153781422, 0.0, 0.0, 0.0, 0.0, 0.0]",
"artist_terms_weight": "[1.0, 0.6546362883447977, 0.6485727296272853, 0.5849699932721686, 0.5783114109245268, 0.5464169905141644, 0.5464028349425977, 0.5414996622956877, 0.5384413073798454, 0.5343876530518628, 0.3678710894552989, 0.34224543520839806, 0.33074905987517883, 0.33016854440807003, 0.3298293473208984, 0.32896087233766347, 0.3145345804187935, 0.2924849966360843, 0.2924849966360843, 0.29196607804438096, 0.2914176026908756, 0.2895468102205752, 0.2856405521888481, 0.25422093339698976, 0.25422093339698976, 0.25422093339698976, 0.25422093339698976, 0.2238034649244637]",
"duration": 215.43138,
"artist_longitude": NaN,
"artist_latitude": NaN,
"artist_location": NaN,
"artist_mbid": "a23af58d-cc48-438b-8c0b-e8ee347bd5a7",
"energy": 0.0,
"loudness": -9.067,
"tempo": 90.466,
"year": 0,
"danceability": 0.0,
"song_hotttnesss": 0.2790731649347506,
"artist_mbtags": "[]",
"key": 7,
"mode": 1,
"time_signature": 4,
"audio_md5": "c730f3a906ea57a5462018c7d8dadd7f",
"captions": {
"General description": "The song is a nostalgic country ballad that pairs emotive storytelling with melodic instrumentals, often reflecting on themes of love, loss, and the passage of time.",
"Vibe": "The song exudes a nostalgic and reflective country vibe, sweeping listeners up in a smooth blend of soulful vocals and classic guitar twangs that resonate with heartfelt emotion and timeless appeal.",
"Arrangement": "The arrangement features a blend of traditional country instrumentation such as acoustic guitar, steel guitar, and fiddle, combined with a strong, emotional vocal performance to create a heartfelt, mid-tempo ballad.",
"Production": "The production style of the track is characterized by its classic country rock elements, featuring a blend of twangy electric guitar riffs, steady drumbeats, and emotionally charged vocals common to the early 1990s country music scene.",
"AI instruction": "\"Generate a country rock song with energetic electric guitar riffs, a steady drum beat, and a smooth, soaring melody that captures the spirit of freedom and the open road.\"",
"Movie scene": "A lonesome cowboy rides his trusty steed across an endless prairie, the sunset casting long shadows as he reflects on lost love and the freedom of the open range."
}
},
{
"Unnamed: 0": 30799,
"track_id": "TRWBVBZ12903CCAA0A",
"song_id": "SOEKFQS12AB0189201",
"7digital_id": 8464228,
"title": "Strawberry Rehabs Forever (LP Version)",
"hd5_fp": "../datasets/lmd/lmd_matched_h5/W/B/V/TRWBVBZ12903CCAA0A.h5",
"artist_name": "Bob Rivers",
"artist_id": "AREW55F1187B9B5948",
"artist_terms": "['parody', 'hip hop', 'christmas music', 'comedy', 'funny', 'humorous', '80s', '90s', 'american', 'seattle', 'west coast rap', 'geek', 'podcast', 'holiday', 'kvlt', 'satire', 'gothic pop', 'novelty songs']",
"artist_terms_freq": "[1.0, 0.9185371857020896, 0.6965983849177875, 0.7520096066709799, 0.7112189941408174, 0.594294255918729, 0.7533415312546431, 0.7405318919475958, 0.7704212474875, 0.5474302108209353, 0.5281125600141348, 0.5110135909176341, 0.5098691910909772, 0.5050244303800524, 0.4768054994086938, 0.46093675756575503, 0.30856327505614783, 0.23263418201339106]",
"artist_terms_weight": "[1.0, 0.8022713566842928, 0.7738635555234821, 0.7453363365715111, 0.7453351600260028, 0.6976125046487355, 0.6845842784863262, 0.6845838640190737, 0.6845837847681772, 0.6626829986560577, 0.648284839081643, 0.6355403450398142, 0.634687381525465, 0.6310764021929681, 0.6100437893142853, 0.5982162291422487, 0.4846466373723084, 0.4280538762284263]",
"duration": 188.08118,
"artist_longitude": NaN,
"artist_latitude": NaN,
"artist_location": NaN,
"artist_mbid": "a9591a2d-9317-4674-8ab5-9de8b770fcab",
"energy": 0.0,
"loudness": -10.673,
"tempo": 97.034,
"year": 0,
"danceability": 0.0,
"song_hotttnesss": NaN,
"artist_mbtags": "[]",
"key": 10,
"mode": 1,
"time_signature": 1,
"audio_md5": "7017bfb3652f908b4a45646e1141ebfa",
"captions": {
"General description": "The track is a parody version of a classic British rock song, humorously reimagined with lyrics about being in a drug rehabilitation center.",
"Vibe": "It's a whimsical and humorous parody that infuses a classic rock melody with cleverly altered lyrics, delivering a nostalgic yet comedic listening experience.",
"Arrangement": "The track features a classic rock style arrangement with humorous, parody lyrics set to the tune of a famous Beatles song, incorporating electric guitars, drums, and harmonized vocals reminiscent of the original piece's psychedelic era.",
"Production": "The track is produced in a parody style, humorously mimicking the musical essence of a classic psychedelic rock song from the iconic British band known for its innovative and experimental approach to music during the 1960s.",
"AI instruction": "Create a playful and satirical music piece that blends classic rock elements with a light-hearted twist on the theme of addictive substances, maintaining a 60s psychedelic rock vibe with prominent guitar riffs and harmonious vocal styles.",
"Movie scene": "A montage sequence unfolds showing a quirky protagonist indulging in outlandishly themed spa treatments at a strawberry-themed rehab center while staff in berry costumes dance in the background."
}
},
{
"Unnamed: 0": 6869,
"track_id": "TRZEUSK128F9309A53",
"song_id": "SOEHHNH12AB017F715",
"7digital_id": 4465242,
"title": "Jenny Was A Friend Of Mine",
"hd5_fp": "../datasets/lmd/lmd_matched_h5/Z/E/U/TRZEUSK128F9309A53.h5",
"artist_name": "The Killers",
"artist_id": "ARVG4OK1187B9B6BD3",
"artist_terms": "['rock', 'alternative', 'rave', 'disco', 'new wave', 'soundtrack', 'emo', 'pop', 'funk', 'guitar', 'alternative rock', 'electronica', 'indie', 'soul', 'group', 'party music', 'beautiful', 'melodic', '80s', 'retro']",
"artist_terms_freq": "[1.0, 0.8476018315794605, 0.3707999554207882, 0.3991762178471264, 0.4193094964449654, 0.3991762178471264, 0.3707999554207882, 0.45582498512072145, 0.3707999554207882, 0.31091661255656167, 0.3707999554207882, 0.3707999554207882, 0.38969766265765005, 0.30121773277769304, 0.0970190820483545, 0.0970190820483545, 0.18952146962464372, 0.15377160690103098, 0.21306930221149475, 0.04850954102417725]",
"artist_terms_weight": "[1.0, 0.8889613897444565, 0.6476217325902135, 0.6061729292238167, 0.5852539097506309, 0.547214288011099, 0.5227674507294445, 0.5122494816340558, 0.5071037790532992, 0.4925064542265108, 0.485966270751775, 0.4557065792529044, 0.44139321978465434, 0.4406988079633861, 0.4038267871523285, 0.4038267871523285, 0.40022238014403627, 0.39841805661755714, 0.3552284249812089, 0.3461815602875832]",
"duration": 244.84526,
"artist_longitude": NaN,
"artist_latitude": NaN,
"artist_location": NaN,
"artist_mbid": "95e1ead9-4d31-4808-a7ac-32c3614c116b",
"energy": 0.0,
"loudness": -4.737,
"tempo": 114.011,
"year": 2004,
"danceability": 0.0,
"song_hotttnesss": NaN,
"artist_mbtags": "['rock and indie', 'united states', 'alternative rock', 'american', 'usa', 'heartland rock', 'am\u00e9ricain']",
"key": 11,
"mode": 1,
"time_signature": 4,
"audio_md5": "f5a4c73dbb062c7850352c68dad3cb7d",
"captions": {
"General description": "This song is an upbeat synth-rock track with a prominent bassline that tells a dark story of a man being interrogated for the suspected murder of a woman who was once close to him.",
"Vibe": "The track exudes a dark, brooding energy with an 80s synth-rock influence, infused with a sense of urgency and a confessional storytelling style.",
"Arrangement": "This song opens with a distinctive syncopated bassline followed by a driving drum beat, interwoven with atmospheric synthesizers and punctuated by urgent, melodic guitar riffs, all of which underpin impassioned vocals that tell a story of desperation and denial in the face of an accusation.",
"Production": "The track features a driving bass line, atmospheric synths, and urgent vocals, all set against a backdrop of polished, energetic post-punk revival production.",
"AI instruction": "Generate a new wave-inspired rock track with prominent bass lines, danceable beats, and a slightly dark, storytelling vocal style.",
"Movie scene": "Under the flashing neon lights of a bustling cityscape, the camera follows a man's erratic journey through shadowy streets at night, as fragmented memories of a tragic friendship and an unsolved mystery play in his mind."
}
},
{
"Unnamed: 0": 5899,
"track_id": "TRGPSLY128F92F9AB1",
"song_id": "SOJCTXU12A8C14272E",
"7digital_id": 6818347,
"title": "Love Victims",
"hd5_fp": "../datasets/lmd/lmd_matched_h5/G/P/S/TRGPSLY128F92F9AB1.h5",
"artist_name": "Thomas Coastline",
"artist_id": "ARFGBKJ1242077F489",
"artist_terms": "['trance', 'uplifting trance', 'dance music', 'rave', 'dance', 'united states', 'czech republic', 'progressive', 'dj', 'producer', 'emotional', 'bass', 'uplifting', 'radio', 'poland', 'hard trance']",
"artist_terms_freq": "[1.0, 0.6097168123403383, 0.5604910882964067, 0.5604910882964067, 0.598421643993254, 0.2154028308972077, 0.205546537895686, 0.3047892647970139, 0.1676159821988387, 0.102773268947843, 0.102773268947843, 0.102773268947843, 0.0, 0.0, 0.0, 0.0]",
"artist_terms_weight": "[1.0, 0.8645456544125706, 0.8236451579164401, 0.800722990913269, 0.6351173866417228, 0.5369194400780316, 0.5287300780076271, 0.46526956399197267, 0.45698274746465783, 0.44333818569649075, 0.44333818569649075, 0.39878217375070507, 0.35794629338535444, 0.35794629338535444, 0.35794629338535444, 0.34886048691799704]",
"duration": 417.64526,
"artist_longitude": NaN,
"artist_latitude": NaN,
"artist_location": NaN,
"artist_mbid": "2e7c959c-54bf-48c9-99b2-af3fc3e3bc00",
"energy": 0.0,
"loudness": -6.927,
"tempo": 128.108,
"year": 2009,
"danceability": 0.0,
"song_hotttnesss": 0.2707759989463275,
"artist_mbtags": "[]",
"key": 0,
"mode": 1,
"time_signature": 4,
"audio_md5": "3b334f82f0ac3cb8c900738e5282f4f7",
"captions": {
"General description": "This track is an energetic trance composition characterised by uplifting melodies, driving beats, and synthesised instrumentation designed to evoke emotions and get listeners moving on the dance floor.",
"Vibe": "The track exudes an energetic and emotional trance atmosphere, weaving pulsating rhythms and euphoric melodies for an uplifting dance floor experience.",
"Arrangement": "The arrangement features a dynamic trance progression with a blend of melodic synths, pulsating basslines, and an emotive breakdown leading to an energetic climax that captures the essence of classic dance floor euphoria.",
"Production": "This track features a pulsating trance beat with an emotional melodic line that builds energy through uplifting synths and driving basslines, typical of the euphoric and expansive style of early 2010's electronic dance music.",
"AI instruction": "Generate an uplifting trance track with a driving bassline, emotional melodies, soaring synths, and a euphoric atmosphere similar to popular European trance hits from the late 2000s.",
"Movie scene": "As the sun dips below the horizon, two silhouetted figures race along a deserted beach, their laughter intertwining with the rhythmic waves while a sense of bittersweet freedom envelops their final, carefree moments together before destiny pulls them apart."
}
},
{
"Unnamed: 0": 8254,
"track_id": "TRTPPJN128F4246CA4",
"song_id": "SOYGUKR12A8C12FDC9",
"7digital_id": 1457699,
"title": "Apartment No. 9",
"hd5_fp": "../datasets/lmd/lmd_matched_h5/T/P/P/TRTPPJN128F4246CA4.h5",
"artist_name": "Faron Young",
"artist_id": "ARKBTPV1187FB38A79",
"artist_terms": "['honky tonk', 'country rock', 'classic country', 'rockabilly', 'pop rock', 'soft rock', 'blues-rock', 'nashville sound', 'country blues', 'los angeles', 'ballad', 'chanson', 'country', 'rock', 'classic rock', 'oldies', 'folk rock', 'disco', 'folk', 'world', 'blues', 'hard rock', 'male vocalist', 'singer-songwriter', 'traditional country', 'alternative country', 'country pop', 'pop', \"rock 'n roll\", 'electronic', 'old school', 'synthpop', 'soul', 'american', '50s', 'united states', 'moje standards', 'fiddle', 'old country', 'country folk']",
"artist_terms_freq": "[1.0, 0.9728339394624822, 0.8619275116526599, 0.9062457584930859, 0.9062457584930859, 0.8360029991533068, 0.7916847523128809, 0.7916847523128809, 0.7916847523128809, 0.7916847523128809, 0.7916847523128809, 0.7916847523128809, 0.862373472085384, 0.9921610876793756, 0.8619275116526599, 0.8360029991533068, 0.7916847523128809, 0.7916847523128809, 0.9043764323755749, 0.8431704181650571, 0.8360029991533068, 0.7916847523128809, 0.6758648492157971, 0.7916847523128809, 0.6132550429488439, 0.5721272103803475, 0.5676084360686556, 0.7924352511395802, 0.5568316353124712, 0.7836477116386944, 0.5912357555323614, 0.5926619346977773, 0.6488174685292216, 0.6640831560173838, 0.5165130363476241, 0.4623982150115821, 0.4609487422146642, 0.44527091757341547, 0.4233575470485465, 0.35818667621583283]",
"artist_terms_weight": "[1.0, 0.9790133375349619, 0.8933345265629626, 0.879229844316207, 0.8517981387581931, 0.8412664888425592, 0.8390697177644637, 0.8390697177644637, 0.8390697177644637, 0.8390697177644637, 0.8280477746535198, 0.8258074770460858, 0.8077105330213739, 0.7935363661787848, 0.7898629457326191, 0.7888161949998439, 0.7760193437135138, 0.7741001031088064, 0.7725324148561385, 0.7705951413075162, 0.7627979173414448, 0.7228272987662302, 0.7103144243478023, 0.701455184579116, 0.7012269827463935, 0.6694543987590464, 0.6659634991085729, 0.665866805474468, 0.6576380711500118, 0.6458393300883025, 0.6458358484657291, 0.613767796298028, 0.6116013146593348, 0.6116007350532309, 0.6115941707605986, 0.5846851925190886, 0.5835654277928354, 0.5714537999961755, 0.5545250108535019, 0.5041784003528785]",
"duration": 174.54975,
"artist_longitude": -93.74727,
"artist_latitude": 32.51461,
"artist_location": "Shreveport, LA",
"artist_mbid": "5799b78e-a103-427b-8a1d-0bfeaddbb0c0",
"energy": 0.0,
"loudness": -19.532,
"tempo": 56.035,
"year": 2009,
"danceability": 0.0,
"song_hotttnesss": 0.542052280435617,
"artist_mbtags": "[]",
"key": 0,
"mode": 1,
"time_signature": 4,
"audio_md5": "618acf4dbf80cc037d676f57cf52c3dd",
"captions": {
"General description": "This track is a country ballad about heartache and loneliness, characterized by its mournful melodies and lyrics that depict the sorrow of living in a solitary space filled with memories of a lost love.",
"Vibe": "The track exudes a melancholic and traditionally country atmosphere, marked by its somber storytelling of heartbreak and loneliness set against the backdrop of a solitary living space.",
"Arrangement": "The song arrangement features a classic country format with melancholic steel guitar riffs, a steady rhythmic bass, and heartbreak-tinged vocals, all conveying the loneliness of life in a small, empty living space.",
"Production": "The track features a classic country style with twangy steel guitar, a traditional rhythm section, heartfelt vocals, and a blend of sorrowful lyrics conveying heartache, all typical of the Nashville sound of the mid-1960s.",
"AI instruction": "\"Generate a classic country tune with a melancholic melody featuring a traditional mix of acoustic guitar, pedal steel guitar, and a slow, steady rhythm reminiscent of a 1960's heartache ballad.\"",
"Movie scene": "In a dimly-lit, sparsely-furnished room, a lone figure sits at the edge of an unmade bed, staring at an old photograph, while the soft glow of a neon sign from the street bathes the scene in flickering blue light."
}
},
{
"Unnamed: 0": 23114,
"track_id": "TREOHKX128E0781239",
"song_id": "SONWOHJ12A6D4F920A",
"7digital_id": 4686,
"title": "The Long Day Is Over",
"hd5_fp": "../datasets/lmd/lmd_matched_h5/E/O/H/TREOHKX128E0781239.h5",
"artist_name": "Norah Jones",
"artist_id": "ARBJ22B1187B9AD31C",
"artist_terms": "['vocal jazz', 'jazz blues', 'pop', 'vocal', 'contemporary jazz', 'jazz vocal', 'ballad', 'blues', 'jazz', 'piano', 'guitar', 'folk', 'acoustic', 'jazz piano', 'soul', 'cover', 'female', 'rock', 'melancholia', 'mellow', 'beautiful', 'classical', 'soft', 'romantic', 'slow', 'song writer', 'sad', 'diva', 'piano jazz', 'country', 'relax']",
"artist_terms_freq": "[1.0, 1.0, 0.9699256207841702, 0.7437826191423991, 0.6489047339274425, 0.5546463343374989, 0.5130245212816276, 0.5130245212816276, 0.5708743162770719, 0.38756177115528107, 0.3803453225648181, 0.44100439354048726, 0.34868466945776416, 0.1686306000796548, 0.35030045742198634, 0.1493429481542141, 0.2904255556600753, 0.4598274898051958, 0.1375123315162592, 0.24390639446912277, 0.2406400677619543, 0.2683467927470391, 0.10639406295286358, 0.15959109442929537, 0.0843153000398274, 0.0843153000398274, 0.0843153000398274, 0.05319703147643179, 0.05319703147643179, 0.1840314927072117, 0.0843153000398274]",
"artist_terms_weight": "[1.0, 1.0, 0.7782723754077062, 0.73905597535019, 0.7388580133949652, 0.6709452738297915, 0.6275390516343117, 0.5133253625489003, 0.5101379981120941, 0.45582213689432227, 0.4434570286443025, 0.41064843955399166, 0.3913288064059513, 0.3857330671565771, 0.3855296471359645, 0.37148216161311215, 0.37086053232640775, 0.37081415184985156, 0.3627409731636224, 0.36269845999330264, 0.36095482609646556, 0.3389367884825139, 0.338293377244536, 0.3342412623185869, 0.3234357288708524, 0.3234357288708524, 0.3234357288708524, 0.3004436348778977, 0.3004436348778977, 0.2984182238227594, 0.28926073736598695]",
"duration": 164.85832,
"artist_longitude": -74.00712,
"artist_latitude": 40.71455,
"artist_location": "New York, NY",
"artist_mbid": "985c709c-7771-4de3-9024-7bda29ebe3f9",
"energy": 0.0,
"loudness": -17.618,
"tempo": 89.361,
"year": 2002,
"danceability": 0.0,
"song_hotttnesss": 0.7159563949271138,
"artist_mbtags": "['jazz and blues', 'folk']",
"key": 1,
"mode": 1,
"time_signature": 3,
"audio_md5": "d37ae0c91a35516db98d867432f699d0",
"captions": {
"General description": "A soothing jazz and blues-infused ballad featuring sultry vocals and piano that convey a sense of relief and tranquility as the day's end approaches.",
"Vibe": "A soothing and soulful melody that carries the weary listener into a peaceful, introspective evening with gentle pianos and a serene, jazzy ambiance.",
"Arrangement": "The song features a soothing arrangement that combines a gentle piano accompaniment with delicate jazz brushwork on the drums and subtle upright bass, creating a mellow backdrop for the smooth, breathy vocals that express a sense of relief and tranquility.",
"Production": "The production style features a minimalist jazz arrangement with a gentle piano accompaniment, soft percussion, and a soulful, intimate vocal performance that exudes a sense of relaxed melancholy.",
"AI instruction": "Generate a soothing, jazz-inspired piano melody with a gentle, melancholic vocal line, evocative of a tranquil evening winding down.",
"Movie scene": "Under the soft glow of streetlights, a lone woman slowly walks away from the camera down an empty cobblestone street, her silhouette shrinking in the distance after a day of life-changing decisions, as evening brings a quiet respite."
}
},
{
"Unnamed: 0": 17638,
"track_id": "TRCBNAD128F92CBAB0",
"song_id": "SOQQSNF12A8C1449DA",
"7digital_id": 3575242,
"title": "Nowhere Man",
"hd5_fp": "../datasets/lmd/lmd_matched_h5/C/B/N/TRCBNAD128F92CBAB0.h5",
"artist_name": "Panpipes",
"artist_id": "AR10V391187B9956D5",
"artist_terms": "['instrumental pop', 'irish', 'dub', 'bass', 'romantic', 'piano', 'classical', 'beats', 'gospel', 'breakbeat']",
"artist_terms_freq": "[1.0, 0.5356453590462391, 0.417159379090211, 0.14231865839066443, 0.13104449038569524, 0.16840490884142095, 0.20277971591330438, 0.08034956140736914, 0.050694928978326094, 0.08034956140736914]",
"artist_terms_weight": "[1.0, 0.6076929575413968, 0.47662500033690725, 0.32704986107001804, 0.3067420556663531, 0.28948025327774074, 0.28740571054190966, 0.283089441033311, 0.2704191626692792, 0.25834653652191586]",
"duration": 166.24281,
"artist_longitude": NaN,
"artist_latitude": NaN,
"artist_location": NaN,
"artist_mbid": "cb73b1da-72b4-492b-9e0f-75830f52a657",
"energy": 0.0,
"loudness": -10.281,
"tempo": 118.993,
"year": 0,
"danceability": 0.0,
"song_hotttnesss": NaN,
"artist_mbtags": "[]",
"key": 1,
"mode": 0,
"time_signature": 4,
"audio_md5": "145adeaebd02f28103b139bd16a4d483",
"captions": {
"General description": "This piece is an instrumental cover of a famous song from the 1960s, performed on the pan flute, delivering a mellow and ethereal reinterpretation of the classic tune originally by The Beatles.",
"Vibe": "The track projects a serene and ethereal ambiance through the soothing whispers of wind instruments, evoking a sense of introspective calmness and gentle, melodious contemplation.",
"Arrangement": "The arrangement presents a serene instrumental interpretation, featuring the ethereal tones of the pan flute, layered over soothing background accompaniments, providing a tranquil reimagining of a classic melody.",
"Production": "The production style features smooth, ethereal flute melodies characteristic of panpipe instrumentation, creating a serene and hauntingly atmospheric reimagining of a classic song.",
"AI instruction": "\"Generate a calming instrumental track with soothing pan flute melodies, featuring gentle harmonies and an introspective mood akin to a serene, melodic reflection by a lonesome figure contemplating under the open sky.\"",
"Movie scene": "A solitary figure walks along a windswept beach at sunrise, each step in the sand a reflection of his introspective journey through life's purpose and direction, as the haunting flute melody underscores his quiet realization that he is lost in his own existence."
}
},
{
"Unnamed: 0": 9872,
"track_id": "TRAFRVU128F429B7A6",
"song_id": "SOUWQQN12A8C13B7B0",
"7digital_id": 3394215,
"title": "Super Trooper",
"hd5_fp": "../datasets/lmd/lmd_matched_h5/A/F/R/TRAFRVU128F429B7A6.h5",
"artist_name": "Janus",
"artist_id": "ARVLYQN1187FB4C13C",
"artist_terms": "['dark wave', 'neoclassical', 'futurepop', 'electronic music', 'visual kei', 'folk metal', 'industrial metal', 'alternative metal', 'nu metal', 'gothic rock', 'gothic metal', 'club', 'dark ambient', 'synthpop', 'soundtrack', 'new wave', 'rock', 'emo', 'progressive rock', 'hard rock', 'rap', 'gothic', 'alternative rock', 'industrial', 'alternative', 'german', 'electronica', 'pop', 'progressive', 'electronic', 'folk', 'avant-garde', 'indie', 'punk', 'metal', 'experimental', 'ambient', 'psychedelic', 'instrumental', '80s']",
"artist_terms_freq": "[0.937403177517143, 0.9074481539276341, 0.8562397028686694, 0.8562397028686694, 0.8562397028686694, 0.8562397028686694, 0.8562397028686694, 0.8562397028686694, 0.8562397028686694, 0.8562397028686694, 0.8562397028686694, 0.8562397028686694, 0.8562397028686694, 0.8562397028686694, 0.9074481539276341, 0.8562397028686694, 1.0, 0.8562397028686694, 0.8562397028686694, 0.8562397028686694, 0.8562397028686694, 0.7795318837416683, 0.8562397028686694, 0.8199202135930979, 0.8955022868650185, 0.8060070847592505, 0.8562397028686694, 0.8783601951976348, 0.7571270375282194, 0.8469532375180167, 0.7969564925251507, 0.6949034368134654, 0.7838033580630082, 0.7520757452325784, 0.7468252249789976, 0.7437197005954684, 0.7328352206597055, 0.6915799267048608, 0.7116677762121266, 0.6917893123293704]",
"artist_terms_weight": "[1.0, 0.9725877776369424, 0.936473151539433, 0.936473151539433, 0.9285425129745457, 0.9084700546216442, 0.9038169542695742, 0.8967692596508188, 0.8911179373575352, 0.8883859628328588, 0.8808884113327022, 0.8771634058870605, 0.8573615187208493, 0.8527104353421128, 0.8499130998307906, 0.825832259807424, 0.8143808072322978, 0.8123043698823167, 0.8081736790926615, 0.800390214920024, 0.7895287282372712, 0.7827016995259852, 0.7807316154185553, 0.7737886144119476, 0.7632459800632532, 0.7632458316465801, 0.7547709856120459, 0.7503425958414642, 0.7503417849024394, 0.7102618467111658, 0.7102607720651971, 0.7102573068247807, 0.6701808350608758, 0.6701802781425938, 0.6701802329171694, 0.6701799099591816, 0.6701796402421236, 0.6701794996429313, 0.6701793764540446, 0.6701771232593885]",
"duration": 260.93669,
"artist_longitude": NaN,
"artist_latitude": NaN,
"artist_location": NaN,
"artist_mbid": "ad25746f-0383-408b-b194-1adccde29f5a",
"energy": 0.0,
"loudness": -12.921,
"tempo": 118.973,
"year": 0,
"danceability": 0.0,
"song_hotttnesss": 0.2578461999188897,
"artist_mbtags": "[]",
"key": 0,
"mode": 1,
"time_signature": 4,
"audio_md5": "bbf6c9db7ccf0d12ef3364d2d2f749fe",
"captions": {
"General description": "The song is an upbeat power metal track featuring energetic guitar riffs and soaring vocals, which lyrically deals with the themes of battle and triumph.",
"Vibe": "The track exudes an upbeat, energetic 80s pop-rock essence, infused with hints of glam and an anthemic chorus that captures the optimism and vivacity of the era.",
"Arrangement": "The arrangement features a dynamic blend of disco-pop elements with prominent vocal harmonies, bright synthesizer lines, and a steady four-on-the-floor beat that drives the upbeat, danceable melody.",
"Production": "The track features an energetic blend of electronic and pop elements, with pulsing synths, a driving beat, and catchy hooks that encapsulate the quintessential feel-good vibe of early 80s disco-infused music.",
"AI instruction": "\"I want an energetic, 1980s-style pop anthem with bright synthesizer melodies along with a pulsating bass line and uplifting, harmonious vocals that evoke a sense of joy and nostalgia.\"",
"Movie scene": "A vibrant group of friends dress in flamboyant 70s attire as they laugh and dance under the shimmering lights of a retro disco, their carefree moves casting colorful shadows on the spinning dance floor."
}
},
{
"Unnamed: 0": 21437,
"track_id": "TRXUTLD128F930F92E",
"song_id": "SOETTOH12AB0182BE9",
"7digital_id": 3915916,
"title": "S\u00f6zlerimi Geri Alamam",
"hd5_fp": "../datasets/lmd/lmd_matched_h5/X/U/T/TRXUTLD128F930F92E.h5",
"artist_name": "Bulutsuzluk \u00d6zlemi",
"artist_id": "AR16IVI1187B99EB73",
"artist_terms": "['classic rock', 'hard rock', 'blues', 'rock', 'alternative rock', 'turkish', 'turkish rock', 'indie', 'alternative', 'alternative punk rock', 'psycho', 'istanbul', 'political', 'protest rock', 'turkish alternative rock']",
"artist_terms_freq": "[0.9775658822067531, 0.945946769069716, 0.8918935381394321, 1.0, 0.8918935381394321, 0.6012946981647967, 0.547031555053372, 0.8172319961016725, 0.8078272799252132, 0.5002641965507877, 0.4158578271728389, 0.34268937626928425, 0.3932980327557636, 0.20579983483553305, 0.18699345616972796]",
"artist_terms_weight": "[1.0, 0.9558678694973592, 0.917514131538552, 0.8886866465126411, 0.8872043872496672, 0.8112458354101834, 0.7722929673729139, 0.7616726415651581, 0.76013757211132, 0.7324342633576182, 0.6604967282527547, 0.5981370029828033, 0.5744968391956864, 0.48146931232210555, 0.46544108441185317]",
"duration": 344.39791,
"artist_longitude": 28.98618,
"artist_latitude": 41.04085,
"artist_location": "Istanbul",
"artist_mbid": "50544382-6078-446c-bf67-b5151f554cb8",
"energy": 0.0,
"loudness": -16.243,
"tempo": 220.324,
"year": 1995,
"danceability": 0.0,
"song_hotttnesss": 0.5894050679841478,
"artist_mbtags": "['turkish', 'rock', 'alternative rock']",
"key": 0,
"mode": 1,
"time_signature": 7,
"audio_md5": "af30b625cd94aea124095fb4e7d0a359",
"captions": {
"General description": "The track is a Turkish rock song known for its compelling lyrics and dynamic composition that blends emotive vocals with powerful guitar riffs, reflecting on themes of remorse and the irrevocable nature of spoken words.",
"Vibe": "The track exudes a nostalgic and emotive aura, blending melodic rock elements with pensive lyrics that reflect on the irreversibility of spoken words and the bittersweet nature of memories.",
"Arrangement": "The arrangement features a blend of rock elements with electric guitar riffs, a driving drum beat, and emotive vocals that layer over a rhythmic bassline, conveying a sense of urgency and introspection.",
"Production": "The production style is characterized by its vibrant blend of classic rock elements, with prominent electric guitar riffs, a driving bassline, dynamic drumming, and impassioned Turkish vocals that exude a sense of nostalgia and raw emotion.",
"AI instruction": "Please generate a piece of music with a blend of rock and Anatolian folk elements, featuring a prominent electric guitar overlaying a steady drumbeat and poignant lyrics reflecting on the irreversibility of spoken words.",
"Movie scene": "Amidst a golden sunset, two old friends drive down a winding coastal road, their laughter mingling with the sea breeze as they reminisce about adventures past, embracing the bittersweet realization that some words and moments are irreversible yet beautifully woven into the tapestry of their lives."
}
},
{
"Unnamed: 0": 12052,
"track_id": "TROIJLZ128F92F820B",
"song_id": "SOZSYYT12A8C13F4BA",
"7digital_id": 7780169,
"title": "Something",
"hd5_fp": "../datasets/lmd/lmd_matched_h5/O/I/J/TROIJLZ128F92F820B.h5",
"artist_name": "Peter Pupping",
"artist_id": "ARNDDTZ1241B9CEF7A",
"artist_terms": "['guitar', 'california', 'bossa nova', 'instrumental', 'classical', 'christmas music']",
"artist_terms_freq": "[1.0, 0.8758183429179341, 0.7316737144964837, 0.6118758015387211, 0.48285191283851103, 0.0]",
"artist_terms_weight": "[1.0, 0.9998552606811542, 0.9480288287338519, 0.6320753252935774, 0.5914511698911068, 0.4556914795427197]",
"duration": 184.08444,
"artist_longitude": NaN,
"artist_latitude": NaN,
"artist_location": "California",
"artist_mbid": "5275e2ac-395d-4a00-b3da-0347536c0e9b",
"energy": 0.0,
"loudness": -12.812,
"tempo": 155.945,
"year": 0,
"danceability": 0.0,
"song_hotttnesss": NaN,
"artist_mbtags": "[]",
"key": 7,
"mode": 1,
"time_signature": 4,
"audio_md5": "2b695e9fda7037a51e1c78d81071da2e",
"captions": {
"General description": "The track is an instrumental acoustic guitar rendition, featuring a melodic and soothing arrangement that showcases a blend of skillful fingerpicking and warm string tones.",
"Vibe": "The track exudes a serene and tranquil ambiance, with a gentle, melodic acoustic guitar weaving an intimate and reflective instrumental soundscape.",
"Arrangement": "The arrangement presents a melodious acoustic guitar interpretation of a classic tune, weaving intricate fingerstyle patterns and harmonious strumming that pays homage to the song's original allure while offering a fresh, instrumental perspective.",
"Production": "The track features a graceful and minimalistic instrumental arrangement with a prominent acoustic guitar melody supported by understated backing elements, creating a serene and contemplative acoustic listening experience.",
"AI instruction": "Generate an acoustic guitar instrumental track with a mellow, romantic vibe, featuring fingerpicking patterns that create a warm, introspective atmosphere similar to popular soft folk melodies.",
"Movie scene": "A gentle montage unfolds where an aging couple silently rekindle their love by leafing through an old photo album, their smiles and tears reflecting years of shared memories, as soft guitar melodies envelop the room."
}
},
{
"Unnamed: 0": 15917,
"track_id": "TRJAFDS128F92D2BE5",
"song_id": "SOQPIAT12A8C14564B",
"7digital_id": 3611184,
"title": "Sweet Harmony (Isma-Ae Remix Instrumental)",
"hd5_fp": "../datasets/lmd/lmd_matched_h5/J/A/F/TRJAFDS128F92D2BE5.h5",
"artist_name": "Serge Devant",
"artist_id": "AR9APSL1187B99BE26",
"artist_terms": "['progressive house', 'progressive trance', 'trance', 'tech house', 'electro', 'tribal house', 'club', 'electronic', 'deep house', 'hip hop', 'house', 'dance', 'electronica', 'united states', 'vocal trance', 'rock', 'pop', 'club dance', 'europop', 'eurodance']",
"artist_terms_freq": "[1.0, 0.9900402512039971, 0.9976451912263314, 0.8205508161097633, 0.9461584083133573, 0.7740370608276944, 0.8205508161097633, 0.9867696447105654, 0.7740370608276944, 0.8205508161097633, 0.8074320234205007, 0.8205508161097633, 0.8205508161097633, 0.5486780996627004, 0.5284356610705396, 0.7740370608276944, 0.70110043649074, 0.4322207744304295, 0.33303250321000993, 0.30558865600443397]",
"artist_terms_weight": "[1.0, 0.9700696252353342, 0.8999299290615314, 0.8677262550090578, 0.8579385224844048, 0.8522530427527722, 0.8346937326529993, 0.8197157815532822, 0.8143995927328831, 0.758024754088572, 0.7484337116575972, 0.7393666203471069, 0.7229275188893944, 0.674920776809483, 0.6456689968295145, 0.6380085271946365, 0.6090789646984809, 0.5832819031548724, 0.5052318411578403, 0.44248494146410294]",
"duration": 471.06567,
"artist_longitude": NaN,
"artist_latitude": NaN,
"artist_location": NaN,
"artist_mbid": "d9b77fef-64f2-48fe-b15b-112e1a699c34",
"energy": 0.0,
"loudness": -6.109,
"tempo": 127.973,
"year": 2008,
"danceability": 0.0,
"song_hotttnesss": 0.339871025517287,
"artist_mbtags": "[]",
"key": 10,
"mode": 0,
"time_signature": 4,
"audio_md5": "26426eb80c9c71e8676cf5fff109784a",
"captions": {
"General description": "This track is an instrumental electronic remix with a progressive house influence that features uplifting melodies and rhythmic club beats designed to energize and engage listeners on the dance floor.",
"Vibe": "The instrumental remix offers a serene yet uplifting electronic soundscape, featuring melodic synths and a driving beat that collectively create an atmosphere of euphoric tranquility.",
"Arrangement": "The instrumental mix flaunts a progressive house arrangement marked by lush, melodic synths, a hypnotic bassline, and rhythmic percussion that builds towards euphoric crescendos, suitable for immersive dance floor experiences.",
"Production": "The track features an uplifting progressive house style with layered synths, a pulsing bassline, and rhythmic percussion, all culminating in a melodic instrumental soundscape designed for energetic dancefloors.",
"AI instruction": "Generate an instrumental track with a deep progressive house vibe that features a melodic synth lead, a driving bassline, and a harmonious blend of electronic rhythms that would complement a night drive through a vibrant cityscape.",
"Movie scene": "In a sun-drenched field blooming with wildflowers, a montage unfolds showing former lovers locking eyes and smiling tentatively as they circle one another, their movements slowly aligning into a delicate, unfolding dance that rekindles their lost connection."
}
},
{
"Unnamed: 0": 506,
"track_id": "TRRHAYU128F9322C11",
"song_id": "SOQUGSZ12A8AE47535",
"7digital_id": 4006232,
"title": "Don't Leave Me This Way",
"hd5_fp": "../datasets/lmd/lmd_matched_h5/R/H/A/TRRHAYU128F9322C11.h5",
"artist_name": "Thelma Houston",
"artist_id": "ARJQKY91187FB40E98",
"artist_terms": "['quiet storm', 'disco', 'motown', 'uk garage', 'deep house', 'soul', 'funk', 'electronic', 'soul music', 'jazz funk', 'vocal house', 'dance pop', 'r&b', 'ballad', 'electro', 'hip hop', 'urban', 'downtempo', 'house', 'club', 'united states', 'soundtrack', 'pop rock', 'dance', 'pop', 'classic rock', 'female vocalist', 'jazz', 'trance', 'italy', 'germany', 'canada', 'funk soul', 'club dance', 'synthpop', '70s', 'french', '80s', 'belgium', 'nederland', 'american', 'female', 'vocal']",
"artist_terms_freq": "[0.9490569309714582, 1.0, 0.8548878824094436, 0.7761616668450945, 0.7888337571422559, 0.8676120492686671, 0.8512228068888477, 0.9203937725147286, 0.6974354512807454, 0.6974354512807454, 0.6974354512807454, 0.6974354512807454, 0.7032224836283348, 0.6974354512807454, 0.815524774627269, 0.815524774627269, 0.697596423495645, 0.7598245010273372, 0.7838772593321177, 0.6974354512807454, 0.6211539338382153, 0.7367985590629199, 0.6974354512807454, 0.7598245010273372, 0.7855824290324207, 0.6974354512807454, 0.6809153674443144, 0.7367985590629199, 0.6974354512807454, 0.5643541527356006, 0.6028783433512448, 0.5664444163563997, 0.5284995066513503, 0.5187164443798301, 0.5830553057636083, 0.585444168359416, 0.6074394132175877, 0.6103910960926978, 0.5013942717180109, 0.4746932757938017, 0.5841016768266544, 0.5409275742385925, 0.5076471706307865]",
"artist_terms_weight": "[1.0, 0.9803784480266499, 0.9222116114865019, 0.8571797827059011, 0.8340190994180602, 0.8215110661814914, 0.8075495735376756, 0.7987042617485686, 0.7921479539253004, 0.7921479539253004, 0.7921479539253004, 0.7921479539253004, 0.7875232924057142, 0.7816801675521104, 0.7744234158022116, 0.7734687036658143, 0.7689601764192001, 0.7538987433547624, 0.7479765374076865, 0.7440325967722244, 0.7291355692210943, 0.7219256362043434, 0.7201840012101978, 0.7108818433340895, 0.6999164861464906, 0.6938786748221578, 0.6921901318107071, 0.6817142671452187, 0.678187884369501, 0.6736632781045988, 0.6601690749852739, 0.6601676539236943, 0.6525983344335827, 0.6445170310706461, 0.6297112149982164, 0.6276533185244066, 0.625607160405071, 0.6086321401754803, 0.6086313806409612, 0.6081516711794921, 0.5761163313504312, 0.5761155937816327, 0.5761121455767625]",
"duration": 216.45016,
"artist_longitude": -90.89881,
"artist_latitude": 33.40417,
"artist_location": "Leland, MS",
"artist_mbid": "cb327970-cf95-4f2d-91db-b1b787aa51f9",
"energy": 0.0,
"loudness": -8.221,
"tempo": 121.813,
"year": 1976,
"danceability": 0.0,
"song_hotttnesss": NaN,
"artist_mbtags": "['classic pop and rock']",
"key": 10,
"mode": 0,
"time_signature": 4,
"audio_md5": "cc06aac80312223258ab0a553cd0cdde",
"captions": {
"General description": "This is a powerful disco anthem characterized by its soaring vocals and emotional plea for a lover's return, underscored by a driving beat and infectious chorus that became a dance-floor staple in the late 1970s.",
"Vibe": "The track exudes a fervent disco energy, characterized by passionate vocals and a soaring melody that implores a lover for emotional rescue on the dance floor.",
"Arrangement": "A soulful disco anthem featuring a commanding lead vocal performance, elevated by a pulsating baseline, lush strings, brass accents, and vibrant backing vocals that coalesce into an infectious dance groove exuding emotional urgency.",
"Production": "The track exemplifies a high-energy disco production, characterized by a pulsating four-on-the-floor beat, sweeping orchestral strings, an assertive baseline, and emotive, powerhouse vocals that typify the genre's fusion of soulful expression with dancefloor appeal during the late 1970s.",
"AI instruction": "Generate a soulful disco track with a prominent bassline, uplifting piano accompaniments, and powerful, gospel-inflected female vocals that capture the essence of a late 1970s dancefloor anthem about longing and desperation.",
"Movie scene": "A heartbroken protagonist strides through a bustling 70s nightclub, attempting to dance away their sorrows as vibrant lights flash across the sea of dancers, highlighting the juxtaposition of lively disco beats against their inner turmoil."
}
},
{
"Unnamed: 0": 25443,
"track_id": "TRKAKBV128F92C54C4",
"song_id": "SORYTVT12A8C144349",
"7digital_id": 3547142,
"title": "Jambalaya(OnTheBayou)",
"hd5_fp": "../datasets/lmd/lmd_matched_h5/K/A/K/TRKAKBV128F92C54C4.h5",
"artist_name": "Panpipes",
"artist_id": "AR10V391187B9956D5",
"artist_terms": "['instrumental pop', 'irish', 'dub', 'bass', 'romantic', 'piano', 'classical', 'beats', 'gospel', 'breakbeat']",
"artist_terms_freq": "[1.0, 0.5356453590462391, 0.417159379090211, 0.14231865839066443, 0.13104449038569524, 0.16840490884142095, 0.20277971591330438, 0.08034956140736914, 0.050694928978326094, 0.08034956140736914]",
"artist_terms_weight": "[1.0, 0.6076929575413968, 0.47662500033690725, 0.32704986107001804, 0.3067420556663531, 0.28948025327774074, 0.28740571054190966, 0.283089441033311, 0.2704191626692792, 0.25834653652191586]",
"duration": 225.59302,
"artist_longitude": NaN,
"artist_latitude": NaN,
"artist_location": NaN,
"artist_mbid": "cb73b1da-72b4-492b-9e0f-75830f52a657",
"energy": 0.0,
"loudness": -16.465,
"tempo": 94.927,
"year": 0,
"danceability": 0.0,
"song_hotttnesss": NaN,
"artist_mbtags": "[]",
"key": 7,
"mode": 1,
"time_signature": 4,
"audio_md5": "cfe0194b112e9431bfb410499ac254a9",
"captions": {
"General description": "The track is an instrumental rendition featuring the soothing, airy tones of pan flutes, reinterpreting a classic song with a melody that evokes the laid-back, festive atmosphere of Southern American folk music.",
"Vibe": "The track exudes a relaxed, earthy ambience with its soothing flute melodies, evoking the tranquil and festive spirit of a southern swamp-side gathering.",
"Arrangement": "The arrangement is a soothing rendition featuring the mellow, airy tones of the pan flute accompanied by gentle, rhythmic acoustic instrumentation that evokes a tranquil ambiance reminiscent of the song's southern roots.",
"Production": "The production style features smooth, melodic wind instrumentation that captures a serene and soothing ambiance, reminiscent of traditional folk melodies played on a pan flute, lending an air of tranquility and a touch of cultural heritage to the listening experience.",
"AI instruction": "Please generate a cheerful, upbeat melody with a prominent pan flute presence that evokes the feeling of a lively gathering in a southern Louisiana bayou, with a rhythm that\u2019s perfect for dancing and a hint of Cajun spice.",
"Movie scene": "Under a vibrant sunset, a jubilant group of friends sets out on a rustic boat, laughter mixing with sizzling sounds from a grill, as they weave through the marshes of the Louisiana bayou, celebrating their shared love for the rich Cajun culture."
}
},
// {
// "Unnamed: 0": 21674,
// "track_id": "TRXTTPP128F92F5595",
// "song_id": "SOFJTFD12A8C144C1D",
// "7digital_id": 6800628,
// "title": "Hows About That Then",
// "hd5_fp": "../datasets/lmd/lmd_matched_h5/X/T/T/TRXTTPP128F92F5595.h5",
// "artist_name": "Ronan O Snodaigh",
// "artist_id": "AR0602Z1187FB45281",
// "artist_terms": "['world music', 'singer-songwriter', 'los angeles', 'indie', 'folk', 'irish', 'ireland']",
// "artist_terms_freq": "[1.0, 1.0, 0.637310509710926, 0.9081358635462201, 0.8598714692640943, 0.6454798789539192, 0.41947783194930677]",
// "artist_terms_weight": "[1.0, 0.9071219740848139, 0.8283275802038836, 0.7750297554688214, 0.7750251355227831, 0.7750053096529046, 0.6595001719744364]",
// "duration": 11.78077,
// "artist_longitude": NaN,
// "artist_latitude": NaN,
// "artist_location": NaN,
// "artist_mbid": "f980fef0-2093-48fb-ac04-5129dfd78cfe",
// "energy": 0.0,
// "loudness": -15.654,
// "tempo": 48.021,
// "year": 0,
// "danceability": 0.0,
// "song_hotttnesss": NaN,
// "artist_mbtags": "[]",
// "key": 3,
// "mode": 1,
// "time_signature": 4,
// "audio_md5": "617dba357d7f55324d2479ba424763ba",
// "captions": {
// "General description": "The song is an upbeat, rhythmic track featuring a blend of contemporary folk and traditional Irish musical elements, characterized by its catchy melody and the unique vocal stylings of its lead singer.",
// "Vibe": "The track exudes an eclectic and mellow energy, blending traditional Irish folk elements with a whimsical and soothing rhythm that invites the listener to unwind in its earthy, melodic embrace.",
// "Arrangement": "The composition features an eclectic blend of Irish traditional music elements with contemporary instrumentation, characterized by a rhythmic, upbeat tempo, melodic string accents, and distinct, spirited vocals anchoring the arrangement.",
// "Production": "The track features an eclectic blend of Irish folk instruments, with a rhythmic undercurrent, whimsical melodies, and earthy vocals that create a contemporary yet traditional Celtic soundscape.",
// "AI instruction": "Generate a playful and rhythmic melody infused with Irish folk elements, incorporating the sounds of traditional instruments like the bodhr\u00e1n and fiddle, complementing an upbeat and whimsical lyrical delivery.",
// "Movie scene": "A carefree protagonist meanders through a bustling farmers market, sampling fruits and exchanging laughs with vendors, all while the high-spirited tune underscores their every whimsical interaction."
// }
// },
{
"Unnamed: 0": 19022,
"track_id": "TRDWWKK128F934B485",
"song_id": "SOMXOCG12AB0182406",
"7digital_id": 5715320,
"title": "Throwing My Life Away",
"hd5_fp": "../datasets/lmd/lmd_matched_h5/D/W/W/TRDWWKK128F934B485.h5",
"artist_name": "Norther",
"artist_id": "ARGY9EQ1187B996E1A",
"artist_terms": "['heavy metal', 'metal', 'power metal', 'scandinavian metal', 'melodic death metal', 'death metal', 'melodic', 'heavy', 'epic', 'psychedelic', 'aggressive', 'pop', 'punk', 'dark', 'guitar']",
"artist_terms_freq": "[1.0, 0.8666986144691488, 0.5529399384295156, 0.40324735421830926, 0.48897081096027134, 0.5735333977672963, 0.3226854904263472, 0.24992038251887308, 0.19190738240773286, 0.3471134217754061, 0.10138866824260384, 0.42591997905733564, 0.35726517811958103, 0.16535779571184814, 0.22129682218374339]",
"artist_terms_weight": "[1.0, 0.8126097728390798, 0.6990415493681507, 0.6707779615277858, 0.6570274104155719, 0.6439509629209679, 0.5389248077897055, 0.527685905722698, 0.4837223214593912, 0.44770091978229015, 0.4263102412775661, 0.42617641815549084, 0.3947206784471008, 0.39343388082297376, 0.3933223603361281]",
"duration": 188.02893,
"artist_longitude": NaN,
"artist_latitude": NaN,
"artist_location": "Espoo/Helsinki",
"artist_mbid": "313a0007-b9d3-4036-921a-ce311f9795ad",
"energy": 0.0,
"loudness": -3.334,
"tempo": 190.037,
"year": 2006,
"danceability": 0.0,
"song_hotttnesss": 0.6070366907455167,
"artist_mbtags": "['finnish', 'melodic death metal', 'metal']",
"key": 2,
"mode": 1,
"time_signature": 4,
"audio_md5": "67789addc131eabe6769b85a1e3af636",
"captions": {
"General description": "The track is a melodic death metal song characterized by aggressive guitar riffs, fast-paced drumming, harsh vocals, and melancholic lyrics about personal struggles and existential despair.",
"Vibe": "The track exudes an intense and melancholic energy through its melodic death metal style, combining aggressive guitar riffs and double bass drumming with somber lyrical themes and powerful vocal delivery.",
"Arrangement": "The arrangement features a high-energy blend of melodic death metal with fast-paced guitar riffs, relentless double bass drumming, growling vocals contrasted by occasional clean choruses, and elements of symphonic keyboards providing a dramatic backdrop to the driving instrumentation.",
"Production": "The production style is characterized by aggressive, fast-paced melodic death metal with double bass drumming, intricate guitar riffs, growled vocals, and layers of synth-work that create an intense, yet melodic soundscape.",
"AI instruction": "Generate a melodic death metal track with fast-paced guitar riffs, powerful double bass drumming, and a blend of harsh and clean vocals, evoking the emotive intensity of a somber personal struggle.",
"Movie scene": "In a torrential downpour, a brooding protagonist rides a roaring motorcycle down a desolate highway, reflecting on a series of life-altering mistakes, each mile further entrenching their sense of despair and determination."
}
},