-
Notifications
You must be signed in to change notification settings - Fork 113
/
task397.2_semeval_2018_task1_tweet_anger_detection.json
15665 lines (15662 loc) · 522 KB
/
task397.2_semeval_2018_task1_tweet_anger_detection.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
{
"Contributors": [
"Kiran Shanthappa"
],
"Source": [
"SemEval 2018 task1 (\"https://aclanthology.org/S18-1001/\")"
],
"Categories": [
"Classification"
],
"Definition": "Check sentiment of the given statement is angry or not. Classify the statement as angry or not angry.",
"Positive Examples": [
{
"input": "#CNN really needs to get out of the #Propaganda Business.. 30 seconds on USN fallen Soldiers tragedy. Right back at spewing #hatred #POTUS",
"output": "Angry",
"explanation": "The tweet author is angry at cnn."
},
{
"input": "Don't fucking tag me in pictures as 'family first' when you cut me out 5 years ago. You're no one to me. ",
"output": "Angry",
"explanation": "The tweet author is angry at the person he is talking to."
},
{
"input": "Caleb had a nightmare about zombies. I had a dream about freedom.......",
"output": "Not angry",
"explanation": "The author of the tweet isn't angry."
}
],
"Negative Examples": [
{
"input": "This time last year I was pissed at the top of the Eiffel Tower. Today I was down a manhole in the rain. Happy Anniversary @Jordannea11 😘♥️",
"output": "Angry",
"explanation": "the tweet author isn't angry right now so the output should be \"Not angry\"."
}
],
"Instances": [
{
"input": "@ParkerMolloy @KFILE Very misleading heading. Not to mention an agenda driven article. ",
"output": [
"Angry"
]
},
{
"input": "You can have a certain #arrogance, and I think that's fine, but what you should never lose is the #respect for the others.",
"output": [
"Not angry"
]
},
{
"input": "'your marker teacher'.i looked at him n just burst out laughing i swear these kids will never take me seriously 🤦🏻♀️",
"output": [
"Not angry"
]
},
{
"input": "This is because of people like Saleem Sheikh humanity wins over terrorism n hatred #AmarnathYatraAttacked",
"output": [
"Angry"
]
},
{
"input": "God this match is dull #Wimbledon",
"output": [
"Angry"
]
},
{
"input": "Why the FUCK have i just saw a Game of Thrones spoiler on snapchat? SOME OF US HAVENT SAW IT YET 🖕🏻🖕🏻🖕🏻🖕🏻🖕🏻 #arsehole",
"output": [
"Angry"
]
},
{
"input": "At this point I can't tell if I just follow more people in politics on twitter now or if I need new friends. #wheresthefunny #depressing",
"output": [
"Angry"
]
},
{
"input": "If I have to hear one more time how I am intimidate men... I'm going to explode! Why are guys these days so pussified?",
"output": [
"Angry"
]
},
{
"input": "get the fuck over yourselves. we are the most capable and you wanna sit and sulk in your bullshit and fear of failure honestly fuck yourself",
"output": [
"Angry"
]
},
{
"input": ".@PreetBharara's Twitter barbs are both insightful and delightful to read; hell hath no fury like a crusading prosecutor scorned",
"output": [
"Not angry"
]
},
{
"input": "What is this miserable ass weather all about 😭 dark and gloomy #depressing #weekoff #wheresthesun",
"output": [
"Angry"
]
},
{
"input": "It's such a strange juxtaposition of emotions. A sense of euphoria but a sense of out most despair.",
"output": [
"Angry"
]
},
{
"input": "Afridi !!! 100 off 42 !! #mad",
"output": [
"Angry"
]
},
{
"input": "I’m so glad I’m not like some of the sad people online who gossip and bully others for their entertainment because they have no life.",
"output": [
"Not angry"
]
},
{
"input": "a lot of universities actively discourage even just one part-time job because it has a negative impact on studies--",
"output": [
"Not angry"
]
},
{
"input": "@virtualalien there are more #frightening things in life\\n\\n#BeyondTheSphereOfReasonableDoubt",
"output": [
"Angry"
]
},
{
"input": "@WDA_Punisher @SgtDangerCow @Battlefield I think so too. \\nCasual audience was particularly unhappy with server admins and server rules.",
"output": [
"Angry"
]
},
{
"input": "Selling nudes pics and vids kik me to buy! Dirty_becca69\\n\\n#kik #kikme #kikusernames #snap #snapchat #findom #nudes #slut #kiktrade #horny",
"output": [
"Not angry"
]
},
{
"input": "So @Ryanair site crashes everytime I try to book - how do they help? Tell me there's nothing wrong & hang up #furious #helpless @SimonCalder",
"output": [
"Angry"
]
},
{
"input": "Shooting more than ever, making more mistakes than ever but I jumped in the pool of sharks a long time ago. #relentless *#resilient",
"output": [
"Not angry"
]
},
{
"input": "Beware the wrath of an angry, frustrated, #agile grandma with a network. 👵🏼😡 I'm just sayin'. #objectlesson",
"output": [
"Angry"
]
},
{
"input": "#anxious don't know why ................. #worry 😶 slowly going #mad hahahahahahahahaha",
"output": [
"Angry"
]
},
{
"input": "work is going to kill me and 5 o'clock is nowhere near 😟",
"output": [
"Angry"
]
},
{
"input": "Migraine hangover has to be the worst thing ever 😣 #burst",
"output": [
"Angry"
]
},
{
"input": "@CNN @NewDay If #trump #whitehouse aren't held accountable for their actions,what precedent is being set for future presidencies. #nightmare",
"output": [
"Not angry"
]
},
{
"input": "@CTAFails @cta is it ok for your drivers to smile not open the door and drive off ",
"output": [
"Not angry"
]
},
{
"input": "y'all don't understand. this woman's wrath is REAL. 🌹🖤",
"output": [
"Not angry"
]
},
{
"input": "Each and every time I log on to that website to view the Lindsey Vonn pics I am #saddened by the courseness of our culture.",
"output": [
"Angry"
]
},
{
"input": "@Chawndi @YouTube can i ask im trying to pout a code on csgo roll i cant when i pout the code its red color.. help pls",
"output": [
"Angry"
]
},
{
"input": "@theAliceRoberts @FryRsquared @AdamRutherford They've obviously never tried 'repressing' a red head #fiery",
"output": [
"Angry"
]
},
{
"input": "My best friends driving for the first time with me in the car #terrifying",
"output": [
"Not angry"
]
},
{
"input": "@wizkidayo Bro u just dey burst my brain Bro I need u 2 pls end everything rift BTW u nd my hommie davido pls Bro 4 d sake of luv.",
"output": [
"Not angry"
]
},
{
"input": "@LogicIsPowerful Not all of them are bad. But I support your right to offend them all.",
"output": [
"Not angry"
]
},
{
"input": "@rachelkennedy84 @callummay @Ned_Donovan @JeyyLowe @jimwaterson @dats Can it do the bell ringing and incense at consecration?",
"output": [
"Not angry"
]
},
{
"input": "@chrisyour Don't be sad, ultimately it's apparently not supported completely but mostly working :-)",
"output": [
"Not angry"
]
},
{
"input": "I'm sorry but also...fuck you #currentfeels #anger #bpd #eupd #borderliner #mentalhealth #anxiety #depression #confused",
"output": [
"Angry"
]
},
{
"input": "Went to bed a 1:30, fell asleep after, my niece started crying at 4. I'm dying... 😧",
"output": [
"Angry"
]
},
{
"input": "@elebelfiore Isn't it always about control and mistrust?",
"output": [
"Not angry"
]
},
{
"input": "I am shy at first.It usually takes me a few minutes to assess the jaw of the people i am hanging out with and then i will act according🤷🏽♀️",
"output": [
"Not angry"
]
},
{
"input": "I like the #glow in the #dark #fidgetspinner. Not because it glows the dark neither. It feels more lighter and smoother than the others",
"output": [
"Not angry"
]
},
{
"input": "@washingtonpost @silvajanes How awful!!!!!!",
"output": [
"Angry"
]
},
{
"input": "I always bounce back, life goes on man..I refuse to sulk in negativity. Yesterday's problems are just that, it's always a new day 🤗",
"output": [
"Not angry"
]
},
{
"input": "i don't understand ppl who save wasps , next chance that lil dude gets he gnna sting ur grandma",
"output": [
"Not angry"
]
},
{
"input": "If you sit back, watch & listen to every .@TheDemocrats & .@DNC member, you'll quickly learn it's #Victimhood, #racism, & #hatred. I'm #WOKE",
"output": [
"Angry"
]
},
{
"input": "@RanaAyyub @rajnathsingh Oh, hidden revenge and anger...I rememberthe time,she rebutted you.",
"output": [
"Angry"
]
},
{
"input": "Chelsea and united must be furious",
"output": [
"Angry"
]
},
{
"input": "Some 'friends' get bitter when it seems your life is moving better than theirs.",
"output": [
"Angry"
]
},
{
"input": "I swear to god my husband is gonna get us murdered by someone with road rage because he drives like he's in the Indy 500",
"output": [
"Angry"
]
},
{
"input": "When did it all started? All these depression & anxiety shits?All these suicide thoughts?All of these bad thoughts thts hugging me at night?",
"output": [
"Angry"
]
},
{
"input": "I think 'Sleep' is my favorite from How did we get so dark?, maybe because I'm insomniac",
"output": [
"Not angry"
]
},
{
"input": "So happy to be home from Ibiza the place is some thing else mad gaff that , need find a bird now I wanna start doing romantic things now 😂😂",
"output": [
"Not angry"
]
},
{
"input": "@MikeAndMike @Buster_ESPN if you get time.. @Orioles buyers it sellers or what are we going to do!!?! #panic",
"output": [
"Angry"
]
},
{
"input": "I wish EVERYONE could see how #MSNBC #CNN talked over trumps speech. You ALL should be ashamed of the along with the sheep followers. ",
"output": [
"Angry"
]
},
{
"input": "@GILMONK1 Maybe to stand in the field to scare away the crows",
"output": [
"Not angry"
]
},
{
"input": "guess who stayed up until 2am just incase someone called but they never did like i knew already , it's me, mistakes were made",
"output": [
"Not angry"
]
},
{
"input": "We musn't allow bitterness and anger to make our hearts infertile to God’s gifts.",
"output": [
"Not angry"
]
},
{
"input": "and i shouldve cut them off the moment i started hurting myself over them :o",
"output": [
"Angry"
]
},
{
"input": "Are u sad or upset?",
"output": [
"Not angry"
]
},
{
"input": "@AshleyEmrick Whatever floats your incense boat.",
"output": [
"Not angry"
]
},
{
"input": "@LeahRemini A 'religion' that pushes people to suicide, and punishes you for doing the right thing?? #heartbreaking",
"output": [
"Angry"
]
},
{
"input": "I'm soooo annoyed. Wait to start my morning.",
"output": [
"Angry"
]
},
{
"input": "I wont rt things that might offend your faves bcs I'm better than that",
"output": [
"Not angry"
]
},
{
"input": "@sophieathertonn @lillynewtonx That's actually awful! You are in for a treat when you get home tho!!",
"output": [
"Not angry"
]
},
{
"input": "if not then #teamchristine bc all tana has done is provoke her by tweeting shady shit and trying to be a hard bitch begging for a fight",
"output": [
"Angry"
]
},
{
"input": "Perks of having that shit: I lost a friend somewhere along in the bitterness",
"output": [
"Angry"
]
},
{
"input": "@KicchaSudeep No words Sir... Thank you for the concern..",
"output": [
"Not angry"
]
},
{
"input": "Time to #impeachtrump . He is #crazy #mentally #sick and spews #hatred . #America is in trouble with him having #access to #nuclearcodes 👎👎",
"output": [
"Angry"
]
},
{
"input": "Had frustration dream that left me utterly f**king furious. Plus side: so angry couldn't sleep, wrote 1500 words. Minus side: still raging!",
"output": [
"Angry"
]
},
{
"input": "@TorridFashion I love you, but between online order drama and your horrible hold music I have a bit of a shopping induced headache. #annoyed",
"output": [
"Angry"
]
},
{
"input": "quick note about insta stories how the f do you expect me to read a paragraph of a caption in 1 second ???????????? ",
"output": [
"Angry"
]
},
{
"input": "#revenge or #Change . You #ChooseASide for your country #India",
"output": [
"Not angry"
]
},
{
"input": "@PageShhh1 I know you mean well but I'm offended. Prick.",
"output": [
"Angry"
]
},
{
"input": "Let go of resentment, it will hold you back, do not worry about what could of been, what is to come is what matters.",
"output": [
"Not angry"
]
},
{
"input": "No, I'm not 'depressed because of the weather,' I'm depressed because I have #depression #sicknotweak",
"output": [
"Angry"
]
},
{
"input": "#AmarnathTerrorAttack Muslims are killing everywhere Syria Iraq Palestine Everyday beyond They say that Islam is terrorism shame on you",
"output": [
"Angry"
]
},
{
"input": "Prepare to suffer the sting of Ghost Rider's power! Prepare to know the true meaning of hell!",
"output": [
"Angry"
]
},
{
"input": "@ajduey04303 We've been broken up a while, both moved on, she's got a kid, I don't hold any animosity towards her anymore...",
"output": [
"Not angry"
]
},
{
"input": "Just know USA, all Canadians don't agree with what Khadr's settlement and his unwillingness to take responsibility for his actions. #outrage",
"output": [
"Angry"
]
},
{
"input": "I hate getting woken up out my sleep 😡",
"output": [
"Angry"
]
},
{
"input": "@Mothercarehelp after being assured we would get the rest of our order it has been cancelled and a 10% voucher issued. #nothappy",
"output": [
"Angry"
]
},
{
"input": "#UKVI why are you so difficult to access? And why on earth am I being charged exorbitant amounts to understand about my visa status?! #crap",
"output": [
"Angry"
]
},
{
"input": "I just remembered I made a presentation of the top 100 male idols out of anger after seeing that siwon was first",
"output": [
"Angry"
]
},
{
"input": "#ATO hacking into your phone calls and text messages! #privacylaws #invasion I knew they did it but hearing them get approval !",
"output": [
"Angry"
]
},
{
"input": "@CP_UK_Longleat money grabbing and RUBBISH customer service!!! Rapids shut but no reply to emails! #diabolical #CustomerService #crap",
"output": [
"Angry"
]
},
{
"input": "I am so freaking annoyed that he constantly feels the need to be a time in my life where I'd be happy with just one monitor on my PC",
"output": [
"Angry"
]
},
{
"input": "I cannot see a rational way of bearing a grudge to him for that. I do not. Maybe because I do not live by Netflix and I do not care...",
"output": [
"Angry"
]
},
{
"input": "Dropping son off this morning then shopping with my girls for shoes wedding fun this afternoon. Your TL won't explode today. 😀",
"output": [
"Not angry"
]
},
{
"input": "@ShanderShow, love the Cuz, but he takes umbrage at people who are not all Eagled up.",
"output": [
"Not angry"
]
},
{
"input": "@Miss_Wisconsin It's amazing what not being told no enough can raise. #horrid",
"output": [
"Angry"
]
},
{
"input": "@dedeuk @susandb1968 @CharleneWhite So do you think she meant to say it knowing she was going to offend people??",
"output": [
"Not angry"
]
},
{
"input": "@bugwan Crown? Teaching the kiddies to have a flutter?",
"output": [
"Not angry"
]
},
{
"input": "@schless09 @JohnnyB28 You guys are #huff",
"output": [
"Angry"
]
},
{
"input": "@F3Alpha #F3Roswell #Preblast\\nI've been handed the keys to Roswell Area Park. See you in the gloom. Be ready to slip & slide at 0530",
"output": [
"Not angry"
]
},
{
"input": "@ReidGenar @tedcruz So much crow eating to come, crows may become an endangered species. #revenge",
"output": [
"Not angry"
]
},
{
"input": "My heart is so happy I want to explode. ❤️💥",
"output": [
"Not angry"
]
},
{
"input": "Shall rest by day, a fiery gleam by night;",
"output": [
"Not angry"
]
},
{
"input": "@kamaalrkhan #shows how #irritated @kamaalrkhan #brandkrk is #feeling for his #community #brothers! So #Helpless 🙈🙈🙈 #ShameOnBhakts",
"output": [
"Angry"
]
},
{
"input": "And we bloody got rid of Gregory so we will have 2 new goalkeepers in the team, what a fantastic start to the season.. ",
"output": [
"Not angry"
]
},
{
"input": "YOU MIGHT BE TRYING TO FILL THE VOID IN YOUR #HEART WITH ALL SORTS OF THINGS BUT THAT PLACE BELONGS TO JESUS CHRIST #music #worry #love #SMM",
"output": [
"Not angry"
]
},
{
"input": "Field mines, like people, explode when trodden on #anger #people #pokethebear",
"output": [
"Angry"
]
},
{
"input": "*gen math class*\\n\\nms: what is the value of x in this eq'n?\\n\\nme: x is 10....tial dread and suffering is a prison without escape, only death.",
"output": [
"Angry"
]
},
{
"input": "Lugubrious face, crestfallen eyes, forlorn heart and an agitated soul seeking serenity.",
"output": [
"Not angry"
]
},
{
"input": "Exercise Science majors just don't learn how to 'lift weights' there is much more to realize. People need to educate themselves. ",
"output": [
"Not angry"
]
},
{
"input": "how i drink two 40s and im still somewhat sober ?",
"output": [
"Not angry"
]
},
{
"input": "Dont sink to the level of those who insult you. Rather, rise to the level of those who inspire you. Deliver result, not insult",
"output": [
"Not angry"
]
},
{
"input": "@setsmiling Happy Birthday arsehole. Hope you have an average day ☺️☺️",
"output": [
"Angry"
]
},
{
"input": "I give up! #simples #unhappy #fedup",
"output": [
"Angry"
]
},
{
"input": "So I'm pretty sure the @Indians are the MVP of the @AllStarGame #defense #pitching",
"output": [
"Not angry"
]
},
{
"input": "it takes sadness to know happiness\\nabsence to value presence",
"output": [
"Not angry"
]
},
{
"input": "To recreate my romantic memories, I'd just put a chip on my shoulder #masterchefau",
"output": [
"Not angry"
]
},
{
"input": "Don't justify Terrorism as communal hatred. #AmarnathTerrorAttack is sheer Act of cowardice. Let's unite together against terrorism. Luv all",
"output": [
"Not angry"
]
},
{
"input": "@GvanOnselen @BDliveSA You mean the President Protector? The rabid revolution sleeper agent gone rogue?",
"output": [
"Not angry"
]
},
{
"input": "Why hasn't my alarm gone off... 🤔😩⏰",
"output": [
"Angry"
]
},
{
"input": "@SpacePootler Just ran out of data… #shiver",
"output": [
"Not angry"
]
},
{
"input": "Mothafuckas wanna adopt the dark, but I was born in it",
"output": [
"Angry"
]
},
{
"input": "My @netflix viewing history reset and I'm absolutely ",
"output": [
"Not angry"
]
},
{
"input": "@dp_srk_rk It's going 3 only. He has berdych tomorrow. Nothing to worry. Easiest draw",
"output": [
"Not angry"
]
},
{
"input": "So Dorje Shugden has been sent a leaf to be torn. Rothschild is struck by Indra wrath lightning and also Iron Fist. 10 bloodlines 2b removed",
"output": [
"Angry"
]
},
{
"input": "It's now raining and I can hear thunder growl somewhere. Good day to read some more.",
"output": [
"Not angry"
]
},
{
"input": "Joker's job is to make public smile & not spread hatred by d way. @Ra_Bies",
"output": [
"Not angry"
]
},
{
"input": "'we need to do something. something must be done!!!!!'\\n\\nyour anxiety is amusing. nothing will be done. despair.",
"output": [
"Angry"
]
},
{
"input": "@Chan_lfc10 @paul_rule @Nuttall1878 @DeadlineDayLive @Everton We'd be fuming if the hijacked our £8m move for a relegated full back 😡",
"output": [
"Angry"
]
},
{
"input": "#dmme #kikme #sext #horny #ass #bbw #naughty #pussy #kik #nudes only girls 😩 horny #snap jacobgigs",
"output": [
"Not angry"
]
},
{
"input": "Coulda sworn it was Interview With A Vampire. Hmmm......Mandela Effect anyone? \\n#interviewwithavampire #annerice #books #horror #ilovevamps",
"output": [
"Not angry"
]
},
{
"input": "sick of this shit. #mad #angry. Rowan Atkinson Is Not Dead. Just A Bloody Online Hoax😡😡😡😡🤬🤬🤬🤬",
"output": [
"Angry"
]
},
{
"input": "@lucybeecoconut A make up remover and insect sting relief!",
"output": [
"Not angry"
]
},
{
"input": "I despair at the mouth foaming hostility & dishonesty of those in the Leave camp, & we should expose that.",
"output": [
"Angry"
]
},
{
"input": "@FangornForest1 @Brexit whose customers love it. Imagine being a hack these days, having to sing the tune the paymaster calls. #dismal",
"output": [
"Angry"
]
},
{
"input": "@F1 Why announcing so late, it will be hard to make it from Manchester and organising a day off. #sad",
"output": [
"Angry"
]
},
{
"input": "Mother Nature dropping mad beats out there this morning. Just wish they wouldn't shake my shower stall while I'm standing there naked.",
"output": [
"Not angry"
]
},
{
"input": "#DamilolaOurLovedBoy So upsetting 😢😢. Why do people want to hurt others! Such a cruel world we live in #heartbreaking",
"output": [
"Angry"
]
},
{
"input": "Sorry if I annoy any of you. I'm just real passionate about Ruby and always want to give her the love she deserves 😭",
"output": [
"Not angry"
]
},
{
"input": "Jesus drank the cup of wrath you deserve dry, so that you might drink deeply of His cup of salvation that eternally satisfies (Hab 2:15).",
"output": [
"Not angry"
]
},
{
"input": "I spotted the fed and all I got was #Ejaculating live bees and the bees are #angry.",
"output": [
"Angry"
]
},
{
"input": "Worst dreams. 😥",
"output": [
"Angry"
]
},
{
"input": "@MarkRDuckett it did, i saw the tweet, it had a crack at u, about a greens tweet. it holds a grudge dude. so pathetic.",
"output": [
"Angry"
]
},
{
"input": "#WalkingSideBySide: Great marriages built on #forgiveness &truthfulness; bad marriages on #resentment, bitterness, #deceit &unfaithfulness.",
"output": [
"Not angry"
]
},
{
"input": "@Bravotv is there a way to watch NYC Million Dollar Listing & filter @FredrikEklundNY OUT of the episodes? #primadonna #duckface #tantrum",
"output": [
"Not angry"
]
},
{
"input": "This time last year I was pissed at the top of the Eiffel Tower. Today I was down a manhole in the rain. Happy Anniversary @Jordannea11 😘♥️",
"output": [
"Not angry"
]
},
{
"input": "Head hurting 😤",
"output": [
"Angry"
]
},
{
"input": "@JustHerrick @iPhone_News Piece of #crap",
"output": [
"Angry"
]
},
{
"input": "So disappointed in myself for spending £50 on an outfit for meeting a boy #noselfcontrol #nervous",
"output": [
"Angry"
]
},
{
"input": "Did men call themselves shy and mean it? So I reassure him that I'm just making sure he's a good investment and alla that 🙄",
"output": [
"Not angry"
]
},
{
"input": "Kid at camp said my inner thigh looked like a slinky👌🤣 buddy those are stretch marks!!!! #SummerCamp #offended",
"output": [
"Angry"
]
},
{
"input": "Alaina and I are at 90 days on our snap streak. So?",
"output": [
"Not angry"
]
},
{
"input": "Saw my first Larsen trap today with stressed magpie. I NEVER EVER want to see that again #angry #distressed #wildlife",
"output": [
"Angry"
]
},
{
"input": "@Argos_Online customer service is dreadful, phone bill is huge and get passed from person 2 person and keep taking money off my card #idiots",
"output": [
"Angry"
]
},
{
"input": "Lost my appetite for the past 5 days and I swear I already lost 3 pounds #depressing #at #least #i #will #be #skinny #for #pride #weekend",
"output": [
"Angry"
]
},
{
"input": "Great...So I got up at 5am only to discover that my Amazon Prime Day deal was $30 more than the regular price. 😡",
"output": [
"Angry"
]
},
{
"input": "What's worse than feeling discouraged? Not finding an emoji for feeling discouraged",
"output": [
"Angry"
]
},
{
"input": "@GirlPosts @_matdtaylor actually how annoyed you get 😂",
"output": [
"Angry"
]
},
{
"input": "@Zineeta_R @RusEmbUSA @mfa_russia The hatred and fear many russians have for anything non-russian is just sad.",
"output": [
"Angry"
]
},
{
"input": "@BBCBreaking I have some mistrust of the medical profession. The cover up was more important than the patients.",
"output": [
"Angry"
]
},
{
"input": "I've got builders in my office and I have a game to make. Perhaps ill start sketching the next game... #gamedev #indiedev ",
"output": [
"Not angry"
]
},
{
"input": "Wow what's up with #snap 😲📊📉⬇#cnnmoney",
"output": [
"Not angry"
]
},
{
"input": "Brighten up a gloomy day with a @SiennaXOfficial spray tan, we have a tan to suit everybody! #spraytan #tan #summer #godalming #hurtmore",
"output": [
"Not angry"
]
},
{
"input": "Israel's recent overtures towards West Africa seems to be attracting some elements of suspicion...an unnecessary suspicion though.",
"output": [
"Not angry"
]
},
{
"input": "@hollloman @nessa_babbby @ajvannozzi97 As half a set of twins I resent that!",
"output": [
"Angry"
]
},
{
"input": "I feel exhausted ...\\nI tried to do a good job, but apparently God does not see me right. I'm weary! I EXIST! 😟💔📢\\n#exist #weary #misonorotta",
"output": [
"Angry"
]
},
{
"input": "Why have #Emmerdale had to rob #robron of having their first child together for that vile woman/cheating sl smh #bitter",
"output": [
"Angry"
]
},
{
"input": "@o_pebbles Not of this one sadly! 😪",
"output": [