-
Notifications
You must be signed in to change notification settings - Fork 29
/
iemocap_test.json
10051 lines (10051 loc) · 368 KB
/
iemocap_test.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{
"train.Ses04F_script03_1": [
[
{
"turn": 1,
"speaker": "A",
"utterance": "Ahh. It sent shivers up my spine.",
"emotion": "excited",
"expanded emotion cause evidence": [
"b",
1
],
"expanded emotion cause span": [
"b",
"It sent shivers up my spine."
],
"type": [
"latent",
"no-context"
]
},
{
"turn": 2,
"speaker": "B",
"utterance": "What shall we do if they suddenly walk in on us?",
"emotion": "excited",
"expanded emotion cause evidence": [
"b",
"b",
1,
2
],
"expanded emotion cause span": [
"b",
"b",
"It sent shivers up my spine.",
"if they suddenly walk in on us?"
],
"type": [
"latent",
"no-context",
"inter-personal"
]
},
{
"turn": 3,
"speaker": "A",
"utterance": "Behave exquisitely.",
"emotion": "excited",
"expanded emotion cause evidence": [
"b",
1
],
"expanded emotion cause span": [
"b",
"It sent shivers up my spine."
],
"type": [
"latent",
"self-contagion"
]
},
{
"turn": 4,
"speaker": "B",
"utterance": "With the most perfect poise.",
"emotion": "excited",
"expanded emotion cause evidence": [
"b",
"b",
1,
2
],
"expanded emotion cause span": [
"b",
"b",
"It sent shivers up my spine.",
"if they suddenly walk in on us?"
],
"type": [
"latent",
"hybrid"
]
},
{
"turn": 5,
"speaker": "A",
"utterance": "Certainly I shall probably do a court curtsy.",
"emotion": "excited",
"expanded emotion cause evidence": [
"b",
1
],
"expanded emotion cause span": [
"b",
"It sent shivers up my spine."
],
"type": [
"latent",
"self-contagion"
]
},
{
"turn": 6,
"speaker": "B",
"utterance": "Things that ought to matter dreadfully don't matter at all when one's happy, do they?",
"emotion": "excited",
"expanded emotion cause evidence": [
"b",
"b",
1,
2
],
"expanded emotion cause span": [
"b",
"b",
"It sent shivers up my spine.",
"if they suddenly walk in on us?"
],
"type": [
"latent",
"hybrid"
]
},
{
"turn": 7,
"speaker": "B",
"utterance": "Don't say that, my darling.",
"emotion": "neutral"
},
{
"turn": 8,
"speaker": "A",
"utterance": "It's true the whole business is very poor joke.",
"emotion": "excited",
"expanded emotion cause evidence": [
"b"
],
"expanded emotion cause span": [
"b"
],
"type": [
"latent"
]
},
{
"turn": 9,
"speaker": "A",
"utterance": "Don't laugh at me. I'm serious.",
"emotion": "excited",
"expanded emotion cause evidence": [
"b",
9
],
"expanded emotion cause span": [
"b",
"Don't laugh at me. I'm serious."
],
"type": [
"latent",
"no-context"
]
},
{
"turn": 10,
"speaker": "A",
"utterance": "Who's they?",
"emotion": "neutral"
},
{
"turn": 11,
"speaker": "A",
"utterance": "Oh, how long will it last, this ludicrous, over-bearing love of ours?",
"emotion": "excited",
"expanded emotion cause evidence": [
11
],
"expanded emotion cause span": [
"how long will it last, this ludicrous"
],
"type": [
"no-context"
]
},
{
"turn": 12,
"speaker": "B",
"utterance": "Well who knows?",
"emotion": "neutral"
},
{
"turn": 13,
"speaker": "A",
"utterance": "What happens if one of us dies? Does the one that's left still laugh?",
"emotion": "neutral"
},
{
"turn": 14,
"speaker": "A",
"utterance": "Thank you, dear. The same applies to you except that if I catch you so much as looking at another woman, I'll kill you.",
"emotion": "excited",
"expanded emotion cause evidence": [
14
],
"expanded emotion cause span": [
"The same applies to you except that if I catch you so much as looking at another woman"
],
"type": [
"no-context"
]
},
{
"turn": 15,
"speaker": "B",
"utterance": "Do you remember that awful scene in Venice?",
"emotion": "neutral"
},
{
"turn": 16,
"speaker": "A",
"utterance": "Which particular one?",
"emotion": "excited",
"expanded emotion cause evidence": [
15
],
"expanded emotion cause span": [
"Do you remember that awful scene in Venice?"
],
"type": [
"inter-personal"
]
},
{
"turn": 17,
"speaker": "B",
"utterance": "The one where you bought that little painted wooden snake and put it on my bed.",
"emotion": "neutral"
},
{
"turn": 18,
"speaker": "A",
"utterance": "Oh, Charles. That was his name. Charles he did wriggle so beautifully.",
"emotion": "excited",
"expanded emotion cause evidence": [
15,
17,
18
],
"expanded emotion cause span": [
"Do you remember that awful scene in Venice?",
"The one where you bought that little painted wooden snake and put it on my bed.",
"Charles he did wriggle so beautifully."
],
"type": [
"no-context",
"inter-personal"
]
},
{
"turn": 19,
"speaker": "B",
"utterance": "Horrible thing. I hated it.",
"emotion": "neutral"
},
{
"turn": 20,
"speaker": "A",
"utterance": "Yes, I know you did. You threw him out of the window into the Grand Canal. I don't think I'll ever forgive you for that.",
"emotion": "excited",
"expanded emotion cause evidence": [
20
],
"expanded emotion cause span": [
"You threw him out of the window into the Grand Canal."
],
"type": [
"no-context"
]
},
{
"turn": 21,
"speaker": "B",
"utterance": "How long did that row last?",
"emotion": "neutral"
},
{
"turn": 22,
"speaker": "B",
"utterance": "The worst one was in Cannes when your curling irons burnt holes in my dressing gown.",
"emotion": "neutral"
},
{
"turn": 23,
"speaker": "A",
"utterance": "It burnt my comb too and all the towels in the bathroom.",
"emotion": "excited",
"expanded emotion cause evidence": [
23
],
"expanded emotion cause span": [
"It burnt my comb too and all the towels in the bathroom."
],
"type": [
"no-context"
]
},
{
"turn": 24,
"speaker": "A",
"utterance": "Then the manager came in and found us rolling about on the floor biting and scratching like panthers.",
"emotion": "excited",
"expanded emotion cause evidence": [
23,
24
],
"expanded emotion cause span": [
"It burnt my comb too and all the towels in the bathroom.",
"Then the manager came in and found us rolling about on the floor biting and scratching like panthers."
],
"type": [
"no-context",
"self-contagion"
]
},
{
"turn": 25,
"speaker": "A",
"utterance": "How ridiculous. How utterly, utterly ridiculous.",
"emotion": "excited",
"expanded emotion cause evidence": [
23,
24,
25
],
"expanded emotion cause span": [
"It burnt my comb too and all the towels in the bathroom.",
"Then the manager came in and found us rolling about on the floor biting and scratching like panthers.",
"How ridiculous. How utterly, utterly ridiculous."
],
"type": [
"no-context",
"self-contagion"
]
},
{
"turn": 26,
"speaker": "A",
"utterance": "And very much sillier.",
"emotion": "excited",
"expanded emotion cause evidence": [
23,
24,
25
],
"expanded emotion cause span": [
"It burnt my comb too and all the towels in the bathroom.",
"Then the manager came in and found us rolling about on the floor biting and scratching like panthers.",
"How ridiculous. How utterly, utterly ridiculous."
],
"type": [
"self-contagion"
]
}
]
],
"train.Ses03F_script02_1": [
[
{
"turn": 1,
"speaker": "B",
"utterance": "Hey, what time is it? They're supposed to run around midnight, right? God, this is great, isn't it?",
"emotion": "excited",
"expanded emotion cause evidence": [
1,
1
],
"expanded emotion cause span": [
"They're supposed to run around midnight",
"this is great"
],
"type": [
"no-context"
]
},
{
"turn": 2,
"speaker": "B",
"utterance": "Look at the night we got; couldn't be better.",
"emotion": "excited",
"expanded emotion cause evidence": [
1,
1,
2
],
"expanded emotion cause span": [
"They're supposed to run around midnight",
"this is great",
"Look at the night we got; couldn't be better."
],
"type": [
"no-context",
"self-contagion"
]
},
{
"turn": 3,
"speaker": "B",
"utterance": "You know actually, I wanted to go a little further up the coast to get away from all the, the people and the lights, and uh- but I thought we'd miss it. Hey, how you doing?",
"emotion": "excited",
"expanded emotion cause evidence": [
1,
1,
2
],
"expanded emotion cause span": [
"They're supposed to run around midnight",
"this is great",
"Look at the night we got; couldn't be better."
],
"type": [
"self-contagion"
]
},
{
"turn": 4,
"speaker": "A",
"utterance": "Fine.",
"emotion": "sad",
"expanded emotion cause evidence": [
"b"
],
"expanded emotion cause span": [
"b"
],
"type": [
"latent"
]
},
{
"turn": 5,
"speaker": "B",
"utterance": "Oh, is that-is that-now, is that just foam, uhh, I can't even tell.",
"emotion": "excited",
"expanded emotion cause evidence": [
1,
1,
2,
5
],
"expanded emotion cause span": [
"They're supposed to run around midnight",
"this is great",
"Look at the night we got; couldn't be better.",
"Oh, is that-is that-now, is that just foam"
],
"type": [
"no-context",
"self-contagion"
]
},
{
"turn": 6,
"speaker": "B",
"utterance": "Oh, though if I can't tell it probably isn't them, right? It probably would be unmistakable, wouldn't you think? Hey, how you doing?",
"emotion": "excited",
"expanded emotion cause evidence": [
1,
1
],
"expanded emotion cause span": [
"They're supposed to run around midnight",
"this is great"
],
"type": [
"self-contagion"
]
},
{
"turn": 7,
"speaker": "B",
"utterance": "Oh, do you know what I forgot? I forgot my flashlight. How could I be so stupid. Oh, I-I should have brought my flashlight.",
"emotion": "excited",
"expanded emotion cause evidence": [
1,
1,
2,
7
],
"expanded emotion cause span": [
"They're supposed to run around midnight",
"this is great",
"Look at the night we got; couldn't be better.",
"I forgot my flashlight. How could I be so stupid."
],
"type": [
"no-context",
"self-contagion"
]
},
{
"turn": 8,
"speaker": "B",
"utterance": "Uh- you know, the flashlight. The silver one. There's only one, isn't there?",
"emotion": "excited",
"expanded emotion cause evidence": [
1,
1,
2,
7
],
"expanded emotion cause span": [
"They're supposed to run around midnight",
"this is great",
"Look at the night we got; couldn't be better.",
"I forgot my flashlight. How could I be so stupid."
],
"type": [
"self-contagion"
]
},
{
"turn": 9,
"speaker": "A",
"utterance": "I don't understand why you're always saying oh, it's mine, it's mine. It's not like it's just your flashlight. I mean, how do you think that makes me feel?",
"emotion": "angry",
"expanded emotion cause evidence": [
7,
9
],
"expanded emotion cause span": [
"I forgot my flashlight",
"don't understand why you're always saying oh, it's mine, it's mine. It's not like it's just your flashlight."
],
"type": [
"no-context",
"inter-personal"
]
},
{
"turn": 10,
"speaker": "B",
"utterance": "We should have brought our flashlight. I can't believe we forgot to bring it.",
"emotion": "excited",
"expanded emotion cause evidence": [
10
],
"expanded emotion cause span": [
"We should have brought our flashlight. I can't believe we forgot to bring it."
],
"type": [
"no-context"
]
},
{
"turn": 11,
"speaker": "B",
"utterance": "I hope the moon stays out.",
"emotion": "excited",
"expanded emotion cause evidence": [
10
],
"expanded emotion cause span": [
"We should have brought our flashlight. I can't believe we forgot to bring it."
],
"type": [
"self-contagion"
]
},
{
"turn": 12,
"speaker": "B",
"utterance": "Hey, do they always run during a full moon? I can't remember if it was full last year. Do you remember?",
"emotion": "excited",
"expanded emotion cause evidence": [
1,
1,
2,
7
],
"expanded emotion cause span": [
"They're supposed to run around midnight",
"this is great",
"Look at the night we got; couldn't be better.",
"I forgot my flashlight. How could I be so stupid."
],
"type": [
"self-contagion"
]
},
{
"turn": 13,
"speaker": "B",
"utterance": "We should have brought the blanket. Oh, why didn't we bring the blanket? Our blanket.",
"emotion": "excited",
"expanded emotion cause evidence": [
13
],
"expanded emotion cause span": [
"We should have brought the blanket."
],
"type": [
"no-context"
]
},
{
"turn": 14,
"speaker": "B",
"utterance": "You know what would be good right now? A six-pack. Ah, I can't believe I forgot a six-pack. A six-pack would be just the ticket right about now.",
"emotion": "excited",
"expanded emotion cause evidence": [
14
],
"expanded emotion cause span": [
"Ah, I can't believe I forgot a six-pack. A six-pack would be just the ticket right about now."
],
"type": [
"no-context"
]
},
{
"turn": 15,
"speaker": "B",
"utterance": "I'm so stupid. I'm like a little kid. I-it's amazing I get out of the house with my fly zipped. Oh- [LAUGHTER].",
"emotion": "excited",
"expanded emotion cause evidence": [
15
],
"expanded emotion cause span": [
"I-it's amazing I get out of the house with my fly zipped"
],
"type": [
"no-context"
]
},
{
"turn": 16,
"speaker": "B",
"utterance": "I wonder if they can hear us talk. Or hear the vibrations in the sand when we move.",
"emotion": "excited",
"expanded emotion cause evidence": [
16
],
"expanded emotion cause span": [
"I wonder if they can hear us talk. Or hear the vibrations in the sand when we move."
],
"type": [
"no-context"
]
},
{
"turn": 17,
"speaker": "B",
"utterance": "Do you want my jacket?",
"emotion": "neutral"
},
{
"turn": 18,
"speaker": "B",
"utterance": "Right.",
"emotion": "neutral"
},
{
"turn": 19,
"speaker": "B",
"utterance": "Yeah, that's my point too.",
"emotion": "neutral"
},
{
"turn": 20,
"speaker": "B",
"utterance": "No. No, no, no, that's not my point. My point is there's no point in coming down here if we just turn around and leave.",
"emotion": "excited",
"expanded emotion cause evidence": [
16
],
"expanded emotion cause span": [
"I wonder if they can hear us talk. Or hear the vibrations in the sand when we move."
],
"type": [
"self-contagion"
]
},
{
"turn": 21,
"speaker": "B",
"utterance": "I mean, don't you want to see it?",
"emotion": "neutral"
},
{
"turn": 22,
"speaker": "A",
"utterance": "Not particularly.",
"emotion": "sad",
"expanded emotion cause evidence": [
"b"
],
"expanded emotion cause span": [
"b"
],
"type": [
"latent"
]
},
{
"turn": 23,
"speaker": "B",
"utterance": "Why not?",
"emotion": "neutral"
},
{
"turn": 24,
"speaker": "A",
"utterance": "I don't know. I just don't.",
"emotion": "sad",
"expanded emotion cause evidence": [
"b"
],
"expanded emotion cause span": [
"b"
],
"type": [
"latent"
]
},
{
"turn": 25,
"speaker": "A",
"utterance": "Pass up what? A bunch of fish. They swim up to the beach and they flop around and they swim away and then they die.",
"emotion": "angry",
"expanded emotion cause evidence": [
16,
20,
23
],
"expanded emotion cause span": [
"I wonder if they can hear us talk. Or hear the vibrations in the sand when we move.",
"No. No, no, no, that's not my point. My point is there's no point in coming down here if we just turn around and leave.",
"Why not?"
],
"type": [
"inter-personal"
]
},
{
"turn": 26,
"speaker": "A",
"utterance": "I don't know why you're getting so excited. I mean, it's not like the landing of the moon or something. It's just fish. Fish that nobody eats.",
"emotion": "frustrated",
"expanded emotion cause evidence": [
16,
20,
26
],
"expanded emotion cause span": [
"I wonder if they can hear us talk. Or hear the vibrations in the sand when we move.",
"No. No, no, no, that's not my point. My point is there's no point in coming down here if we just turn around and leave.",
"I don't know why you're getting so excited."
],
"type": [
"no-context",
"inter-personal"
]
},
{
"turn": 27,
"speaker": "A",
"utterance": "Oh, God, Augie.",
"emotion": "frustrated",
"expanded emotion cause evidence": [
16,
20,
26
],
"expanded emotion cause span": [
"I wonder if they can hear us talk. Or hear the vibrations in the sand when we move.",
"No. No, no, no, that's not my point. My point is there's no point in coming down here if we just turn around and leave.",
"I don't know why you're getting so excited."
],
"type": [
"hybrid"
]
},
{
"turn": 28,
"speaker": "A",
"utterance": "Yes, and if you also remember, I got sand in my panties. We got into an argument about nothing. You got a sore throat and we never saw the grunions.",
"emotion": "frustrated",
"expanded emotion cause evidence": [
28
],
"expanded emotion cause span": [
"I got sand in my panties. We got into an argument about nothing. You got a sore throat and we never saw the grunions."
],
"type": [
"no-context"
]
},
{
"turn": 29,
"speaker": "A",
"utterance": "No, for God's sakes, we've never seen the grunions. We're not going to see them.",
"emotion": "frustrated",
"expanded emotion cause evidence": [
28,
29
],
"expanded emotion cause span": [
"I got sand in my panties. We got into an argument about nothing. You got a sore throat and we never saw the grunions.",
"we've never seen the grunions. We're not going to see them."
],
"type": [
"no-context",
"self-contagion"
]
},
{
"turn": 30,
"speaker": "B",
"utterance": "We just weren't in a good spot, all right? This is a much better spot. I have a good instinct for these things. Look, is that-",
"emotion": "frustrated",
"expanded emotion cause evidence": [
28,
29
],
"expanded emotion cause span": [
"I got sand in my panties. We got into an argument about nothing. You got a sore throat and we never saw the grunions.",
"we've never seen the grunions. We're not going to see them."
],
"type": [
"inter-personal"
]
},
{
"turn": 31,
"speaker": "B",
"utterance": "I wouldn't miss this for anything. I mean, think about this. Okay, I know you're not interested, but just think about this for a minute.",
"emotion": "excited",
"expanded emotion cause evidence": [
1,
1,
2,
31
],
"expanded emotion cause span": [
"They're supposed to run around midnight",
"this is great",
"Look at the night we got; couldn't be better.",
"I wouldn't miss this for anything."
],
"type": [
"no-context",
"self-contagion"
]
},
{
"turn": 32,
"speaker": "B",
"utterance": "And they all, all as one, turned as one and formed this line as big as the California coast and started swimming this way. Swimming as if that's the only thing that matters.",
"emotion": "excited",
"expanded emotion cause evidence": [
32
],
"expanded emotion cause span": [
"And they all, all as one, turned as one and formed this line as big as the California coast and started swimming this way. Swimming as if that's the only thing that matters."
],
"type": [
"no-context"
]
},
{
"turn": 33,
"speaker": "B",
"utterance": "You know, they didn't ask it a question. They didn't, they didn't take a vote. They didn't have an invitation or a map; they just started swimming as one.",
"emotion": "excited",
"expanded emotion cause evidence": [
33
],
"expanded emotion cause span": [
"You know, they didn't ask it a question. They didn't, they didn't take a vote. They didn't have an invitation or a map; they just started swimming as one."
],
"type": [
"no-context"
]
},
{
"turn": 34,
"speaker": "B",
"utterance": "its single-mindedness with one mind. Urgency that's pure urge. You know, they don't give it a name.",
"emotion": "excited",
"expanded emotion cause evidence": [
34
],
"expanded emotion cause span": [
"its single-mindedness with one mind. Urgency that's pure urge. You know, they don't give it a name."
],
"type": [
"no-context"
]
},
{
"turn": 35,
"speaker": "B",
"utterance": "They don't ask it a question. They just, they just, they don't know what drives them. They just turn as one and start the swim that brings them to here",
"emotion": "excited",
"expanded emotion cause evidence": [
35
],
"expanded emotion cause span": [
"They don't ask it a question. They just, they just, they don't know what drives them. They just turn as one and start the swim that brings them to here"
],
"type": [
"no-context"
]
},
{
"turn": 36,
"speaker": "B",
"utterance": "where we stand for a massive celebration of sex and death. Oh, God, I'm giving myself goosebumps. Look, I'm all-all my hairs on my arms is sticking up.",
"emotion": "excited",
"expanded emotion cause evidence": [
36
],
"expanded emotion cause span": [
"where we stand for a massive celebration of sex and death. Oh, God, I'm giving myself goosebumps."
],
"type": [
"no-context"
]
},
{
"turn": 37,
"speaker": "B",
"utterance": "About what I just said.",
"emotion": "neutral"
}
]
],
"train.Ses02M_impro02": [
[
{
"turn": 1,
"speaker": "A",
"utterance": "I don't want you to go.",
"emotion": "sad",
"expanded emotion cause evidence": [
1
],
"expanded emotion cause span": [
"I don't want you to go."
],
"type": [
"no-context"
]
},
{
"turn": 2,
"speaker": "B",
"utterance": "I know, I know. I don't want to go either baby. I love you know. And I'm going to miss you a lot.",
"emotion": "sad",
"expanded emotion cause evidence": [
2,
2
],
"expanded emotion cause span": [
"I don't want to go either baby.",
"And I'm going to miss you a lot."
],
"type": [
"no-context"
]
},
{
"turn": 3,
"speaker": "A",
"utterance": "I'm going to miss you too; I don't know what I'm going to do here without you. It's going to be so lonely, and so hard.",
"emotion": "sad",
"expanded emotion cause evidence": [
3
],
"expanded emotion cause span": [
"I'm going to miss you too; I don't know what I'm going to do here without you. It's going to be so lonely, and so hard."
],
"type": [
"no-context"
]
},
{
"turn": 4,
"speaker": "A",
"utterance": "I don't want to be a single mom.",
"emotion": "sad",
"expanded emotion cause evidence": [
3,
4
],
"expanded emotion cause span": [
"I'm going to miss you too; I don't know what I'm going to do here without you. It's going to be so lonely, and so hard.",
"I don't want to be a single mom."
],
"type": [