-
Notifications
You must be signed in to change notification settings - Fork 0
/
audio_qa.csv
We can't make this file beautiful and searchable because it's too large.
4387 lines (4387 loc) · 930 KB
/
audio_qa.csv
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
,audio_path,split,Q,A
0,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_casadesus.wav,test,How would you describe this performance?,"slow, sad, clear phrasing"
1,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_casadesus.wav,test,What kind of music is this piece and who is the composer?,This is a passage from Beethoven's sonata.
2,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_casadesus.wav,test,"How would you rate the difficulty of this piece, in a scale of 9?",6
3,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_casadesus.wav,test,How would you describe this performance?,"soft, tender"
4,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_casadesus.wav,test,What kind of music is this piece and who is the composer?,This is a passage from Beethoven's sonata.
5,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_casadesus.wav,test,"How would you rate the difficulty of this piece, in a scale of 9?",6
6,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_casadesus.wav,test,How would you describe this performance?,ordinary
7,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_casadesus.wav,test,What kind of music is this piece and who is the composer?,This is a passage from Beethoven's sonata.
8,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_casadesus.wav,test,"How would you rate the difficulty of this piece, in a scale of 9?",6
9,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_casadesus.wav,test,How would you assess this student performance?,"Sorry, but this piece sounds like a virtuoso performance. I would describe it as pacified."
10,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_casadesus.wav,test,What kind of music is this piece and who is the composer?,This is a passage from Beethoven's sonata.
11,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_casadesus.wav,test,"How would you rate the difficulty of this piece, in a scale of 9?",6
12,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_casadesus.wav,test,How would you assess this student performance?,"Sorry, but this piece sounds like a virtuoso performance. I would describe it as blank."
13,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_casadesus.wav,test,What kind of music is this piece and who is the composer?,This is a passage from Beethoven's sonata.
14,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_casadesus.wav,test,"How would you rate the difficulty of this piece, in a scale of 9?",6
15,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_casadesus.wav,test,How would you describe this performance?,fragile
16,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_casadesus.wav,test,What kind of music is this piece and who is the composer?,This is a passage from Beethoven's sonata.
17,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_casadesus.wav,test,"How would you rate the difficulty of this piece, in a scale of 9?",6
18,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_casadesus.wav,test,How would you assess this student performance?,"Sorry, but this piece sounds like a virtuoso performance. I would describe it as slow, sameness, loud, soft."
19,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_casadesus.wav,test,What kind of music is this piece and who is the composer?,This is a passage from Beethoven's sonata.
20,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_casadesus.wav,test,"How would you rate the difficulty of this piece, in a scale of 9?",6
21,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_casadesus.wav,test,How would you assess this student performance?,"Sorry, but this piece sounds like a virtuoso performance. I would describe it as dull, rough, unclear."
22,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_casadesus.wav,test,What kind of music is this piece and who is the composer?,This is a passage from Beethoven's sonata.
23,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_casadesus.wav,test,"How would you rate the difficulty of this piece, in a scale of 9?",6
24,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_casadesus.wav,test,How would you assess this student performance?,"Sorry, but this piece sounds like a virtuoso performance. I would describe it as muted, discreet."
25,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_casadesus.wav,test,What kind of music is this piece and who is the composer?,This is a passage from Beethoven's sonata.
26,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_casadesus.wav,test,"How would you rate the difficulty of this piece, in a scale of 9?",6
27,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_casadesus.wav,test,How would you assess this student performance?,"Sorry, but this piece sounds like a virtuoso performance. I would describe it as very emotional."
28,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_casadesus.wav,test,What kind of music is this piece and who is the composer?,This is a passage from Beethoven's sonata.
29,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_casadesus.wav,test,"How would you rate the difficulty of this piece, in a scale of 9?",6
30,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_casadesus.wav,test,How would you describe this performance?,"classy, straight, careful"
31,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_casadesus.wav,test,What kind of music is this piece and who is the composer?,This is a passage from Beethoven's sonata.
32,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_casadesus.wav,test,"How would you rate the difficulty of this piece, in a scale of 9?",6
33,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_casadesus.wav,test,How would you assess this student performance?,"Sorry, but this piece sounds like a virtuoso performance. I would describe it as expressive, differentiated."
34,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_casadesus.wav,test,What kind of music is this piece and who is the composer?,This is a passage from Beethoven's sonata.
35,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_casadesus.wav,test,"How would you rate the difficulty of this piece, in a scale of 9?",6
36,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_casadesus.wav,test,How would you assess this student performance?,"Sorry, but this piece sounds like a virtuoso performance. I would describe it as restrained."
37,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_casadesus.wav,test,What kind of music is this piece and who is the composer?,This is a passage from Beethoven's sonata.
38,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_casadesus.wav,test,"How would you rate the difficulty of this piece, in a scale of 9?",6
39,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_casadesus.wav,test,How would you describe this performance?,"delicate, soft, tender, even, calm"
40,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_casadesus.wav,test,What kind of music is this piece and who is the composer?,This is a passage from Beethoven's sonata.
41,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_casadesus.wav,test,"How would you rate the difficulty of this piece, in a scale of 9?",6
42,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_casadesus.wav,test,How would you assess this student performance?,"Sorry, but this piece sounds like a virtuoso performance. I would describe it as very nice, expressive, not very dynamic."
43,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_casadesus.wav,test,What kind of music is this piece and who is the composer?,This is a passage from Beethoven's sonata.
44,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_casadesus.wav,test,"How would you rate the difficulty of this piece, in a scale of 9?",6
45,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_casadesus.wav,test,How would you describe this performance?,"latent, desperate"
46,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_casadesus.wav,test,What kind of music is this piece and who is the composer?,This is a passage from Beethoven's sonata.
47,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_casadesus.wav,test,"How would you rate the difficulty of this piece, in a scale of 9?",6
48,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_casadesus.wav,test,How would you describe this performance?,"breathy, warm"
49,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_casadesus.wav,test,What kind of music is this piece and who is the composer?,This is a passage from Beethoven's sonata.
50,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_casadesus.wav,test,"How would you rate the difficulty of this piece, in a scale of 9?",6
51,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_casadesus.wav,test,How would you assess this student performance?,"Sorry, but this piece sounds like a virtuoso performance. I would describe it as the arpeggios are too loud."
52,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_casadesus.wav,test,What kind of music is this piece and who is the composer?,This is a passage from Beethoven's sonata.
53,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_casadesus.wav,test,"How would you rate the difficulty of this piece, in a scale of 9?",6
54,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_casadesus.wav,test,How would you assess this student performance?,"Sorry, but this piece sounds like a virtuoso performance. I would describe it as old recording, slow tempo, sounds like an old pianist playing, fragile, wise."
55,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_casadesus.wav,test,What kind of music is this piece and who is the composer?,This is a passage from Beethoven's sonata.
56,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_casadesus.wav,test,"How would you rate the difficulty of this piece, in a scale of 9?",6
57,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_casadesus.wav,test,How would you describe this performance?,"old recording with noise, delicately played, very restrained, musical, sounds like the model of no 2"
58,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_casadesus.wav,test,What kind of music is this piece and who is the composer?,This is a passage from Beethoven's sonata.
59,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_casadesus.wav,test,"How would you rate the difficulty of this piece, in a scale of 9?",6
60,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_casadesus.wav,test,How would you assess this student performance?,"Sorry, but this piece sounds like a virtuoso performance. I would describe it as flowing, mobile, deliberate, calm, rounded."
61,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_casadesus.wav,test,What kind of music is this piece and who is the composer?,This is a passage from Beethoven's sonata.
62,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_casadesus.wav,test,"How would you rate the difficulty of this piece, in a scale of 9?",6
63,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_casadesus.wav,test,How would you assess this student performance?,"Sorry, but this piece sounds like a virtuoso performance. I would describe it as deliberate, withdrawn."
64,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_casadesus.wav,test,What kind of music is this piece and who is the composer?,This is a passage from Beethoven's sonata.
65,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_casadesus.wav,test,"How would you rate the difficulty of this piece, in a scale of 9?",6
66,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_casadesus.wav,test,How would you describe this performance?,"a bit cheerful, light"
67,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_casadesus.wav,test,What kind of music is this piece and who is the composer?,This is a passage from Beethoven's sonata.
68,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_casadesus.wav,test,"How would you rate the difficulty of this piece, in a scale of 9?",6
69,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_casadesus.wav,test,How would you assess this student performance?,"Sorry, but this piece sounds like a virtuoso performance. I would describe it as bit too fast, very light."
70,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_casadesus.wav,test,What kind of music is this piece and who is the composer?,This is a passage from Beethoven's sonata.
71,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_casadesus.wav,test,"How would you rate the difficulty of this piece, in a scale of 9?",6
72,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_casadesus.wav,test,How would you assess this student performance?,"Sorry, but this piece sounds like a virtuoso performance. I would describe it as monotonous, not dynamic."
73,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_casadesus.wav,test,What kind of music is this piece and who is the composer?,This is a passage from Beethoven's sonata.
74,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_casadesus.wav,test,"How would you rate the difficulty of this piece, in a scale of 9?",6
75,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_casadesus.wav,test,How would you assess this student performance?,"Sorry, but this piece sounds like a virtuoso performance. I would describe it as beautiful sound, one hears the metronome in the thirds."
76,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_casadesus.wav,test,What kind of music is this piece and who is the composer?,This is a passage from Beethoven's sonata.
77,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_casadesus.wav,test,"How would you rate the difficulty of this piece, in a scale of 9?",6
78,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_casadesus.wav,test,How would you assess this student performance?,"Sorry, but this piece sounds like a virtuoso performance. I would describe it as solemn."
79,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_casadesus.wav,test,What kind of music is this piece and who is the composer?,This is a passage from Beethoven's sonata.
80,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_casadesus.wav,test,"How would you rate the difficulty of this piece, in a scale of 9?",6
81,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_casadesus.wav,test,How would you assess this student performance?,"Sorry, but this piece sounds like a virtuoso performance. I would describe it as beautiful."
82,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_casadesus.wav,test,What kind of music is this piece and who is the composer?,This is a passage from Beethoven's sonata.
83,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_casadesus.wav,test,"How would you rate the difficulty of this piece, in a scale of 9?",6
84,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_casadesus.wav,test,How would you assess this student performance?,"Sorry, but this piece sounds like a virtuoso performance. I would describe it as peaceful."
85,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_casadesus.wav,test,What kind of music is this piece and who is the composer?,This is a passage from Beethoven's sonata.
86,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_casadesus.wav,test,"How would you rate the difficulty of this piece, in a scale of 9?",6
87,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_casadesus.wav,test,How would you describe this performance?,invisible
88,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_casadesus.wav,test,What kind of music is this piece and who is the composer?,This is a passage from Beethoven's sonata.
89,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_casadesus.wav,test,"How would you rate the difficulty of this piece, in a scale of 9?",6
90,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_casadesus.wav,test,How would you assess this student performance?,"Sorry, but this piece sounds like a virtuoso performance. I would describe it as good performance, bad sound."
91,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_casadesus.wav,test,What kind of music is this piece and who is the composer?,This is a passage from Beethoven's sonata.
92,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_casadesus.wav,test,"How would you rate the difficulty of this piece, in a scale of 9?",6
93,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_casadesus.wav,test,How would you describe this performance?,"expressive, dark "
94,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_casadesus.wav,test,What kind of music is this piece and who is the composer?,This is a passage from Beethoven's sonata.
95,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_casadesus.wav,test,"How would you rate the difficulty of this piece, in a scale of 9?",6
96,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_casadesus.wav,test,How would you assess this student performance?,"Sorry, but this piece sounds like a virtuoso performance. I would describe it as old, present, appealing."
97,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_casadesus.wav,test,What kind of music is this piece and who is the composer?,This is a passage from Beethoven's sonata.
98,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_casadesus.wav,test,"How would you rate the difficulty of this piece, in a scale of 9?",6
99,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_casadesus.wav,test,How would you describe this performance?,"old fashioned, with a dramatic flavor "
100,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_casadesus.wav,test,What kind of music is this piece and who is the composer?,This is a passage from Beethoven's sonata.
101,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_casadesus.wav,test,"How would you rate the difficulty of this piece, in a scale of 9?",6
102,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_lazic.wav,train,How would you describe this performance?,"very quiet, estranged"
103,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_lazic.wav,train,What kind of music is this piece and who is the composer?,This is a passage from Beethoven's sonata.
104,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_lazic.wav,train,"How would you rate the difficulty of this piece, in a scale of 9?",6
105,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_lazic.wav,train,How would you describe this performance?,delicate
106,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_lazic.wav,train,What kind of music is this piece and who is the composer?,This is a passage from Beethoven's sonata.
107,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_lazic.wav,train,"How would you rate the difficulty of this piece, in a scale of 9?",6
108,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_lazic.wav,train,How would you assess this student performance?,"Sorry, but this piece sounds like a virtuoso performance. I would describe it as quiet, calm."
109,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_lazic.wav,train,What kind of music is this piece and who is the composer?,This is a passage from Beethoven's sonata.
110,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_lazic.wav,train,"How would you rate the difficulty of this piece, in a scale of 9?",6
111,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_lazic.wav,train,How would you describe this performance?,strict
112,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_lazic.wav,train,What kind of music is this piece and who is the composer?,This is a passage from Beethoven's sonata.
113,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_lazic.wav,train,"How would you rate the difficulty of this piece, in a scale of 9?",6
114,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_lazic.wav,train,How would you assess this student performance?,"Sorry, but this piece sounds like a virtuoso performance. I would describe it as fast, melodious."
115,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_lazic.wav,train,What kind of music is this piece and who is the composer?,This is a passage from Beethoven's sonata.
116,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_lazic.wav,train,"How would you rate the difficulty of this piece, in a scale of 9?",6
117,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_lazic.wav,train,How would you assess this student performance?,"Sorry, but this piece sounds like a virtuoso performance. I would describe it as tender."
118,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_lazic.wav,train,What kind of music is this piece and who is the composer?,This is a passage from Beethoven's sonata.
119,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_lazic.wav,train,"How would you rate the difficulty of this piece, in a scale of 9?",6
120,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_lazic.wav,train,How would you assess this student performance?,"Sorry, but this piece sounds like a virtuoso performance. I would describe it as soft, tender."
121,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_lazic.wav,train,What kind of music is this piece and who is the composer?,This is a passage from Beethoven's sonata.
122,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_lazic.wav,train,"How would you rate the difficulty of this piece, in a scale of 9?",6
123,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_lazic.wav,train,How would you assess this student performance?,"Sorry, but this piece sounds like a virtuoso performance. I would describe it as light, flowing, singing, pleasant tempo."
124,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_lazic.wav,train,What kind of music is this piece and who is the composer?,This is a passage from Beethoven's sonata.
125,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_lazic.wav,train,"How would you rate the difficulty of this piece, in a scale of 9?",6
126,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_lazic.wav,train,How would you assess this student performance?,"Sorry, but this piece sounds like a virtuoso performance. I would describe it as unremarkable."
127,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_lazic.wav,train,What kind of music is this piece and who is the composer?,This is a passage from Beethoven's sonata.
128,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_lazic.wav,train,"How would you rate the difficulty of this piece, in a scale of 9?",6
129,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_lazic.wav,train,How would you assess this student performance?,"Sorry, but this piece sounds like a virtuoso performance. I would describe it as dreamy, a bit arty but still okay,."
130,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_lazic.wav,train,What kind of music is this piece and who is the composer?,This is a passage from Beethoven's sonata.
131,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_lazic.wav,train,"How would you rate the difficulty of this piece, in a scale of 9?",6
132,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_lazic.wav,train,How would you assess this student performance?,"Sorry, but this piece sounds like a virtuoso performance. I would describe it as fast, apathetically, withheld."
133,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_lazic.wav,train,What kind of music is this piece and who is the composer?,This is a passage from Beethoven's sonata.
134,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_lazic.wav,train,"How would you rate the difficulty of this piece, in a scale of 9?",6
135,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_lazic.wav,train,How would you assess this student performance?,"Sorry, but this piece sounds like a virtuoso performance. I would describe it as calm, expressive, steady."
136,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_lazic.wav,train,What kind of music is this piece and who is the composer?,This is a passage from Beethoven's sonata.
137,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_lazic.wav,train,"How would you rate the difficulty of this piece, in a scale of 9?",6
138,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_lazic.wav,train,How would you assess this student performance?,"Sorry, but this piece sounds like a virtuoso performance. I would describe it as nicely understated."
139,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_lazic.wav,train,What kind of music is this piece and who is the composer?,This is a passage from Beethoven's sonata.
140,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_lazic.wav,train,"How would you rate the difficulty of this piece, in a scale of 9?",6
141,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_lazic.wav,train,How would you assess this student performance?,"Sorry, but this piece sounds like a virtuoso performance. I would describe it as soft, tender, delicate, even, sad."
142,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_lazic.wav,train,What kind of music is this piece and who is the composer?,This is a passage from Beethoven's sonata.
143,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_lazic.wav,train,"How would you rate the difficulty of this piece, in a scale of 9?",6
144,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_lazic.wav,train,How would you describe this performance?,"pretty, accurate, not much dynamics"
145,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_lazic.wav,train,What kind of music is this piece and who is the composer?,This is a passage from Beethoven's sonata.
146,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_lazic.wav,train,"How would you rate the difficulty of this piece, in a scale of 9?",6
147,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_lazic.wav,train,How would you assess this student performance?,"Sorry, but this piece sounds like a virtuoso performance. I would describe it as calm, sensuous."
148,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_lazic.wav,train,What kind of music is this piece and who is the composer?,This is a passage from Beethoven's sonata.
149,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_lazic.wav,train,"How would you rate the difficulty of this piece, in a scale of 9?",6
150,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_lazic.wav,train,How would you describe this performance?,"mellow, gentle"
151,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_lazic.wav,train,What kind of music is this piece and who is the composer?,This is a passage from Beethoven's sonata.
152,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_lazic.wav,train,"How would you rate the difficulty of this piece, in a scale of 9?",6
153,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_lazic.wav,train,How would you assess this student performance?,"Sorry, but this piece sounds like a virtuoso performance. I would describe it as melody should be more pronounced."
154,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_lazic.wav,train,What kind of music is this piece and who is the composer?,This is a passage from Beethoven's sonata.
155,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_lazic.wav,train,"How would you rate the difficulty of this piece, in a scale of 9?",6
156,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_lazic.wav,train,How would you assess this student performance?,"Sorry, but this piece sounds like a virtuoso performance. I would describe it as fast and soft, a very nice atmosphere, but remains somewhat distant."
157,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_lazic.wav,train,What kind of music is this piece and who is the composer?,This is a passage from Beethoven's sonata.
158,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_lazic.wav,train,"How would you rate the difficulty of this piece, in a scale of 9?",6
159,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_lazic.wav,train,How would you describe this performance?,"very regular, delicately played, very restrained, is of automatic character, but nevertheless musically interpreted"
160,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_lazic.wav,train,What kind of music is this piece and who is the composer?,This is a passage from Beethoven's sonata.
161,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_lazic.wav,train,"How would you rate the difficulty of this piece, in a scale of 9?",6
162,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_lazic.wav,train,How would you assess this student performance?,"Sorry, but this piece sounds like a virtuoso performance. I would describe it as flowing, mobile, harmonious, introverted."
163,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_lazic.wav,train,What kind of music is this piece and who is the composer?,This is a passage from Beethoven's sonata.
164,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_lazic.wav,train,"How would you rate the difficulty of this piece, in a scale of 9?",6
165,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_lazic.wav,train,How would you assess this student performance?,"Sorry, but this piece sounds like a virtuoso performance. I would describe it as subtle."
166,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_lazic.wav,train,What kind of music is this piece and who is the composer?,This is a passage from Beethoven's sonata.
167,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_lazic.wav,train,"How would you rate the difficulty of this piece, in a scale of 9?",6
168,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_lazic.wav,train,How would you describe this performance?,"calm, with a hint of sadness, very proud, a bit heavy, fighting for something positive"
169,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_lazic.wav,train,What kind of music is this piece and who is the composer?,This is a passage from Beethoven's sonata.
170,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_lazic.wav,train,"How would you rate the difficulty of this piece, in a scale of 9?",6
171,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_lazic.wav,train,How would you describe this performance?,"too fast, bit too silent"
172,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_lazic.wav,train,What kind of music is this piece and who is the composer?,This is a passage from Beethoven's sonata.
173,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_lazic.wav,train,"How would you rate the difficulty of this piece, in a scale of 9?",6
174,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_lazic.wav,train,How would you describe this performance?,"soft, professional"
175,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_lazic.wav,train,What kind of music is this piece and who is the composer?,This is a passage from Beethoven's sonata.
176,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_lazic.wav,train,"How would you rate the difficulty of this piece, in a scale of 9?",6
177,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_lazic.wav,train,How would you assess this student performance?,"Sorry, but this piece sounds like a virtuoso performance. I would describe it as beautifully intimate, eerie."
178,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_lazic.wav,train,What kind of music is this piece and who is the composer?,This is a passage from Beethoven's sonata.
179,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_lazic.wav,train,"How would you rate the difficulty of this piece, in a scale of 9?",6
180,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_lazic.wav,train,How would you assess this student performance?,"Sorry, but this piece sounds like a virtuoso performance. I would describe it as nice."
181,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_lazic.wav,train,What kind of music is this piece and who is the composer?,This is a passage from Beethoven's sonata.
182,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_lazic.wav,train,"How would you rate the difficulty of this piece, in a scale of 9?",6
183,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_lazic.wav,train,How would you assess this student performance?,"Sorry, but this piece sounds like a virtuoso performance. I would describe it as tender, emotional."
184,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_lazic.wav,train,What kind of music is this piece and who is the composer?,This is a passage from Beethoven's sonata.
185,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_lazic.wav,train,"How would you rate the difficulty of this piece, in a scale of 9?",6
186,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_lazic.wav,train,How would you describe this performance?,crystal
187,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_lazic.wav,train,What kind of music is this piece and who is the composer?,This is a passage from Beethoven's sonata.
188,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_lazic.wav,train,"How would you rate the difficulty of this piece, in a scale of 9?",6
189,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_lazic.wav,train,How would you describe this performance?,invisible
190,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_lazic.wav,train,What kind of music is this piece and who is the composer?,This is a passage from Beethoven's sonata.
191,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_lazic.wav,train,"How would you rate the difficulty of this piece, in a scale of 9?",6
192,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_lazic.wav,train,How would you describe this performance?,"soft, nice"
193,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_lazic.wav,train,What kind of music is this piece and who is the composer?,This is a passage from Beethoven's sonata.
194,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_lazic.wav,train,"How would you rate the difficulty of this piece, in a scale of 9?",6
195,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_lazic.wav,train,How would you assess this student performance?,"Sorry, but this piece sounds like a virtuoso performance. I would describe it as mysterious, expressive ."
196,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_lazic.wav,train,What kind of music is this piece and who is the composer?,This is a passage from Beethoven's sonata.
197,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_lazic.wav,train,"How would you rate the difficulty of this piece, in a scale of 9?",6
198,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_lazic.wav,train,How would you assess this student performance?,"Sorry, but this piece sounds like a virtuoso performance. I would describe it as shy, pale, distant, cold."
199,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_lazic.wav,train,What kind of music is this piece and who is the composer?,This is a passage from Beethoven's sonata.
200,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_lazic.wav,train,"How would you rate the difficulty of this piece, in a scale of 9?",6
201,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_lazic.wav,train,How would you assess this student performance?,"Sorry, but this piece sounds like a virtuoso performance. I would describe it as sugar-coated, sophisticated, cool, calm, melodic."
202,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_lazic.wav,train,What kind of music is this piece and who is the composer?,This is a passage from Beethoven's sonata.
203,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_lazic.wav,train,"How would you rate the difficulty of this piece, in a scale of 9?",6
204,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_lim.wav,test,How would you assess this student performance?,"Sorry, but this piece sounds like a virtuoso performance. I would describe it as soft."
205,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_lim.wav,test,What kind of music is this piece and who is the composer?,This is a passage from Beethoven's sonata.
206,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_lim.wav,test,"How would you rate the difficulty of this piece, in a scale of 9?",6
207,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_lim.wav,test,How would you describe this performance?,dramatic
208,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_lim.wav,test,What kind of music is this piece and who is the composer?,This is a passage from Beethoven's sonata.
209,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_lim.wav,test,"How would you rate the difficulty of this piece, in a scale of 9?",6
210,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_lim.wav,test,How would you assess this student performance?,"Sorry, but this piece sounds like a virtuoso performance. I would describe it as energetic."
211,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_lim.wav,test,What kind of music is this piece and who is the composer?,This is a passage from Beethoven's sonata.
212,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_lim.wav,test,"How would you rate the difficulty of this piece, in a scale of 9?",6
213,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_lim.wav,test,How would you assess this student performance?,"Sorry, but this piece sounds like a virtuoso performance. I would describe it as furious."
214,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_lim.wav,test,What kind of music is this piece and who is the composer?,This is a passage from Beethoven's sonata.
215,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_lim.wav,test,"How would you rate the difficulty of this piece, in a scale of 9?",6
216,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_lim.wav,test,How would you describe this performance?,stuttering
217,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_lim.wav,test,What kind of music is this piece and who is the composer?,This is a passage from Beethoven's sonata.
218,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_lim.wav,test,"How would you rate the difficulty of this piece, in a scale of 9?",6
219,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_lim.wav,test,How would you describe this performance?,sincere
220,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_lim.wav,test,What kind of music is this piece and who is the composer?,This is a passage from Beethoven's sonata.
221,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_lim.wav,test,"How would you rate the difficulty of this piece, in a scale of 9?",6
222,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_lim.wav,test,How would you assess this student performance?,"Sorry, but this piece sounds like a virtuoso performance. I would describe it as loud, fast, soft, dynamic, dreamy."
223,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_lim.wav,test,What kind of music is this piece and who is the composer?,This is a passage from Beethoven's sonata.
224,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_lim.wav,test,"How would you rate the difficulty of this piece, in a scale of 9?",6
225,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_lim.wav,test,How would you describe this performance?,"hard, chopped, firm"
226,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_lim.wav,test,What kind of music is this piece and who is the composer?,This is a passage from Beethoven's sonata.
227,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_lim.wav,test,"How would you rate the difficulty of this piece, in a scale of 9?",6
228,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_lim.wav,test,How would you assess this student performance?,"Sorry, but this piece sounds like a virtuoso performance. I would describe it as desire."
229,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_lim.wav,test,What kind of music is this piece and who is the composer?,This is a passage from Beethoven's sonata.
230,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_lim.wav,test,"How would you rate the difficulty of this piece, in a scale of 9?",6
231,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_lim.wav,test,How would you assess this student performance?,"Sorry, but this piece sounds like a virtuoso performance. I would describe it as too much reverb,."
232,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_lim.wav,test,What kind of music is this piece and who is the composer?,This is a passage from Beethoven's sonata.
233,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_lim.wav,test,"How would you rate the difficulty of this piece, in a scale of 9?",6
234,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_lim.wav,test,How would you describe this performance?,"fast, emotional, erratic"
235,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_lim.wav,test,What kind of music is this piece and who is the composer?,This is a passage from Beethoven's sonata.
236,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_lim.wav,test,"How would you rate the difficulty of this piece, in a scale of 9?",6
237,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_lim.wav,test,How would you assess this student performance?,"Sorry, but this piece sounds like a virtuoso performance. I would describe it as hasty, rushed, inappropriate."
238,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_lim.wav,test,What kind of music is this piece and who is the composer?,This is a passage from Beethoven's sonata.
239,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_lim.wav,test,"How would you rate the difficulty of this piece, in a scale of 9?",6
240,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_lim.wav,test,How would you assess this student performance?,"Sorry, but this piece sounds like a virtuoso performance. I would describe it as aggressive."
241,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_lim.wav,test,What kind of music is this piece and who is the composer?,This is a passage from Beethoven's sonata.
242,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_lim.wav,test,"How would you rate the difficulty of this piece, in a scale of 9?",6
243,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_lim.wav,test,How would you describe this performance?,"less steady rhythmically, dynamic, expressive, interesting, complex"
244,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_lim.wav,test,What kind of music is this piece and who is the composer?,This is a passage from Beethoven's sonata.
245,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_lim.wav,test,"How would you rate the difficulty of this piece, in a scale of 9?",6
246,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_lim.wav,test,How would you describe this performance?,"too fast, rushed, doesn’t let the piece breathe, daring, dynamic"
247,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_lim.wav,test,What kind of music is this piece and who is the composer?,This is a passage from Beethoven's sonata.
248,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_lim.wav,test,"How would you rate the difficulty of this piece, in a scale of 9?",6
249,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_lim.wav,test,How would you describe this performance?,"hollywoodish, overt"
250,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_lim.wav,test,What kind of music is this piece and who is the composer?,This is a passage from Beethoven's sonata.
251,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_lim.wav,test,"How would you rate the difficulty of this piece, in a scale of 9?",6
252,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_lim.wav,test,How would you assess this student performance?,"Sorry, but this piece sounds like a virtuoso performance. I would describe it as passionate."
253,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_lim.wav,test,What kind of music is this piece and who is the composer?,This is a passage from Beethoven's sonata.
254,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_lim.wav,test,"How would you rate the difficulty of this piece, in a scale of 9?",6
255,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_lim.wav,test,How would you assess this student performance?,"Sorry, but this piece sounds like a virtuoso performance. I would describe it as too affected, not continuous."
256,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_lim.wav,test,What kind of music is this piece and who is the composer?,This is a passage from Beethoven's sonata.
257,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_lim.wav,test,"How would you rate the difficulty of this piece, in a scale of 9?",6
258,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_lim.wav,test,How would you assess this student performance?,"Sorry, but this piece sounds like a virtuoso performance. I would describe it as excited and agitato, very romantic, high tempo variability."
259,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_lim.wav,test,What kind of music is this piece and who is the composer?,This is a passage from Beethoven's sonata.
260,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_lim.wav,test,"How would you rate the difficulty of this piece, in a scale of 9?",6
261,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_lim.wav,test,How would you assess this student performance?,"Sorry, but this piece sounds like a virtuoso performance. I would describe it as passionate, lively, very musical, determined, appropriate for beethoven's character."
262,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_lim.wav,test,What kind of music is this piece and who is the composer?,This is a passage from Beethoven's sonata.
263,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_lim.wav,test,"How would you rate the difficulty of this piece, in a scale of 9?",6
264,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_lim.wav,test,How would you describe this performance?,"restless, passionate, a lot of rubato, varying tempo"
265,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_lim.wav,test,What kind of music is this piece and who is the composer?,This is a passage from Beethoven's sonata.
266,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_lim.wav,test,"How would you rate the difficulty of this piece, in a scale of 9?",6
267,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_lim.wav,test,How would you assess this student performance?,"Sorry, but this piece sounds like a virtuoso performance. I would describe it as extensive, intensive."
268,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_lim.wav,test,What kind of music is this piece and who is the composer?,This is a passage from Beethoven's sonata.
269,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_lim.wav,test,"How would you rate the difficulty of this piece, in a scale of 9?",6
270,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_lim.wav,test,How would you assess this student performance?,"Sorry, but this piece sounds like a virtuoso performance. I would describe it as romantic, a bit like dancing, heavy rubato, a bit lost in dreams,."
271,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_lim.wav,test,What kind of music is this piece and who is the composer?,This is a passage from Beethoven's sonata.
272,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_lim.wav,test,"How would you rate the difficulty of this piece, in a scale of 9?",6
273,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_lim.wav,test,How would you assess this student performance?,"Sorry, but this piece sounds like a virtuoso performance. I would describe it as changing, surprising."
274,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_lim.wav,test,What kind of music is this piece and who is the composer?,This is a passage from Beethoven's sonata.
275,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_lim.wav,test,"How would you rate the difficulty of this piece, in a scale of 9?",6
276,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_lim.wav,test,How would you assess this student performance?,"Sorry, but this piece sounds like a virtuoso performance. I would describe it as very dynamic, unpredictable, bright."
277,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_lim.wav,test,What kind of music is this piece and who is the composer?,This is a passage from Beethoven's sonata.
278,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_lim.wav,test,"How would you rate the difficulty of this piece, in a scale of 9?",6
279,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_lim.wav,test,How would you describe this performance?,"sea-sick, no pulse, misunderstanding the calm resigned nature of the piece"
280,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_lim.wav,test,What kind of music is this piece and who is the composer?,This is a passage from Beethoven's sonata.
281,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_lim.wav,test,"How would you rate the difficulty of this piece, in a scale of 9?",6
282,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_lim.wav,test,How would you describe this performance?,fast
283,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_lim.wav,test,What kind of music is this piece and who is the composer?,This is a passage from Beethoven's sonata.
284,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_lim.wav,test,"How would you rate the difficulty of this piece, in a scale of 9?",6
285,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_lim.wav,test,How would you assess this student performance?,"Sorry, but this piece sounds like a virtuoso performance. I would describe it as a bit too much."
286,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_lim.wav,test,What kind of music is this piece and who is the composer?,This is a passage from Beethoven's sonata.
287,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_lim.wav,test,"How would you rate the difficulty of this piece, in a scale of 9?",6
288,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_lim.wav,test,How would you assess this student performance?,"Sorry, but this piece sounds like a virtuoso performance. I would describe it as comfortable."
289,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_lim.wav,test,What kind of music is this piece and who is the composer?,This is a passage from Beethoven's sonata.
290,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_lim.wav,test,"How would you rate the difficulty of this piece, in a scale of 9?",6
291,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_lim.wav,test,How would you assess this student performance?,"Sorry, but this piece sounds like a virtuoso performance. I would describe it as too fast."
292,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_lim.wav,test,What kind of music is this piece and who is the composer?,This is a passage from Beethoven's sonata.
293,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_lim.wav,test,"How would you rate the difficulty of this piece, in a scale of 9?",6
294,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_lim.wav,test,How would you describe this performance?,"aggressive, nice"
295,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_lim.wav,test,What kind of music is this piece and who is the composer?,This is a passage from Beethoven's sonata.
296,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_lim.wav,test,"How would you rate the difficulty of this piece, in a scale of 9?",6
297,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_lim.wav,test,How would you assess this student performance?,"Sorry, but this piece sounds like a virtuoso performance. I would describe it as brilliant, fast, virtuoso ."
298,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_lim.wav,test,What kind of music is this piece and who is the composer?,This is a passage from Beethoven's sonata.
299,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_lim.wav,test,"How would you rate the difficulty of this piece, in a scale of 9?",6
300,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_lim.wav,test,How would you assess this student performance?,"Sorry, but this piece sounds like a virtuoso performance. I would describe it as messy, unpredictable, chaotic."
301,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_lim.wav,test,What kind of music is this piece and who is the composer?,This is a passage from Beethoven's sonata.
302,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_lim.wav,test,"How would you rate the difficulty of this piece, in a scale of 9?",6
303,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_lim.wav,test,How would you assess this student performance?,"Sorry, but this piece sounds like a virtuoso performance. I would describe it as a bit self-important, a little rushed, unnecessarily exaggerated."
304,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_lim.wav,test,What kind of music is this piece and who is the composer?,This is a passage from Beethoven's sonata.
305,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_lim.wav,test,"How would you rate the difficulty of this piece, in a scale of 9?",6
306,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_gulda.wav,train,How would you assess this student performance?,"Sorry, but this piece sounds like a virtuoso performance. I would describe it as heavy, slow, non legato, emphasis."
307,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_gulda.wav,train,What kind of music is this piece and who is the composer?,This is a passage from Beethoven's sonata.
308,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_gulda.wav,train,"How would you rate the difficulty of this piece, in a scale of 9?",6
309,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_gulda.wav,train,How would you assess this student performance?,"Sorry, but this piece sounds like a virtuoso performance. I would describe it as brooding, pensive."
310,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_gulda.wav,train,What kind of music is this piece and who is the composer?,This is a passage from Beethoven's sonata.
311,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_gulda.wav,train,"How would you rate the difficulty of this piece, in a scale of 9?",6
312,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_gulda.wav,train,How would you assess this student performance?,"Sorry, but this piece sounds like a virtuoso performance. I would describe it as babbling."
313,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_gulda.wav,train,What kind of music is this piece and who is the composer?,This is a passage from Beethoven's sonata.
314,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_gulda.wav,train,"How would you rate the difficulty of this piece, in a scale of 9?",6
315,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_gulda.wav,train,How would you describe this performance?,tragic
316,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_gulda.wav,train,What kind of music is this piece and who is the composer?,This is a passage from Beethoven's sonata.
317,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_gulda.wav,train,"How would you rate the difficulty of this piece, in a scale of 9?",6
318,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_gulda.wav,train,How would you assess this student performance?,"Sorry, but this piece sounds like a virtuoso performance. I would describe it as hesitant."
319,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_gulda.wav,train,What kind of music is this piece and who is the composer?,This is a passage from Beethoven's sonata.
320,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_gulda.wav,train,"How would you rate the difficulty of this piece, in a scale of 9?",6
321,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_gulda.wav,train,How would you assess this student performance?,"Sorry, but this piece sounds like a virtuoso performance. I would describe it as confession."
322,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_gulda.wav,train,What kind of music is this piece and who is the composer?,This is a passage from Beethoven's sonata.
323,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_gulda.wav,train,"How would you rate the difficulty of this piece, in a scale of 9?",6
324,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_gulda.wav,train,How would you assess this student performance?,"Sorry, but this piece sounds like a virtuoso performance. I would describe it as dynamic, tender, passionate, soft, moving, delicate."
325,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_gulda.wav,train,What kind of music is this piece and who is the composer?,This is a passage from Beethoven's sonata.
326,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_gulda.wav,train,"How would you rate the difficulty of this piece, in a scale of 9?",6
327,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_gulda.wav,train,How would you describe this performance?,"slow, hard, firm"
328,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_gulda.wav,train,What kind of music is this piece and who is the composer?,This is a passage from Beethoven's sonata.
329,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_gulda.wav,train,"How would you rate the difficulty of this piece, in a scale of 9?",6
330,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_gulda.wav,train,How would you assess this student performance?,"Sorry, but this piece sounds like a virtuoso performance. I would describe it as melancholy, subtle."
331,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_gulda.wav,train,What kind of music is this piece and who is the composer?,This is a passage from Beethoven's sonata.
332,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_gulda.wav,train,"How would you rate the difficulty of this piece, in a scale of 9?",6
333,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_gulda.wav,train,How would you assess this student performance?,"Sorry, but this piece sounds like a virtuoso performance. I would describe it as decent, modest, with gravitas, not too overwhelming, finds balance between expressivity and showmanship."
334,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_gulda.wav,train,What kind of music is this piece and who is the composer?,This is a passage from Beethoven's sonata.
335,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_gulda.wav,train,"How would you rate the difficulty of this piece, in a scale of 9?",6
336,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_gulda.wav,train,How would you assess this student performance?,"Sorry, but this piece sounds like a virtuoso performance. I would describe it as dramatic, sostenuto."
337,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_gulda.wav,train,What kind of music is this piece and who is the composer?,This is a passage from Beethoven's sonata.
338,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_gulda.wav,train,"How would you rate the difficulty of this piece, in a scale of 9?",6
339,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_gulda.wav,train,How would you assess this student performance?,"Sorry, but this piece sounds like a virtuoso performance. I would describe it as dramatizing, ponderous."
340,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_gulda.wav,train,What kind of music is this piece and who is the composer?,This is a passage from Beethoven's sonata.
341,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_gulda.wav,train,"How would you rate the difficulty of this piece, in a scale of 9?",6
342,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_gulda.wav,train,How would you describe this performance?,agonizing
343,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_gulda.wav,train,What kind of music is this piece and who is the composer?,This is a passage from Beethoven's sonata.
344,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_gulda.wav,train,"How would you rate the difficulty of this piece, in a scale of 9?",6
345,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_gulda.wav,train,How would you describe this performance?,"slow, intentional, dynamic, even rhythmically sad, emotive"
346,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_gulda.wav,train,What kind of music is this piece and who is the composer?,This is a passage from Beethoven's sonata.
347,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_gulda.wav,train,"How would you rate the difficulty of this piece, in a scale of 9?",6
348,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_gulda.wav,train,How would you describe this performance?,"dynamic, not daring"
349,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_gulda.wav,train,What kind of music is this piece and who is the composer?,This is a passage from Beethoven's sonata.
350,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_gulda.wav,train,"How would you rate the difficulty of this piece, in a scale of 9?",6
351,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_gulda.wav,train,How would you assess this student performance?,"Sorry, but this piece sounds like a virtuoso performance. I would describe it as soaring, breathing."
352,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_gulda.wav,train,What kind of music is this piece and who is the composer?,This is a passage from Beethoven's sonata.
353,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_gulda.wav,train,"How would you rate the difficulty of this piece, in a scale of 9?",6
354,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_gulda.wav,train,How would you assess this student performance?,"Sorry, but this piece sounds like a virtuoso performance. I would describe it as slower, breathy, melodic."
355,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_gulda.wav,train,What kind of music is this piece and who is the composer?,This is a passage from Beethoven's sonata.
356,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_gulda.wav,train,"How would you rate the difficulty of this piece, in a scale of 9?",6
357,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_gulda.wav,train,How would you assess this student performance?,"Sorry, but this piece sounds like a virtuoso performance. I would describe it as too slow, not phrased, beginner."
358,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_gulda.wav,train,What kind of music is this piece and who is the composer?,This is a passage from Beethoven's sonata.
359,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_gulda.wav,train,"How would you rate the difficulty of this piece, in a scale of 9?",6
360,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_gulda.wav,train,How would you assess this student performance?,"Sorry, but this piece sounds like a virtuoso performance. I would describe it as a male interpretation, but still poetic, sounds a bit like gulda."
361,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_gulda.wav,train,What kind of music is this piece and who is the composer?,This is a passage from Beethoven's sonata.
362,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_gulda.wav,train,"How would you rate the difficulty of this piece, in a scale of 9?",6
363,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_gulda.wav,train,How would you describe this performance?,"a somewhat detuned piano, restrained, very musical"
364,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_gulda.wav,train,What kind of music is this piece and who is the composer?,This is a passage from Beethoven's sonata.
365,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_gulda.wav,train,"How would you rate the difficulty of this piece, in a scale of 9?",6
366,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_gulda.wav,train,How would you assess this student performance?,"Sorry, but this piece sounds like a virtuoso performance. I would describe it as marked, tense, sparse, strong."
367,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_gulda.wav,train,What kind of music is this piece and who is the composer?,This is a passage from Beethoven's sonata.
368,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_gulda.wav,train,"How would you rate the difficulty of this piece, in a scale of 9?",6
369,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_gulda.wav,train,How would you assess this student performance?,"Sorry, but this piece sounds like a virtuoso performance. I would describe it as clear, strong."
370,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_gulda.wav,train,What kind of music is this piece and who is the composer?,This is a passage from Beethoven's sonata.
371,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_gulda.wav,train,"How would you rate the difficulty of this piece, in a scale of 9?",6
372,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_gulda.wav,train,How would you assess this student performance?,"Sorry, but this piece sounds like a virtuoso performance. I would describe it as wants to be expressive, not expressive, it is making the character only with dynamics."
373,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_gulda.wav,train,What kind of music is this piece and who is the composer?,This is a passage from Beethoven's sonata.
374,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_gulda.wav,train,"How would you rate the difficulty of this piece, in a scale of 9?",6
375,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_gulda.wav,train,How would you assess this student performance?,"Sorry, but this piece sounds like a virtuoso performance. I would describe it as too heavy, not fitting tempo."
376,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_gulda.wav,train,What kind of music is this piece and who is the composer?,This is a passage from Beethoven's sonata.
377,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_gulda.wav,train,"How would you rate the difficulty of this piece, in a scale of 9?",6
378,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_gulda.wav,train,How would you assess this student performance?,"Sorry, but this piece sounds like a virtuoso performance. I would describe it as expressive."
379,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_gulda.wav,train,What kind of music is this piece and who is the composer?,This is a passage from Beethoven's sonata.
380,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_gulda.wav,train,"How would you rate the difficulty of this piece, in a scale of 9?",6
381,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_gulda.wav,train,How would you assess this student performance?,"Sorry, but this piece sounds like a virtuoso performance. I would describe it as graceful, mellow, expressive, dynamic."
382,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_gulda.wav,train,What kind of music is this piece and who is the composer?,This is a passage from Beethoven's sonata.
383,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_gulda.wav,train,"How would you rate the difficulty of this piece, in a scale of 9?",6
384,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_gulda.wav,train,How would you assess this student performance?,"Sorry, but this piece sounds like a virtuoso performance. I would describe it as hard."
385,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_gulda.wav,train,What kind of music is this piece and who is the composer?,This is a passage from Beethoven's sonata.
386,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_gulda.wav,train,"How would you rate the difficulty of this piece, in a scale of 9?",6
387,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_gulda.wav,train,How would you assess this student performance?,"Sorry, but this piece sounds like a virtuoso performance. I would describe it as heartfelt, heavy."
388,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_gulda.wav,train,What kind of music is this piece and who is the composer?,This is a passage from Beethoven's sonata.
389,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_gulda.wav,train,"How would you rate the difficulty of this piece, in a scale of 9?",6
390,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_gulda.wav,train,How would you assess this student performance?,"Sorry, but this piece sounds like a virtuoso performance. I would describe it as assured."
391,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_gulda.wav,train,What kind of music is this piece and who is the composer?,This is a passage from Beethoven's sonata.
392,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_gulda.wav,train,"How would you rate the difficulty of this piece, in a scale of 9?",6
393,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_gulda.wav,train,How would you assess this student performance?,"Sorry, but this piece sounds like a virtuoso performance. I would describe it as too slow."
394,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_gulda.wav,train,What kind of music is this piece and who is the composer?,This is a passage from Beethoven's sonata.
395,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_gulda.wav,train,"How would you rate the difficulty of this piece, in a scale of 9?",6
396,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_gulda.wav,train,How would you assess this student performance?,"Sorry, but this piece sounds like a virtuoso performance. I would describe it as slow, without feeling, militaristic, boring ."
397,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_gulda.wav,train,What kind of music is this piece and who is the composer?,This is a passage from Beethoven's sonata.
398,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_gulda.wav,train,"How would you rate the difficulty of this piece, in a scale of 9?",6
399,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_gulda.wav,train,How would you assess this student performance?,"Sorry, but this piece sounds like a virtuoso performance. I would describe it as dynamic, clean, sharp, moderate."
400,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_gulda.wav,train,What kind of music is this piece and who is the composer?,This is a passage from Beethoven's sonata.
401,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_gulda.wav,train,"How would you rate the difficulty of this piece, in a scale of 9?",6
402,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_gulda.wav,train,How would you assess this student performance?,"Sorry, but this piece sounds like a virtuoso performance. I would describe it as melancholic, gloomy."
403,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_gulda.wav,train,What kind of music is this piece and who is the composer?,This is a passage from Beethoven's sonata.
404,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_gulda.wav,train,"How would you rate the difficulty of this piece, in a scale of 9?",6
405,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_schiff.wav,train,How would you assess this student performance?,"Sorry, but this piece sounds like a virtuoso performance. I would describe it as fast, impatient, anxious."
406,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_schiff.wav,train,What kind of music is this piece and who is the composer?,This is a passage from Beethoven's sonata.
407,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_schiff.wav,train,"How would you rate the difficulty of this piece, in a scale of 9?",6
408,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_schiff.wav,train,How would you assess this student performance?,"Sorry, but this piece sounds like a virtuoso performance. I would describe it as desperate, distraught."
409,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_schiff.wav,train,What kind of music is this piece and who is the composer?,This is a passage from Beethoven's sonata.
410,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_schiff.wav,train,"How would you rate the difficulty of this piece, in a scale of 9?",6
411,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_schiff.wav,train,How would you assess this student performance?,"Sorry, but this piece sounds like a virtuoso performance. I would describe it as flowing."
412,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_schiff.wav,train,What kind of music is this piece and who is the composer?,This is a passage from Beethoven's sonata.
413,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_schiff.wav,train,"How would you rate the difficulty of this piece, in a scale of 9?",6
414,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_schiff.wav,train,How would you describe this performance?,passionate
415,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_schiff.wav,train,What kind of music is this piece and who is the composer?,This is a passage from Beethoven's sonata.
416,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_schiff.wav,train,"How would you rate the difficulty of this piece, in a scale of 9?",6
417,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_schiff.wav,train,How would you assess this student performance?,"Sorry, but this piece sounds like a virtuoso performance. I would describe it as reverberant, ominous."
418,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_schiff.wav,train,What kind of music is this piece and who is the composer?,This is a passage from Beethoven's sonata.
419,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_schiff.wav,train,"How would you rate the difficulty of this piece, in a scale of 9?",6
420,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_schiff.wav,train,How would you assess this student performance?,"Sorry, but this piece sounds like a virtuoso performance. I would describe it as verbal."
421,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_schiff.wav,train,What kind of music is this piece and who is the composer?,This is a passage from Beethoven's sonata.
422,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_schiff.wav,train,"How would you rate the difficulty of this piece, in a scale of 9?",6
423,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_schiff.wav,train,How would you assess this student performance?,"Sorry, but this piece sounds like a virtuoso performance. I would describe it as fast, loud, soaring ."
424,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_schiff.wav,train,What kind of music is this piece and who is the composer?,This is a passage from Beethoven's sonata.
425,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_schiff.wav,train,"How would you rate the difficulty of this piece, in a scale of 9?",6
426,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_schiff.wav,train,How would you assess this student performance?,"Sorry, but this piece sounds like a virtuoso performance. I would describe it as rattling, hard, unfeeling."
427,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_schiff.wav,train,What kind of music is this piece and who is the composer?,This is a passage from Beethoven's sonata.
428,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_schiff.wav,train,"How would you rate the difficulty of this piece, in a scale of 9?",6
429,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_schiff.wav,train,How would you describe this performance?,floating
430,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_schiff.wav,train,What kind of music is this piece and who is the composer?,This is a passage from Beethoven's sonata.
431,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_schiff.wav,train,"How would you rate the difficulty of this piece, in a scale of 9?",6
432,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_schiff.wav,train,How would you assess this student performance?,"Sorry, but this piece sounds like a virtuoso performance. I would describe it as too romantic,."
433,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_schiff.wav,train,What kind of music is this piece and who is the composer?,This is a passage from Beethoven's sonata.
434,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_schiff.wav,train,"How would you rate the difficulty of this piece, in a scale of 9?",6
435,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_schiff.wav,train,How would you assess this student performance?,"Sorry, but this piece sounds like a virtuoso performance. I would describe it as Light-handed, dramatic, floating."
436,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_schiff.wav,train,What kind of music is this piece and who is the composer?,This is a passage from Beethoven's sonata.
437,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_schiff.wav,train,"How would you rate the difficulty of this piece, in a scale of 9?",6
438,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_schiff.wav,train,How would you describe this performance?,"blurry, mushy, indistinct"
439,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_schiff.wav,train,What kind of music is this piece and who is the composer?,This is a passage from Beethoven's sonata.
440,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_schiff.wav,train,"How would you rate the difficulty of this piece, in a scale of 9?",6
441,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_schiff.wav,train,How would you assess this student performance?,"Sorry, but this piece sounds like a virtuoso performance. I would describe it as too fast and mushy."
442,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_schiff.wav,train,What kind of music is this piece and who is the composer?,This is a passage from Beethoven's sonata.
443,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_schiff.wav,train,"How would you rate the difficulty of this piece, in a scale of 9?",6
444,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_schiff.wav,train,How would you assess this student performance?,"Sorry, but this piece sounds like a virtuoso performance. I would describe it as fast, hurried, inviting, intentional."
445,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_schiff.wav,train,What kind of music is this piece and who is the composer?,This is a passage from Beethoven's sonata.
446,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_schiff.wav,train,"How would you rate the difficulty of this piece, in a scale of 9?",6
447,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_schiff.wav,train,How would you assess this student performance?,"Sorry, but this piece sounds like a virtuoso performance. I would describe it as rushed, not varied in dynamics."
448,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_schiff.wav,train,What kind of music is this piece and who is the composer?,This is a passage from Beethoven's sonata.
449,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_schiff.wav,train,"How would you rate the difficulty of this piece, in a scale of 9?",6
450,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_schiff.wav,train,How would you assess this student performance?,"Sorry, but this piece sounds like a virtuoso performance. I would describe it as hard, relentless."
451,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_schiff.wav,train,What kind of music is this piece and who is the composer?,This is a passage from Beethoven's sonata.
452,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_schiff.wav,train,"How would you rate the difficulty of this piece, in a scale of 9?",6
453,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_schiff.wav,train,How would you assess this student performance?,"Sorry, but this piece sounds like a virtuoso performance. I would describe it as accents, horrible."
454,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_schiff.wav,train,What kind of music is this piece and who is the composer?,This is a passage from Beethoven's sonata.
455,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_schiff.wav,train,"How would you rate the difficulty of this piece, in a scale of 9?",6
456,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_schiff.wav,train,How would you describe this performance?,"strange piano sound, pedal uncontrolled, rather unexpressive"
457,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_schiff.wav,train,What kind of music is this piece and who is the composer?,This is a passage from Beethoven's sonata.
458,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_schiff.wav,train,"How would you rate the difficulty of this piece, in a scale of 9?",6
459,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_schiff.wav,train,How would you assess this student performance?,"Sorry, but this piece sounds like a virtuoso performance. I would describe it as Lively, somewhat more restrained, musical."
460,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_schiff.wav,train,What kind of music is this piece and who is the composer?,This is a passage from Beethoven's sonata.
461,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_schiff.wav,train,"How would you rate the difficulty of this piece, in a scale of 9?",6
462,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_schiff.wav,train,How would you describe this performance?,"sparse, cold, hard, uncomfortable, unclear"
463,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_schiff.wav,train,What kind of music is this piece and who is the composer?,This is a passage from Beethoven's sonata.
464,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_schiff.wav,train,"How would you rate the difficulty of this piece, in a scale of 9?",6
465,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_schiff.wav,train,How would you assess this student performance?,"Sorry, but this piece sounds like a virtuoso performance. I would describe it as unremarkable."
466,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_schiff.wav,train,What kind of music is this piece and who is the composer?,This is a passage from Beethoven's sonata.
467,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_schiff.wav,train,"How would you rate the difficulty of this piece, in a scale of 9?",6
468,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_schiff.wav,train,How would you describe this performance?,a bit aggressive
469,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_schiff.wav,train,What kind of music is this piece and who is the composer?,This is a passage from Beethoven's sonata.
470,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_schiff.wav,train,"How would you rate the difficulty of this piece, in a scale of 9?",6
471,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_schiff.wav,train,How would you assess this student performance?,"Sorry, but this piece sounds like a virtuoso performance. I would describe it as too fast, not that much feelings."
472,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_schiff.wav,train,What kind of music is this piece and who is the composer?,This is a passage from Beethoven's sonata.
473,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_schiff.wav,train,"How would you rate the difficulty of this piece, in a scale of 9?",6
474,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_schiff.wav,train,How would you assess this student performance?,"Sorry, but this piece sounds like a virtuoso performance. I would describe it as fast."
475,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_schiff.wav,train,What kind of music is this piece and who is the composer?,This is a passage from Beethoven's sonata.
476,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_schiff.wav,train,"How would you rate the difficulty of this piece, in a scale of 9?",6
477,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_schiff.wav,train,How would you assess this student performance?,"Sorry, but this piece sounds like a virtuoso performance. I would describe it as not so subtle, almost literal reading, pedal blurred."
478,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_schiff.wav,train,What kind of music is this piece and who is the composer?,This is a passage from Beethoven's sonata.
479,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_schiff.wav,train,"How would you rate the difficulty of this piece, in a scale of 9?",6
480,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_schiff.wav,train,How would you assess this student performance?,"Sorry, but this piece sounds like a virtuoso performance. I would describe it as no dynamics."
481,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_schiff.wav,train,What kind of music is this piece and who is the composer?,This is a passage from Beethoven's sonata.
482,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_schiff.wav,train,"How would you rate the difficulty of this piece, in a scale of 9?",6
483,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_schiff.wav,train,How would you assess this student performance?,"Sorry, but this piece sounds like a virtuoso performance. I would describe it as beautiful."
484,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_schiff.wav,train,What kind of music is this piece and who is the composer?,This is a passage from Beethoven's sonata.
485,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_schiff.wav,train,"How would you rate the difficulty of this piece, in a scale of 9?",6
486,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_schiff.wav,train,How would you assess this student performance?,"Sorry, but this piece sounds like a virtuoso performance. I would describe it as worried."
487,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_schiff.wav,train,What kind of music is this piece and who is the composer?,This is a passage from Beethoven's sonata.
488,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_schiff.wav,train,"How would you rate the difficulty of this piece, in a scale of 9?",6
489,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_schiff.wav,train,How would you assess this student performance?,"Sorry, but this piece sounds like a virtuoso performance. I would describe it as flat."
490,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_schiff.wav,train,What kind of music is this piece and who is the composer?,This is a passage from Beethoven's sonata.
491,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_schiff.wav,train,"How would you rate the difficulty of this piece, in a scale of 9?",6
492,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_schiff.wav,train,How would you describe this performance?,correct
493,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_schiff.wav,train,What kind of music is this piece and who is the composer?,This is a passage from Beethoven's sonata.
494,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_schiff.wav,train,"How would you rate the difficulty of this piece, in a scale of 9?",6
495,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_schiff.wav,train,How would you assess this student performance?,"Sorry, but this piece sounds like a virtuoso performance. I would describe it as fast, cold, militaristic ."
496,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_schiff.wav,train,What kind of music is this piece and who is the composer?,This is a passage from Beethoven's sonata.
497,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_schiff.wav,train,"How would you rate the difficulty of this piece, in a scale of 9?",6
498,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_schiff.wav,train,How would you assess this student performance?,"Sorry, but this piece sounds like a virtuoso performance. I would describe it as interesting, reverberating, rushed."
499,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_schiff.wav,train,What kind of music is this piece and who is the composer?,This is a passage from Beethoven's sonata.
500,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_schiff.wav,train,"How would you rate the difficulty of this piece, in a scale of 9?",6
501,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_schiff.wav,train,How would you assess this student performance?,"Sorry, but this piece sounds like a virtuoso performance. I would describe it as too lively, dark, not obscure, plain, pragmatic."
502,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_schiff.wav,train,What kind of music is this piece and who is the composer?,This is a passage from Beethoven's sonata.
503,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_schiff.wav,train,"How would you rate the difficulty of this piece, in a scale of 9?",6
504,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_schirmer.wav,train,How would you assess this student performance?,"Sorry, but this piece sounds like a virtuoso performance. I would describe it as slow, lethargic, emotionless."
505,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_schirmer.wav,train,What kind of music is this piece and who is the composer?,This is a passage from Beethoven's sonata.
506,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_schirmer.wav,train,"How would you rate the difficulty of this piece, in a scale of 9?",6
507,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_schirmer.wav,train,How would you assess this student performance?,"Sorry, but this piece sounds like a virtuoso performance. I would describe it as mournful."
508,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_schirmer.wav,train,What kind of music is this piece and who is the composer?,This is a passage from Beethoven's sonata.
509,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_schirmer.wav,train,"How would you rate the difficulty of this piece, in a scale of 9?",6
510,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_schirmer.wav,train,How would you assess this student performance?,"Sorry, but this piece sounds like a virtuoso performance. I would describe it as slow, sad."
511,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_schirmer.wav,train,What kind of music is this piece and who is the composer?,This is a passage from Beethoven's sonata.
512,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_schirmer.wav,train,"How would you rate the difficulty of this piece, in a scale of 9?",6
513,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_schirmer.wav,train,How would you assess this student performance?,"Sorry, but this piece sounds like a virtuoso performance. I would describe it as static."
514,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_schirmer.wav,train,What kind of music is this piece and who is the composer?,This is a passage from Beethoven's sonata.
515,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_schirmer.wav,train,"How would you rate the difficulty of this piece, in a scale of 9?",6
516,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_schirmer.wav,train,How would you assess this student performance?,"Sorry, but this piece sounds like a virtuoso performance. I would describe it as thoughtful."
517,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_schirmer.wav,train,What kind of music is this piece and who is the composer?,This is a passage from Beethoven's sonata.
518,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_schirmer.wav,train,"How would you rate the difficulty of this piece, in a scale of 9?",6
519,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_schirmer.wav,train,How would you describe this performance?,sad
520,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_schirmer.wav,train,What kind of music is this piece and who is the composer?,This is a passage from Beethoven's sonata.
521,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_schirmer.wav,train,"How would you rate the difficulty of this piece, in a scale of 9?",6
522,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_schirmer.wav,train,How would you assess this student performance?,"Sorry, but this piece sounds like a virtuoso performance. I would describe it as slow, sluggish, boring, mechanical."
523,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_schirmer.wav,train,What kind of music is this piece and who is the composer?,This is a passage from Beethoven's sonata.
524,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_schirmer.wav,train,"How would you rate the difficulty of this piece, in a scale of 9?",6
525,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_schirmer.wav,train,How would you assess this student performance?,"Sorry, but this piece sounds like a virtuoso performance. I would describe it as too slow, boring, hard."
526,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_schirmer.wav,train,What kind of music is this piece and who is the composer?,This is a passage from Beethoven's sonata.
527,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_schirmer.wav,train,"How would you rate the difficulty of this piece, in a scale of 9?",6
528,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_schirmer.wav,train,How would you assess this student performance?,"Sorry, but this piece sounds like a virtuoso performance. I would describe it as drowsy."
529,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_schirmer.wav,train,What kind of music is this piece and who is the composer?,This is a passage from Beethoven's sonata.
530,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_schirmer.wav,train,"How would you rate the difficulty of this piece, in a scale of 9?",6
531,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_schirmer.wav,train,How would you assess this student performance?,"Sorry, but this piece sounds like a virtuoso performance. I would describe it as tantalizing, slow, auditory streams do not form easily, random eighths notes chains, wants too much to be special,."
532,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_schirmer.wav,train,What kind of music is this piece and who is the composer?,This is a passage from Beethoven's sonata.
533,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_schirmer.wav,train,"How would you rate the difficulty of this piece, in a scale of 9?",6
534,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_schirmer.wav,train,How would you assess this student performance?,"Sorry, but this piece sounds like a virtuoso performance. I would describe it as clear, tentative, consistent."
535,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_schirmer.wav,train,What kind of music is this piece and who is the composer?,This is a passage from Beethoven's sonata.
536,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_schirmer.wav,train,"How would you rate the difficulty of this piece, in a scale of 9?",6
537,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_schirmer.wav,train,How would you assess this student performance?,"Sorry, but this piece sounds like a virtuoso performance. I would describe it as ponderous, irregular, boring, slow."
538,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_schirmer.wav,train,What kind of music is this piece and who is the composer?,This is a passage from Beethoven's sonata.
539,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_schirmer.wav,train,"How would you rate the difficulty of this piece, in a scale of 9?",6
540,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_schirmer.wav,train,How would you assess this student performance?,"Sorry, but this piece sounds like a virtuoso performance. I would describe it as painfully slow."
541,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_schirmer.wav,train,What kind of music is this piece and who is the composer?,This is a passage from Beethoven's sonata.
542,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_schirmer.wav,train,"How would you rate the difficulty of this piece, in a scale of 9?",6
543,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_schirmer.wav,train,How would you assess this student performance?,"Sorry, but this piece sounds like a virtuoso performance. I would describe it as slow, deliberate, delicate, withheld."
544,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_schirmer.wav,train,What kind of music is this piece and who is the composer?,This is a passage from Beethoven's sonata.
545,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_schirmer.wav,train,"How would you rate the difficulty of this piece, in a scale of 9?",6
546,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_schirmer.wav,train,How would you assess this student performance?,"Sorry, but this piece sounds like a virtuoso performance. I would describe it as expressive, too calm, timid."
547,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_schirmer.wav,train,What kind of music is this piece and who is the composer?,This is a passage from Beethoven's sonata.
548,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_schirmer.wav,train,"How would you rate the difficulty of this piece, in a scale of 9?",6
549,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_schirmer.wav,train,How would you assess this student performance?,"Sorry, but this piece sounds like a virtuoso performance. I would describe it as sleepy, drugged."
550,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_schirmer.wav,train,What kind of music is this piece and who is the composer?,This is a passage from Beethoven's sonata.
551,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_schirmer.wav,train,"How would you rate the difficulty of this piece, in a scale of 9?",6
552,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_schirmer.wav,train,How would you assess this student performance?,"Sorry, but this piece sounds like a virtuoso performance. I would describe it as slower, plainer."
553,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_schirmer.wav,train,What kind of music is this piece and who is the composer?,This is a passage from Beethoven's sonata.
554,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_schirmer.wav,train,"How would you rate the difficulty of this piece, in a scale of 9?",6
555,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_schirmer.wav,train,How would you assess this student performance?,"Sorry, but this piece sounds like a virtuoso performance. I would describe it as beginner."
556,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_schirmer.wav,train,What kind of music is this piece and who is the composer?,This is a passage from Beethoven's sonata.
557,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_schirmer.wav,train,"How would you rate the difficulty of this piece, in a scale of 9?",6
558,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_schirmer.wav,train,How would you assess this student performance?,"Sorry, but this piece sounds like a virtuoso performance. I would describe it as slow ."
559,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_schirmer.wav,train,What kind of music is this piece and who is the composer?,This is a passage from Beethoven's sonata.
560,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_schirmer.wav,train,"How would you rate the difficulty of this piece, in a scale of 9?",6
561,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_schirmer.wav,train,How would you assess this student performance?,"Sorry, but this piece sounds like a virtuoso performance. I would describe it as very slow, very regular, sounds like practice tempo."
562,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_schirmer.wav,train,What kind of music is this piece and who is the composer?,This is a passage from Beethoven's sonata.
563,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_schirmer.wav,train,"How would you rate the difficulty of this piece, in a scale of 9?",6
564,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_schirmer.wav,train,How would you assess this student performance?,"Sorry, but this piece sounds like a virtuoso performance. I would describe it as tense, gloomy, inert."
565,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_schirmer.wav,train,What kind of music is this piece and who is the composer?,This is a passage from Beethoven's sonata.
566,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_schirmer.wav,train,"How would you rate the difficulty of this piece, in a scale of 9?",6
567,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_schirmer.wav,train,How would you assess this student performance?,"Sorry, but this piece sounds like a virtuoso performance. I would describe it as deliberate."
568,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_schirmer.wav,train,What kind of music is this piece and who is the composer?,This is a passage from Beethoven's sonata.
569,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_schirmer.wav,train,"How would you rate the difficulty of this piece, in a scale of 9?",6
570,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_schirmer.wav,train,How would you assess this student performance?,"Sorry, but this piece sounds like a virtuoso performance. I would describe it as the character is a bit lost, too slow, over the place, not combined with the music, ."
571,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_schirmer.wav,train,What kind of music is this piece and who is the composer?,This is a passage from Beethoven's sonata.
572,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_schirmer.wav,train,"How would you rate the difficulty of this piece, in a scale of 9?",6
573,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_schirmer.wav,train,How would you assess this student performance?,"Sorry, but this piece sounds like a virtuoso performance. I would describe it as really painful, story-telling, touching, passionate, mysterious."
574,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_schirmer.wav,train,What kind of music is this piece and who is the composer?,This is a passage from Beethoven's sonata.
575,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_schirmer.wav,train,"How would you rate the difficulty of this piece, in a scale of 9?",6
576,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_schirmer.wav,train,How would you assess this student performance?,"Sorry, but this piece sounds like a virtuoso performance. I would describe it as slow, not catchy, not dynamic."
577,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_schirmer.wav,train,What kind of music is this piece and who is the composer?,This is a passage from Beethoven's sonata.
578,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_schirmer.wav,train,"How would you rate the difficulty of this piece, in a scale of 9?",6
579,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_schirmer.wav,train,How would you assess this student performance?,"Sorry, but this piece sounds like a virtuoso performance. I would describe it as very flat, inexpressive."
580,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_schirmer.wav,train,What kind of music is this piece and who is the composer?,This is a passage from Beethoven's sonata.
581,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_schirmer.wav,train,"How would you rate the difficulty of this piece, in a scale of 9?",6
582,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_schirmer.wav,train,How would you describe this performance?,too slow
583,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_schirmer.wav,train,What kind of music is this piece and who is the composer?,This is a passage from Beethoven's sonata.
584,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_schirmer.wav,train,"How would you rate the difficulty of this piece, in a scale of 9?",6
585,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_schirmer.wav,train,How would you describe this performance?,refrain
586,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_schirmer.wav,train,What kind of music is this piece and who is the composer?,This is a passage from Beethoven's sonata.
587,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_schirmer.wav,train,"How would you rate the difficulty of this piece, in a scale of 9?",6
588,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_schirmer.wav,train,How would you assess this student performance?,"Sorry, but this piece sounds like a virtuoso performance. I would describe it as sad."
589,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_schirmer.wav,train,What kind of music is this piece and who is the composer?,This is a passage from Beethoven's sonata.
590,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_schirmer.wav,train,"How would you rate the difficulty of this piece, in a scale of 9?",6
591,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_schirmer.wav,train,How would you assess this student performance?,"Sorry, but this piece sounds like a virtuoso performance. I would describe it as slow flat."
592,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_schirmer.wav,train,What kind of music is this piece and who is the composer?,This is a passage from Beethoven's sonata.
593,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_schirmer.wav,train,"How would you rate the difficulty of this piece, in a scale of 9?",6
594,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_schirmer.wav,train,How would you assess this student performance?,"Sorry, but this piece sounds like a virtuoso performance. I would describe it as boring, give me mozart."
595,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_schirmer.wav,train,What kind of music is this piece and who is the composer?,This is a passage from Beethoven's sonata.
596,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_schirmer.wav,train,"How would you rate the difficulty of this piece, in a scale of 9?",6
597,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_schirmer.wav,train,How would you assess this student performance?,"Sorry, but this piece sounds like a virtuoso performance. I would describe it as boring, too much emphasis on each note, slow ."
598,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_schirmer.wav,train,What kind of music is this piece and who is the composer?,This is a passage from Beethoven's sonata.
599,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_schirmer.wav,train,"How would you rate the difficulty of this piece, in a scale of 9?",6
600,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_schirmer.wav,train,How would you assess this student performance?,"Sorry, but this piece sounds like a virtuoso performance. I would describe it as slow, uninteresting, practice-like."
601,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_schirmer.wav,train,What kind of music is this piece and who is the composer?,This is a passage from Beethoven's sonata.
602,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_schirmer.wav,train,"How would you rate the difficulty of this piece, in a scale of 9?",6
603,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_schirmer.wav,train,How would you assess this student performance?,"Sorry, but this piece sounds like a virtuoso performance. I would describe it as with exquisite tension, with cerebral focus, exciting, refreshing."
604,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_schirmer.wav,train,What kind of music is this piece and who is the composer?,This is a passage from Beethoven's sonata.
605,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/beethoven_schirmer.wav,train,"How would you rate the difficulty of this piece, in a scale of 9?",6
606,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/schumann-arabeske-2_rubinstein.wav,train,How would you assess this student performance?,"Sorry, but this piece sounds like a virtuoso performance. I would describe it as chopped, jerky."
607,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/schumann-arabeske-2_rubinstein.wav,train,What kind of music is this piece and who is the composer?,"This is an excerpt from Schumann's Arabeske, with deep and melancholic melodies. "
608,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/schumann-arabeske-2_rubinstein.wav,train,"How would you rate the difficulty of this piece, in a scale of 9?",6
609,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/schumann-arabeske-2_rubinstein.wav,train,How would you describe this performance?,"marching, mechanic, without dynamics"
610,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/schumann-arabeske-2_rubinstein.wav,train,What kind of music is this piece and who is the composer?,"This is an excerpt from Schumann's Arabeske, with deep and melancholic melodies. "
611,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/schumann-arabeske-2_rubinstein.wav,train,"How would you rate the difficulty of this piece, in a scale of 9?",6
612,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/schumann-arabeske-2_rubinstein.wav,train,How would you assess this student performance?,"Sorry, but this piece sounds like a virtuoso performance. I would describe it as chopped."
613,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/schumann-arabeske-2_rubinstein.wav,train,What kind of music is this piece and who is the composer?,"This is an excerpt from Schumann's Arabeske, with deep and melancholic melodies. "
614,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/schumann-arabeske-2_rubinstein.wav,train,"How would you rate the difficulty of this piece, in a scale of 9?",6
615,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/schumann-arabeske-2_rubinstein.wav,train,How would you assess this student performance?,"Sorry, but this piece sounds like a virtuoso performance. I would describe it as vigorous, monotonous."
616,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/schumann-arabeske-2_rubinstein.wav,train,What kind of music is this piece and who is the composer?,"This is an excerpt from Schumann's Arabeske, with deep and melancholic melodies. "
617,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/schumann-arabeske-2_rubinstein.wav,train,"How would you rate the difficulty of this piece, in a scale of 9?",6
618,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/schumann-arabeske-2_rubinstein.wav,train,How would you assess this student performance?,"Sorry, but this piece sounds like a virtuoso performance. I would describe it as mechanical, harpsichord, plonking."
619,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/schumann-arabeske-2_rubinstein.wav,train,What kind of music is this piece and who is the composer?,"This is an excerpt from Schumann's Arabeske, with deep and melancholic melodies. "
620,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/schumann-arabeske-2_rubinstein.wav,train,"How would you rate the difficulty of this piece, in a scale of 9?",6
621,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/schumann-arabeske-2_rubinstein.wav,train,How would you assess this student performance?,"Sorry, but this piece sounds like a virtuoso performance. I would describe it as metallic, hard, chopped, unfeeling, uniform, boring."
622,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/schumann-arabeske-2_rubinstein.wav,train,What kind of music is this piece and who is the composer?,"This is an excerpt from Schumann's Arabeske, with deep and melancholic melodies. "
623,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/schumann-arabeske-2_rubinstein.wav,train,"How would you rate the difficulty of this piece, in a scale of 9?",6
624,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/schumann-arabeske-2_rubinstein.wav,train,How would you assess this student performance?,"Sorry, but this piece sounds like a virtuoso performance. I would describe it as compressed, stuttering."
625,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/schumann-arabeske-2_rubinstein.wav,train,What kind of music is this piece and who is the composer?,"This is an excerpt from Schumann's Arabeske, with deep and melancholic melodies. "
626,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/schumann-arabeske-2_rubinstein.wav,train,"How would you rate the difficulty of this piece, in a scale of 9?",6
627,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/schumann-arabeske-2_rubinstein.wav,train,How would you describe this performance?,too mechanical
628,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/schumann-arabeske-2_rubinstein.wav,train,What kind of music is this piece and who is the composer?,"This is an excerpt from Schumann's Arabeske, with deep and melancholic melodies. "
629,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/schumann-arabeske-2_rubinstein.wav,train,"How would you rate the difficulty of this piece, in a scale of 9?",6
630,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/schumann-arabeske-2_rubinstein.wav,train,How would you describe this performance?,"artificial, irregular, stumbling, horrible, computer-generated"
631,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/schumann-arabeske-2_rubinstein.wav,train,What kind of music is this piece and who is the composer?,"This is an excerpt from Schumann's Arabeske, with deep and melancholic melodies. "
632,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/schumann-arabeske-2_rubinstein.wav,train,"How would you rate the difficulty of this piece, in a scale of 9?",6
633,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/schumann-arabeske-2_rubinstein.wav,train,How would you assess this student performance?,"Sorry, but this piece sounds like a virtuoso performance. I would describe it as thumpy."
634,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/schumann-arabeske-2_rubinstein.wav,train,What kind of music is this piece and who is the composer?,"This is an excerpt from Schumann's Arabeske, with deep and melancholic melodies. "
635,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/schumann-arabeske-2_rubinstein.wav,train,"How would you rate the difficulty of this piece, in a scale of 9?",6
636,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/schumann-arabeske-2_rubinstein.wav,train,How would you describe this performance?,"static, almost emotionless"
637,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/schumann-arabeske-2_rubinstein.wav,train,What kind of music is this piece and who is the composer?,"This is an excerpt from Schumann's Arabeske, with deep and melancholic melodies. "
638,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/schumann-arabeske-2_rubinstein.wav,train,"How would you rate the difficulty of this piece, in a scale of 9?",6
639,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/schumann-arabeske-2_rubinstein.wav,train,How would you describe this performance?,"stubborn, clunky"
640,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/schumann-arabeske-2_rubinstein.wav,train,What kind of music is this piece and who is the composer?,"This is an excerpt from Schumann's Arabeske, with deep and melancholic melodies. "
641,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/schumann-arabeske-2_rubinstein.wav,train,"How would you rate the difficulty of this piece, in a scale of 9?",6
642,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/schumann-arabeske-2_rubinstein.wav,train,How would you assess this student performance?,"Sorry, but this piece sounds like a virtuoso performance. I would describe it as accent is almost always on the first beat, awkward."
643,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/schumann-arabeske-2_rubinstein.wav,train,What kind of music is this piece and who is the composer?,"This is an excerpt from Schumann's Arabeske, with deep and melancholic melodies. "
644,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/schumann-arabeske-2_rubinstein.wav,train,"How would you rate the difficulty of this piece, in a scale of 9?",6
645,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/schumann-arabeske-2_rubinstein.wav,train,How would you assess this student performance?,"Sorry, but this piece sounds like a virtuoso performance. I would describe it as a child playing."
646,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/schumann-arabeske-2_rubinstein.wav,train,What kind of music is this piece and who is the composer?,"This is an excerpt from Schumann's Arabeske, with deep and melancholic melodies. "
647,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/schumann-arabeske-2_rubinstein.wav,train,"How would you rate the difficulty of this piece, in a scale of 9?",6
648,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/schumann-arabeske-2_rubinstein.wav,train,How would you describe this performance?,dull
649,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/schumann-arabeske-2_rubinstein.wav,train,What kind of music is this piece and who is the composer?,"This is an excerpt from Schumann's Arabeske, with deep and melancholic melodies. "
650,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/schumann-arabeske-2_rubinstein.wav,train,"How would you rate the difficulty of this piece, in a scale of 9?",6
651,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/schumann-arabeske-2_rubinstein.wav,train,How would you assess this student performance?,"Sorry, but this piece sounds like a virtuoso performance. I would describe it as unfamiliar, strange."
652,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/schumann-arabeske-2_rubinstein.wav,train,What kind of music is this piece and who is the composer?,"This is an excerpt from Schumann's Arabeske, with deep and melancholic melodies. "
653,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/schumann-arabeske-2_rubinstein.wav,train,"How would you rate the difficulty of this piece, in a scale of 9?",6
654,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/schumann-arabeske-2_rubinstein.wav,train,How would you assess this student performance?,"Sorry, but this piece sounds like a virtuoso performance. I would describe it as robot, super unmusical, pedal is painfully missing."
655,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/schumann-arabeske-2_rubinstein.wav,train,What kind of music is this piece and who is the composer?,"This is an excerpt from Schumann's Arabeske, with deep and melancholic melodies. "
656,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/schumann-arabeske-2_rubinstein.wav,train,"How would you rate the difficulty of this piece, in a scale of 9?",6
657,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/schumann-arabeske-2_rubinstein.wav,train,How would you assess this student performance?,"Sorry, but this piece sounds like a virtuoso performance. I would describe it as baroque, played like a harpsichord."
658,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/schumann-arabeske-2_rubinstein.wav,train,What kind of music is this piece and who is the composer?,"This is an excerpt from Schumann's Arabeske, with deep and melancholic melodies. "
659,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/schumann-arabeske-2_rubinstein.wav,train,"How would you rate the difficulty of this piece, in a scale of 9?",6
660,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/schumann-arabeske-2_rubinstein.wav,train,How would you describe this performance?,"too chopped, without any pedal, i don't know whether that's in the sense of schumann, many accords are not played together"
661,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/schumann-arabeske-2_rubinstein.wav,train,What kind of music is this piece and who is the composer?,"This is an excerpt from Schumann's Arabeske, with deep and melancholic melodies. "
662,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/schumann-arabeske-2_rubinstein.wav,train,"How would you rate the difficulty of this piece, in a scale of 9?",6
663,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/schumann-arabeske-2_rubinstein.wav,train,How would you assess this student performance?,"Sorry, but this piece sounds like a virtuoso performance. I would describe it as static, uninteresting."
664,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/schumann-arabeske-2_rubinstein.wav,train,What kind of music is this piece and who is the composer?,"This is an excerpt from Schumann's Arabeske, with deep and melancholic melodies. "
665,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/schumann-arabeske-2_rubinstein.wav,train,"How would you rate the difficulty of this piece, in a scale of 9?",6
666,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/schumann-arabeske-2_rubinstein.wav,train,How would you assess this student performance?,"Sorry, but this piece sounds like a virtuoso performance. I would describe it as aggressive."
667,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/schumann-arabeske-2_rubinstein.wav,train,What kind of music is this piece and who is the composer?,"This is an excerpt from Schumann's Arabeske, with deep and melancholic melodies. "
668,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/schumann-arabeske-2_rubinstein.wav,train,"How would you rate the difficulty of this piece, in a scale of 9?",6
669,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/schumann-arabeske-2_rubinstein.wav,train,How would you assess this student performance?,"Sorry, but this piece sounds like a virtuoso performance. I would describe it as plain, boring, without any passion, midis are not good."
670,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/schumann-arabeske-2_rubinstein.wav,train,What kind of music is this piece and who is the composer?,"This is an excerpt from Schumann's Arabeske, with deep and melancholic melodies. "
671,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/schumann-arabeske-2_rubinstein.wav,train,"How would you rate the difficulty of this piece, in a scale of 9?",6
672,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/schumann-arabeske-2_rubinstein.wav,train,How would you assess this student performance?,"Sorry, but this piece sounds like a virtuoso performance. I would describe it as anharmonic."
673,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/schumann-arabeske-2_rubinstein.wav,train,What kind of music is this piece and who is the composer?,"This is an excerpt from Schumann's Arabeske, with deep and melancholic melodies. "
674,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/schumann-arabeske-2_rubinstein.wav,train,"How would you rate the difficulty of this piece, in a scale of 9?",6
675,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/schumann-arabeske-2_rubinstein.wav,train,How would you assess this student performance?,"Sorry, but this piece sounds like a virtuoso performance. I would describe it as staccato, unpredictable."
676,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/schumann-arabeske-2_rubinstein.wav,train,What kind of music is this piece and who is the composer?,"This is an excerpt from Schumann's Arabeske, with deep and melancholic melodies. "
677,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/schumann-arabeske-2_rubinstein.wav,train,"How would you rate the difficulty of this piece, in a scale of 9?",6
678,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/schumann-arabeske-2_rubinstein.wav,train,How would you describe this performance?,"monotonous, uneven, just notes"
679,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/schumann-arabeske-2_rubinstein.wav,train,What kind of music is this piece and who is the composer?,"This is an excerpt from Schumann's Arabeske, with deep and melancholic melodies. "
680,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/schumann-arabeske-2_rubinstein.wav,train,"How would you rate the difficulty of this piece, in a scale of 9?",6
681,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/schumann-arabeske-2_rubinstein.wav,train,How would you assess this student performance?,"Sorry, but this piece sounds like a virtuoso performance. I would describe it as horror, disklavier, no pedal."
682,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/schumann-arabeske-2_rubinstein.wav,train,What kind of music is this piece and who is the composer?,"This is an excerpt from Schumann's Arabeske, with deep and melancholic melodies. "
683,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/schumann-arabeske-2_rubinstein.wav,train,"How would you rate the difficulty of this piece, in a scale of 9?",6
684,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/schumann-arabeske-2_rubinstein.wav,train,How would you assess this student performance?,"Sorry, but this piece sounds like a virtuoso performance. I would describe it as robotic."
685,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/schumann-arabeske-2_rubinstein.wav,train,What kind of music is this piece and who is the composer?,"This is an excerpt from Schumann's Arabeske, with deep and melancholic melodies. "
686,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/schumann-arabeske-2_rubinstein.wav,train,"How would you rate the difficulty of this piece, in a scale of 9?",6
687,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/schumann-arabeske-2_rubinstein.wav,train,How would you assess this student performance?,"Sorry, but this piece sounds like a virtuoso performance. I would describe it as acute."
688,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/schumann-arabeske-2_rubinstein.wav,train,What kind of music is this piece and who is the composer?,"This is an excerpt from Schumann's Arabeske, with deep and melancholic melodies. "
689,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/schumann-arabeske-2_rubinstein.wav,train,"How would you rate the difficulty of this piece, in a scale of 9?",6
690,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/schumann-arabeske-2_rubinstein.wav,train,How would you describe this performance?,"horrible, get a new computer"
691,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/schumann-arabeske-2_rubinstein.wav,train,What kind of music is this piece and who is the composer?,"This is an excerpt from Schumann's Arabeske, with deep and melancholic melodies. "
692,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/schumann-arabeske-2_rubinstein.wav,train,"How would you rate the difficulty of this piece, in a scale of 9?",6
693,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/schumann-arabeske-2_rubinstein.wav,train,How would you assess this student performance?,"Sorry, but this piece sounds like a virtuoso performance. I would describe it as mechanic, practice-like, dirty, careless."
694,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/schumann-arabeske-2_rubinstein.wav,train,What kind of music is this piece and who is the composer?,"This is an excerpt from Schumann's Arabeske, with deep and melancholic melodies. "
695,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/schumann-arabeske-2_rubinstein.wav,train,"How would you rate the difficulty of this piece, in a scale of 9?",6
696,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/schumann-arabeske-2_rubinstein.wav,train,How would you describe this performance?,"mechanical, erratic"
697,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/schumann-arabeske-2_rubinstein.wav,train,What kind of music is this piece and who is the composer?,"This is an excerpt from Schumann's Arabeske, with deep and melancholic melodies. "
698,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/schumann-arabeske-2_rubinstein.wav,train,"How would you rate the difficulty of this piece, in a scale of 9?",6
699,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/schumann-arabeske-2_schiff.wav,train,How would you assess this student performance?,"Sorry, but this piece sounds like a virtuoso performance. I would describe it as quiet, smooth."
700,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/schumann-arabeske-2_schiff.wav,train,What kind of music is this piece and who is the composer?,"This is an excerpt from Schumann's Arabeske, with deep and melancholic melodies. "
701,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/schumann-arabeske-2_schiff.wav,train,"How would you rate the difficulty of this piece, in a scale of 9?",6
702,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/schumann-arabeske-2_schiff.wav,train,How would you assess this student performance?,"Sorry, but this piece sounds like a virtuoso performance. I would describe it as melancholic, dramatic."
703,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/schumann-arabeske-2_schiff.wav,train,What kind of music is this piece and who is the composer?,"This is an excerpt from Schumann's Arabeske, with deep and melancholic melodies. "
704,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/schumann-arabeske-2_schiff.wav,train,"How would you rate the difficulty of this piece, in a scale of 9?",6
705,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/schumann-arabeske-2_schiff.wav,train,How would you describe this performance?,romantic
706,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/schumann-arabeske-2_schiff.wav,train,What kind of music is this piece and who is the composer?,"This is an excerpt from Schumann's Arabeske, with deep and melancholic melodies. "
707,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/schumann-arabeske-2_schiff.wav,train,"How would you rate the difficulty of this piece, in a scale of 9?",6
708,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/schumann-arabeske-2_schiff.wav,train,How would you assess this student performance?,"Sorry, but this piece sounds like a virtuoso performance. I would describe it as tender, dreamy, serene, aching."
709,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/schumann-arabeske-2_schiff.wav,train,What kind of music is this piece and who is the composer?,"This is an excerpt from Schumann's Arabeske, with deep and melancholic melodies. "
710,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/schumann-arabeske-2_schiff.wav,train,"How would you rate the difficulty of this piece, in a scale of 9?",6
711,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/schumann-arabeske-2_schiff.wav,train,How would you assess this student performance?,"Sorry, but this piece sounds like a virtuoso performance. I would describe it as sweeping, holding back, tender, passionate, dynamic."
712,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/schumann-arabeske-2_schiff.wav,train,What kind of music is this piece and who is the composer?,"This is an excerpt from Schumann's Arabeske, with deep and melancholic melodies. "
713,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/schumann-arabeske-2_schiff.wav,train,"How would you rate the difficulty of this piece, in a scale of 9?",6
714,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/schumann-arabeske-2_schiff.wav,train,How would you describe this performance?,"clanking, hard, uncomfortable"
715,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/schumann-arabeske-2_schiff.wav,train,What kind of music is this piece and who is the composer?,"This is an excerpt from Schumann's Arabeske, with deep and melancholic melodies. "
716,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/schumann-arabeske-2_schiff.wav,train,"How would you rate the difficulty of this piece, in a scale of 9?",6
717,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/schumann-arabeske-2_schiff.wav,train,How would you assess this student performance?,"Sorry, but this piece sounds like a virtuoso performance. I would describe it as slow, uninspired."
718,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/schumann-arabeske-2_schiff.wav,train,What kind of music is this piece and who is the composer?,"This is an excerpt from Schumann's Arabeske, with deep and melancholic melodies. "
719,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/schumann-arabeske-2_schiff.wav,train,"How would you rate the difficulty of this piece, in a scale of 9?",6
720,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/schumann-arabeske-2_schiff.wav,train,How would you assess this student performance?,"Sorry, but this piece sounds like a virtuoso performance. I would describe it as fluent, shallow, lively."
721,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/schumann-arabeske-2_schiff.wav,train,What kind of music is this piece and who is the composer?,"This is an excerpt from Schumann's Arabeske, with deep and melancholic melodies. "
722,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/schumann-arabeske-2_schiff.wav,train,"How would you rate the difficulty of this piece, in a scale of 9?",6
723,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/schumann-arabeske-2_schiff.wav,train,How would you describe this performance?,"expressive, accentuated, ponderous"
724,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/schumann-arabeske-2_schiff.wav,train,What kind of music is this piece and who is the composer?,"This is an excerpt from Schumann's Arabeske, with deep and melancholic melodies. "
725,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/schumann-arabeske-2_schiff.wav,train,"How would you rate the difficulty of this piece, in a scale of 9?",6
726,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/schumann-arabeske-2_schiff.wav,train,How would you describe this performance?,sounds like sight reading
727,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/schumann-arabeske-2_schiff.wav,train,What kind of music is this piece and who is the composer?,"This is an excerpt from Schumann's Arabeske, with deep and melancholic melodies. "
728,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/schumann-arabeske-2_schiff.wav,train,"How would you rate the difficulty of this piece, in a scale of 9?",6
729,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/schumann-arabeske-2_schiff.wav,train,How would you assess this student performance?,"Sorry, but this piece sounds like a virtuoso performance. I would describe it as expressively and emotionally commanding, daring, powerful."
730,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/schumann-arabeske-2_schiff.wav,train,What kind of music is this piece and who is the composer?,"This is an excerpt from Schumann's Arabeske, with deep and melancholic melodies. "
731,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/schumann-arabeske-2_schiff.wav,train,"How would you rate the difficulty of this piece, in a scale of 9?",6
732,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/schumann-arabeske-2_schiff.wav,train,How would you describe this performance?,"brute, willing"
733,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/schumann-arabeske-2_schiff.wav,train,What kind of music is this piece and who is the composer?,"This is an excerpt from Schumann's Arabeske, with deep and melancholic melodies. "
734,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/schumann-arabeske-2_schiff.wav,train,"How would you rate the difficulty of this piece, in a scale of 9?",6
735,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/schumann-arabeske-2_schiff.wav,train,How would you describe this performance?,"slower, peaceful"
736,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/schumann-arabeske-2_schiff.wav,train,What kind of music is this piece and who is the composer?,"This is an excerpt from Schumann's Arabeske, with deep and melancholic melodies. "
737,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/schumann-arabeske-2_schiff.wav,train,"How would you rate the difficulty of this piece, in a scale of 9?",6
738,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/schumann-arabeske-2_schiff.wav,train,How would you assess this student performance?,"Sorry, but this piece sounds like a virtuoso performance. I would describe it as too affected."
739,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/schumann-arabeske-2_schiff.wav,train,What kind of music is this piece and who is the composer?,"This is an excerpt from Schumann's Arabeske, with deep and melancholic melodies. "
740,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/schumann-arabeske-2_schiff.wav,train,"How would you rate the difficulty of this piece, in a scale of 9?",6
741,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/schumann-arabeske-2_schiff.wav,train,How would you assess this student performance?,"Sorry, but this piece sounds like a virtuoso performance. I would describe it as straight."
742,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/schumann-arabeske-2_schiff.wav,train,What kind of music is this piece and who is the composer?,"This is an excerpt from Schumann's Arabeske, with deep and melancholic melodies. "
743,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/schumann-arabeske-2_schiff.wav,train,"How would you rate the difficulty of this piece, in a scale of 9?",6
744,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/schumann-arabeske-2_schiff.wav,train,How would you assess this student performance?,"Sorry, but this piece sounds like a virtuoso performance. I would describe it as dragging, without direction."
745,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/schumann-arabeske-2_schiff.wav,train,What kind of music is this piece and who is the composer?,"This is an excerpt from Schumann's Arabeske, with deep and melancholic melodies. "
746,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/schumann-arabeske-2_schiff.wav,train,"How would you rate the difficulty of this piece, in a scale of 9?",6
747,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/schumann-arabeske-2_schiff.wav,train,How would you assess this student performance?,"Sorry, but this piece sounds like a virtuoso performance. I would describe it as old recording, noble, a bit poetic, you can hear breathing of pianist,."
748,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/schumann-arabeske-2_schiff.wav,train,What kind of music is this piece and who is the composer?,"This is an excerpt from Schumann's Arabeske, with deep and melancholic melodies. "
749,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/schumann-arabeske-2_schiff.wav,train,"How would you rate the difficulty of this piece, in a scale of 9?",6
750,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/schumann-arabeske-2_schiff.wav,train,How would you assess this student performance?,"Sorry, but this piece sounds like a virtuoso performance. I would describe it as slow, like a gum, motionless."
751,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/schumann-arabeske-2_schiff.wav,train,What kind of music is this piece and who is the composer?,"This is an excerpt from Schumann's Arabeske, with deep and melancholic melodies. "
752,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/schumann-arabeske-2_schiff.wav,train,"How would you rate the difficulty of this piece, in a scale of 9?",6
753,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/schumann-arabeske-2_schiff.wav,train,How would you describe this performance?,pleasant tempo for listening and understanding what is happening in the music
754,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/schumann-arabeske-2_schiff.wav,train,What kind of music is this piece and who is the composer?,"This is an excerpt from Schumann's Arabeske, with deep and melancholic melodies. "
755,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/schumann-arabeske-2_schiff.wav,train,"How would you rate the difficulty of this piece, in a scale of 9?",6
756,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/schumann-arabeske-2_schiff.wav,train,How would you describe this performance?,speaking
757,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/schumann-arabeske-2_schiff.wav,train,What kind of music is this piece and who is the composer?,"This is an excerpt from Schumann's Arabeske, with deep and melancholic melodies. "
758,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/schumann-arabeske-2_schiff.wav,train,"How would you rate the difficulty of this piece, in a scale of 9?",6
759,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/schumann-arabeske-2_schiff.wav,train,How would you describe this performance?,"sad, trying to get happy"
760,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/schumann-arabeske-2_schiff.wav,train,What kind of music is this piece and who is the composer?,"This is an excerpt from Schumann's Arabeske, with deep and melancholic melodies. "
761,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/schumann-arabeske-2_schiff.wav,train,"How would you rate the difficulty of this piece, in a scale of 9?",6
762,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/schumann-arabeske-2_schiff.wav,train,How would you describe this performance?,"heavy, repeating, boring"
763,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/schumann-arabeske-2_schiff.wav,train,What kind of music is this piece and who is the composer?,"This is an excerpt from Schumann's Arabeske, with deep and melancholic melodies. "
764,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/schumann-arabeske-2_schiff.wav,train,"How would you rate the difficulty of this piece, in a scale of 9?",6
765,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/schumann-arabeske-2_schiff.wav,train,How would you assess this student performance?,"Sorry, but this piece sounds like a virtuoso performance. I would describe it as minor."
766,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/schumann-arabeske-2_schiff.wav,train,What kind of music is this piece and who is the composer?,"This is an excerpt from Schumann's Arabeske, with deep and melancholic melodies. "
767,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/schumann-arabeske-2_schiff.wav,train,"How would you rate the difficulty of this piece, in a scale of 9?",6
768,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/schumann-arabeske-2_schiff.wav,train,How would you assess this student performance?,"Sorry, but this piece sounds like a virtuoso performance. I would describe it as balanced, smooth, graceful."
769,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/schumann-arabeske-2_schiff.wav,train,What kind of music is this piece and who is the composer?,"This is an excerpt from Schumann's Arabeske, with deep and melancholic melodies. "
770,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/schumann-arabeske-2_schiff.wav,train,"How would you rate the difficulty of this piece, in a scale of 9?",6
771,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/schumann-arabeske-2_schiff.wav,train,How would you describe this performance?,"calm, slower"
772,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/schumann-arabeske-2_schiff.wav,train,What kind of music is this piece and who is the composer?,"This is an excerpt from Schumann's Arabeske, with deep and melancholic melodies. "
773,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/schumann-arabeske-2_schiff.wav,train,"How would you rate the difficulty of this piece, in a scale of 9?",6
774,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/schumann-arabeske-2_schiff.wav,train,How would you describe this performance?,unhurried
775,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/schumann-arabeske-2_schiff.wav,train,What kind of music is this piece and who is the composer?,"This is an excerpt from Schumann's Arabeske, with deep and melancholic melodies. "
776,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/schumann-arabeske-2_schiff.wav,train,"How would you rate the difficulty of this piece, in a scale of 9?",6
777,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/schumann-arabeske-2_schiff.wav,train,How would you assess this student performance?,"Sorry, but this piece sounds like a virtuoso performance. I would describe it as without focus."
778,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/schumann-arabeske-2_schiff.wav,train,What kind of music is this piece and who is the composer?,"This is an excerpt from Schumann's Arabeske, with deep and melancholic melodies. "
779,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/schumann-arabeske-2_schiff.wav,train,"How would you rate the difficulty of this piece, in a scale of 9?",6
780,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/schumann-arabeske-2_schiff.wav,train,How would you describe this performance?,horrible
781,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/schumann-arabeske-2_schiff.wav,train,What kind of music is this piece and who is the composer?,"This is an excerpt from Schumann's Arabeske, with deep and melancholic melodies. "
782,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/schumann-arabeske-2_schiff.wav,train,"How would you rate the difficulty of this piece, in a scale of 9?",6
783,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/schumann-arabeske-2_schiff.wav,train,How would you assess this student performance?,"Sorry, but this piece sounds like a virtuoso performance. I would describe it as moving, slow, expressive, well-phrased."
784,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/schumann-arabeske-2_schiff.wav,train,What kind of music is this piece and who is the composer?,"This is an excerpt from Schumann's Arabeske, with deep and melancholic melodies. "
785,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/schumann-arabeske-2_schiff.wav,train,"How would you rate the difficulty of this piece, in a scale of 9?",6
786,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/schumann-arabeske-2_schiff.wav,train,How would you assess this student performance?,"Sorry, but this piece sounds like a virtuoso performance. I would describe it as melodic, fatigued, tense."
787,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/schumann-arabeske-2_schiff.wav,train,What kind of music is this piece and who is the composer?,"This is an excerpt from Schumann's Arabeske, with deep and melancholic melodies. "
788,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/schumann-arabeske-2_schiff.wav,train,"How would you rate the difficulty of this piece, in a scale of 9?",6
789,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/schumann-arabeske-2_vorraber.wav,train,How would you assess this student performance?,"Sorry, but this piece sounds like a virtuoso performance. I would describe it as distant."
790,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/schumann-arabeske-2_vorraber.wav,train,What kind of music is this piece and who is the composer?,"This is an excerpt from Schumann's Arabeske, with deep and melancholic melodies. "
791,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/schumann-arabeske-2_vorraber.wav,train,"How would you rate the difficulty of this piece, in a scale of 9?",6
792,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/schumann-arabeske-2_vorraber.wav,train,How would you describe this performance?,dramatic
793,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/schumann-arabeske-2_vorraber.wav,train,What kind of music is this piece and who is the composer?,"This is an excerpt from Schumann's Arabeske, with deep and melancholic melodies. "
794,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/schumann-arabeske-2_vorraber.wav,train,"How would you rate the difficulty of this piece, in a scale of 9?",6
795,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/schumann-arabeske-2_vorraber.wav,train,How would you assess this student performance?,"Sorry, but this piece sounds like a virtuoso performance. I would describe it as strong ."
796,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/schumann-arabeske-2_vorraber.wav,train,What kind of music is this piece and who is the composer?,"This is an excerpt from Schumann's Arabeske, with deep and melancholic melodies. "
797,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/schumann-arabeske-2_vorraber.wav,train,"How would you rate the difficulty of this piece, in a scale of 9?",6
798,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/schumann-arabeske-2_vorraber.wav,train,How would you describe this performance?,"exciting, cheerful"
799,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/schumann-arabeske-2_vorraber.wav,train,What kind of music is this piece and who is the composer?,"This is an excerpt from Schumann's Arabeske, with deep and melancholic melodies. "
800,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/schumann-arabeske-2_vorraber.wav,train,"How would you rate the difficulty of this piece, in a scale of 9?",6
801,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/schumann-arabeske-2_vorraber.wav,train,How would you describe this performance?,"loud, heavy, soft"
802,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/schumann-arabeske-2_vorraber.wav,train,What kind of music is this piece and who is the composer?,"This is an excerpt from Schumann's Arabeske, with deep and melancholic melodies. "
803,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/schumann-arabeske-2_vorraber.wav,train,"How would you rate the difficulty of this piece, in a scale of 9?",6
804,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/schumann-arabeske-2_vorraber.wav,train,How would you assess this student performance?,"Sorry, but this piece sounds like a virtuoso performance. I would describe it as flowing, emotional, round."
805,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/schumann-arabeske-2_vorraber.wav,train,What kind of music is this piece and who is the composer?,"This is an excerpt from Schumann's Arabeske, with deep and melancholic melodies. "
806,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/schumann-arabeske-2_vorraber.wav,train,"How would you rate the difficulty of this piece, in a scale of 9?",6
807,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/schumann-arabeske-2_vorraber.wav,train,How would you assess this student performance?,"Sorry, but this piece sounds like a virtuoso performance. I would describe it as accurate, vivid."
808,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/schumann-arabeske-2_vorraber.wav,train,What kind of music is this piece and who is the composer?,"This is an excerpt from Schumann's Arabeske, with deep and melancholic melodies. "
809,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/schumann-arabeske-2_vorraber.wav,train,"How would you rate the difficulty of this piece, in a scale of 9?",6
810,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/schumann-arabeske-2_vorraber.wav,train,How would you assess this student performance?,"Sorry, but this piece sounds like a virtuoso performance. I would describe it as incoherent, tempo varies too much."
811,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/schumann-arabeske-2_vorraber.wav,train,What kind of music is this piece and who is the composer?,"This is an excerpt from Schumann's Arabeske, with deep and melancholic melodies. "
812,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/schumann-arabeske-2_vorraber.wav,train,"How would you rate the difficulty of this piece, in a scale of 9?",6
813,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/schumann-arabeske-2_vorraber.wav,train,How would you assess this student performance?,"Sorry, but this piece sounds like a virtuoso performance. I would describe it as lively, allegro, shallow."
814,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/schumann-arabeske-2_vorraber.wav,train,What kind of music is this piece and who is the composer?,"This is an excerpt from Schumann's Arabeske, with deep and melancholic melodies. "
815,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/schumann-arabeske-2_vorraber.wav,train,"How would you rate the difficulty of this piece, in a scale of 9?",6
816,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/schumann-arabeske-2_vorraber.wav,train,How would you assess this student performance?,"Sorry, but this piece sounds like a virtuoso performance. I would describe it as a bit over pedaled."
817,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/schumann-arabeske-2_vorraber.wav,train,What kind of music is this piece and who is the composer?,"This is an excerpt from Schumann's Arabeske, with deep and melancholic melodies. "
818,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/schumann-arabeske-2_vorraber.wav,train,"How would you rate the difficulty of this piece, in a scale of 9?",6
819,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/schumann-arabeske-2_vorraber.wav,train,How would you assess this student performance?,"Sorry, but this piece sounds like a virtuoso performance. I would describe it as dynamic, explorative, emotional, expressive."
820,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/schumann-arabeske-2_vorraber.wav,train,What kind of music is this piece and who is the composer?,"This is an excerpt from Schumann's Arabeske, with deep and melancholic melodies. "
821,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/schumann-arabeske-2_vorraber.wav,train,"How would you rate the difficulty of this piece, in a scale of 9?",6
822,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/schumann-arabeske-2_vorraber.wav,train,How would you describe this performance?,"forward, excited"
823,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/schumann-arabeske-2_vorraber.wav,train,What kind of music is this piece and who is the composer?,"This is an excerpt from Schumann's Arabeske, with deep and melancholic melodies. "
824,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/schumann-arabeske-2_vorraber.wav,train,"How would you rate the difficulty of this piece, in a scale of 9?",6
825,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/schumann-arabeske-2_vorraber.wav,train,How would you assess this student performance?,"Sorry, but this piece sounds like a virtuoso performance. I would describe it as bright, positive."
826,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/schumann-arabeske-2_vorraber.wav,train,What kind of music is this piece and who is the composer?,"This is an excerpt from Schumann's Arabeske, with deep and melancholic melodies. "
827,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/schumann-arabeske-2_vorraber.wav,train,"How would you rate the difficulty of this piece, in a scale of 9?",6
828,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/schumann-arabeske-2_vorraber.wav,train,How would you assess this student performance?,"Sorry, but this piece sounds like a virtuoso performance. I would describe it as melody is clear."
829,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/schumann-arabeske-2_vorraber.wav,train,What kind of music is this piece and who is the composer?,"This is an excerpt from Schumann's Arabeske, with deep and melancholic melodies. "
830,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/schumann-arabeske-2_vorraber.wav,train,"How would you rate the difficulty of this piece, in a scale of 9?",6
831,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/schumann-arabeske-2_vorraber.wav,train,How would you describe this performance?,realistic
832,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/schumann-arabeske-2_vorraber.wav,train,What kind of music is this piece and who is the composer?,"This is an excerpt from Schumann's Arabeske, with deep and melancholic melodies. "
833,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/schumann-arabeske-2_vorraber.wav,train,"How would you rate the difficulty of this piece, in a scale of 9?",6
834,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/schumann-arabeske-2_vorraber.wav,train,How would you describe this performance?,natural sound
835,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/schumann-arabeske-2_vorraber.wav,train,What kind of music is this piece and who is the composer?,"This is an excerpt from Schumann's Arabeske, with deep and melancholic melodies. "
836,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/schumann-arabeske-2_vorraber.wav,train,"How would you rate the difficulty of this piece, in a scale of 9?",6
837,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/schumann-arabeske-2_vorraber.wav,train,How would you describe this performance?,"also not very poetic, a bit brutal"
838,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/schumann-arabeske-2_vorraber.wav,train,What kind of music is this piece and who is the composer?,"This is an excerpt from Schumann's Arabeske, with deep and melancholic melodies. "
839,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/schumann-arabeske-2_vorraber.wav,train,"How would you rate the difficulty of this piece, in a scale of 9?",6
840,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/schumann-arabeske-2_vorraber.wav,train,How would you assess this student performance?,"Sorry, but this piece sounds like a virtuoso performance. I would describe it as majestic, fluent, full, round."
841,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/schumann-arabeske-2_vorraber.wav,train,What kind of music is this piece and who is the composer?,"This is an excerpt from Schumann's Arabeske, with deep and melancholic melodies. "
842,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/schumann-arabeske-2_vorraber.wav,train,"How would you rate the difficulty of this piece, in a scale of 9?",6
843,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/schumann-arabeske-2_vorraber.wav,train,How would you assess this student performance?,"Sorry, but this piece sounds like a virtuoso performance. I would describe it as too fast."
844,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/schumann-arabeske-2_vorraber.wav,train,What kind of music is this piece and who is the composer?,"This is an excerpt from Schumann's Arabeske, with deep and melancholic melodies. "
845,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/schumann-arabeske-2_vorraber.wav,train,"How would you rate the difficulty of this piece, in a scale of 9?",6
846,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/schumann-arabeske-2_vorraber.wav,train,How would you describe this performance?,full sound
847,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/schumann-arabeske-2_vorraber.wav,train,What kind of music is this piece and who is the composer?,"This is an excerpt from Schumann's Arabeske, with deep and melancholic melodies. "
848,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/schumann-arabeske-2_vorraber.wav,train,"How would you rate the difficulty of this piece, in a scale of 9?",6
849,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/schumann-arabeske-2_vorraber.wav,train,How would you describe this performance?,scared
850,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/schumann-arabeske-2_vorraber.wav,train,What kind of music is this piece and who is the composer?,"This is an excerpt from Schumann's Arabeske, with deep and melancholic melodies. "
851,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/schumann-arabeske-2_vorraber.wav,train,"How would you rate the difficulty of this piece, in a scale of 9?",6
852,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/schumann-arabeske-2_vorraber.wav,train,How would you assess this student performance?,"Sorry, but this piece sounds like a virtuoso performance. I would describe it as flowing, spinning wheel, bright, hard story inside."
853,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/schumann-arabeske-2_vorraber.wav,train,What kind of music is this piece and who is the composer?,"This is an excerpt from Schumann's Arabeske, with deep and melancholic melodies. "
854,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/schumann-arabeske-2_vorraber.wav,train,"How would you rate the difficulty of this piece, in a scale of 9?",6
855,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/schumann-arabeske-2_vorraber.wav,train,How would you assess this student performance?,"Sorry, but this piece sounds like a virtuoso performance. I would describe it as enjoyable."
856,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/schumann-arabeske-2_vorraber.wav,train,What kind of music is this piece and who is the composer?,"This is an excerpt from Schumann's Arabeske, with deep and melancholic melodies. "
857,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/schumann-arabeske-2_vorraber.wav,train,"How would you rate the difficulty of this piece, in a scale of 9?",6
858,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/schumann-arabeske-2_vorraber.wav,train,How would you assess this student performance?,"Sorry, but this piece sounds like a virtuoso performance. I would describe it as mellow, accurate, fast."
859,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/schumann-arabeske-2_vorraber.wav,train,What kind of music is this piece and who is the composer?,"This is an excerpt from Schumann's Arabeske, with deep and melancholic melodies. "
860,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/schumann-arabeske-2_vorraber.wav,train,"How would you rate the difficulty of this piece, in a scale of 9?",6
861,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/schumann-arabeske-2_vorraber.wav,train,How would you assess this student performance?,"Sorry, but this piece sounds like a virtuoso performance. I would describe it as agitated."
862,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/schumann-arabeske-2_vorraber.wav,train,What kind of music is this piece and who is the composer?,"This is an excerpt from Schumann's Arabeske, with deep and melancholic melodies. "
863,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/schumann-arabeske-2_vorraber.wav,train,"How would you rate the difficulty of this piece, in a scale of 9?",6
864,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/schumann-arabeske-2_vorraber.wav,train,How would you assess this student performance?,"Sorry, but this piece sounds like a virtuoso performance. I would describe it as airy, agile, good instrument, it conveys meaning of romanticism."
865,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/schumann-arabeske-2_vorraber.wav,train,What kind of music is this piece and who is the composer?,"This is an excerpt from Schumann's Arabeske, with deep and melancholic melodies. "
866,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/schumann-arabeske-2_vorraber.wav,train,"How would you rate the difficulty of this piece, in a scale of 9?",6
867,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/schumann-arabeske-2_vorraber.wav,train,How would you assess this student performance?,"Sorry, but this piece sounds like a virtuoso performance. I would describe it as agitated."
868,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/schumann-arabeske-2_vorraber.wav,train,What kind of music is this piece and who is the composer?,"This is an excerpt from Schumann's Arabeske, with deep and melancholic melodies. "
869,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/schumann-arabeske-2_vorraber.wav,train,"How would you rate the difficulty of this piece, in a scale of 9?",6
870,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/schumann-arabeske-2_vorraber.wav,train,How would you assess this student performance?,"Sorry, but this piece sounds like a virtuoso performance. I would describe it as without focus."
871,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/schumann-arabeske-2_vorraber.wav,train,What kind of music is this piece and who is the composer?,"This is an excerpt from Schumann's Arabeske, with deep and melancholic melodies. "
872,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/schumann-arabeske-2_vorraber.wav,train,"How would you rate the difficulty of this piece, in a scale of 9?",6
873,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/schumann-arabeske-2_vorraber.wav,train,How would you assess this student performance?,"Sorry, but this piece sounds like a virtuoso performance. I would describe it as with dignity."
874,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/schumann-arabeske-2_vorraber.wav,train,What kind of music is this piece and who is the composer?,"This is an excerpt from Schumann's Arabeske, with deep and melancholic melodies. "
875,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/schumann-arabeske-2_vorraber.wav,train,"How would you rate the difficulty of this piece, in a scale of 9?",6
876,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/schumann-arabeske-2_vorraber.wav,train,How would you assess this student performance?,"Sorry, but this piece sounds like a virtuoso performance. I would describe it as trapped, reverberating, pedaled, ."
877,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/schumann-arabeske-2_vorraber.wav,train,What kind of music is this piece and who is the composer?,"This is an excerpt from Schumann's Arabeske, with deep and melancholic melodies. "
878,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/schumann-arabeske-2_vorraber.wav,train,"How would you rate the difficulty of this piece, in a scale of 9?",6
879,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/schumann-arabeske-2_vorraber.wav,train,How would you assess this student performance?,"Sorry, but this piece sounds like a virtuoso performance. I would describe it as nimble, cantabile, with drama, pathos."
880,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/schumann-arabeske-2_vorraber.wav,train,What kind of music is this piece and who is the composer?,"This is an excerpt from Schumann's Arabeske, with deep and melancholic melodies. "
881,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/schumann-arabeske-2_vorraber.wav,train,"How would you rate the difficulty of this piece, in a scale of 9?",6
882,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/schumann-arabeske-2_horowitz.wav,train,How would you assess this student performance?,"Sorry, but this piece sounds like a virtuoso performance. I would describe it as hectic, unrelaxed."
883,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/schumann-arabeske-2_horowitz.wav,train,What kind of music is this piece and who is the composer?,"This is an excerpt from Schumann's Arabeske, with deep and melancholic melodies. "
884,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/schumann-arabeske-2_horowitz.wav,train,"How would you rate the difficulty of this piece, in a scale of 9?",6
885,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/schumann-arabeske-2_horowitz.wav,train,How would you describe this performance?,hesitant
886,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/schumann-arabeske-2_horowitz.wav,train,What kind of music is this piece and who is the composer?,"This is an excerpt from Schumann's Arabeske, with deep and melancholic melodies. "
887,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/schumann-arabeske-2_horowitz.wav,train,"How would you rate the difficulty of this piece, in a scale of 9?",6
888,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/schumann-arabeske-2_horowitz.wav,train,How would you describe this performance?,irregular
889,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/schumann-arabeske-2_horowitz.wav,train,What kind of music is this piece and who is the composer?,"This is an excerpt from Schumann's Arabeske, with deep and melancholic melodies. "
890,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/schumann-arabeske-2_horowitz.wav,train,"How would you rate the difficulty of this piece, in a scale of 9?",6
891,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/schumann-arabeske-2_horowitz.wav,train,How would you assess this student performance?,"Sorry, but this piece sounds like a virtuoso performance. I would describe it as similar to the previous one."
892,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/schumann-arabeske-2_horowitz.wav,train,What kind of music is this piece and who is the composer?,"This is an excerpt from Schumann's Arabeske, with deep and melancholic melodies. "
893,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/schumann-arabeske-2_horowitz.wav,train,"How would you rate the difficulty of this piece, in a scale of 9?",6
894,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/schumann-arabeske-2_horowitz.wav,train,How would you assess this student performance?,"Sorry, but this piece sounds like a virtuoso performance. I would describe it as loud, fast, up and down, mechanical."
895,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/schumann-arabeske-2_horowitz.wav,train,What kind of music is this piece and who is the composer?,"This is an excerpt from Schumann's Arabeske, with deep and melancholic melodies. "
896,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/schumann-arabeske-2_horowitz.wav,train,"How would you rate the difficulty of this piece, in a scale of 9?",6
897,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/schumann-arabeske-2_horowitz.wav,train,How would you describe this performance?,"expressive, hard, metallic, halting"
898,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/schumann-arabeske-2_horowitz.wav,train,What kind of music is this piece and who is the composer?,"This is an excerpt from Schumann's Arabeske, with deep and melancholic melodies. "
899,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/schumann-arabeske-2_horowitz.wav,train,"How would you rate the difficulty of this piece, in a scale of 9?",6
900,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/schumann-arabeske-2_horowitz.wav,train,How would you assess this student performance?,"Sorry, but this piece sounds like a virtuoso performance. I would describe it as soft, gentle, animated."
901,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/schumann-arabeske-2_horowitz.wav,train,What kind of music is this piece and who is the composer?,"This is an excerpt from Schumann's Arabeske, with deep and melancholic melodies. "
902,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/schumann-arabeske-2_horowitz.wav,train,"How would you rate the difficulty of this piece, in a scale of 9?",6
903,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/schumann-arabeske-2_horowitz.wav,train,How would you assess this student performance?,"Sorry, but this piece sounds like a virtuoso performance. I would describe it as dark, heavy, concerned."
904,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/schumann-arabeske-2_horowitz.wav,train,What kind of music is this piece and who is the composer?,"This is an excerpt from Schumann's Arabeske, with deep and melancholic melodies. "
905,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/schumann-arabeske-2_horowitz.wav,train,"How would you rate the difficulty of this piece, in a scale of 9?",6
906,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/schumann-arabeske-2_horowitz.wav,train,How would you assess this student performance?,"Sorry, but this piece sounds like a virtuoso performance. I would describe it as hasty, rushed, aloof, stumbling."
907,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/schumann-arabeske-2_horowitz.wav,train,What kind of music is this piece and who is the composer?,"This is an excerpt from Schumann's Arabeske, with deep and melancholic melodies. "
908,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/schumann-arabeske-2_horowitz.wav,train,"How would you rate the difficulty of this piece, in a scale of 9?",6
909,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/schumann-arabeske-2_horowitz.wav,train,How would you describe this performance?,seasickness inducing
910,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/schumann-arabeske-2_horowitz.wav,train,What kind of music is this piece and who is the composer?,"This is an excerpt from Schumann's Arabeske, with deep and melancholic melodies. "
911,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/schumann-arabeske-2_horowitz.wav,train,"How would you rate the difficulty of this piece, in a scale of 9?",6
912,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/schumann-arabeske-2_horowitz.wav,train,How would you assess this student performance?,"Sorry, but this piece sounds like a virtuoso performance. I would describe it as expressive, light in emotion, lacks a certain pain."
913,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/schumann-arabeske-2_horowitz.wav,train,What kind of music is this piece and who is the composer?,"This is an excerpt from Schumann's Arabeske, with deep and melancholic melodies. "
914,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/schumann-arabeske-2_horowitz.wav,train,"How would you rate the difficulty of this piece, in a scale of 9?",6
915,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/schumann-arabeske-2_horowitz.wav,train,How would you assess this student performance?,"Sorry, but this piece sounds like a virtuoso performance. I would describe it as undecided, tentative."
916,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/schumann-arabeske-2_horowitz.wav,train,What kind of music is this piece and who is the composer?,"This is an excerpt from Schumann's Arabeske, with deep and melancholic melodies. "
917,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/schumann-arabeske-2_horowitz.wav,train,"How would you rate the difficulty of this piece, in a scale of 9?",6
918,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/schumann-arabeske-2_horowitz.wav,train,How would you describe this performance?,eager
919,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/schumann-arabeske-2_horowitz.wav,train,What kind of music is this piece and who is the composer?,"This is an excerpt from Schumann's Arabeske, with deep and melancholic melodies. "
920,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/schumann-arabeske-2_horowitz.wav,train,"How would you rate the difficulty of this piece, in a scale of 9?",6
921,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/schumann-arabeske-2_horowitz.wav,train,How would you assess this student performance?,"Sorry, but this piece sounds like a virtuoso performance. I would describe it as not a good voice conducting."
922,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/schumann-arabeske-2_horowitz.wav,train,What kind of music is this piece and who is the composer?,"This is an excerpt from Schumann's Arabeske, with deep and melancholic melodies. "
923,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/schumann-arabeske-2_horowitz.wav,train,"How would you rate the difficulty of this piece, in a scale of 9?",6
924,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/schumann-arabeske-2_horowitz.wav,train,How would you assess this student performance?,"Sorry, but this piece sounds like a virtuoso performance. I would describe it as damped, distant."
925,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/schumann-arabeske-2_horowitz.wav,train,What kind of music is this piece and who is the composer?,"This is an excerpt from Schumann's Arabeske, with deep and melancholic melodies. "
926,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/schumann-arabeske-2_horowitz.wav,train,"How would you rate the difficulty of this piece, in a scale of 9?",6
927,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/schumann-arabeske-2_horowitz.wav,train,How would you describe this performance?,indistinct
928,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/schumann-arabeske-2_horowitz.wav,train,What kind of music is this piece and who is the composer?,"This is an excerpt from Schumann's Arabeske, with deep and melancholic melodies. "
929,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/schumann-arabeske-2_horowitz.wav,train,"How would you rate the difficulty of this piece, in a scale of 9?",6
930,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/schumann-arabeske-2_horowitz.wav,train,How would you describe this performance?,"rushed, unpoetic, piano sounds tinny"
931,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/schumann-arabeske-2_horowitz.wav,train,What kind of music is this piece and who is the composer?,"This is an excerpt from Schumann's Arabeske, with deep and melancholic melodies. "
932,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/schumann-arabeske-2_horowitz.wav,train,"How would you rate the difficulty of this piece, in a scale of 9?",6
933,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/schumann-arabeske-2_horowitz.wav,train,How would you describe this performance?,"small, contemplating, soft "
934,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/schumann-arabeske-2_horowitz.wav,train,What kind of music is this piece and who is the composer?,"This is an excerpt from Schumann's Arabeske, with deep and melancholic melodies. "
935,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/schumann-arabeske-2_horowitz.wav,train,"How would you rate the difficulty of this piece, in a scale of 9?",6
936,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/schumann-arabeske-2_horowitz.wav,train,How would you assess this student performance?,"Sorry, but this piece sounds like a virtuoso performance. I would describe it as too fast, too many dynamics changes."
937,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/schumann-arabeske-2_horowitz.wav,train,What kind of music is this piece and who is the composer?,"This is an excerpt from Schumann's Arabeske, with deep and melancholic melodies. "
938,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/schumann-arabeske-2_horowitz.wav,train,"How would you rate the difficulty of this piece, in a scale of 9?",6
939,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/schumann-arabeske-2_horowitz.wav,train,How would you assess this student performance?,"Sorry, but this piece sounds like a virtuoso performance. I would describe it as dynamic, varied, thin."
940,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/schumann-arabeske-2_horowitz.wav,train,What kind of music is this piece and who is the composer?,"This is an excerpt from Schumann's Arabeske, with deep and melancholic melodies. "
941,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/schumann-arabeske-2_horowitz.wav,train,"How would you rate the difficulty of this piece, in a scale of 9?",6
942,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/schumann-arabeske-2_horowitz.wav,train,How would you describe this performance?,"passionate, playful"
943,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/schumann-arabeske-2_horowitz.wav,train,What kind of music is this piece and who is the composer?,"This is an excerpt from Schumann's Arabeske, with deep and melancholic melodies. "
944,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/schumann-arabeske-2_horowitz.wav,train,"How would you rate the difficulty of this piece, in a scale of 9?",6
945,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/schumann-arabeske-2_horowitz.wav,train,How would you assess this student performance?,"Sorry, but this piece sounds like a virtuoso performance. I would describe it as very moving, dynamic."
946,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/schumann-arabeske-2_horowitz.wav,train,What kind of music is this piece and who is the composer?,"This is an excerpt from Schumann's Arabeske, with deep and melancholic melodies. "
947,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/schumann-arabeske-2_horowitz.wav,train,"How would you rate the difficulty of this piece, in a scale of 9?",6
948,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/schumann-arabeske-2_horowitz.wav,train,How would you assess this student performance?,"Sorry, but this piece sounds like a virtuoso performance. I would describe it as sophisticated."
949,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/schumann-arabeske-2_horowitz.wav,train,What kind of music is this piece and who is the composer?,"This is an excerpt from Schumann's Arabeske, with deep and melancholic melodies. "
950,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/schumann-arabeske-2_horowitz.wav,train,"How would you rate the difficulty of this piece, in a scale of 9?",6
951,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/schumann-arabeske-2_horowitz.wav,train,How would you assess this student performance?,"Sorry, but this piece sounds like a virtuoso performance. I would describe it as mellow, dynamic."
952,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/schumann-arabeske-2_horowitz.wav,train,What kind of music is this piece and who is the composer?,"This is an excerpt from Schumann's Arabeske, with deep and melancholic melodies. "
953,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/schumann-arabeske-2_horowitz.wav,train,"How would you rate the difficulty of this piece, in a scale of 9?",6
954,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/schumann-arabeske-2_horowitz.wav,train,How would you assess this student performance?,"Sorry, but this piece sounds like a virtuoso performance. I would describe it as strong, fast tempo variations, slightly turbulent."
955,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/schumann-arabeske-2_horowitz.wav,train,What kind of music is this piece and who is the composer?,"This is an excerpt from Schumann's Arabeske, with deep and melancholic melodies. "
956,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/schumann-arabeske-2_horowitz.wav,train,"How would you rate the difficulty of this piece, in a scale of 9?",6
957,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/schumann-arabeske-2_horowitz.wav,train,How would you assess this student performance?,"Sorry, but this piece sounds like a virtuoso performance. I would describe it as pedal too sparse, a little dry execution, very expressive, second best, technique not great."
958,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/schumann-arabeske-2_horowitz.wav,train,What kind of music is this piece and who is the composer?,"This is an excerpt from Schumann's Arabeske, with deep and melancholic melodies. "
959,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/schumann-arabeske-2_horowitz.wav,train,"How would you rate the difficulty of this piece, in a scale of 9?",6
960,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/schumann-arabeske-2_horowitz.wav,train,How would you describe this performance?,expressive
961,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/schumann-arabeske-2_horowitz.wav,train,What kind of music is this piece and who is the composer?,"This is an excerpt from Schumann's Arabeske, with deep and melancholic melodies. "
962,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/schumann-arabeske-2_horowitz.wav,train,"How would you rate the difficulty of this piece, in a scale of 9?",6
963,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/schumann-arabeske-2_horowitz.wav,train,How would you assess this student performance?,"Sorry, but this piece sounds like a virtuoso performance. I would describe it as flat."
964,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/schumann-arabeske-2_horowitz.wav,train,What kind of music is this piece and who is the composer?,"This is an excerpt from Schumann's Arabeske, with deep and melancholic melodies. "
965,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/schumann-arabeske-2_horowitz.wav,train,"How would you rate the difficulty of this piece, in a scale of 9?",6
966,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/schumann-arabeske-2_horowitz.wav,train,How would you assess this student performance?,"Sorry, but this piece sounds like a virtuoso performance. I would describe it as mechanical."
967,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/schumann-arabeske-2_horowitz.wav,train,What kind of music is this piece and who is the composer?,"This is an excerpt from Schumann's Arabeske, with deep and melancholic melodies. "
968,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/schumann-arabeske-2_horowitz.wav,train,"How would you rate the difficulty of this piece, in a scale of 9?",6
969,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/schumann-arabeske-2_horowitz.wav,train,How would you assess this student performance?,"Sorry, but this piece sounds like a virtuoso performance. I would describe it as emotionally charged, pathetic, playful."
970,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/schumann-arabeske-2_horowitz.wav,train,What kind of music is this piece and who is the composer?,"This is an excerpt from Schumann's Arabeske, with deep and melancholic melodies. "
971,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/schumann-arabeske-2_horowitz.wav,train,"How would you rate the difficulty of this piece, in a scale of 9?",6
972,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/schumann-arabeske-2_horowitz.wav,train,How would you assess this student performance?,"Sorry, but this piece sounds like a virtuoso performance. I would describe it as with spirit, calm, placid, flow."
973,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/schumann-arabeske-2_horowitz.wav,train,What kind of music is this piece and who is the composer?,"This is an excerpt from Schumann's Arabeske, with deep and melancholic melodies. "
974,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/schumann-arabeske-2_horowitz.wav,train,"How would you rate the difficulty of this piece, in a scale of 9?",6
975,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/schumann-arabeske-1_rubinstein.wav,test,How would you assess this student performance?,"Sorry, but this piece sounds like a virtuoso performance. I would describe it as mechanic, clockworky, without dynamics, dead."
976,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/schumann-arabeske-1_rubinstein.wav,test,What kind of music is this piece and who is the composer?,"This is an excerpt from Schumann's arabeske, with sweet melody and ornamental style. "
977,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/schumann-arabeske-1_rubinstein.wav,test,"How would you rate the difficulty of this piece, in a scale of 9?",6
978,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/schumann-arabeske-1_rubinstein.wav,test,How would you assess this student performance?,"Sorry, but this piece sounds like a virtuoso performance. I would describe it as strict."
979,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/schumann-arabeske-1_rubinstein.wav,test,What kind of music is this piece and who is the composer?,"This is an excerpt from Schumann's arabeske, with sweet melody and ornamental style. "
980,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/schumann-arabeske-1_rubinstein.wav,test,"How would you rate the difficulty of this piece, in a scale of 9?",6
981,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/schumann-arabeske-1_rubinstein.wav,test,How would you assess this student performance?,"Sorry, but this piece sounds like a virtuoso performance. I would describe it as galloping."
982,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/schumann-arabeske-1_rubinstein.wav,test,What kind of music is this piece and who is the composer?,"This is an excerpt from Schumann's arabeske, with sweet melody and ornamental style. "
983,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/schumann-arabeske-1_rubinstein.wav,test,"How would you rate the difficulty of this piece, in a scale of 9?",6
984,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/schumann-arabeske-1_rubinstein.wav,test,How would you describe this performance?,"fast, energetic, happy, mechanical, loud, clunky"
985,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/schumann-arabeske-1_rubinstein.wav,test,What kind of music is this piece and who is the composer?,"This is an excerpt from Schumann's arabeske, with sweet melody and ornamental style. "
986,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/schumann-arabeske-1_rubinstein.wav,test,"How would you rate the difficulty of this piece, in a scale of 9?",6
987,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/schumann-arabeske-1_rubinstein.wav,test,How would you assess this student performance?,"Sorry, but this piece sounds like a virtuoso performance. I would describe it as hard, soulless like from a machine, unround."
988,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/schumann-arabeske-1_rubinstein.wav,test,What kind of music is this piece and who is the composer?,"This is an excerpt from Schumann's arabeske, with sweet melody and ornamental style. "
989,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/schumann-arabeske-1_rubinstein.wav,test,"How would you rate the difficulty of this piece, in a scale of 9?",6
990,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/schumann-arabeske-1_rubinstein.wav,test,How would you describe this performance?,"riding, droning"
991,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/schumann-arabeske-1_rubinstein.wav,test,What kind of music is this piece and who is the composer?,"This is an excerpt from Schumann's arabeske, with sweet melody and ornamental style. "
992,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/schumann-arabeske-1_rubinstein.wav,test,"How would you rate the difficulty of this piece, in a scale of 9?",6
993,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/schumann-arabeske-1_rubinstein.wav,test,How would you assess this student performance?,"Sorry, but this piece sounds like a virtuoso performance. I would describe it as simply horrible, computer rendition."
994,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/schumann-arabeske-1_rubinstein.wav,test,What kind of music is this piece and who is the composer?,"This is an excerpt from Schumann's arabeske, with sweet melody and ornamental style. "
995,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/schumann-arabeske-1_rubinstein.wav,test,"How would you rate the difficulty of this piece, in a scale of 9?",6
996,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/schumann-arabeske-1_rubinstein.wav,test,How would you assess this student performance?,"Sorry, but this piece sounds like a virtuoso performance. I would describe it as sounds like drunk sight-reading, sloppy, was this a bot?."
997,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/schumann-arabeske-1_rubinstein.wav,test,What kind of music is this piece and who is the composer?,"This is an excerpt from Schumann's arabeske, with sweet melody and ornamental style. "
998,/data/EECS-MachineListeningLab/datasets/LLaQo/con_espressione/audio_all/schumann-arabeske-1_rubinstein.wav,test,"How would you rate the difficulty of this piece, in a scale of 9?",6