-
Notifications
You must be signed in to change notification settings - Fork 61
/
sarcasm_data.json
11424 lines (11424 loc) · 366 KB
/
sarcasm_data.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_60": {
"utterance": "It's just a privilege to watch your mind at work.",
"speaker": "SHELDON",
"context": [
"I never would have identified the fingerprints of string theory in the aftermath of the Big Bang.",
"My apologies. What's your plan?"
],
"context_speakers": [
"LEONARD",
"SHELDON"
],
"show": "BBT",
"sarcasm": true
},
"1_70": {
"utterance": "I don't think I'll be able to stop thinking about it.",
"speaker": "PENNY",
"context": [
"This is one of my favorite places to kick back after a quest. They have a great house ale.",
"Cool tiger.",
"Yeah, I've had him since level ten.",
"His name is Buttons.",
"Anyway, if you had your own game character we could hang out, maybe go on a quest.",
"That sounds interesting.",
"You'll think about it?"
],
"context_speakers": [
"HOWARD",
"PENNY",
"HOWARD",
"HOWARD",
"HOWARD",
"PENNY",
"HOWARD"
],
"show": "BBT",
"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
},
"1_90": {
"utterance": "Lois Lane is falling, accelerating at an initial rate of 32 feet per second per second. Superman swoops down to save her by reaching out two arms of steel. Miss Lane, who is now traveling at approximately 120 miles an hour, hits them and is immediately sliced into three equal pieces.",
"speaker": "SHELDON",
"context": [
"A marathon? How many Superman movies are there?",
"You're kidding, right?",
"I do like the one where Lois Lane falls from the helicopter and Superman swooshes down and catches her. Which one was that?",
"One.",
"You realize that scene was rife with scientific inaccuracy.",
"Yes, I know, men can't fly.",
"Let's assume that they can."
],
"context_speakers": [
"PENNY",
"SHELDON",
"PENNY",
"SHELDON",
"SHELDON",
"PENNY",
"SHELDON"
],
"show": "BBT",
"sarcasm": false
},
"1_105": {
"utterance": "I'm just inferring this is a couch because the evidence suggests the coffee table is having a tiny garage sale.",
"speaker": "SHELDON",
"context": [
"Great Caesar's ghost, look at this place.",
"So Penny's a little messy.",
"A little messy?",
"The Mandelbrot set of complex numbers is a little messy. This is chaos.",
"Excuse me.",
"Explain to me an organizational system where a tray of flatware on a couch is valid."
],
"context_speakers": [
"SHELDON",
"LEONARD",
"SHELDON",
"SHELDON",
"SHELDON",
"SHELDON"
],
"show": "BBT",
"sarcasm": true
},
"1_162": {
"utterance": "Sheldon, if you were a robot, and I knew and you didn't...",
"speaker": "HOWARD",
"context": [
"On the other hand, no arousal.",
"None?",
"None.",
"Thank you for your time.",
"Thank you.",
"None at all?"
],
"context_speakers": [
"PERSON",
"LEONARD",
"PERSON",
"LEONARD",
"PERSON",
"LEONARD"
],
"show": "BBT",
"sarcasm": false
},
"1_175": {
"utterance": "If you're compiling a mix CD for a double suicide. Oh, I hope that scratching post is for you.",
"speaker": "SHELDON",
"context": [
"Oh, good Lord.",
"God, that's a good song."
],
"context_speakers": [
"SHELDON",
"LEONARD"
],
"show": "BBT",
"sarcasm": true
},
"1_182": {
"utterance": "No. The dark crescent-shaped patterns under your arms conceal it nicely.",
"speaker": "SHELDON",
"context": [
"How do I look?",
"Could you be more specific?",
"Can you tell I'm perspiring a little?"
],
"context_speakers": [
"LEONARD",
"SHELDON",
"LEONARD"
],
"show": "BBT",
"sarcasm": true
},
"1_213": {
"utterance": "How's this? \"Pleased to meet you, Dr. Gablehauser. \"How fortunate for you that the university's \"chosen to hire you, despite the fact \"that you've done no original research in 25 years, \"and instead have written a series of popular books \"that reduce the great concepts of science \"to a series of anecdotes, \"each one dumbed down to accommodate the duration \"of an average bowel movement.",
"speaker": "SHELDON",
"context": [
"You know, I am not going to enjoy this party.",
"I know, I'm familiar with you.",
"The last department party, Professor Finkleday cornered me and talked about spelunking for 45 minutes.",
"Yes, I was there.",
"You know what's interesting about caves?",
"What?",
"Nothing.",
"Then we'll avoid him, we'll meet the new department head, congratulate him, shake his hand and go."
],
"context_speakers": [
"SHELDON",
"LEONARD",
"SHELDON",
"LEONARD",
"SHELDON",
"LEONARD",
"SHELDON",
"LEONARD"
],
"show": "BBT",
"sarcasm": true
},
"1_276": {
"utterance": "Yeah, my parents felt that naming me Leonard and putting me in Advanced Placement classes wasn't getting me beaten up enough.",
"speaker": "LEONARD",
"context": [
"He switched over to high-energy radiation research, had a little mishap, and now the other guys are uncomfortable sitting next to him.",
"You're in?",
"Yeah, sure, why not?",
"Great, we rehearse on Tuesdays at your place.",
"Why at my place?",
"Department of Energy said our regular space is kind of a hot zone.",
"Nice meeting you.",
"Yeah, you, too.\nLeonard, I didn't know you played the cello."
],
"context_speakers": [
"PERSON",
"PERSON",
"LEONARD",
"PERSON",
"LEONARD",
"PERSON",
"PERSON",
"PENNY"
],
"show": "BBT",
"sarcasm": true
},
"1_340": {
"utterance": "Sure, cut the foreigner in half. There's a billion more where he came from.",
"speaker": "RAJ",
"context": [
"And I cannot believe people pay for horoscopes, but on a more serious note, it's 8:13 and we're still not playing Halo.",
"Fine. We'll just play one-on-one until he gets back.",
"One-on-one? We don't play one-on-one.",
"We play teams, not one-on-one.",
"One-on-one.",
"The only way we can play teams at this point is if we cut Raj in half."
],
"context_speakers": [
"SHELDON",
"LEONARD",
"SHELDON",
"SHELDON",
"SHELDON",
"LEONARD"
],
"show": "BBT",
"sarcasm": true
},
"1_410": {
"utterance": "Leonard, may I present, live from New Delhi, Dr. and Mrs. V. M. Koothrappali.",
"speaker": "RAJ",
"context": [
"Do you really need the Honorary Justice League of American membership card?",
"It's been in every wallet I've owned since I was five.",
"Why?",
"It says, \"Keep this on your person at all times.\"",
"It's right here under Batman's signature.",
"and this is Leonard and Sheldon's apartment.",
"Guess whose parents just got broadband."
],
"context_speakers": [
"LEONARD",
"SHELDON",
"LEONARD",
"SHELDON",
"SHELDON",
"RAJ",
"HOWARD"
],
"show": "BBT",
"sarcasm": false
},
"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_430": {
"utterance": "I've got some feelers out. In the meantime, listen to this.",
"speaker": "RAJ",
"context": [
"but it was between you and the Museum of Natural History, and frankly, you don't have dinosaurs.",
"I'll miss you, too. Bye-bye.",
"Okay, I know you're texting about me and I'd really like you to stop.",
"Oh, dear, I am rightly and truly screwed.",
"Hey, I thought you were finding new friends."
],
"context_speakers": [
"SHELDON",
"SHELDON",
"SHELDON",
"RAJ",
"LEONARD"
],
"show": "BBT",
"sarcasm": false
},
"1_467": {
"utterance": "That woman looks exactly like the pictures of Princess Panchali in the book. How often does one see a beloved fictional character come to life?",
"speaker": "SHELDON",
"context": [
"When I was a little boy and got sick, which was most of the time, my mother would read it to me.",
"It's about an Indian princess who befriends a monkey who was mocked by all the other monkeys because he was different.",
"For some reason, I related to it quite strongly.",
"I know the reason.",
"We all know the reason.",
"Sheldon, what are you getting at?"
],
"context_speakers": [
"SHELDON",
"SHELDON",
"SHELDON",
"PENNY",
"LEONARD",
"LEONARD"
],
"show": "BBT",
"sarcasm": false
},
"1_506": {
"utterance": "Not to mention you'd have to power down on saturdays.",
"speaker": "SHELDON",
"context": [
"I'm with you. I just have to make sure if I'm a synthetic human I'd still be Jewish.",
"I promised my mother.",
"I suppose you could have your android penis circumcised.",
"But that's something your rabbi would have to discuss with the manufacturer."
],
"context_speakers": [
"HOWARD",
"HOWARD",
"RAJ",
"RAJ"
],
"show": "BBT",
"sarcasm": false
},
"1_507": {
"utterance": "Well, there's always the possibility that a trash can spontaneously formed around the letter but Occam's rasor would suggest that someone threw it out.",
"speaker": "SHELDON",
"context": [
"I promised my mother.",
"I suppose you could have your android penis circumcised.",
"But that's something your rabbi would have to discuss with the manufacturer.",
"Not to mention you'd have to power down on saturdays.",
"Sheldon, why is this letter in the trash?"
],
"context_speakers": [
"HOWARD",
"RAJ",
"RAJ",
"SHELDON",
"LEONARD"
],
"show": "BBT",
"sarcasm": true
},
"1_533": {
"utterance": "Technically, yes. But, if you'll notice... It's reversible!",
"speaker": "LEONARD",
"context": [
"Because it's not a costume, it's a flight suit.",
"Ok, alright, moving on.",
"Oh, wow. A paisley shirt.",
"It goes with my corduroy suit.",
"If you mean it should end up in the same place, then I agree.",
"Is this your only tie?"
],
"context_speakers": [
"LEONARD",
"PENNY",
"PENNY",
"LEONARD",
"PENNY",
"PENNY"
],
"show": "BBT",
"sarcasm": false
},
"1_536": {
"utterance": "Just the latest copy of Applied Particle Physics quarterly.",
"speaker": "SHELDON",
"context": [
"Hey Sheldon.",
"Hello Penny.",
"Get anything good?"
],
"context_speakers": [
"PENNY",
"SHELDON",
"PENNY"
],
"show": "BBT",
"sarcasm": true
},
"1_537": {
"utterance": "Oh, you know, that is so weird that yours came and mine didn't.",
"speaker": "PENNY",
"context": [
"Hey Sheldon.",
"Hello Penny.",
"Get anything good?",
"Just the latest copy of Applied Particle Physics quarterly."
],
"context_speakers": [
"PENNY",
"SHELDON",
"PENNY",
"SHELDON"
],
"show": "BBT",
"sarcasm": true
},
"1_672": {
"utterance": "Do you think Penny will come here and take care of us?",
"speaker": "SHELDON",
"context": [
"I want grilled cheese."
],
"context_speakers": [
"SHELDON"
],
"show": "BBT",
"sarcasm": false
},
"1_971": {
"utterance": "- Now?! - No, after my tongue has swollen to the size of a brisket!",
"speaker": "HOWARD",
"context": [
"Take that!",
"What's the matter?",
"This granola bar has peanuts in it!",
"Oh, my God. Why did you eat it?",
"I don't know. It was just there!",
"If I had a gun there, would you have shot yourself?",
"Don't yell at me! I've got to go to the emergency room!"
],
"context_speakers": [
"LEONARD",
"LEONARD",
"HOWARD",
"LEONARD",
"HOWARD",
"LEONARD",
"HOWARD"
],
"show": "BBT",
"sarcasm": true
},
"1_1001": {
"utterance": "What else? Sell it on eBay as \"slightly used.\"",
"speaker": "RAJ",
"context": [
"Or maybe she just doesn't want to talk.",
"Look, I found an iPod!",
"It's smashed beyond repair. What are you gonna do with it?"
],
"context_speakers": [
"SHELDON",
"RAJ",
"HOWARD"
],
"show": "BBT",
"sarcasm": false
},
"1_1003": {
"utterance": "Good idea, sit with her. Hold her, comfort her. And if the moment feels right, see if you can cop a feel.",
"speaker": "HOWARD",
"context": [
"It's smashed beyond repair. What are you gonna do with it?",
"What else? Sell it on eBay as \"slightly used.\"",
"It was Penny's boyfriend's, they broke up.",
"Apparently, he posted intimate details of their physical relationship on his blog which I cannot find anywhere.",
"I'm gonna go back and try talking to her again."
],
"context_speakers": [
"HOWARD",
"RAJ",
"LEONARD",
"HOWARD",
"LEONARD"
],
"show": "BBT",
"sarcasm": true
},
"1_1144": {
"utterance": "Notify the editors of the Oxford English Dictionary. The word \"plenty\" has been redefined to mean \"two.\"",
"speaker": "SHELDON",
"context": [
"Are you saying that you've been holding back?",
"Of course. Out of respect.",
"So, how do you explain the ten years before Penny?",
"Who were you respecting then?",
"Well, I've dated plenty of women.",
"There was Joyce Kim, Leslie Winkle"
],
"context_speakers": [
"HOWARD",
"LEONARD",
"HOWARD",
"RAJ",
"LEONARD",
"LEONARD"
],
"show": "BBT",
"sarcasm": true
},
"1_1180": {
"utterance": "Oh, please. The only way she could make a contribution to science would be if they resumed sending chimps into space.",
"speaker": "SHELDON",
"context": [
"Pastries such as bear claws?",
"Yeah, sure.",
"I don't like bear claws.",
"Hey, Penny.",
"Dumbass.",
"Leslie Winkle.",
"Of all the overrated physicists in all the labs in all the world, why does it have to be Leslie Winkle?",
"They have a lot in common. I mean, they're both scientists."
],
"context_speakers": [
"SHELDON",
"PENNY",
"SHELDON",
"PERSON",
"PERSON",
"SHELDON",
"SHELDON",
"PENNY"
],
"show": "BBT",
"sarcasm": true
},
"1_1185": {
"utterance": "I think tonight was a very good start.",
"speaker": "LEONARD",
"context": [
"I'm sorry about all of Sheldon's interruptions.\nHe can be a bit of an eccentric.",
"If by \"eccentric\" you mean passive-aggressive East Texas blowhole, I agree."
],
"context_speakers": [
"LEONARD",
"PERSON"
],
"show": "BBT",
"sarcasm": false
},
"1_1189": {
"utterance": "I'm sorry, I am not going back to the Renaissance fair.",
"speaker": "SHELDON",
"context": [
"That's enough.",
"Call me.",
"Right.",
"Okay, good night.",
"What?",
"Had a great time. Ciao."
],
"context_speakers": [
"PERSON1",
"PERSON1",
"LEONARD",
"PENNY",
"PERSON2",
"PENNY"
],
"show": "BBT",
"sarcasm": false
},
"1_1262": {
"utterance": "You were very clear. As was everyone else at the table.",
"speaker": "SHELDON",
"context": [
"Leonard, this is Tom.",
"Hi, Tom. Sheldon?",
"Didn't I explain to you about your little mistake in the cafeteria?"
],
"context_speakers": [
"SHELDON",
"LEONARD",
"LEONARD"
],
"show": "BBT",
"sarcasm": false
},
"1_1296": {
"utterance": "They gave him an assistant? If I want a new pen, I have to go to the bank with wire cutters.",
"speaker": "HOWARD",
"context": [
"They're going to digitally add a supernova.\nThey say it's the perfect metaphor for my incandescent talent.",
"Right, a ball of hot, flaming gas that collapses upon itself.",
"Excuse me. Oh, it's my assistant, Trevor.",
"Go for Koothrappali."
],
"context_speakers": [
"RAJ",
"SHELDON",
"RAJ",
"RAJ"
],
"show": "BBT",
"sarcasm": true
},
"1_1466": {
"utterance": "Maybe when I publish it, I'll include an inhaler.",
"speaker": "SHELDON",
"context": [
"Excuse me, Dr. Cooper. I'm Kathy O'Brien.",
"I just finished reading your paper reconciling the black hole information paradox with your theory of string-network condensates, and it just took my breath away."
],
"context_speakers": [
"PERSON",
"PERSON"
],
"show": "BBT",
"sarcasm": true
},
"1_1470": {
"utterance": "I don't know. It just died. I'm getting a bunch of static.",
"speaker": "PENNY",
"context": [
"Hey, guys, I need to use your TV.",
"What's wrong with your TV?"
],
"context_speakers": [
"PENNY",
"SHELDON"
],
"show": "BBT",
"sarcasm": false
},
"1_1478": {
"utterance": "Sadly, Mrs. Giselle Wolowitz is sensitive to chlorine. Lucky for her I like my fashion models pruny and bug-eyed.",
"speaker": "HOWARD",
"context": [
"Did I miss anything? Did they kick Giselle off?",
"Not yet, but her underwater photo shoot was an embarrassment."
],
"context_speakers": [
"LEONARD",
"RAJ"
],
"show": "BBT",
"sarcasm": true
},
"1_1484": {
"utterance": "The big deal is that nobody touches food on my plate.",
"speaker": "SHELDON",
"context": [
"Who touched my\u2026",
"Penny! Penny did it.",
"Why would you do that?",
"I don't know. I was hungry?\nWhat's the big deal?"
],
"context_speakers": [
"SHELDON",
"HOWARD",
"SHELDON",
"PENNY"
],
"show": "BBT",
"sarcasm": false
},
"1_1549": {
"utterance": "On a dusty highway just outside Bakersfield. Where do you think? On Mars!",
"speaker": "HOWARD",
"context": [
"Will you at least stipulate that Star Trek IV: The Voyage Home is inarguably the best?",
"I have three words for you: Wrath of Khan.",
"Thank God, you're here.",
"What's the emergency?",
"I got the Mars Rover stuck in a ditch.",
"Where?"
],
"context_speakers": [
"SHELDON",
"RAJ",
"HOWARD",
"LEONARD",
"HOWARD",
"SHELDON"
],
"show": "BBT",
"sarcasm": true
},
"1_1560": {
"utterance": "How nice. Maybe they can carpool when they visit you in federal prison.",
"speaker": "SHELDON",
"context": [
"So my friend Leonard is gonna take you home.",
"Okay. Let's go, friend Leonard.",
"I'll call ya.",
"So are you a scientist like Howard?",
"No one's a scientist like Howard.",
"My mother is so gonna love her."
],
"context_speakers": [
"HOWARD",
"PERSON",
"HOWARD",
"PERSON",
"LEONARD",
"HOWARD"
],
"show": "BBT",
"sarcasm": true
},
"1_1627": {
"utterance": "What do you think I did? I discreetly slipped off the other earring, put it in my pocket and then got the hell out of there!",
"speaker": "PERSON",
"context": [
"So, we're all standing around looking at the post-op X ray and there it is, clear as day, right in the guy's chest cavity...one of my earrings.",
"Oh, my God, what did you do?"
],
"context_speakers": [
"PERSON",
"LEONARD"
],
"show": "BBT",
"sarcasm": false
},
"1_1638": {
"utterance": "The blunt instrument that will be the focus of my murder trial?",
"speaker": "LEONARD",
"context": [
"What, Sheldon? What, Sheldon?! What, Sheldon?!",
"Tell me what you see here."
],
"context_speakers": [
"LEONARD",
"SHELDON"
],
"show": "BBT",
"sarcasm": true
},
"1_1666": {
"utterance": "Would it work if I just punched you in the face?",
"speaker": "LEONARD",
"context": [
"it will establish you as the \"alpha\" male.",
"You see... when a female witnesses an exhibition of physical domination, she produces the hormone oxytocin.",
"If the two of you then engage in intercourse, this will create the biochemical reaction in the brain which lay people naively interpret as \"falling in love.\"",
"Huh"
],
"context_speakers": [
"SHELDON",
"SHELDON",
"SHELDON",
"LEONARD"
],
"show": "BBT",
"sarcasm": false
},
"1_1678": {
"utterance": "Answering the question once and for all why Wolowitz bailed out of medical school.",
"speaker": "RAJ",
"context": [
"Can you open this for me?",
"Can I see your stitches?",
"Sure."
],
"context_speakers": [
"LEONARD",
"RAJ",
"LEONARD"
],
"show": "BBT",
"sarcasm": false
},
"1_1722": {
"utterance": "My aunt Marion gave them to me for my 12th birthday.",
"speaker": "SHELDON",
"context": [
"What are you doing here?",
"Hang on. 130 over 80. It's a little high.",
"We can attribute that to the stress of sneaking past the security desk.",
"Where did you get the stethoscope and the blood pressure cuff?"
],
"context_speakers": [
"PERSON",
"SHELDON",
"SHELDON",
"PERSON"
],
"show": "BBT",
"sarcasm": false
},
"1_1732": {
"utterance": "You were right. Your larynx is terribly inflamed. I've never seen anything like it.",
"speaker": "PERSON",
"context": [
"Oh no",
"What?"
],
"context_speakers": [
"PERSON",
"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
},
"1_1798": {
"utterance": "If you don't like this stuff, let's go next door and build her a bear.",
"speaker": "RAJ",
"context": [
"You're kidding. You've got lotions and bath oils and soaps. That's the estrogen hat trick.",
"What it is is a cacophonous assault of eucalyptus, bayberry, cinnamon and vanilla.",
"It's as if my head were trapped in the pajamas of a sultan."
],
"context_speakers": [
"HOWARD",
"SHELDON",
"SHELDON"
],
"show": "BBT",
"sarcasm": true
},
"1_1803": {
"utterance": "- Maybe I heard you wrong. A lot of words sound like \"yoga.\"",
"speaker": "LEONARD",
"context": [
"Leonard. Come, join us.",
"Hey, Dave.\nAnd Penny, what a surprise.",
"Dave was just showing me around the university. This place is unbelievable!",
"I know, I've been offering to show you around for a year and a half. You always said you had yoga."
],
"context_speakers": [
"PERSON",
"LEONARD",
"PENNY",
"LEONARD"
],
"show": "BBT",
"sarcasm": true
},
"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_1973": {
"utterance": "I hope I'm a waitress at the Cheesecake Factory for my whole life.",
"speaker": "PENNY",
"context": [
"Ask me why.",
"Do I have to?",
"Of course. That's how you move a conversation forward.",
"Why?",
"The learning opportunities would be abundant.",
"Additionally, I like having my belly scratched."
],
"context_speakers": [
"SHELDON",
"LEONARD",
"SHELDON",
"LEONARD",
"SHELDON",
"SHELDON"
],
"show": "BBT",
"sarcasm": true
},
"1_1987": {
"utterance": "When I didn't pay my bill, the Department of Water and Power thought I would enjoy the ambience.",
"speaker": "PENNY",
"context": [
"Hey.",
"Hey.",
"A little mood lighting, huh?"
],
"context_speakers": [
"LEONARD",
"PENNY",
"LEONARD"
],
"show": "BBT",
"sarcasm": true
},
"1_2075": {
"utterance": "There's no hurry. Tell them more about their secret love for each other.",
"speaker": "LEONARD",
"context": [
"Say what?",
"That's basically what I just said.",
"You brought your husband to work. You know the rules.",
"Mesa thinking yousa looking pretty sad now too, betcha, betcha.",
"Leonard, it's 1:00. Weren't you going to show me your laboratory at 1:00?"
],
"context_speakers": [
"HOWARD",
"HOWARD",
"LEONARD",
"LEONARD",
"PERSON"
],
"show": "BBT",
"sarcasm": false
},
"1_2119": {
"utterance": "Kind of makes you feel more alive, doesn't it?",
"speaker": "PERSON",
"context": [
"but wait to be captured or killed.",
"That's the worst part, the waiting.",
"All the while knowing that there's a paint pellet out there with your name on it.",
"The big wet ball of death."
],
"context_speakers": [
"HOWARD",
"PERSON",
"HOWARD",
"PERSON"
],
"show": "BBT",
"sarcasm": true
},
"1_2198": {
"utterance": "Assuming I can keep up this pace, three hours, 11 minutes. Plus however long it takes to conclude this fairly pointless conversation.",
"speaker": "SHELDON",
"context": [
"See, by attaching RFID tags to my clothing, it will enable my laptop to read and identify the items with this wand.",
"I will then cross-reference them against destination, anticipated activity spectrum, weather conditions, duration of trip, et cetera.",
"That does sound much simpler.",
"How long is this going to take?"
],
"context_speakers": [
"SHELDON",
"SHELDON",
"LEONARD",
"LEONARD"
],
"show": "BBT",
"sarcasm": true
},
"1_2216": {
"utterance": "Excuse me, but what about me? Why don't I get a shot?",
"speaker": "LEONARD",
"context": [
"Unlike you, I can actually talk to women when I'm sober.",
"You fail to take into account that even mute, I am foreign and exotic, while you, on the other hand, are frail and pasty.",
"You know the old saying, \"Pasty and frail never fail.\""
],
"context_speakers": [
"HOWARD",
"RAJ",
"HOWARD"
],
"show": "BBT",
"sarcasm": false
},
"1_2354": {
"utterance": "So? Do cocaine smugglers write \"cocaine\" on the box?",
"speaker": "SHELDON",
"context": [
"They're here.",
"Stay calm. We don't know anything about them yet.",
"What are you doing?",
"I'm checking for musical instruments.",
"Does that sound like castanets to you?",
"The box says \"kitchen.\""
],
"context_speakers": [
"SHELDON",
"LEONARD",
"LEONARD",
"SHELDON",
"SHELDON",
"LEONARD"
],
"show": "BBT",
"sarcasm": true
},
"1_2361": {
"utterance": "Thank you so much for giving me the opportunity to help.",
"speaker": "LEONARD",
"context": [
"Thanks so much for helping me."