-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathEmpDG.txt
13565 lines (13565 loc) · 863 KB
/
EmpDG.txt
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
emotion:guilty
Context:['yeah about 10 years ago i had a horrifying experience . it was 100 % their fault but they hit the water barrels and survived . they had no injuries but they almost ran me off the road .']
Emotion_context:['years', 'ago', 'horrifying', 'experience', 'fault', 'hit', 'water', 'road']
Pred:oh no ! i am so sorry . i am so sorry . i am so sorry . i am so sorry to hear that .
Ref:did you suffer any injuries ?
emotion:caring
Context:['well , can you tell me about your experience ? i think we swapped places']
Emotion_context:['experience']
Pred:i am so sorry to hear that . i can not like that .
Ref:yeah i wanted to tell you about the time i was hit by a drunk driver im so happy to still be alive after that experience
emotion:lonely
Context:['i there , dont know what to do , jst broke up with my girlfirned , we were 8 years together']
Emotion_context:['broke', 'girlfirned', 'years']
Pred:oh no ! that is a shame !
Ref:sorry to hear ! do you have any idea about the break up ? did you think about it ?
emotion:excited
Context:['i could not wait to go to the concert .']
Emotion_context:['wait', 'concert']
Pred:what band is it ?
Ref:which concert ?
emotion:sad
Context:['i am so sad because i have read an article about a newborn girl who died because her parents did not believe in medication and doctors']
Emotion_context:['sad', 'read', 'article', 'newborn', 'girl']
Pred:oh no ! i am so sorry . i am so sorry to hear that . i am so sorry to hear that . i am so sorry to hear that . i am so sorry to hear that . i am so sorry to hear that . i am so
Ref:ugh , those articles always get me too ... : ( what was wrong with her ?
emotion:caring
Context:["so my friend 's baby fell down and scraped his knee yesterday and i was trying so hard to cheer him up"]
Emotion_context:['friend', 'baby', 'fell', 'knee', 'yesterday', 'hard', 'cheer']
Pred:oh wow ! how did it go ?
Ref:that is nice of you . what did you do ?
emotion:hopeful
Context:['my husband lost a job but i am hoping he can find a full time job soon']
Emotion_context:['lost', 'job', 'hoping', 'find', 'full', 'time', 'job']
Pred:i am sorry to hear that . i hope you have a good time !
Ref:he will , i have faith .
emotion:angry
Context:['i just moved to this neighborhood and some dumb criminals shot one of my neighbors and ran into the woods !']
Emotion_context:['neighborhood', 'dumb', 'shot']
Pred:did you get it out ?
Ref:thats not good . do you own a gun ?
emotion:joyful
Context:['i am so excited because i am finally going to visit my parents next month ! i did not see them for 3 years']
Emotion_context:['excited', 'finally', 'visit', 'next', 'month', 'years']
Pred:wow , that is awesome . i bet you are so excited !
Ref:3 years is a long time . how come ?
emotion:angry
Context:['i was very angry when a co worker lied about a car accident to get out of working july 4th . i covered his shift till midnight and he was lying about the accident']
Emotion_context:['angry', 'worker', 'car', 'accident', 'working', 'covered', 'shift', 'till', 'midnight', 'lying', 'accident']
Pred:that is terrible . did you get hurt ?
Ref:that is not very nice .
emotion:disappointed
Context:['so yeah i drove 2 hours to get to wallmart . with 299 in my wallet as advertised , and the real price of the tv was 399 usd . what a bummer']
Emotion_context:['yeah', 'drove', 'wallet', 'advertised', 'real', 'price', 'usd', 'bummer']
Pred:i am so sorry . i have had that happen before .
Ref:thats horrible .
emotion:faithful
Context:["my friend 's boyfriend recently made a pass at me . i am married , and i also am really good friend 's with his girlfriend so i felt really bad . i made sure he knew i was loyal and honest to both !"]
Emotion_context:['friend', 'pass', 'married', 'good', 'friend', 'felt', 'bad', 'sure', 'loyal', 'honest']
Pred:that is good . what kind of i was it for ?
Ref:thats horrible . did you tell on him ?
emotion:content
Context:['my baby is sleeping . it is so peaceful and quiet in this house']
Emotion_context:['baby', 'sleeping', 'peaceful', 'quiet', 'house']
Pred:that is a lot of fun .
Ref:i guess it makes you appreciate things you used to take for granted , lol . but it does not last forever and is worth it .
emotion:lonely
Context:['hi , i feel so lonely sometimes because all my friends live in a different country']
Emotion_context:['feel', 'lonely', 'different', 'country']
Pred:i am sorry you had to go through that .
Ref:oh , i am sure you are lonely . maybe you can join some kind of club that lets you meet new friends ?
emotion:annoyed
Context:['i have a friend that has a child that is unruly and does bad things . one day at our home , he grabbed a game and sat on it , instantly breaking it ! it was expensive and this really irked me , especially because she does not discipline him when he does bad things .']
Emotion_context:['friend', 'child', 'unruly', 'bad', 'things', 'day', 'game', 'expensive', 'discipline', 'bad', 'things']
Pred:i do not blame you . i do not like that .
Ref:oh man . i am all about discipline ! i do not like spoiled bratty kids
emotion:nostalgic
Context:['i recently spoke with my ex-girlfriend on the phone . the conversation went pretty well , and it reminded me of my past experiences with her .']
Emotion_context:['spoke', 'phone', 'conversation', 'pretty', 'past', 'experiences']
Pred:i bet it was a nice thing to have a good time
Ref:did things end amicably ? i hope everything is good now !
emotion:content
Context:['one of the times i remember feeling the most blissed out in life was right after the birth of my first child .']
Emotion_context:['remember', 'feeling', 'life', 'birth', 'first', 'child']
Pred:that is so sweet . i am sure you are so happy about it .
Ref:that is a very blessed day . it is something you will never forget .
emotion:grateful
Context:['have you ever been in a situation when payment of some kind has come through *just* in the nick of time ? ! talk about gratitude !']
Emotion_context:['situation', 'payment', 'kind', 'nick', 'time', 'talk', 'gratitude']
Pred:i do not too ! i do not like it .
Ref:i bet that must have been nerve wracking until it happened .
emotion:grateful
Context:['im so grateful for my family due to an incident with my friend']
Emotion_context:['grateful', 'due', 'incident', 'friend']
Pred:that is good . what kind of incident ?
Ref:oh really ? what happened with your family and friend then ?
emotion:trusting
Context:['i am a big believer in listening to your gut . sometimes i might wonder where my intuition is leading me , but it always seems to be spot on .']
Emotion_context:['big', 'believer', 'gut', 'intuition', 'leading', 'spot']
Pred:that is so funny ! i bet it is not a big deal with a lot of memories .
Ref:i agree , someimes we just know
emotion:surprised
Context:['i couldnt celebrate my 18th birthday as i had exams during the time and i felt terrible for it . but my friends threw a surprise party for me and it was the best !']
Emotion_context:['18th', 'birthday', 'time', 'felt', 'terrible', 'surprise', 'party', 'best']
Pred:wow ! that is a nice surprise .
Ref:that is great ! how did they surprise you ?
emotion:lonely
Context:['i feel lonely sometimes cause i live in a house with 5 girls and all of them have boyfriends and sometimes they are all hanging out with their significant others and i feel lonely']
Emotion_context:['feel', 'lonely', 'house', 'hanging', 'significant', 'feel', 'lonely']
Pred:i am sorry you are feeling lonely .
Ref:awww , that sucks man . hopefully they do not say mean things to you about being lonely .
emotion:surprised
Context:['as silly as it sounds , i was so surprised at how different my two kids were as babies . you are reminded that they are wired with their own personalities from the git-go .']
Emotion_context:['silly', 'surprised', 'different']
Pred:i do not think i have to them all the time !
Ref:yeah that is always odd to me , before they can talk they are already unique !
emotion:disappointed
Context:['the other day i had a deep craving for chik-fil-a .']
Emotion_context:['day', 'deep', 'craving']
Pred:i am sorry to hear that .
Ref:i understand that one , they are my favorite place to eat
emotion:grateful
Context:['i visited an orphan once and it was such a surreal moment . it made me realise how thankful i should be for a family']
Emotion_context:['orphan', 'surreal', 'moment', 'thankful']
Pred:that is a very nice thing to have a kid .
Ref:that must have been and intense and emotional moment for you .
emotion:hopeful
Context:['my oldest and my husband have always had a rough relationship . i have got to believe that as she gets older , it will get better !']
Emotion_context:['oldest', 'rough', 'relationship', 'older', 'better']
Pred:that is so sweet . i am sure you are very proud of her .
Ref:i am sure it will ! i did not get along with my dad until i became an adult .
emotion:ashamed
Context:['i can still look back with shame at the way i treated a girl in sixth grade . i was not as bad as others , but that does not make me feel any better .']
Emotion_context:['back', 'shame', 'girl', 'sixth', 'grade', 'bad', 'make', 'feel', 'better']
Pred:i am sorry you had that .
Ref:where you not secure in your self ?
emotion:ashamed
Context:['i can still look back with shame at the way i treated a girl in sixth grade . i was not as bad as others , but that does not make me feel any better .', 'where you not secure in your self ?', 'well , like a lot of 6th graders i was aware of *not* wanting to be an outcast for any reason . and unfortunately , she was . as an adult of course , my heart squeezes for *all* the kids we were !']
Emotion_context:['back', 'shame', 'girl', 'sixth', 'grade', 'bad', 'make', 'feel', 'better', 'lot', 'aware', 'wanting', 'outcast', 'reason', 'adult', 'heart']
Pred:oh no ! i am so sorry ! i am not a fan of the i am sure you had a lot of stress .
Ref:you can track her down to say sorry , or would that be creepy ?
emotion:impressed
Context:['i am currently working for someone that is *such* a great example of a leader ! it makes going into work inspiring every day / every way .']
Emotion_context:['working', 'great', 'leader', 'work', 'day']
Pred:congrats ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! !
Ref:lucky you ! that is rare . maybe one day people will think of you like that ?
emotion:impressed
Context:['i am currently working for someone that is *such* a great example of a leader ! it makes going into work inspiring every day / every way .', 'lucky you ! that is rare . maybe one day people will think of you like that ?', 'that is a very kind statement , and certainly what i would strive for . and it is the rarity that *inspires* me . that should be the norm , not the exception ! that is what i would like to inspire in people . how about you ?']
Emotion_context:['working', 'great', 'leader', 'work', 'day', 'lucky', 'rare', 'day', 'people', 'kind', 'statement', 'strive', 'rarity', 'norm', 'exception', 'inspire', 'people']
Pred:oh no ! i am so sorry ! i am so sorry . i am so sorry .
Ref:i have something totally different . my boss is clueless to the world and have no business being a leader .
emotion:surprised
Context:["my friend 's baby has grown so much since the last time i had seen her !"]
Emotion_context:['friend', 'baby', 'much', 'last', 'time']
Pred:that is so sweet . i am sure she will be a lot of nostalgia .
Ref:it is crazy how quickly kiddos grow ! even in a few weeks time ! do you see your friend and her baby often ?
emotion:proud
Context:['running my first ( and maybe only ! ) marathon felt like *such* a huge accomplishment !']
Emotion_context:['running', 'first', 'felt', 'huge', 'accomplishment']
Pred:wow ! how did it go ?
Ref:wow , that is an amazing accomplishment ! congratulations ! you got ta be feeling like you are on top of the world after that !
emotion:proud
Context:['running my first ( and maybe only ! ) marathon felt like *such* a huge accomplishment !', 'wow , that is an amazing accomplishment ! congratulations ! you got ta be feeling like you are on top of the world after that !', 'ah , it was the best ! plus it helped that i purposely chose an amazing destination in which to run it -- it was the venice marathon !']
Emotion_context:['running', 'first', 'felt', 'huge', 'accomplishment', 'amazing', 'accomplishment', 'feeling', 'top', 'world', 'best', 'purposely', 'amazing', 'destination']
Pred:wow , that is amazing ! i bet it is a lot of people .
Ref:my first thought was california but then there is venice [ italy ] and then either way , that is an amazing destination !
emotion:surprised
Context:['i recently found out that a person i very much intimately admired did not feel the same way for me . i was pretty surprised .']
Emotion_context:['found', 'person', 'intimately', 'feel', 'pretty', 'surprised']
Pred:that is great ! what did you do ?
Ref:i am sorry to hear that ! how did you find out ?
emotion:angry
Context:['i am always appalled when i see bullying in action -- whether it is on a playground or political stage -- not much makes me angrier .']
Emotion_context:['action', 'playground', 'political', 'stage', 'much', 'angrier']
Pred:i am sure you will do something you want to talk about it ?
Ref:i feel the same way .
emotion:sad
Context:["one morning my mother came to my house to pick my daughter up for school and told me she saw my daughter 's cat on the road and he had been hit . i had to tell my daughter about the loss of her beloved pet ."]
Emotion_context:['morning', 'mother', 'house', 'pick', 'daughter', 'school', 'daughter', 'cat', 'road', 'hit', 'daughter', 'loss', 'beloved', 'pet']
Pred:oh no ! i am so sorry to hear that .
Ref:oh no that is terrible ! how did your daughter take it ?
emotion:excited
Context:['i was soooo excited to take our kids to disneyland for the first time !']
Emotion_context:['excited', 'first', 'time']
Pred:what was the disneyland growing up ?
Ref:ooo they are gon na love it , just its expensive , i remember when it was only $ 20 to get in .
emotion:nostalgic
Context:['i recently spoke to my father for the first time in years . it reminded me of my childhood and the distant past .']
Emotion_context:['spoke', 'father', 'first', 'time', 'years', 'childhood', 'distant', 'past']
Pred:i am sorry to hear that . i am sure you have a good time .
Ref:cool . somethings never change . what did you reflect upon ?
emotion:surprised
Context:['do you like to organize your house . my mother-in-law recently surprised me recently with some organizing stuff b/c she knows how much i love it !']
Emotion_context:['organize', 'house', 'surprised', 'stuff', 'much', 'love']
Pred:i bet that was a nice surprise .
Ref:i am trying to get into it . we have our first baby on the way and need to reorganize everything . do you have tips ?
emotion:annoyed
Context:['i find it odd -- and annoying -- when people do not respond to or even acknowledge emails .']
Emotion_context:['find', 'odd', 'annoying', 'people', 'respond', 'acknowledge']
Pred:i do not blame you .
Ref:well , sometimes people are busy and do not have the time to check emails
emotion:angry
Context:['i recently had a big argument with my sister . we both got very upset and angry at each other .']
Emotion_context:['big', 'argument', 'sister', 'upset', 'angry']
Pred:i am sorry to hear that . what happened ?
Ref:is not that what sisters are for ? what were you guys upset about ?
emotion:lonely
Context:['i felt most lonely when we first moved overseas , my husband then had to travel out of *that* country for business -- and i had a new baby !']
Emotion_context:['felt', 'lonely', 'travel', '*that*', 'country', 'business', 'new', 'baby']
Pred:oh no ! i am so sorry ! i am so sorry to hear that .
Ref:congratulations ! where did you travel from and where did you end up ?
emotion:sad
Context:['one of the saddest things to me is when people underestimate what they can do and/or are capable of .']
Emotion_context:['saddest', 'things', 'people', 'underestimate', 'capable']
Pred:do you like that ?
Ref:i know , that actually happens to me sometimes ! last year i did not get accepted into this fellowship and for a couple of weeks i was underestimating myself a lot .
emotion:ashamed
Context:['once my husband asked me not to tell my mom that he was busy that day when she needed his help but i told her anyway . i really felt bad b/c he got pretty upset with me .']
Emotion_context:['busy', 'day', 'felt', 'bad', 'pretty', 'upset']
Pred:i am sorry to hear that . i am sure you did not like it ?
Ref:i totally understand why he was mad . why did you tell her ?
emotion:furious
Context:['there was a back neighbor that called my 10 year old son a ugly name one time , simply because he entered her yard slightly when he rode around the corner . !']
Emotion_context:['back', 'neighbor', 'year', 'old', 'son', 'ugly', 'name', 'time', 'simply', 'yard', 'slightly', 'corner']
Pred:i bet that was a nice surprise .
Ref:what is a back neighbor ? and that is crazy !
emotion:grateful
Context:['too often , it is a health scare that makes us value health . it inspires me to try and do something to keep healthy every day .']
Emotion_context:['health', 'scare', 'health', 'healthy', 'day']
Pred:i am so sorry to hear that . what kind of health is it ?
Ref:i understand . i am think the same thing . what is your health issue ?
emotion:sentimental
Context:['every time i look through older photos of my children , i am taken right back to the time they were that size , and what we were doing ! it is a bittersweet feeling , for sure .']
Emotion_context:['time', 'older', 'back', 'time', 'size', 'feeling', 'sure']
Pred:that is a shame , i have never had a time of time .
Ref:oh , it sure is , i feel the same way . they grow up so fast !
emotion:confident
Context:['i have a hard time having confidence in myself but when i got married and i had my hair and makeup done i felt like i was beautiful ! i had so much confidence in myself that day and it was great !']
Emotion_context:['hard', 'time', 'confidence', 'married', 'hair', 'makeup', 'felt', 'beautiful', 'much', 'confidence', 'day', 'great']
Pred:well , and how did you feel about it ?
Ref:i bet you were beautiful on that day . : ) i hope that confidence has carried on since then !
emotion:anxious
Context:['my husband and i both work for ourselves -- a blessing and a curse at times , since it can be tough to determine a regular income .']
Emotion_context:['work', 'blessing', 'curse', 'tough', 'regular', 'income']
Pred:that is good . what kind of a lot ?
Ref:i bet it is tough . a regular income is nice but the freedom you get from working for yourselfs is better .
emotion:jealous
Context:['i met up with an old flame recently , did not go how i expected']
Emotion_context:['old', 'flame', 'expected']
Pred:did you enjoy it ?
Ref:oh ya ? what happened ? ? i am intrigued
emotion:excited
Context:['my family and i are going on vacation in a few weeks . we rented a largo beachfront condo and i can not wait !']
Emotion_context:['vacation', 'largo', 'wait']
Pred:that is a shame ! where are you going ?
Ref:oh i love the beach ! ! which beach are you going to go to ?
emotion:annoyed
Context:['i was supposed to go for brunch with my friend maria the other day . at least that was the plan .']
Emotion_context:['friend', 'day', 'least', 'plan']
Pred:did you get it fixed ?
Ref:why did not you go ?
emotion:afraid
Context:['me and my mom were at this grocery store recently and this guy started following us outside the store and then again inside the store it was so scary !']
Emotion_context:['grocery', 'store', 'guy', 'store', 'inside', 'store', 'scary']
Pred:oh no ! i am so sorry to hear that . what happened ?
Ref:did he do anything to you and your mom ?
emotion:guilty
Context:['did i tell you what happened with li the other night ? boy do i feel dumb .']
Emotion_context:['night', 'boy', 'feel', 'dumb']
Pred:i am sorry , i am not too . i am not sure you have a good relationship with your kids .
Ref:no , you did not tell me ! what happened ?
emotion:grateful
Context:["ugh ! i looked like such a fool at my girlfriend 's work party !"]
Emotion_context:['fool', 'work', 'party']
Pred:oh no ! that is terrible ! did you confront them ?
Ref:what happened ?
emotion:disappointed
Context:['did i tell you what happened with the concert i was supposed to go to saturday ?']
Emotion_context:['concert']
Pred:i do not think i would n't worry about it .
Ref:no , what happened ?
emotion:surprised
Context:['you are never going to guess who was sleeping on the couch when i got home from new york ...']
Emotion_context:['guess', 'sleeping', 'couch', 'new']
Pred:i do not think it is a lot of people in the world .
Ref:who , tell me !
emotion:surprised
Context:["recently , my husband came home from grocery shopping and had gifts for me for mother 's day . he had a beautiful diamond ring and other lovely gifts , it was very unexpected !"]
Emotion_context:['grocery', 'shopping', 'mother', 'day', 'beautiful', 'diamond', 'ring', 'lovely', 'unexpected']
Pred:wow , that is a nice surprise ! how was it ?
Ref:that is very nice gift . did you bought anything for him for father 's day ?
emotion:confident
Context:["i know i should n't count my chicks before they hatch , but i am feeling pretty good after that interview today !"]
Emotion_context:['count', 'hatch', 'feeling', 'pretty', 'good', 'interview', 'today']
Pred:what kind of i do you think you will do ?
Ref:oh what job was the interview for ?
emotion:terrified
Context:['did i ever tell you about the time i got taken hostage ?']
Emotion_context:['time', 'hostage']
Pred:i was not a hostage , i am so sorry to hear that .
Ref:oh my are you really serious ?
emotion:angry
Context:['i went to visit a friend one day and her boyfriend made a pass at me . he actually suddenly kissed me , as i was waiting for my friend to return . i could not believe his nerve !']
Emotion_context:['visit', 'friend', 'day', 'pass', 'suddenly', 'waiting', 'friend', 'return', 'nerve']
Pred:that is so sweet . did he get it fixed ?
Ref:oh no , what did you do ?
emotion:disgusted
Context:['this past friday night our refrigerator stopped cooling ! we had to go the weekend without it , and of course had to deal with some unpleasant smells and throw away a large amount of food ! it was not a fun weekend for us !']
Emotion_context:['past', 'night', 'refrigerator', 'cooling', 'deal', 'unpleasant', 'throw', 'large', 'amount', 'food', 'fun']
Pred:wow ! what a strange place ?
Ref:oh no , i hate when that happens . i can sympathize with you because thats happen to me twice ! its okay in the winter time and you can sort of keep your food fresh but not during the summer
emotion:guilty
Context:['i felt pretty bad when i was having girl talk with my friend and we were talking about our partners . her boyfriend had made a pass at me , but i never told her about it .']
Emotion_context:['felt', 'pretty', 'bad', 'girl', 'talk', 'friend', 'pass']
Pred:i am sorry to hear that . what happened ?
Ref:wao , you must fell weird about it ! what you thinki to do about it ?
emotion:embarrassed
Context:['i was at the mall and hug my mom and said to her : time to go mommy ! and i wasnt her , can you imagine my reaction to it ?']
Emotion_context:['mall', 'hug', 'time', 'imagine']
Pred:i am sorry you had a bad experience that you have someone you could help her out .
Ref:oh , i am sure you were embarrassed ! but , maybe you can laugh about it now ?
emotion:anticipating
Context:['i am looking forward to going on vacation in a few weeks ! we have a condo reserved on the beach , with fantastic ocean views . i am ready !']
Emotion_context:['forward', 'vacation', 'reserved', 'beach', 'fantastic', 'ocean', 'ready']
Pred:nice ! where are you going ?
Ref:ah , that sounds fantastic ! which ocean will you be enjoying ?
emotion:proud
Context:['i am definitely a proud parent of our 15 year old -- she was determined to work this summer , and even with us saying no one would hire her until 16 -- she found a job !']
Emotion_context:['proud', 'parent', 'year', 'old', 'determined', 'work', 'summer', 'hire', 'found', 'job']
Pred:that is great ! how long has she been married ?
Ref:well , that is impressive ! i can see why you are proud . sounds like a hard working young lady !
emotion:annoyed
Context:['okay , a silly pet peeve but one nonetheless -- when people just leave their grocery carts willy-nilly in the parking lot . no consideration for others or the people who work at the store !']
Emotion_context:['silly', 'pet', 'people', 'leave', 'grocery', 'lot', 'people', 'work', 'store']
Pred:that is not good . i am sorry . i am not a fan of the past .
Ref:absolutely i agree i always try to not even bring cart unless i have too many too carry .
emotion:joyful
Context:['i came home , and my wife showed me a picture in 4d of our future baby , my heart speeded so fast !']
Emotion_context:['wife', 'picture', 'future', 'baby', 'heart']
Pred:i am so sorry to hear that . i hope you have a good time !
Ref:oh wow . do you know whether it will be a boy or girl yet ?
emotion:confident
Context:['i love being in the flow -- whether it is in speaking to a group of people or working to help facilitate meetings .']
Emotion_context:['love', 'flow', 'speaking', 'group', 'people', 'working', 'facilitate']
Pred:good luck . what kind of facilitate is it ?
Ref:what kind of work do you do ?
emotion:impressed
Context:['i love when leaders know that it actually *helps* them to be surrounded by strong people -- people they can learn from , that challenge them , and that in some ways could be considered better .']
Emotion_context:['love', 'strong', 'people', 'people', 'learn', 'challenge', 'ways']
Pred:i do not like that !
Ref:i agree , its always nice to have people around you who are smarter in some areas
emotion:joyful
Context:["i 'll always remember the day i learned i was pregnant with our first child -- halloween in chicago , and we were with friends at the shedd aquarium ! i have loved baby belugas since ; - )"]
Emotion_context:['remember', 'day', 'learned', 'pregnant', 'first', 'child', 'halloween', 'shedd', 'aquarium', 'baby']
Pred:i love i love that !
Ref:baby belugas are cute , but not as cute as your baby !
emotion:surprised
Context:["this mother 's day was amazing ! i got so much more than expected and it was all so heartfelt"]
Emotion_context:['mother', 'day', 'expected', 'heartfelt']
Pred:what was the name of the mother ?
Ref:that is great ! ! sometimes we mom 's get a bit forgotten , so to have an entire day where we are just loved is such a great feeling .
emotion:confident
Context:['that is too bad . what do you think went wrong ?']
Emotion_context:['bad', 'wrong']
Pred:i am sorry , i am not too bad . what happened ?
Ref:i am not sure , it was pretty random
emotion:confident
Context:['that is too bad . what do you think went wrong ?', 'i am not sure , it was pretty random', 'did they give you any feedback ?']
Emotion_context:['bad', 'wrong', 'sure', 'pretty', 'random']
Pred:i am sorry you had a good random day .
Ref:no , nothing at all
emotion:surprised
Context:['so my sister told us a couple weeks ago she was pregnant . her and her husband are so excited . i hope they have an amazing 9 months and then an amazing time raising the baby .']
Emotion_context:['sister', 'couple', 'ago', 'pregnant', 'excited', 'hope', 'amazing', 'amazing', 'time', 'raising', 'baby']
Pred:i bet she is so proud of her .
Ref:that is exciting news ! i bet you were so surprised !
emotion:disappointed
Context:['oh no , what did you do instead ? did you watch netflix ?']
Emotion_context:['watch']
Pred:i do not think it is a lot of people .
Ref:i do watch netflix sometimes . do you watch ?
emotion:disappointed
Context:['oh no , what did you do instead ? did you watch netflix ?', 'i do watch netflix sometimes . do you watch ?', 'yes , i do . i recently watched the series dark . it is the german one .']
Emotion_context:['watch', 'watch', 'watch', 'series', 'dark', 'german']
Pred:wow , that is a real bummer .
Ref:i have n't heard of that one . what genre does it fall in ?
emotion:confident
Context:['i went to a court hearing for unemployment with my former employer , and i felt great about it since i was so prepared with all of the documents and everything i needed to show the court i was in the right for quitting .']
Emotion_context:['court', 'hearing', 'former', 'employer', 'felt', 'great', 'prepared', 'show', 'court']
Pred:oh no ! i am so sorry . i hope you have a good job .
Ref:did it go your way ?
emotion:annoyed
Context:['today traffic was horrible and was so frustrating !']
Emotion_context:['today', 'traffic', 'horrible', 'frustrating']
Pred:i hate that !
Ref:i hate traffic too , it makes me angry
emotion:afraid
Context:['the grudge scared me when i was 10 to which i could not navigate my own house .']
Emotion_context:['grudge', 'navigate', 'house']
Pred:that is a shame . i hope you do not feel bad .
Ref:i can imagine ! that was a terrifying movie .
emotion:proud
Context:['my best friend did amazing in school , despite having 2 children and not doing great academically in school . she ended up getting honors in her first 2 semesters .']
Emotion_context:['best', 'friend', 'school', 'great', 'school', 'ended', 'first']
Pred:that is great ! i bet she is a lot of fun .
Ref:she sounds like a person with great ability . great choice of friend .
emotion:sad
Context:['today when i went outside to check my new banana plant i noticed the new leaf was turning brown .']
Emotion_context:['today', 'check', 'new', 'banana', 'plant', 'new', 'leaf', 'turning', 'brown']
Pred:i am sorry you had a new car ! i am sure you had a good time !
Ref:is that a bad sign ? perhaps the plant is not getting enough nutrition or sunlight ?
emotion:excited
Context:['i decided a few months i was ready for a puppy , so i put the word out']
Emotion_context:['ready', 'puppy', 'put', 'word']
Pred:what kind of puppy ?
Ref:put what word ? you mean published the info ?
emotion:grateful
Context:['when i bought my first house i put down 20 % of the loan , which made me broke quick . my monthly paycheck helped me with bills but my parents bought me groceries for a month until i got on my feet . so grateful for them']
Emotion_context:['first', 'house', 'put', 'loan', 'broke', 'quick', 'monthly', 'groceries', 'month', 'feet', 'grateful']
Pred:that is great ! i bet you were very proud of them .
Ref:i would be too ! you did what you had to do !
emotion:grateful
Context:['when i bought my first house i put down 20 % of the loan , which made me broke quick . my monthly paycheck helped me with bills but my parents bought me groceries for a month until i got on my feet . so grateful for them', 'i would be too ! you did what you had to do !', 'yes , i am always better off with them as my parents , they want to see us succeed']
Emotion_context:['first', 'house', 'put', 'loan', 'broke', 'quick', 'monthly', 'groceries', 'month', 'feet', 'grateful', 'better', 'succeed']
Pred:that is great ! i bet you are so proud of them .
Ref:do you find the home buying experience worth it ?
emotion:grateful
Context:['when i bought my first house i put down 20 % of the loan , which made me broke quick . my monthly paycheck helped me with bills but my parents bought me groceries for a month until i got on my feet . so grateful for them', 'i would be too ! you did what you had to do !', 'yes , i am always better off with them as my parents , they want to see us succeed', 'do you find the home buying experience worth it ?', 'yes , it was well worth it ! i love being independant . teaches you a lot .']
Emotion_context:['first', 'house', 'put', 'loan', 'broke', 'quick', 'monthly', 'groceries', 'month', 'feet', 'grateful', 'better', 'succeed', 'find', 'buying', 'experience', 'worth', 'worth', 'love', 'lot']
Pred:that is great ! i bet you are so proud of them .
Ref:how long do you plan on staying in that house ?
emotion:jealous
Context:['my friend is a surgeon and we were discussing salary . he easily makes 200,000 a year and he is only 32. it is crazy and i was jealous of him .']
Emotion_context:['friend', 'surgeon', 'salary', 'easily', 'year', 'crazy', 'jealous']
Pred:that is a shame ! i am sure you had a job of a job .
Ref:you should n't , because that is a very stressful job
emotion:hopeful
Context:['i am in college and i was talking to my student adviser the other day about the future']
Emotion_context:['college', 'student', 'adviser', 'day', 'future']
Pred:that is good . i am sure you will do great !
Ref:really ? do you know what you want to do when you graduate ? i know sometimes it is tough to settle on a path .
emotion:disgusted
Context:['that is disgusting ! what can you do about about it ?']
Emotion_context:['disgusting']
Pred:i do not think it happens .
Ref:i am not sure . what would you do ?
emotion:grateful
Context:['one time when i was kicked out of the place i was staying at , my best friend immediately told me i could stay with her until i got on my feet .']
Emotion_context:['time', 'place', 'best', 'friend', 'immediately', 'stay', 'feet']
Pred:oh no ! i am so sorry to hear that .
Ref:oh no , that sounds like an awful situation . what did you end up doing after that ?
emotion:grateful
Context:['one time when i was kicked out of the place i was staying at , my best friend immediately told me i could stay with her until i got on my feet .', 'oh no , that sounds like an awful situation . what did you end up doing after that ?', 'i stayed with her for about a year until i got my own apartment . we are getting an apartment together in a few months .']
Emotion_context:['time', 'place', 'best', 'friend', 'immediately', 'stay', 'feet', 'awful', 'situation', 'end', 'stayed', 'year', 'apartment', 'apartment']
Pred:that is a shame . i am so sorry to hear that .
Ref:so exciting ! it can be fun to have a roommate
emotion:nostalgic
Context:['last week when toys r us closed it really made me start thinking of the 90s and my childhood']
Emotion_context:['last', 'week', 'closed', 'start', 'thinking', 'childhood']
Pred:oh no ! i am so sorry . i have had that happen before .
Ref:i have heard a lot of people say something similar . did you go there a lot ?
emotion:nostalgic
Context:["the other day i came across a facebook post showing all the old stuff from the 90's.. it took me way back to my childhood ."]
Emotion_context:['day', 'post', 'showing', 'old', 'stuff', 'back', 'childhood']
Pred:that was really , did you get it ?
Ref:good lord you must have had facebook for a long time ! i started mine in college so there is not anything from my younger years .
emotion:nostalgic
Context:["the other day i came across a facebook post showing all the old stuff from the 90's.. it took me way back to my childhood .", 'good lord you must have had facebook for a long time ! i started mine in college so there is not anything from my younger years .', 'oh no , it was just a post someone shared that covered all the old trends , food , toys , tv shows , etc . i had facebook back in 2010 but not earlier than that .']
Emotion_context:['day', 'post', 'showing', 'old', 'stuff', 'back', 'childhood', 'good', 'lord', 'long', 'time', 'mine', 'college', 'younger', 'years', 'post', 'covered', 'old', 'food', 'back', 'earlier']
Pred:wow , that is funny . i would have cried for a while .
Ref:oh ok lol . i completely understand . i had a friend share a post about making mix tapes from the radio with a cassette player . totally remember doing that !
emotion:furious
Context:['i hate bullies . playground or politics , i find them intolerable .']
Emotion_context:['hate', 'playground', 'politics', 'find', 'intolerable']
Pred:i agree . i do not like them .
Ref:me too , bullies are part of the reason that i homeschooled .
emotion:surprised
Context:['i expected the new incredibles to be pretty bad but to my pleasure it came out good .']
Emotion_context:['expected', 'new', 'pretty', 'bad', 'good']
Pred:oh wow , what was the name of the incredibles ?
Ref:i also saw it and felt like it was pretty good . much better than the my little pony movie . that was torture .
emotion:angry
Context:['my parents keep taking my money']
Emotion_context:['money']
Pred:that is a good thing to do .
Ref:that is not nice of them . why do they keep taking it ? ?
emotion:annoyed
Context:['so when adults do not clean up after themselves in a business environment -- what is that ? ! why do they think a mommy will come along to clean up after them ? !']
Emotion_context:['clean', 'business', 'environment', 'clean']
Pred:i am so sorry . i am sure you will do great !
Ref:lol ! this is perfect timing because i had the you are an adult not a child conversation with my girlfriend not too long ago . i had left popsicle wrapper on the night stand and it got sticky . i argued if you are willing to date someone who likes to eat popsicles in bed , then you have to deal with the consequences .
emotion:devastated
Context:['the hardest time in my life was when my best friend died on christmas of 2007 .']
Emotion_context:['hardest', 'time', 'life', 'best', 'friend']
Pred:i am so sorry to hear that . i am so sorry to hear that .
Ref:wow . i am so sorry to hear that . that would be incredibly hard . what happened ?
emotion:devastated
Context:['the hardest time in my life was when my best friend died on christmas of 2007 .', 'wow . i am so sorry to hear that . that would be incredibly hard . what happened ?', 'she fell off of a roof . she fell asleep and when she got up , she slipped .']
Emotion_context:['hardest', 'time', 'life', 'best', 'friend', 'sorry', 'hear', 'hard', 'fell', 'roof', 'fell', 'asleep']
Pred:oh no ! i am so sorry . i am sure you had a good friend .
Ref:that is horrible . i am really sorry about your friend .
emotion:devastated
Context:['the hardest time in my life was when my best friend died on christmas of 2007 .', 'wow . i am so sorry to hear that . that would be incredibly hard . what happened ?', 'she fell off of a roof . she fell asleep and when she got up , she slipped .', 'that is horrible . i am really sorry about your friend .', 'it has been a long time so i have come to cope with it , but sometimes it is still hard . i named my daughter after her . her name is roxie .']
Emotion_context:['hardest', 'time', 'life', 'best', 'friend', 'sorry', 'hear', 'hard', 'fell', 'roof', 'fell', 'asleep', 'horrible', 'sorry', 'friend', 'long', 'time', 'hard', 'named', 'daughter']
Pred:i am sorry , i am sure you are not a fan of the .
Ref:that is a beautiful name ! it is cool you honored your friend in that way .
emotion:grateful
Context:['a few years ago , there was a time that i really needed a car . i had to go to school and my husband worked full time .']
Emotion_context:['years', 'ago', 'time', 'car', 'school', 'full', 'time']
Pred:wow , that is a good attitude to have .
Ref:did you not have a car ? that is hard . i do not have one now and use uber and lyft all the time .
emotion:grateful
Context:['a few years ago , there was a time that i really needed a car . i had to go to school and my husband worked full time .', 'did you not have a car ? that is hard . i do not have one now and use uber and lyft all the time .', 'we had one car we shared but i had a little girl and we were just stuck at the house or got rides . we did not really have uber and lydt yet . but someone gave me a car out of the blue !']
Emotion_context:['years', 'ago', 'time', 'car', 'school', 'full', 'time', 'car', 'hard', 'uber', 'time', 'car', 'little', 'girl', 'stuck', 'house', 'car', 'blue']
Pred:did you go on the first time ?
Ref:that is incredible ! i swear some things in life are determined by fate . i am glad you were able to get a car .
emotion:surprised
Context:['have you ever had a surprise birthday party planned for you ? i did a few years back .']
Emotion_context:['surprise', 'birthday', 'party', 'planned', 'years', 'back']
Pred:i love party !
Ref:yes.my first was when i turned 18 .
emotion:terrified
Context:['it was raining hard one night and the power shut off']
Emotion_context:['night', 'shut']
Pred:oh no ! i hate when that happens .
Ref:did you have candles or a flash light to help yous see ?
emotion:prepared
Context:['one time i studied my butt off for my first psychology exam . it was hard and i studied all night .']
Emotion_context:['time', 'studied', 'butt', 'first', 'psychology', 'exam', 'hard', 'studied', 'night']
Pred:wow , that is a shame ! i bet you were very nervous .
Ref:how did you do
emotion:annoyed
Context:['do you have any pets ?']
Emotion_context:[]
Pred:i do not think it is a lot of cats .
Ref:pet ? like dogs and other ?
emotion:proud
Context:['my son graduated .']
Emotion_context:['son']
Pred:that is amazing . how old is he ?
Ref:from where ?
emotion:lonely
Context:['one of the hardest times in my life was when i had to leave my husband and daughter when i went through a divorce .']
Emotion_context:['hardest', 'life', 'leave', 'daughter', 'divorce']
Pred:that is terrible . i am sorry you had that experience that you can not be able to help her ?
Ref:i am so sorry . i can not imagine what you must have went through .
emotion:impressed
Context:['i know this guy who is so young , yet he owns his own major business . it is really impressive .']
Emotion_context:['guy', 'young', 'major', 'business', 'impressive']
Pred:wow , that is a shame .
Ref:really ? what kind of work does he do ?
emotion:sentimental
Context:["i feel slightly bad . i think i hurt my mom 's feelings last week because she told me about a necklace i got rid of when i was a kid . she 's a packrat and i am really , really not ."]
Emotion_context:['feel', 'slightly', 'bad', 'hurt', 'last', 'week', 'necklace', 'rid', 'kid']
Pred:i do not think she 's doing it .
Ref:awww ... reminds me of the show hoarders when the family members argue over silly things like that . what was the necklace all about did you make it or something ?
emotion:sentimental
Context:["i feel slightly bad . i think i hurt my mom 's feelings last week because she told me about a necklace i got rid of when i was a kid . she 's a packrat and i am really , really not .", 'awww ... reminds me of the show hoarders when the family members argue over silly things like that . what was the necklace all about did you make it or something ?', 'i feel like her and my aunt kind of could be on that show . : / i am all about less stuff to pick up ! lol eh..it was a necklace she gave me when they found out they were pregnant . it said special sister . i am probably a jerk..']
Emotion_context:['feel', 'slightly', 'bad', 'hurt', 'last', 'week', 'necklace', 'rid', 'kid', 'show', 'argue', 'silly', 'things', 'necklace', 'make', 'feel', 'aunt', 'kind', 'show', 'less', 'stuff', 'pick', 'necklace', 'found', 'pregnant', 'special', 'sister']
Pred:i do not think she 's doing it now she will not be more than i am .
Ref:well why did you have it if it belonged to them ? did you pawn it ?
emotion:nostalgic
Context:['have you ever heard a song on the radio and it just takes you back to a different time ? like an escape ?']
Emotion_context:['song', 'radio', 'back', 'different', 'time', 'escape']
Pred:i have never seen it
Ref:all the time . that is part of listening to music i suppose . the songs remind you of when you first heard them .
emotion:sad
Context:['i was just thinking about how a few years ago , we lost our cat .']
Emotion_context:['thinking', 'years', 'ago', 'lost', 'cat']
Pred:i am so sorry to hear that . i am not a fan of the cat .
Ref:oh no ! what happened to it ?
emotion:caring
Context:['i am sorry to hear that . i had a dog die once too .']
Emotion_context:['hear', 'dog', 'die']
Pred:i am so sorry to hear that . what kind of dog do you have ?
Ref:it is so sad to know but my mother is rather sick of flu and not dying
emotion:disgusted
Context:['once i ate a raw oyster because my uncle offered me some and i contracted food poisoning . things were coming out from both ends , so gross .']
Emotion_context:['raw', 'oyster', 'uncle', 'offered', 'contracted', 'food', 'poisoning', 'things', 'coming', 'gross']
Pred:oh no ! i would have been so embarrassed .
Ref:did you get sick afterwards
emotion:surprised
Context:['i recently had a prank played on me . my friend pretended to be dead and used ketchup as a prop !']
Emotion_context:['prank', 'friend', 'pretended', 'dead', 'used', 'prop']
Pred:i am sorry , i am not sure you did not .
Ref:damn that sounds like a pretty good one ! how did that turn out ?
emotion:lonely
Context:['my boyfriend of five years and i broke up . i do not know what to do with my life .']
Emotion_context:['years', 'broke', 'life']
Pred:that is so bad . i am sorry . i am so sorry .
Ref:i am so sorry to hear that . is there any chance you might be able to reconcile ? ? ?
emotion:lonely
Context:['my boyfriend of five years and i broke up . i do not know what to do with my life .', 'i am so sorry to hear that . is there any chance you might be able to reconcile ? ? ?', 'i do not think so . he wants to join the military since his dad has passed away and i am not sure if that is the lifestyle i want .']
Emotion_context:['years', 'broke', 'life', 'sorry', 'hear', 'chance', 'able', 'reconcile', 'join', 'military', 'dad', 'sure', 'lifestyle']
Pred:well , i am sure you are feeling better now .
Ref:oh that is too bad . ) : i do not want to overstep but i always like to encourage people to hold on to their love for each other no matter what trials come up .
emotion:lonely
Context:['my boyfriend of five years and i broke up . i do not know what to do with my life .', 'i am so sorry to hear that . is there any chance you might be able to reconcile ? ? ?', 'i do not think so . he wants to join the military since his dad has passed away and i am not sure if that is the lifestyle i want .', 'oh that is too bad . ) : i do not want to overstep but i always like to encourage people to hold on to their love for each other no matter what trials come up .', "i think we 're going to try long distance while i finish up school ( 3 more years ) . but it is just scary thinking of it all ."]
Emotion_context:['years', 'broke', 'life', 'sorry', 'hear', 'chance', 'able', 'reconcile', 'join', 'military', 'dad', 'sure', 'lifestyle', 'bad', 'encourage', 'people', 'hold', 'love', 'matter', 'long', 'distance', 'finish', 'school', 'years', 'scary', 'thinking']
Pred:i am not sure you can do it .
Ref:i think that is good ! if you are meant to be together you will feel it and it will work out i think , if you just keep your conviction and stick with it . good luck with it !
emotion:disappointed
Context:['i recently found out the girl i love may not feel the same way . this makes me sad .']
Emotion_context:['found', 'girl', 'love', 'feel', 'sad']
Pred:i am sorry to hear that . i am not a fan of the past . i am so sorry to hear that .
Ref:so sad , you can never force someone to love you . you will find the right person for you .
emotion:hopeful
Context:['i feel pretty hopeful towards this woman that i really enjoy . i am trying to date her .']
Emotion_context:['feel', 'pretty', 'hopeful', 'woman', 'enjoy', 'date']
Pred:that is great ! what is her name ?
Ref:do you have a good chance with her . have you talked to her about it ?
emotion:surprised
Context:['i am very lucky , my friends are so great . what is the best birthday you have had ?']
Emotion_context:['lucky', 'great', 'best', 'birthday']
Pred:that is great ! i bet you are so happy and you have a party .
Ref:probably one where i got a limo with all my friends and went to this restaurant , it was great . what about yours , what makes your friends so great too ?
emotion:annoyed
Context:['5']
Emotion_context:[]
Pred:how is it ?
Ref:hi are you there ?
emotion:afraid
Context:['i recently had a scary experience . i heard gunshots on my street .']
Emotion_context:['scary', 'experience', 'heard', 'street']
Pred:i do not think i did not have to do it ?
Ref:oh my ! you must have been terrified ! did everything turn out ok ?
emotion:content
Context:["do you know the feeling of drinking a mug of hot cocoa with marshmallows on a cold winter 's night ?"]
Emotion_context:['feeling', 'drinking', 'mug', 'hot', 'cocoa', 'cold', 'winter', 'night']
Pred:i do not blame you .
Ref:i have not tried yet , but i feel like it would be enjoying and full of delight
emotion:grateful
Context:['i love my mom . she does her best to provide for me , even to this day .']
Emotion_context:['love', 'best', 'provide', 'day']
Pred:that is great ! what kind of mom do you have ?
Ref:you are so lucky . mums are the best . what do you do for her ?
emotion:disappointed
Context:['you know , that is tough , but it happens to the best of us . what went wrong ?']
Emotion_context:['tough', 'best', 'wrong']
Pred:i am sorry you are feeling better now .
Ref:nothing went wrong , we just have different lives in different places . i go visit every now and then .
emotion:trusting
Context:["my mom helped me buy a car . she 's the best ."]
Emotion_context:['buy', 'car', 'best']
Pred:that is a good thing to do .
Ref:that is great that you have an awesome mom !
emotion:sad
Context:['i think that the girl of my dreams likes somebody else . i feel very sad about it .']
Emotion_context:['girl', 'feel', 'sad']
Pred:i am sorry you are not a fan of them .
Ref:ooh , am so sorry about that . have you tried to talk to her ?
emotion:lonely
Context:['that sounds tough . what do you do/']
Emotion_context:['tough']
Pred:i am so sorry . i am so sorry . i am so sorry .
Ref:well i am a mover so i have to bring heavy furniture up and down stairs .
emotion:hopeful
Context:['i have only a few more semesters in college . i feel very hopeful about my chances of finishing .']
Emotion_context:['college', 'feel', 'hopeful']
Pred:good luck ! i am sure you will do great !
Ref:that is awesome . what are you majoring in ?
emotion:afraid
Context:["i watch so many scary movies that i have n't been able to sleep alone in years due to fear ."]
Emotion_context:['watch', 'many', 'scary', 'able', 'sleep', 'years', 'due', 'fear']
Pred:i am so sorry to hear that .
Ref:that is such a bummer . why did you keep watching them ?
emotion:afraid
Context:["i watch so many scary movies that i have n't been able to sleep alone in years due to fear .", 'that is such a bummer . why did you keep watching them ?', 'i honestly do not know . i have always been fascinated with them since being a little girl and that fascination has never gone away .']
Emotion_context:['watch', 'many', 'scary', 'able', 'sleep', 'years', 'due', 'fear', 'bummer', 'little', 'girl', 'fascination']
Pred:i do not like that . i am sure you are so much .
Ref:i understand being fascinated by them they can be very intriguing . maybe you should stop watching as many though .
emotion:afraid
Context:["i watch so many scary movies that i have n't been able to sleep alone in years due to fear .", 'that is such a bummer . why did you keep watching them ?', 'i honestly do not know . i have always been fascinated with them since being a little girl and that fascination has never gone away .', 'i understand being fascinated by them they can be very intriguing . maybe you should stop watching as many though .', 'i have been telling myself that for years , i just have no self control . what are your favorite kinds of movies ?']
Emotion_context:['watch', 'many', 'scary', 'able', 'sleep', 'years', 'due', 'fear', 'bummer', 'little', 'girl', 'fascination', 'intriguing', 'stop', 'many', 'telling', 'years', 'control', 'favorite']
Pred:i do not like that . i am sure you are a good thing .
Ref:i like scary movies as well so i know how addicting they can be .
emotion:disgusted
Context:['donald trump is now the president . it makes me feel bad about life .']
Emotion_context:['trump', 'president', 'feel', 'bad', 'life']
Pred:i do not worry about it .
Ref:oh yeah , donald trump is such a charlatan . he has some really shady history too . i am actually a christian and a conservative but i am appalled that everyone on the right have fallen for this guy . he 's so against what the real conservative values are supposed to be .
emotion:excited
Context:["i am now going to be a master 's student . i will got to he university of florida"]
Emotion_context:['master', 'student', 'university']
Pred:that is great ! i am so happy for you !
Ref:awwww . congratulations . what is your major
emotion:faithful
Context:['i have been feeling very faithful these days . my lover treats me so well .']
Emotion_context:['feeling', 'faithful', 'lover']
Pred:that is good . what kind of treats are you ?
Ref:that is interesting , how does he buy you stuff or is he just really nice ?
emotion:sentimental
Context:['do you like to go through old family pictures ?']
Emotion_context:['old']
Pred:i do not like that anymore .
Ref:yes , i think they offer a great bridge to the past . do you ?
emotion:jealous
Context:['i recently found out that the woman of my dreams like another . i am incredibly jealous of him .']
Emotion_context:['found', 'woman', 'jealous']
Pred:i am so sorry to hear that . what is your favorite thing ?
Ref:: ( i am very sorry . have you tried telling her how you feel ? that could affect her decision .
emotion:sentimental
Context:['how long ?']
Emotion_context:['long']
Pred:what ?
Ref:i am not quite following . anything you want to tell me about ?
emotion:trusting
Context:['my mother recently went to the bank for me . i love her so much .']
Emotion_context:['mother', 'bank', 'love', 'much']
Pred:that is so sweet . what was the bank ?
Ref:that is really nice of her . it is nice to have someone to help you do things sometimes .
emotion:devastated
Context:['my father almost died . his recent health problems have been devastating .']
Emotion_context:['father', 'recent', 'health', 'devastating']
Pred:oh no . i am so sorry to hear that .
Ref:that is so sad , i hope you 've gotten over it .
emotion:jealous
Context:['my friend bought a new car . this makes me so jealous !']
Emotion_context:['friend', 'new', 'car', 'jealous']
Pred:i am sure you are feeling .
Ref:no , u do not have to be
emotion:caring
Context:['i recently met a new person that i am very fond of . i want to give her my love and care .']
Emotion_context:['new', 'person', 'love', 'care']
Pred:that is a great attitude to have .
Ref:that is very special and i am so happy for you .
emotion:grateful
Context:['my family is very loving . they care about me so much .']
Emotion_context:['loving', 'care']
Pred:that is great . what kind of family is it ?
Ref:that is good to have a loving family .
emotion:guilty
Context:["i stole my friend 's pokemon card when we were 7. i still feel guilty about it ."]
Emotion_context:['stole', 'friend', 'pokemon', 'card', 'feel', 'guilty']
Pred:oh no ! i am so sorry .
Ref:wow , 7 years ? you were really young then
emotion:embarrassed
Context:['i one time lost my trunks in the pool ! people saw me in a way i did not want !']
Emotion_context:['time', 'lost', 'pool', 'people']
Pred:oh no ! i am so sorry ! i would have cried for a while .
Ref:oh no ! that must have been super embarrassing ! how did you react to that ?
emotion:proud
Context:['i recently graduated from college . i loved it and now i feel great about my life !']
Emotion_context:['college', 'feel', 'great', 'life']
Pred:i bet you were very proud of you .
Ref:that sounds fun , starting a new life is always great !
emotion:surprised
Context:['we went for a doctor visit because she was']
Emotion_context:['doctor', 'visit']
Pred:oh no , what happened ?
Ref:because she was what ?
emotion:lonely
Context:['having the whole house to your self sometimes is not as good as it may seem !']
Emotion_context:['whole', 'house', 'good']
Pred:i am sure you are feeling better now .
Ref:i can imagine the loneliness someone can experience .
emotion:excited
Context:['i have a huge chance to win a ps4 !']
Emotion_context:['huge', 'chance']
Pred:oh wow ! i bet it is a lot of fun !
Ref:wow , please make it real .
emotion:disappointed
Context:['my son really needs to cut down on the amount of sugary snacks he has !']
Emotion_context:['son', 'cut', 'amount', 'sugary', 'snacks']
Pred:that is so disgusting ! i bet he is a very disgusting situation .
Ref:who is supplying these snacks ?
emotion:lonely
Context:["the house is very quiet now that she 's been gone for four days visiting with her family"]
Emotion_context:['house', 'quiet', 'visiting']
Pred:that is a shame .
Ref:why did she go visiting ?
emotion:embarrassed
Context:['in the middle of the station , on my new suit , a seagull threw up on me !']
Emotion_context:['middle', 'station', 'new', 'suit']
Pred:i bet it was a nice surprise .
Ref:that sounds horrible . you must 've been mad .
emotion:jealous
Context:['i can not believe someone half my age got promoted instead of me !']
Emotion_context:['half', 'age']
Pred:wow ! that is amazing ! i bet it is hard to be a little girl !
Ref:well , it can happen like that atimes
emotion:sad
Context:['my wife cried quite a lot at her mothers funeral . they had a very close bond .']
Emotion_context:['wife', 'lot', 'funeral', 'close', 'bond']
Pred:oh no . i am so sorry . i am so sorry . i am so sorry . i am so sorry . i am so sorry .
Ref:am sorry to hear that . what happened to the mother
emotion:confident
Context:['getting this new job should be easy . i am easily the best person that applied .']
Emotion_context:['new', 'job', 'easy', 'easily', 'best', 'person']
Pred:good luck ! i hope you get it !
Ref:damn , very confident huh ? what job did you apply for ?
emotion:faithful
Context:['ok , so after 5 years and the baby , there was disconnect . things like not sleeping at the same times , not even hardly talking . just avoiding each other really']
Emotion_context:['years', 'baby', 'disconnect', 'things', 'sleeping', 'avoiding']
Pred:i am sorry you had that .
Ref:oh boy that is the worst , so frustrating ! has there been any change since ?
emotion:faithful
Context:['ok , so after 5 years and the baby , there was disconnect . things like not sleeping at the same times , not even hardly talking . just avoiding each other really', 'oh boy that is the worst , so frustrating ! has there been any change since ?', 'plenty lol . kicked them out long time ago . now with new wife of 5 years haha . but point is , i never cheated even during those 8 months of feeling alone , heck , being alone']
Emotion_context:['years', 'baby', 'disconnect', 'things', 'sleeping', 'avoiding', 'boy', 'worst', 'frustrating', 'change', 'plenty', 'long', 'time', 'ago', 'new', 'wife', 'years', 'point', 'feeling']
Pred:i am sorry you had that .
Ref:hahaha you put the hammer down good for you bro . how are things with the new wife going ?
emotion:furious
Context:['my son is such a rascal ! he took my car for a joy ride !']
Emotion_context:['son', 'rascal', 'car', 'joy', 'ride']
Pred:wow ! that is amazing ! what kind of car ?
Ref:oh my god ! how old is he ?
emotion:jealous
Context:['my brother ... dating an a list supermodel ... i do not know what to think !']
Emotion_context:['brother', 'list']
Pred:that is a shame ! i bet you were mad at him ?
Ref:really ? what makes them a list ?
emotion:disappointed
Context:['have anything to tell me about ?']
Emotion_context:[]
Pred:what kind of ?
Ref:not being able to fit into an old wedding dress , is one of a womans worst nightmare .
emotion:furious
Context:["starbucks always get 's my order wrong !"]
Emotion_context:['order', 'wrong']
Pred:oh no ! what happened ?
Ref:i like starbucks . but they are a little expensive for me to go there often .
emotion:proud
Context:['i am so happy for my son , went to his graduation from harvard last week .']
Emotion_context:['happy', 'son', 'graduation', 'last', 'week']
Pred:that is great ! congratulations ! how old is he ?
Ref:wao , thats great , congrats !
emotion:devastated
Context:['my pizza i bought fell all over the floor on my way home !']
Emotion_context:['fell', 'floor']
Pred:oh no ! that is horrible ! i would have been so embarrassed .
Ref:wow , that will be so devastating for you
emotion:angry
Context:['why does mcdonalds always get my order wrong ! i said no lettuce !']
Emotion_context:['order', 'wrong', 'lettuce']
Pred:that is not good . what happened ?
Ref:report to their management
emotion:guilty
Context:["i ate so much of my wife 's cookies , but she should n't make them so irresistible ."]
Emotion_context:['wife', 'make', 'irresistible']
Pred:did you get it back ?
Ref:haha , how did she feel when she found out ?
emotion:disgusted
Context:['just my luck i step into a huge pile of dog mess ...']
Emotion_context:['luck', 'step', 'huge', 'pile', 'dog', 'mess']
Pred:i bet you were very proud of him .
Ref:dang , i hated that . at least it is not cow poop , that is worst .
emotion:prepared
Context:['the key to making good chicken and rice , is following the recipe precisely']
Emotion_context:['key', 'good', 'chicken', 'rice', 'recipe', 'precisely']
Pred:what kind of chicken did you get ?
Ref:how do you make it ?
emotion:joyful
Context:['we asked the doc to put the ultrasound in an envelope so we could record our reaction to the gender reveal . i was very happy when i finally saw it !']
Emotion_context:['put', 'envelope', 'record', 'gender', 'reveal', 'happy', 'finally']
Pred:that is so awesome ! what did you do ?
Ref:congrats ! what gender did your child end up being ?
emotion:disappointed
Context:['my son failed his exams ! can you believe it ! i do not know what to do !']
Emotion_context:['son']
Pred:that is so hard . i am so sorry to hear that .
Ref:do not panic , and do not be harsh on the kid . perhaps spend time going over the subject together ? or maybe he 's having other trouble that is affecting his studies
emotion:faithful
Context:['without prayer , i do not know if i would have passed that important test !']
Emotion_context:['prayer', 'important', 'test']
Pred:i am sorry to hear that . i am sure you will do great !
Ref:that is cool . for what class
emotion:impressed
Context:['hey ! i saw a blind man play a guitar once . was so surreal and i was so impressed']
Emotion_context:['blind', 'man', 'play', 'guitar', 'surreal', 'impressed']
Pred:that is so cool . what kind of guitar was it ?
Ref:wow . i would be too . i love guitar , it is my favorite musical instrument . i wonder if he was born blind
emotion:apprehensive
Context:['we were 20 mins from the airport and the car broke down , overheated and would not start !']
Emotion_context:['airport', 'car', 'broke', 'overheated', 'start']
Pred:oh no ! i am so sorry ! i hate when that happens .
Ref:oh no ! that sounds annoying . did you end up getting help ?
emotion:joyful
Context:['my son was just born , my first boy after 11 girls !']
Emotion_context:['son', 'first', 'boy']
Pred:wow , that is amazing . how old is your son ?
Ref:thats amazing , congratulations . 12 kids your amazing .
emotion:afraid
Context:['some times at night , i can hear some shouting ahhhhhhh , hee hee .']
Emotion_context:['night', 'hear']
Pred:oh no . i am sorry . i am sorry .
Ref:that is creepy . what do you think they were , hyenas ?
emotion:guilty
Context:['my best friend is doing 30 years in prison . i miss my good friend .']
Emotion_context:['best', 'friend', 'years', 'prison', 'miss', 'good', 'friend']
Pred:i am so sorry to hear that .
Ref:oh , will u be going to pay him a visit ?
emotion:proud
Context:['my son worked for many years to be a footballer , he finally signed a pro contract !']
Emotion_context:['son', 'many', 'years', 'finally', 'pro', 'contract']
Pred:congratulations ! how did you guys end up going ?
Ref:wow , that is a great news
emotion:prepared
Context:["4 months later he will be here . it has taken me around 3 months to save up enough money to be ready for him when he 's born"]
Emotion_context:['save', 'enough', 'money', 'ready', 'born']
Pred:i am so sorry to hear that . what kind of money ?
Ref:is this your first son ?
emotion:terrified
Context:['on my way home from work , a massive bat chased me !']
Emotion_context:['work', 'massive', 'bat']
Pred:wow ! that is terrifying ! did you catch him ?
Ref:holy moses ! i hate them things . flying rats is what they are .
emotion:grateful
Context:['every day i thank god for my blessings . i would be in hole right now if it were not for him']
Emotion_context:['day', 'god', 'blessings', 'hole']
Pred:that is good to hear . what makes you need to do ?
Ref:praise god man ! he really is amazing and we should always be grateful for we have
emotion:ashamed
Context:['once during an important school sporting event , my entire sports team was counting on me but mid-way through my event , my shorts fell down and i tripped']
Emotion_context:['important', 'school', 'sporting', 'event', 'entire', 'sports', 'team', 'event', 'shorts', 'fell']
Pred:oh no ! i bet it was not a good thing ?
Ref:for real ? that must 've been embarrassing . sorry to hear about that
emotion:nostalgic
Context:['i love youtube . been listening to all my classic tracks . tupac forever']
Emotion_context:['love', 'classic']
Pred:i love tracks .
Ref:i love me some tupac . real talk .
emotion:sad
Context:['when i was younger , my dog died . he was getting up there in age , but he was still on the young side . later , we heard the pet food we had been feeding him had been recalled because of similiar fatalities .']
Emotion_context:['younger', 'dog', 'age', 'young', 'side', 'pet', 'food', 'similiar']
Pred:oh wow , that is so sweet . i am so sorry to hear that .
Ref:sorry to hear that . did someone do anything against the company selling the food ?
emotion:content
Context:['seeing people who have less than me just makes me so grateful for the blessings i have been given']
Emotion_context:['people', 'less', 'grateful', 'blessings']
Pred:that is good . i am glad you are doing better now .
Ref:oh yes , at least , you will be in a position to help them in return
emotion:anxious
Context:['hiding for almost 2 years but i am still not over my paranoia that one day i will have to pay for what i did . do not ask what it was']
Emotion_context:['hiding', 'years', 'paranoia', 'day', 'pay']
Pred:i am sorry you feel that way . i can not stand that way . i can not stand that way .
Ref:you must feel awful , why do not you come clean , maybe you will feel better .
emotion:angry
Context:['when i was a kid , i went to this group with other kids my age , it was in a big gym . there were kids of different ages , and one of the kids ( 8 years old or so ) was picking on the littler kids . so , when he had his back turned , i looped him with a hoola hoop and tripped him so he fell flat on his face .']
Emotion_context:['kid', 'group', 'age', 'big', 'different', 'years', 'old', 'back', 'hoop', 'fell', 'flat', 'face']
Pred:wow , that is impressive . did you confront him ?
Ref:he deserved that , i think .
emotion:furious
Context:['after she got her 1st job and new car , she started doing girls night out . out until 3am one morning . i checked her chat history and sure enough she had kissed another guy > : (']
Emotion_context:['job', 'new', 'car', 'night', 'morning', 'chat', 'history', 'sure', 'enough', 'guy']
Pred:that is so sweet . i bet she was very hopeful .
Ref:wow , you must have felt jealous
emotion:impressed
Context:['my dad always worked his ass off at a job he did not like in order to support us , doing a lot of back breaking work as a caretaker . he even had a second job at wal-mart for a while . i have no idea how he managed to do that sort of thing .']
Emotion_context:['dad', 'ass', 'job', 'order', 'lot', 'back', 'work', 'caretaker', 'second', 'job', 'idea', 'sort', 'thing']
Pred:that is a shame .
Ref:when you have responsibilities that you really care about , you do what you have to . i commend him . its hard raising a family ,
emotion:impressed
Context:['my dad always worked his ass off at a job he did not like in order to support us , doing a lot of back breaking work as a caretaker . he even had a second job at wal-mart for a while . i have no idea how he managed to do that sort of thing .', 'when you have responsibilities that you really care about , you do what you have to . i commend him . its hard raising a family ,', 'yeah , especially because we were single income . my mom homeschooled my brother and i. i think he took only a handful of sick days his entire time working , had something like 600 days saved up when he retired .']
Emotion_context:['dad', 'ass', 'job', 'order', 'lot', 'back', 'work', 'caretaker', 'second', 'job', 'idea', 'sort', 'thing', 'care', 'commend', 'hard', 'raising', 'single', 'income', 'brother', 'handful', 'sick', 'entire', 'time', 'working', 'retired']
Pred:i bet he was very hopeful .
Ref:oh wow . ive never heard of that many sick days .
emotion:devastated
Context:['my instincts are never wrong . i found out her lies when i checked her facebook chat history .']
Emotion_context:['wrong', 'found', 'chat', 'history']
Pred:that is a good thing to do .
Ref:so , what was she lying to you about ?
emotion:ashamed
Context:['i never thought she would tell anyone and make it seem like i did something wrong . i did not force her']
Emotion_context:['thought', 'make', 'wrong', 'force']
Pred:that is terrible . did you try to her ?
Ref:oh no how horrible
emotion:embarrassed
Context:['public school really sucks sometimes . making boys shower all together . i did not want to but had to or else fail pe']
Emotion_context:['public', 'school', 'shower', 'fail']
Pred:that is a shame . i am sure you will do great !
Ref:i hate public schools ooo
emotion:grateful
Context:['my mom homeschooled me when i was little . i was in public school till first grade , but after that i was homeschooled . did take a semester in grade 11 though to make sure i was up to current standards .']
Emotion_context:['little', 'public', 'school', 'till', 'grade', 'grade', 'make', 'sure', 'current']
Pred:that is a good attitude .
Ref:thats cool , i did online school in high school
emotion:sad
Context:["i still have n't got over it . brandon lee rip . i was 17 when i found out he died during filming . i visited the area he took his last steps a couple years ago"]
Emotion_context:['lee', 'found', 'area', 'last', 'steps', 'couple', 'years', 'ago']
Pred:i am so sorry to hear that .
Ref:i remember him , he was going to be a great actor .
emotion:prepared
Context:['i had to adapt to life . i had to change to survive . now i feel better']
Emotion_context:['adapt', 'life', 'change', 'survive', 'feel']
Pred:i am so sorry to hear that . what happened ?
Ref:adapting to life is always good to do .
emotion:disgusted
Context:['i recently found out a good friend of mine has been cheating on her fiance for years .']
Emotion_context:['found', 'good', 'friend', 'mine', 'years']
Pred:that is a good thing .
Ref:how awful ! how do you feel about it ?
emotion:furious
Context:['i was sucker punched when i was 17. the guy broke his hand and fled the scene . i saw him one time after this riding a bicycle but did not do anything .']
Emotion_context:['sucker', 'guy', 'broke', 'hand', 'fled', 'scene', 'time', 'riding', 'bicycle']
Pred:oh no ! did you get hurt ?
Ref:lols why did not you do anything
emotion:proud
Context:['i recently completed my masters degree in education at almost 40 years old . i feel really pleased with myself .']
Emotion_context:['completed', 'degree', 'education', 'years', 'old', 'feel', 'pleased']
Pred:wow ! congratulations ! you must be so proud of yourself !
Ref:oh my goodness ! how wonderful ! ! ! ! that is so awesome ! congratulations .