-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsarcasm_data_train.json
9166 lines (9166 loc) · 303 KB
/
sarcasm_data_train.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
{
"1_11232": {
"utterance": "And I love that I work and do all the cleaning, and you're okay with that.",
"speaker": "BERNADETTE",
"context": [
"And I love that you're strong and independent.",
"And yet, I still love when you hold a door for me.",
"I love that I'm kind of a slob around here, and...\nyou're okay with that.",
"Uh-huh."
],
"context_speakers": [
"HOWARD",
"BERNADETTE",
"HOWARD",
"BERNADETTE"
],
"show": "BBT",
"sarcasm": true
},
"1_7402": {
"utterance": "I didn't know they gave Nobel prizes for making boom-boom in the potty.",
"speaker": "LEONARD",
"context": [
"the paper was rejected, but recently, he was proven right.",
"And now he's on the fast track to win a Nobel prize.",
"Yeah, that's basically what I said.",
"The point is Higgs is being celebrated for work he did 50 years ago, so that got me thinking,",
"perhaps I've already hit upon the idea that will win me my Nobel prize."
],
"context_speakers": [
"SHELDON",
"SHELDON",
"PENNY",
"SHELDON",
"SHELDON"
],
"show": "BBT",
"sarcasm": true
},
"1_3660": {
"utterance": "There a new girlfriend in there? 'Cause you might need one.",
"speaker": "PENNY",
"context": [
"Leonard, what do the two of you talk about after the coitus?",
"My guess is, \"Hey, four minutes! New record!\"",
"That's why I'm the funny one.",
"Anyway, we followed the guy to this garage sale, and they had the coolest stuff.",
"They were closing up. We got this whole box for 60 bucks.",
"We didn't even get to go through it all. There could be anything in here."
],
"context_speakers": [
"SHELDON",
"HOWARD",
"HOWARD",
"LEONARD",
"HOWARD",
"LEONARD"
],
"show": "BBT",
"sarcasm": true
},
"2_49": {
"utterance": "We got a box.",
"speaker": "JOEY",
"context": [
"When that guy was robbing us and I was locked in the entertainment unit for like six hours, do you know what I was doing there in all that time? I was thinking about how I let you down. Yeah. But if I had known what kind of friend you would turn out to be, I wouldn't have worried about it so much. See you around!",
"Wait! Just wait one second. There has to be something that I can do, something. If we still had that entertainment unit, I would get in there for six hours and think about how I let you down."
],
"context_speakers": [
"JOEY",
"CHANDLER"
],
"show": "FRIENDS",
"sarcasm": false
},
"1_8052": {
"utterance": "Like Burt and Ernie. You guys even teach me stuff about words and numbers.",
"speaker": "PENNY",
"context": [
"I swear, that man is the most egotistical, insufferable human being I have ever met.",
"Yeah, but you two make such a cute couple."
],
"context_speakers": [
"LEONARD",
"PENNY"
],
"show": "BBT",
"sarcasm": true
},
"1_9087": {
"utterance": "Why? Because I got an ugly, itchy sweater, and my brother got a car? No, I was her favorite.",
"speaker": "LEONARD",
"context": [
"Yup, oh... here you go.",
"Oh, thank you.",
"Here, get yourself an eraser for your troubles.",
"Oh-ho.\nI forgot about this. \nMy aunt made it for me when I started college.",
"Aw, did she hate you?"
],
"context_speakers": [
"LEONARD",
"SHELDON",
"SHELDON",
"LEONARD",
"PENNY"
],
"show": "BBT",
"sarcasm": true
},
"2_599": {
"utterance": "No I am upset because crocodin turbs are wearing darker colors.",
"speaker": "DOROTHY",
"context": [
"I am not talking to you",
"I guess you are still upset with me about last night aren't you?"
],
"context_speakers": [
"DOROTHY",
"BLANCHE"
],
"show": "GOLDENGIRLS",
"sarcasm": true
},
"2_315": {
"utterance": "I guess you'd know that, being one of the two of us, though, right?",
"speaker": "RACHEL",
"context": [
"So. I just thought the two of us should hang out for a bit. I mean, you know, we've never really talked."
],
"context_speakers": [
"RACHEL"
],
"show": "FRIENDS",
"sarcasm": true
},
"1_11120": {
"utterance": "Next time I might be in a rush, it's good to have a few in the bank.",
"speaker": "SHELDON",
"context": [
"There's nothing weird going on with me and your mother.",
"Stewie, your bath is getting cold!",
"I got to go, bye.",
"Penny?\nPenny.\nPenny.\nPenny.\nPenny.",
"You knocked more than usual."
],
"context_speakers": [
"PERSON1",
"PERSON2",
"PERSON1",
"SHELDON",
"PENNY"
],
"show": "BBT",
"sarcasm": false
},
"2_352": {
"utterance": "No Rose, it stands alone.",
"speaker": "DOROTHY",
"context": [
"What are you seeing?",
"Nightmare on Elm Street 4",
"Do you have to see 1, 2 and 3 to appreciate it?"
],
"context_speakers": [
"PERSON",
"BLANCHE",
"ROSE"
],
"show": "GOLDENGIRLS",
"sarcasm": true
},
"2_523": {
"utterance": "Well, I'm a headhunter. I hook up out of work Soviet scientists with rogue third-world nations. Hi Rasputin!",
"speaker": "CHANDLER",
"context": [
"Hi Ben, and uh ..",
"I said \"a little bit\" Ross."
],
"context_speakers": [
"ROSS",
"JOEY"
],
"show": "FRIENDS",
"sarcasm": true
},
"2_174": {
"utterance": "Oh! Satan's minions at work again?",
"speaker": "CHANDLER",
"context": [
"And there's five hundred extra dollars in my account."
],
"context_speakers": [
"PHOEBE"
],
"show": "FRIENDS",
"sarcasm": true
},
"2_492": {
"utterance": "I'm sorry Sophia, but in Dorothy's defence, it sure sounds a lot like her.",
"speaker": "ROSE",
"context": [
"You what the joke going around teacher's lounge was today Ma? Me",
"I know this joke",
"Everybody heard on the radio that some anonymous Ma was complaining that her dependent daughter Dorothy doesn't have a life of her own.",
"What you think of the only grey head substitute teacher named Dorothy wasting her life away in Miami?"
],
"context_speakers": [
"DOROTHY",
"SOPHIA",
"DOROTHY",
"SOPHIA"
],
"show": "GOLDENGIRLS",
"sarcasm": true
},
"2_11": {
"utterance": "His cappucino maker.",
"speaker": "DOROTHY",
"context": [
"The only thing we have in common is under the sheets",
"Whats under the sheets?"
],
"context_speakers": [
"DOROTHY",
"ROSE"
],
"show": "GOLDENGIRLS",
"sarcasm": true
},
"1_8827": {
"utterance": "How do you not tear off his clothes and take him right here on this table?",
"speaker": "PENNY",
"context": [
"Awkward silence. Sheldon on his phone.\nNo touching. Somebody's having date night.",
"It's actually steamier than it looks.\nSheldon's looking up the phallic symbolism of root vegetables in Renaissance paintings.",
"Oh, no, I got bored with that.\nI'm just browsing cuticle scissors on Amazon."
],
"context_speakers": [
"PENNY",
"AMY",
"SHELDON"
],
"show": "BBT",
"sarcasm": true
},
"1_1772": {
"utterance": "\"Dave.\" Sounds like Leonard's got a new BFF.",
"speaker": "HOWARD",
"context": [
"There are always do-overs when my people play sports.",
"Where were you that's more important than Wii bowling night?",
"Actually...",
"It's rhetorical.\nThere is nothing more important than Wii bowling night.",
"Come on, it's just a video game. And we suck at it.",
"Nice motivational speech from the team captain.",
"Where were you?"
],
"context_speakers": [
"HOWARD",
"SHELDON",
"LEONARD",
"SHELDON",
"LEONARD",
"SHELDON",
"SHELDON"
],
"show": "BBT",
"sarcasm": true
},
"2_617": {
"utterance": "And protected them from a tornado?",
"speaker": "CHANDLER",
"context": [
"How do you feel?",
"Well, let's just say that Krog will be fully equipped to destroy the universe again in twelve to fourteen hours.",
"Okay, so I"
],
"context_speakers": [
"PHOEBE",
"CHANDLER",
"PHOEBE"
],
"show": "FRIENDS",
"sarcasm": true
},
"1_80": {
"utterance": "Since it's not bee season, you can have my epinephrine.",
"speaker": "SHELDON",
"context": [
"Here we go. Pad thai, no peanuts.",
"But does it have peanut oil?",
"I'm not sure. Everyone keep an eye on Howard in case he starts to swell up."
],
"context_speakers": [
"LEONARD",
"HOWARD",
"LEONARD"
],
"show": "BBT",
"sarcasm": false
},
"2_467": {
"utterance": "That is the coast guard!",
"speaker": "RACHEL",
"context": [
"Just because he's got a bigger boat he thinks he can take up the whole river. Get out of the way jackass! Who names their boat Coast Guard anyway?"
],
"context_speakers": [
"JOEY"
],
"show": "FRIENDS",
"sarcasm": false
},
"1_6472": {
"utterance": "You'd think a winner could make a decent cup of cocoa.",
"speaker": "SHELDON",
"context": [
"Then take away his keys and make him wander the streets with the other drunks.",
"You remember Sheldon and Raj and Howard.",
"Not really, no.",
"It's funny, huh, Leonard?",
"Back in school, I was the winner and you were the loser.\nAnd now we're reversed.",
"You're the winner."
],
"context_speakers": [
"SHELDON",
"LEONARD",
"PERSON",
"PERSON",
"PERSON",
"PERSON"
],
"show": "BBT",
"sarcasm": true
},
"1_2819": {
"utterance": "You know, I've always wanted to go to a Goth nightclub.",
"speaker": "SHELDON",
"context": [
"Howard, what did you do?",
"They're called tattoo sleeves. Look.",
"I got them online. Raj got a set, too.",
"Fantastic, right?",
"Put them on, have hot sex with some freaky girl with her business pierced, take them off, and I can still be buried in a Jewish cemetery."
],
"context_speakers": [
"LEONARD",
"HOWARD",
"HOWARD",
"HOWARD",
"HOWARD"
],
"show": "BBT",
"sarcasm": true
},
"2_152": {
"utterance": "Your makeup?",
"speaker": "ROSS",
"context": [
"Are you referring to my man's bag? At first it I thought it just look good. But its practical too, check it out! Its got compartments for all your stuff. Your wallet, your key, your addressbook."
],
"context_speakers": [
"JOEY"
],
"show": "FRIENDS",
"sarcasm": true
},
"2_58": {
"utterance": "Why?",
"speaker": "PHOEBE",
"context": [
"Welcome back!",
"Hey! Can we pick up where we left off?",
"I don't know, I'm still pretty tired out from this afternoon."
],
"context_speakers": [
"PERSON",
"PHOEBE",
"PERSON"
],
"show": "FRIENDS",
"sarcasm": false
},
"2_430": {
"utterance": "I guess you would know that or else we would be in a predicament room",
"speaker": "CHANDLER",
"context": [
"Listen it's kind of an emergency"
],
"context_speakers": [
"CHANDLER"
],
"show": "FRIENDS",
"sarcasm": true
},
"2_426": {
"utterance": "Are you kidding? I love that guy! Morning's here! Morning is here,",
"speaker": "JOEY",
"context": [
"HEY!! Do you Oh come on! Morning's here! Morning's here! The morning is here! Sunshine is here! I"
],
"context_speakers": [
"PERSON"
],
"show": "FRIENDS",
"sarcasm": false
},
"1_3259": {
"utterance": "No, I mean Princess Leia. Of course I mean Bernadette. She's a wonderful girl and she really likes you.",
"speaker": "PERSON",
"context": [
"Thank you.",
"So, shall we get started?",
"Sure.\nBut can I ask you a question first?",
"Do you want to play Cylon and colonist?",
"I want to know why you're playing make-believe with me when you could be out with a real woman tonight.",
"You mean, Bernadette?"
],
"context_speakers": [
"HOWARD",
"HOWARD",
"PERSON",
"HOWARD",
"PERSON",
"HOWARD"
],
"show": "BBT",
"sarcasm": true
},
"2_534": {
"utterance": "Oh, come on!",
"speaker": "PHOEBE",
"context": [
"When did I say you were boring?!",
"Oh my God, I remember now! We were playing chess!",
"Phoebe! You and I have"
],
"context_speakers": [
"ROSS",
"PHOEBE",
"ROSS"
],
"show": "FRIENDS",
"sarcasm": false
},
"2_209": {
"utterance": "Really?",
"speaker": "MEMBER-GIRL",
"context": [
"He doesn't need to be sarcastic. I mean, that was sarcasm wasn't it?"
],
"context_speakers": [
"SCOTT"
],
"show": "SARCASMOHOLICS",
"sarcasm": true
},
"1_7047": {
"utterance": "Also instead of just living in your mother's house, you could actually live inside her body.",
"speaker": "LEONARD",
"context": [
"Wrong. Leonard?",
"Horse, but mostly just for the height.",
"A little bit for the genital girth.",
"Wrong, and let's keep it clean, shall we?",
"Kangaroo, uh, I'd be Kanga-Jew.",
"The first of my people to dunk a basketball."
],
"context_speakers": [
"SHELDON",
"LEONARD",
"LEONARD",
"SHELDON",
"HOWARD",
"HOWARD"
],
"show": "BBT",
"sarcasm": true
},
"2_409": {
"utterance": "I'll catch you guys later.",
"speaker": "CHANDLER",
"context": [
"Hi, excuse me, is Rachel Green here? I'm supposed to meet her for lunch.",
"Oh she doesn't come here anymore. You can find her up on 10th.",
"Okay great."
],
"context_speakers": [
"CHANDLER",
"PERSON",
"CHANDLER"
],
"show": "FRIENDS",
"sarcasm": false
},
"1_1931": {
"utterance": "Why don't you just lie down on the floor and swim there?",
"speaker": "LEONARD",
"context": [
"Where are we going?",
"You're driving me to the mall.",
"I'm going to acquire a book that summarizes the current theories in the field of friend-making."
],
"context_speakers": [
"LEONARD",
"SHELDON",
"SHELDON"
],
"show": "BBT",
"sarcasm": true
},
"1_7082": {
"utterance": "...to all the good times we had, like, uh, when we went camping and spent that night telling each other all our secrets. I told him I'm addicted to pedicures and he told me he lost his virginity to his cousin.",
"speaker": "RAJ",
"context": [
"This man became my whole world.",
"Yeah, nice speech, Francine.",
"I'm not done, but thank you.",
"I think back...."
],
"context_speakers": [
"RAJ",
"PERSON",
"RAJ",
"RAJ"
],
"show": "BBT",
"sarcasm": false
},
"1_3840": {
"utterance": "I read a study online that walking after a meal not only aids in digestion, but increases serotonin, and you know me, if there's one thing I like more than a refreshing beverage, it's serotonin. Bye-bye.",
"speaker": "SHELDON",
"context": [
"Ah…I do so love beverages.",
"Now I think I'll take my after-dinner walk.",
"Since when do you take after-dinner walks?",
"Yeah, since when do you take walks?"
],
"context_speakers": [
"SHELDON",
"SHELDON",
"LEONARD",
"HOWARD"
],
"show": "BBT",
"sarcasm": false
},
"2_29": {
"utterance": "It was like months ago.",
"speaker": "RACHEL",
"context": [
"Oh, that's Ross's.",
"Oh... Oh my God. He remembered.",
"Remembered what?"
],
"context_speakers": [
"CHANDLER",
"RACHEL",
"PHOEBE"
],
"show": "FRIENDS",
"sarcasm": false
},
"1_8746": {
"utterance": "I enjoyed it. When you told me I was going to be \"losing my virginity,\" I didn't think you meant showing me <i>Raiders of the Lost Ark</i> for the first time.",
"speaker": "AMY",
"context": [
"So what'd you think?",
"It was good.",
"That's it?",
"\"Good\"?"
],
"context_speakers": [
"SHELDON",
"AMY",
"SHELDON",
"SHELDON"
],
"show": "BBT",
"sarcasm": true
},
"2_345": {
"utterance": "Oh I left them in my bulldozer .. I don't have tools!",
"speaker": "CHANDLER",
"context": [
"It isnt working",
"We have to unscrew the chain",
"Hurry, I can't feel my ears",
"Can you ever feel your ears?",
"Interesting"
],
"context_speakers": [
"JOEY",
"MONICA",
"JOEY",
"CHANDLER",
"JOEY"
],
"show": "FRIENDS",
"sarcasm": true
},
"2_388": {
"utterance": "Yeah, she couldn't live without the Chan Love.",
"speaker": "CHANDLER",
"context": [
"Hey Pheebs!",
"Ohh! You made up!",
"Yeah, I couldn't be mad at him for too long."
],
"context_speakers": [
"CHANDLER",
"PHOEBE",
"MONICA"
],
"show": "FRIENDS",
"sarcasm": false
},
"1_7443": {
"utterance": "We've kind of been involved in a five-year experiment.",
"speaker": "PENNY",
"context": [
"in town were starting to say I was a witch.",
"Sheldon thinks the approach in this paper might change the way we calculate ferromagnetic hysteresis.",
"Oh, it's about time. I hated the old way.",
"Hi. I'm Penny.",
"Alex.\nUh, do you work with Dr. Hofstadter?",
"In a way."
],
"context_speakers": [
"SHELDON",
"PERSON",
"PENNY",
"PENNY",
"PERSON",
"PENNY"
],
"show": "BBT",
"sarcasm": false
},
"1_11439": {
"utterance": "No, you're right, we should do what you do. Have our mom send us pants from the Walmart in Houston.",
"speaker": "PENNY",
"context": [
"This isn't so bad.",
"That's easy for you to say. \nYour chair's not facing the lingerie section.",
"Boy, that's a lot of panties.",
"You guys comfy? This might take a while.",
"You know, I don't understand why women insist on making a big production out of buying clothes."
],
"context_speakers": [
"LEONARD",
"SHELDON",
"SHELDON",
"AMY",
"SHELDON"
],
"show": "BBT",
"sarcasm": true
},
"2_131": {
"utterance": "I really don't wanna sit with Allen Iverson over there .",
"speaker": "CHANDLER",
"context": [
"Wish I could switch with someone."
],
"context_speakers": [
"CHANDLER"
],
"show": "FRIENDS",
"sarcasm": false
},
"2_326": {
"utterance": "Stick to the list.",
"speaker": "ROSS",
"context": [
"Ahh!",
"It wasn't on your list, but hopefully you'll think it's really fun.",
"A scooter!"
],
"context_speakers": [
"RACHEL",
"PERSON",
"RACHEL"
],
"show": "FRIENDS",
"sarcasm": false
},
"2_242": {
"utterance": "Are you still enjoying your nap?",
"speaker": "CHANDLER",
"context": [
"Okay?",
"Hi Emma, it's the year 2020."
],
"context_speakers": [
"ROSS",
"CHANDLER"
],
"show": "FRIENDS",
"sarcasm": true
},
"2_541": {
"utterance": "Oh yeah right. And what would my opening line be? Excuse me",
"speaker": "CHANDLER",
"context": [
"Go over to her. She's not with anyone."
],
"context_speakers": [
"MONICA"
],
"show": "FRIENDS",
"sarcasm": true
},
"1_3125": {
"utterance": "But if she dumps you, she'll have a new boyfriend by tomorrow morning and you'll have a new girlfriend when you figure out how to build one.",
"speaker": "HOWARD",
"context": [
"Let me ask you something.",
"Do you think it's okay for Penny to have an ex-boyfriend sleep on her couch?",
"No, I mean, she's obviously way out of line.",
"Thank you!"
],
"context_speakers": [
"LEONARD",
"LEONARD",
"HOWARD",
"LEONARD"
],
"show": "BBT",
"sarcasm": true
},
"1_8407": {
"utterance": "Oh, sure, what a wonderful idea. And after that, I'll make up my own rules of oral hygiene. You know, instead of flossing, I'll rub pudding on my gums. I'm going to get the number of the SyFy Channel and give them what for.",
"speaker": "SHELDON",
"context": [
"It ended on a cliffhanger.",
"They did.",
"Uh, Sheldon, there are two dumplings left. Do you want them?",
"Dumplings?\nDon't you understand what's going on here?",
"As a rule, no.",
"That show ended with all the residents of New York either dead or unconscious.\nNow I'll never know what happened.",
"Well, why don't you make up your own ending?"
],
"context_speakers": [
"SHELDON",
"LEONARD",
"PENNY",
"SHELDON",
"PENNY",
"SHELDON",
"PENNY"
],
"show": "BBT",
"sarcasm": true
},
"2_338": {
"utterance": "And I am sure every person here really really wants you to join our group.",
"speaker": "MODERATOR",
"context": [
"Scott scott come back. You have to realize that we are a bunch of people with severe problems.",
"We have been trying to help ourselves, just like you have been trying to help yourself.",
"That's why we need to help each other.",
"I mean, you seem like a decent guy."
],
"context_speakers": [
"MODERATOR",
"MODERATOR",
"MODERATOR",
"MODERATOR"
],
"show": "SARCASMOHOLICS",
"sarcasm": true
},
"2_294": {
"utterance": "Oh, um, I don't care!",
"speaker": "CHANDLER",
"context": [
"How do I look?"
],
"context_speakers": [
"JOEY"
],
"show": "FRIENDS",
"sarcasm": true
},
"2_454": {
"utterance": "Ross umm, there's something that I've got to tell you, there's-there's someone else.",
"speaker": "PERSON",
"context": [
"It was dreadful. I felt terrible about how I acted when you said those wonderful things.",
"No, no, that-that, that's all right. Umm, I'm just glad you called."
],
"context_speakers": [
"PERSON",
"ROSS"
],
"show": "FRIENDS",
"sarcasm": false
},
"1_3707": {
"utterance": "Oh, I'm so glad you asked it like that. You.",
"speaker": "LEONARD",
"context": [
"Hey, Sheldon. I was up in the administration office, and I happened to overhear the name of the winner of this year's Chancellor's Award for Science.",
"And you want to rub my nose in the fact that my contributions are being overlooked again?",
"I am the William Shatner of theoretical physics.",
"All right, I'll play. What self-important, preening fraud are they honoring this year?"
],
"context_speakers": [
"LEONARD",
"SHELDON",
"SHELDON",
"SHELDON"
],
"show": "BBT",
"sarcasm": true
},
"1_5786": {
"utterance": "All right, so technically it's not a dinner date. I suppose you could call it a, uh, dinfast date. But if you did, you'd open yourself to peer-based mocking, such as, \"Hey, Leonard, how was your dinfast with Priya last night?\"",
"speaker": "SHELDON",
"context": [
"What are you doing?",
"Oh, uh, Priya's calling in a few minutes on Skype, and we are gonna have a dinner date.",
"It's 8:00 in the morning in Mumbai. \nHow can she have dinner?",
"Fine, whatever. \nPriya will be having breakfast."
],
"context_speakers": [
"SHELDON",
"LEONARD",
"SHELDON",
"LEONARD"
],
"show": "BBT",
"sarcasm": false
},
"2_350": {
"utterance": "No Rose, I am nervous because Sonny Bono gets elected mayor of Palm Springs, he is gonna make all the postmens wear leather bell bottoms and a fur vest.",
"speaker": "DOROTHY",
"context": [
"They are ain't here yet",
"No, but they should be any minute",
"You seem a little nervous.",
"Oh you're sure I am",
"Are you nervous cause you haven't met Michael's fiancee?"
],
"context_speakers": [
"BLANCHE",
"DOROTHY",
"ROSE",
"DOROTHY",
"ROSE"
],
"show": "GOLDENGIRLS",
"sarcasm": true
},
"2_264": {
"utterance": "Okay?",
"speaker": "PHOEBE",
"context": [
"Listen, I'm sorry about that whole thing with Roger. It really wasn't right, and I, and I want to make it up to you, so umm, I brought you something that I think you'll really enjoy. Now, this is just a loan."
],
"context_speakers": [
"PHOEBE"
],
"show": "FRIENDS",
"sarcasm": false
},
"1_8837": {
"utterance": "Not as relieved as I'm about to be. It's a brave new world, little lady.",
"speaker": "SHELDON",
"context": [
"Really?",
"Yes.",
"Huh. Yeah, I always took it literally.",
"That's why I have never once moved my bowels in this or any restaurant. \nHmm.",
"I'm relieved that you don't have a problem with us working together."
],
"context_speakers": [
"SHELDON",
"AMY",
"SHELDON",
"SHELDON",
"AMY"
],
"show": "BBT",
"sarcasm": false
},
"1_11201": {
"utterance": "He probably got a new one. Finish your breakfast. Look, there's an entire section of my dashboard that doesn't have any syrup on it.",
"speaker": "AMY",
"context": [
"It's nice they're getting exercise.",
"Although now that I think about it, Leonard would never go swimming in public without his swim shirt.",
"I'm sure he brought it.",
"No, but last year, at Magic Mountain, he got such a bad sunburn, we had to cut him out of it.",
"He probably got a new one. Finish your breakfast."
],
"context_speakers": [
"AMY",
"SHELDON",
"AMY",
"SHELDON",
"AMY"
],
"show": "BBT",
"sarcasm": false
},
"2_236": {
"utterance": "Gee, if only she were one and had no idea what a birthday was.",
"speaker": "CHANDLER",
"context": [
"You can't go away this weekend, its Emma's birthday, we are having a party.",
"Well can't you just have the party when we get back?",
"No, it won't be her real birthday."
],
"context_speakers": [
"RACHEL",
"MONICA",
"RACHEL"
],
"show": "FRIENDS",
"sarcasm": true
},
"2_191": {
"utterance": "So, you're just Bing?",
"speaker": "JOEY",
"context": [
"No, no, you're right, it is a ridiculous name!",
"It's not that bad.",
"Yes it is! From now on, I have no first name."
],
"context_speakers": [
"CHANDLER",
"JOEY",
"CHANDLER"
],
"show": "FRIENDS",
"sarcasm": false
},
"1_5058": {
"utterance": "An entire dinner to talk about your research? Where you going, the drive-thru at Jack in the Box?",
"speaker": "SHELDON",
"context": [
"Yes, I live with him.\nI don't... I-I really don't know why.",
"Tonight? Sure, that'd be great. Okay, I'll see you then. Bye.",
"She wants to have dinner and talk about my research."
],
"context_speakers": [
"LEONARD",
"LEONARD",
"LEONARD"
],
"show": "BBT",
"sarcasm": true
},
"1_11697": {
"utterance": "The answer's in this puzzle box. Let's see if you can open it.",
"speaker": "PENNY",
"context": [
"Can you please just let it go?",
"Oh, I can help you with that.",
"Imagine you're holding an ordinary pen.",
"While your favorite pen is safe and secure in your pocket.",
"Hold that thought.",
"Hello?",
"How can I make this up to you?"
],
"context_speakers": [
"BERNADETTE",
"SHELDON",
"SHELDON",
"SHELDON",
"HOWARD",
"HOWARD",
"AMY"
],
"show": "BBT",
"sarcasm": true
},
"1_427": {
"utterance": "Well, I'm sorry, too, but there's just no room for you in my wallet.",
"speaker": "SHELDON",
"context": [
"This is Dr. Sheldon Cooper.",
"Yeah, I need to cancel my membership to the planetarium."
],
"context_speakers": [
"SHELDON",
"SHELDON"
],
"show": "BBT",
"sarcasm": true
},
"1_11526": {
"utterance": "As you may know, I've been experimenting with elevated anxiety levels, and I thought, what better way to increase my discomfort than to subject myself to an evening of tasteless uncensored crotch talk?",
"speaker": "SHELDON",
"context": [
"If I were going to Hawaii, I'd spend all my time at the Keck Observatory.\nDid you know that the telescopes there have better resolution than the Hubble?",
"Really?\nWant to go to Hawaii?",
"Ladies?\nLadies...\nLadies?",