-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtemplates.yaml
1513 lines (1400 loc) · 63.6 KB
/
templates.yaml
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
dataset: story_cloze
subset: '2016'
templates:
1a4946f9-a0e2-4fbb-aee8-b26ead2cf6b8: !Template
answer_choices: '{{sentence_quiz1}} ||| {{sentence_quiz2}}'
id: 1a4946f9-a0e2-4fbb-aee8-b26ead2cf6b8
jinja: '{{input_sentence_1}} {{input_sentence_2}} {{input_sentence_3}} {{input_sentence_4}}
What is a possible continuation for the story given the following options ?
- {{answer_choices | join("\n- ")}} ||| {{answer_choices[answer_right_ending
-1]}}'
metadata: !TemplateMetadata
choices_in_prompt: true
languages:
- en
metrics:
- Accuracy
original_task: true
name: Answer Given options
reference: ''
1a9d53bc-eb77-4e7c-af6e-3d15b79d6cf1: !Template
answer_choices: '{{sentence_quiz1}} ||| {{sentence_quiz2}}'
id: 1a9d53bc-eb77-4e7c-af6e-3d15b79d6cf1
jinja: "Read the following story :\n\n{{input_sentence_1}}\n{{input_sentence_2}}\n\
{{input_sentence_3}}\n{{input_sentence_4}}\n\nChoose a possible ending for the\
\ previous story from the following options: \n- {{answer_choices | join(\"\\\
n- \")}}\n|||\n\n{{answer_choices[answer_right_ending -1]}}"
metadata: !TemplateMetadata
choices_in_prompt: true
languages:
- en
metrics:
- Accuracy
original_task: true
name: Choose Story Ending
reference: ''
9dab69d1-cad0-4d2f-a7cc-120df233571c: !Template
answer_choices: '{{sentence_quiz1}} ||| {{sentence_quiz2}}'
id: 9dab69d1-cad0-4d2f-a7cc-120df233571c
jinja: 'Yesterday, I watched a movie. Here''s what happened: {{input_sentence_1}}
{{input_sentence_2}} {{input_sentence_3}} {{input_sentence_4}} What happens
next? - {{answer_choices | join("\n- ")}} ||| {{answer_choices[answer_right_ending
-1]}}'
metadata: !TemplateMetadata
choices_in_prompt: true
languages:
- en
metrics:
- Accuracy
original_task: true
name: Movie What Happens Next
reference: ''
b5c8445f-2d3a-4691-bdd5-58956816702f: !Template
answer_choices: '{{sentence_quiz1}} ||| {{sentence_quiz2}}'
id: b5c8445f-2d3a-4691-bdd5-58956816702f
jinja: "What is a possible continuation for the following story ? \n\n{{input_sentence_1}}\n\
{{input_sentence_2}}\n{{input_sentence_3}}\n{{input_sentence_4}}\n\nChoose from\
\ the following options:\n- {{answer_choices | join(\"\\n- \")}}\n|||\n\n{{answer_choices[answer_right_ending\
\ -1]}}"
metadata: !TemplateMetadata
choices_in_prompt: true
languages:
- en
metrics:
- Accuracy
original_task: true
name: Story Continuation and Options
reference: ''
baffa716-43cf-4954-a35c-655d775321e6: !Template
answer_choices: '{{sentence_quiz1}} ||| {{sentence_quiz2}}'
id: baffa716-43cf-4954-a35c-655d775321e6
jinja: 'Generate a possible ending for the following story: {{input_sentence_1}}
{{input_sentence_2}} {{input_sentence_3}} {{input_sentence_4}} ||| {{answer_choices[answer_right_ending
-1]}}'
metadata: !TemplateMetadata
choices_in_prompt: false
languages:
- en
metrics:
- BLEU
- ROUGE
original_task: false
name: Generate Ending
reference: ''
c6f3d802-4f97-449f-a911-03470d418f7d: !Template
answer_choices: '{{sentence_quiz1}} ||| {{sentence_quiz2}}'
id: c6f3d802-4f97-449f-a911-03470d418f7d
jinja: 'I read the following novel: {{input_sentence_1}} {{input_sentence_2}}
{{input_sentence_3}} {{input_sentence_4}} What do you think is the most probable
ending? You can choose from the following options: - {{answer_choices | join("\n-
")}} ||| {{answer_choices[answer_right_ending -1]}}'
metadata: !TemplateMetadata
choices_in_prompt: true
languages:
- en
metrics:
- Accuracy
original_task: true
name: Novel Correct Ending
reference: ''
4d2076aa-61fa-4d35-bf0d-33618ef2d906: !Template
answer_choices: '{{sentence_quiz1}} ||| {{sentence_quiz2}}'
id: 4d2076aa-61fa-4d35-bf0d-33618ef2d906
jinja: '{{input_sentence_1}} {{input_sentence_2}} {{input_sentence_3}} {{input_sentence_4}}
||| {{ answer_choices[answer_right_ending | int() -1] }}'
metadata: !TemplateMetadata
choices_in_prompt: false
metrics: ["Accuracy"]
original_task: true
name: fewshot
reference: jonghyeonkim
64ff9ae1-2c87-425f-b1da-c0b3c0576594: !Template
answer_choices: '{{sentence_quiz1}} ||| {{sentence_quiz2}}'
id: 64ff9ae1-2c87-425f-b1da-c0b3c0576594
jinja: Continue the story that begins with '{{input_sentence_1}} {{input_sentence_2}}
{{input_sentence_3}} {{input_sentence_4}}'. ||| {{ answer_choices[answer_right_ending
| int() -1] }}
metadata: !TemplateMetadata
choices_in_prompt: false
metrics: ["Accuracy"]
original_task: true
name: prompt_00
reference: jonghyeonkim
cba47090-3649-4332-a939-dcda02a752b5: !Template
answer_choices: '{{sentence_quiz1}} ||| {{sentence_quiz2}}'
id: cba47090-3649-4332-a939-dcda02a752b5
jinja: Write a possible climax for the story '{{input_sentence_1}} {{input_sentence_2}}
{{input_sentence_3}} {{input_sentence_4}}'. ||| {{ answer_choices[answer_right_ending
| int() -1] }}
metadata: !TemplateMetadata
choices_in_prompt: false
metrics: ["Accuracy"]
original_task: true
name: prompt_01
reference: jonghyeonkim
1157b6f4-a5c3-4c33-b3fa-7aab27701136: !Template
answer_choices: '{{sentence_quiz1}} ||| {{sentence_quiz2}}'
id: 1157b6f4-a5c3-4c33-b3fa-7aab27701136
jinja: "{{input_sentence_1}} {{input_sentence_2}} {{input_sentence_3}} {{input_sentence_4}}\n\
Write an alternate ending to the story.\n ||| {{ answer_choices[answer_right_ending\
\ | int() -1] }}"
metadata: !TemplateMetadata
choices_in_prompt: false
metrics: ["Accuracy"]
original_task: true
name: prompt_02
reference: jonghyeonkim
3c214d43-1304-4bc6-b512-9f5334e66eec: !Template
answer_choices: '{{sentence_quiz1}} ||| {{sentence_quiz2}}'
id: 3c214d43-1304-4bc6-b512-9f5334e66eec
jinja: "{{input_sentence_1}} {{input_sentence_2}} {{input_sentence_3}} {{input_sentence_4}}\n\
What is a possible ending to this story?\n ||| {{ answer_choices[answer_right_ending\
\ | int() -1] }}"
metadata: !TemplateMetadata
choices_in_prompt: false
metrics: ["Accuracy"]
original_task: true
name: prompt_03
reference: jonghyeonkim
9c3eb6c6-94f6-49af-9db8-5243657ca337: !Template
answer_choices: '{{sentence_quiz1}} ||| {{sentence_quiz2}}'
id: 9c3eb6c6-94f6-49af-9db8-5243657ca337
jinja: "Provide a plausible ending for this story:\n{{input_sentence_1}} {{input_sentence_2}}\
\ {{input_sentence_3}} {{input_sentence_4}}\n ||| {{ answer_choices[answer_right_ending\
\ | int() -1] }}"
metadata: !TemplateMetadata
choices_in_prompt: false
metrics: ["Accuracy"]
original_task: true
name: prompt_04
reference: jonghyeonkim
4c46316a-f151-43bc-9d54-4e0b7680a3f4: !Template
answer_choices: '{{sentence_quiz1}} ||| {{sentence_quiz2}}'
id: 4c46316a-f151-43bc-9d54-4e0b7680a3f4
jinja: "Provide a logical conclusion to this story:\n{{input_sentence_1}} {{input_sentence_2}}\
\ {{input_sentence_3}} {{input_sentence_4}}\n ||| {{ answer_choices[answer_right_ending\
\ | int() -1] }}"
metadata: !TemplateMetadata
choices_in_prompt: false
metrics: ["Accuracy"]
original_task: true
name: prompt_05
reference: jonghyeonkim
d6085118-e707-4dab-849c-bd853552f9f6: !Template
answer_choices: '{{sentence_quiz1}} ||| {{sentence_quiz2}}'
id: d6085118-e707-4dab-849c-bd853552f9f6
jinja: '{{input_sentence_1}} {{input_sentence_2}} {{input_sentence_3}} {{input_sentence_4}}
What do you think happens next in this story? ||| {{ answer_choices[answer_right_ending
| int() -1] }}'
metadata: !TemplateMetadata
choices_in_prompt: false
metrics: ["Accuracy"]
original_task: true
name: prompt_06
reference: jonghyeonkim
a1b5e22a-6c3e-4eae-b7fd-486c8bdef935: !Template
answer_choices: '{{sentence_quiz1}} ||| {{sentence_quiz2}}'
id: a1b5e22a-6c3e-4eae-b7fd-486c8bdef935
jinja: '{{input_sentence_1}} {{input_sentence_2}} {{input_sentence_3}} {{input_sentence_4}}
Please write a possible ending for the story. ||| {{ answer_choices[answer_right_ending
| int() -1] }}'
metadata: !TemplateMetadata
choices_in_prompt: false
metrics: ["Accuracy"]
original_task: true
name: prompt_07
reference: jonghyeonkim
b29f07dc-c293-4caf-bae6-aa6d04afa19c: !Template
answer_choices: '{{sentence_quiz1}} ||| {{sentence_quiz2}}'
id: b29f07dc-c293-4caf-bae6-aa6d04afa19c
jinja: '{{input_sentence_1}} {{input_sentence_2}} {{input_sentence_3}} {{input_sentence_4}}
What could be a potential ending for this story? ||| {{ answer_choices[answer_right_ending
| int() -1] }}'
metadata: !TemplateMetadata
choices_in_prompt: false
metrics: ["Accuracy"]
original_task: true
name: prompt_08
reference: jonghyeonkim
0bce48dd-05be-49b3-81ad-adb5c4813829: !Template
answer_choices: '{{sentence_quiz1}} ||| {{sentence_quiz2}}'
id: 0bce48dd-05be-49b3-81ad-adb5c4813829
jinja: "Imagine a possible ending for the following story: {{input_sentence_1}}\
\ {{input_sentence_2}} {{input_sentence_3}} {{input_sentence_4}}\n ||| {{ answer_choices[answer_right_ending\
\ | int() -1] }}"
metadata: !TemplateMetadata
choices_in_prompt: false
metrics: ["Accuracy"]
original_task: true
name: prompt_09
reference: jonghyeonkim
1376b611-37d1-4b07-893e-f33c2bd8d705: !Template
answer_choices: '{{sentence_quiz1}} ||| {{sentence_quiz2}}'
id: 1376b611-37d1-4b07-893e-f33c2bd8d705
jinja: "Provide a plausible ending to the following story: {{input_sentence_1}}\
\ {{input_sentence_2}} {{input_sentence_3}} {{input_sentence_4}}\n ||| {{ answer_choices[answer_right_ending\
\ | int() -1] }}"
metadata: !TemplateMetadata
choices_in_prompt: false
metrics: ["Accuracy"]
original_task: true
name: prompt_10
reference: jonghyeonkim
23c2b703-be7b-4b6b-bfe5-60e0f021424d: !Template
answer_choices: '{{sentence_quiz1}} ||| {{sentence_quiz2}}'
id: 23c2b703-be7b-4b6b-bfe5-60e0f021424d
jinja: "Write a reasonable ending for the following story: {{input_sentence_1}}\
\ {{input_sentence_2}} {{input_sentence_3}} {{input_sentence_4}}\n ||| {{ answer_choices[answer_right_ending\
\ | int() -1] }}"
metadata: !TemplateMetadata
choices_in_prompt: false
metrics: ["Accuracy"]
original_task: true
name: prompt_11
reference: jonghyeonkim
fd87361f-5382-478f-8041-16d61b43eed0: !Template
answer_choices: '{{sentence_quiz1}} ||| {{sentence_quiz2}}'
id: fd87361f-5382-478f-8041-16d61b43eed0
jinja: "Complete the following story with a possible ending: {{input_sentence_1}}\
\ {{input_sentence_2}} {{input_sentence_3}} {{input_sentence_4}}\n ||| {{ answer_choices[answer_right_ending\
\ | int() -1] }}"
metadata: !TemplateMetadata
choices_in_prompt: false
metrics: ["Accuracy"]
original_task: true
name: prompt_12
reference: jonghyeonkim
0a80b181-83d4-4c24-8766-a650e5f3994a: !Template
answer_choices: '{{sentence_quiz1}} ||| {{sentence_quiz2}}'
id: 0a80b181-83d4-4c24-8766-a650e5f3994a
jinja: 'Write a possible ending to this story: "{{input_sentence_1}}", "{{input_sentence_2}}",
"{{input_sentence_3}}", and "{{input_sentence_4}}". ||| {{ answer_choices[answer_right_ending
| int() -1] }}'
metadata: !TemplateMetadata
choices_in_prompt: false
metrics: ["Accuracy"]
original_task: true
name: prompt_13
reference: jonghyeonkim
b4770703-b6ed-4f6a-8552-f94a8298ebc3: !Template
answer_choices: '{{sentence_quiz1}} ||| {{sentence_quiz2}}'
id: b4770703-b6ed-4f6a-8552-f94a8298ebc3
jinja: 'Write a story that starts with the following sentences: {{input_sentence_1}}
{{input_sentence_2}} {{input_sentence_3}} {{input_sentence_4}} ||| {{ answer_choices[answer_right_ending
| int() -1] }}'
metadata: !TemplateMetadata
choices_in_prompt: false
metrics: ["Accuracy"]
original_task: true
name: prompt_14
reference: jonghyeonkim
fc160edb-1d38-4095-8fea-1a924e9f4908: !Template
answer_choices: '{{sentence_quiz1}} ||| {{sentence_quiz2}}'
id: fc160edb-1d38-4095-8fea-1a924e9f4908
jinja: 'Finish the story with the following sentence: {{input_sentence_4}} Here
are two possible endings:
- {{sentence_quiz1}}
- {{sentence_quiz2}} ||| {{ answer_choices[answer_right_ending | int() -1] }}'
metadata: !TemplateMetadata
choices_in_prompt: true
metrics: ["Accuracy"]
original_task: true
name: prompt_15
reference: jonghyeonkim
d6f47396-f2dc-4fcc-9df6-81224218cc67: !Template
answer_choices: '{{sentence_quiz1}} ||| {{sentence_quiz2}}'
id: d6f47396-f2dc-4fcc-9df6-81224218cc67
jinja: Imagine you are {{input_sentence_1}} in the story '{{input_sentence_2}} {{input_sentence_3}}
{{input_sentence_4}}'. What would you do next? ||| {{ answer_choices[answer_right_ending
| int() -1] }}
metadata: !TemplateMetadata
choices_in_prompt: false
metrics: ["Accuracy"]
original_task: true
name: prompt_16
reference: jonghyeonkim
bee0239a-2a51-4d96-a4f9-7071e35735cd: !Template
answer_choices: '{{sentence_quiz1}} ||| {{sentence_quiz2}}'
id: bee0239a-2a51-4d96-a4f9-7071e35735cd
jinja: Write an alternate ending for the story that starts with '{{input_sentence_1}}
{{input_sentence_2}} {{input_sentence_3}} {{input_sentence_4}}'. ||| {{ answer_choices[answer_right_ending
| int() -1] }}
metadata: !TemplateMetadata
choices_in_prompt: false
metrics: ["Accuracy"]
original_task: true
name: prompt_17
reference: jonghyeonkim
fbe411bd-4d8f-4c49-9c34-5d19b1d0b7a1: !Template
answer_choices: '{{sentence_quiz1}} ||| {{sentence_quiz2}}'
id: fbe411bd-4d8f-4c49-9c34-5d19b1d0b7a1
jinja: "Please generate a possible ending for the following story: {{input_sentence_1}}\
\ {{input_sentence_2}} {{input_sentence_3}} {{input_sentence_4}}\n ||| {{ answer_choices[answer_right_ending\
\ | int() -1] }}"
metadata: !TemplateMetadata
choices_in_prompt: false
metrics: ["Accuracy"]
original_task: true
name: prompt_18
reference: jonghyeonkim
2bc1704d-7e7e-4b26-8de6-eddcdec78891: !Template
answer_choices: '{{sentence_quiz1}} ||| {{sentence_quiz2}}'
id: 2bc1704d-7e7e-4b26-8de6-eddcdec78891
jinja: "Provide an ending for the story that makes the most sense:\n{{input_sentence_1}}\
\ {{input_sentence_2}} {{input_sentence_3}} {{input_sentence_4}}\n ||| {{ answer_choices[answer_right_ending\
\ | int() -1] }}"
metadata: !TemplateMetadata
choices_in_prompt: false
metrics: ["Accuracy"]
original_task: true
name: prompt_19
reference: jonghyeonkim
c71f5ae4-c283-4cb9-b3ab-a22bfaef65ab: !Template
answer_choices: '{{sentence_quiz1}} ||| {{sentence_quiz2}}'
id: c71f5ae4-c283-4cb9-b3ab-a22bfaef65ab
jinja: "What would be a logical conclusion to the following story: {{input_sentence_1}}\
\ {{input_sentence_2}} {{input_sentence_3}} {{input_sentence_4}}\n ||| {{ answer_choices[answer_right_ending\
\ | int() -1] }}"
metadata: !TemplateMetadata
choices_in_prompt: false
metrics: ["Accuracy"]
original_task: true
name: prompt_20
reference: jonghyeonkim
87bc3c33-48b8-4db6-8c3a-c42c40015872: !Template
answer_choices: '{{sentence_quiz1}} ||| {{sentence_quiz2}}'
id: 87bc3c33-48b8-4db6-8c3a-c42c40015872
jinja: Write a possible continuation of the story starting with '{{input_sentence_1}}
{{input_sentence_2}} {{input_sentence_3}} {{input_sentence_4}}'. ||| {{ answer_choices[answer_right_ending
| int() -1] }}
metadata: !TemplateMetadata
choices_in_prompt: false
metrics: ["Accuracy"]
original_task: true
name: prompt_21
reference: jonghyeonkim
ebc74b04-f153-4009-b038-839d22df9f3e: !Template
answer_choices: '{{sentence_quiz1}} ||| {{sentence_quiz2}}'
id: ebc74b04-f153-4009-b038-839d22df9f3e
jinja: "Based on this passage, what do you think will happen next?\n\n{{input_sentence_1}}\
\ {{input_sentence_2}} {{input_sentence_3}} {{input_sentence_4}}\n ||| {{ answer_choices[answer_right_ending\
\ | int() -1] }}"
metadata: !TemplateMetadata
choices_in_prompt: false
metrics: ["Accuracy"]
original_task: true
name: prompt_22
reference: jonghyeonkim
230095ca-9bd9-41cd-9720-49a594413e8e: !Template
answer_choices: A) {{sentence_quiz1}} ||| B) {{sentence_quiz2}}
id: 230095ca-9bd9-41cd-9720-49a594413e8e
jinja: '{{input_sentence_1}} {{input_sentence_2}} {{input_sentence_3}} {{input_sentence_4}}
What happens next?
A) {{sentence_quiz1}}
B) {{sentence_quiz2}} ||| {{ answer_choices[answer_right_ending | int() -1] }}'
metadata: !TemplateMetadata
choices_in_prompt: true
metrics: ["Accuracy"]
original_task: true
name: prompt_23
reference: jonghyeonkim
4e515aa7-07c0-4c2a-a3a2-5fe940a63e35: !Template
answer_choices: '{{sentence_quiz1}} ||| {{sentence_quiz2}}'
id: 4e515aa7-07c0-4c2a-a3a2-5fe940a63e35
jinja: "Please provide a possible continuation for the following story: {{input_sentence_1}}\
\ {{input_sentence_2}} {{input_sentence_3}} {{input_sentence_4}}\n ||| {{ answer_choices[answer_right_ending\
\ | int() -1] }}"
metadata: !TemplateMetadata
choices_in_prompt: false
metrics: ["Accuracy"]
original_task: true
name: prompt_24
reference: jonghyeonkim
35c6731a-90a2-4d03-896d-e485d29022a3: !Template
answer_choices: '{{sentence_quiz1}} ||| {{sentence_quiz2}}'
id: 35c6731a-90a2-4d03-896d-e485d29022a3
jinja: "Based on the given information, what do you think happened next? {{input_sentence_1}}\
\ {{input_sentence_2}} {{input_sentence_3}} {{input_sentence_4}}\n ||| {{ answer_choices[answer_right_ending\
\ | int() -1] }}"
metadata: !TemplateMetadata
choices_in_prompt: false
metrics: ["Accuracy"]
original_task: true
name: prompt_25
reference: jonghyeonkim
51b52eea-ee33-4998-984c-3f1110309767: !Template
answer_choices: '{{sentence_quiz1}} ||| {{sentence_quiz2}}'
id: 51b52eea-ee33-4998-984c-3f1110309767
jinja: "Can you complete the following story? {{input_sentence_1}} {{input_sentence_2}}\
\ {{input_sentence_3}} {{input_sentence_4}} Please provide a possible ending:\n\
\ ||| {{ answer_choices[answer_right_ending | int() -1] }}"
metadata: !TemplateMetadata
choices_in_prompt: false
metrics: ["Accuracy"]
original_task: true
name: prompt_26
reference: jonghyeonkim
4dee67d8-d7f3-4100-b838-0c4bfc3bd3f7: !Template
answer_choices: '{{sentence_quiz1}} ||| {{sentence_quiz2}}'
id: 4dee67d8-d7f3-4100-b838-0c4bfc3bd3f7
jinja: '{{input_sentence_1}} {{input_sentence_2}} {{input_sentence_3}} {{input_sentence_4}}
Please select a possible ending:
- {{sentence_quiz1}}
- {{sentence_quiz2}} ||| {{ answer_choices[answer_right_ending | int() -1] }}'
metadata: !TemplateMetadata
choices_in_prompt: true
metrics: ["Accuracy"]
original_task: true
name: prompt_27
reference: jonghyeonkim
051f4c86-9c3d-416a-a164-44fad0412d15: !Template
answer_choices: '{{sentence_quiz1}} ||| {{sentence_quiz2}}'
id: 051f4c86-9c3d-416a-a164-44fad0412d15
jinja: "After reading this excerpt, what could be a possible ending to the story?\n\
\n{{input_sentence_1}} {{input_sentence_2}} {{input_sentence_3}} {{input_sentence_4}}\n\
\ ||| {{ answer_choices[answer_right_ending | int() -1] }}"
metadata: !TemplateMetadata
choices_in_prompt: false
metrics: ["Accuracy"]
original_task: true
name: prompt_28
reference: jonghyeonkim
e06c5bb2-8ee0-41af-9ec0-0ebf093c9202: !Template
answer_choices: '{{sentence_quiz1}} ||| {{sentence_quiz2}}'
id: e06c5bb2-8ee0-41af-9ec0-0ebf093c9202
jinja: "Here is a story:\n{{input_sentence_1}} {{input_sentence_2}} {{input_sentence_3}}\
\ {{input_sentence_4}}\nWhat happens next?\n- {{sentence_quiz1}}\n- {{sentence_quiz2}}\n\
\ ||| {{ answer_choices[answer_right_ending | int() -1] }}"
metadata: !TemplateMetadata
choices_in_prompt: true
metrics: ["Accuracy"]
original_task: true
name: prompt_29
reference: jonghyeonkim
06c54c77-c445-4970-9c33-7a6e7903d1d3: !Template
answer_choices: '{{sentence_quiz1}} ||| {{sentence_quiz2}}'
id: 06c54c77-c445-4970-9c33-7a6e7903d1d3
jinja: Imagine that you are a character in the story '{{input_sentence_1}} {{input_sentence_2}}
{{input_sentence_3}} {{input_sentence_4}}'. What would you say or do next? |||
{{ answer_choices[answer_right_ending | int() -1] }}
metadata: !TemplateMetadata
choices_in_prompt: false
metrics: ["Accuracy"]
original_task: true
name: prompt_30
reference: jonghyeonkim
1cfd6866-dc69-443a-925a-8bcff985a9a6: !Template
answer_choices: A. {{sentence_quiz1}} ||| B. {{sentence_quiz2}}
id: 1cfd6866-dc69-443a-925a-8bcff985a9a6
jinja: "{{input_sentence_1}} {{input_sentence_2}} {{input_sentence_3}} {{input_sentence_4}}\n\
Choose the best ending for this story:\nA. {{sentence_quiz1}}\nB. {{sentence_quiz2}}\n\
\ ||| {{ answer_choices[answer_right_ending | int() -1] }}"
metadata: !TemplateMetadata
choices_in_prompt: true
metrics: ["Accuracy"]
original_task: true
name: prompt_31
reference: jonghyeonkim
a4774d99-d8f6-44d0-9761-3cf9ecd66c71: !Template
answer_choices: '{{sentence_quiz1}} ||| {{sentence_quiz2}}'
id: a4774d99-d8f6-44d0-9761-3cf9ecd66c71
jinja: "Here are the opening sentences of a story: {{input_sentence_1}} {{input_sentence_2}}\
\ {{input_sentence_3}} {{input_sentence_4}}. What do you think is the most likely\
\ ending?\n ||| {{ answer_choices[answer_right_ending | int() -1] }}"
metadata: !TemplateMetadata
choices_in_prompt: false
metrics: ["Accuracy"]
original_task: true
name: prompt_32
reference: jonghyeonkim
336caae5-9f6a-43d4-9c63-02c257707061: !Template
answer_choices: '{{sentence_quiz1}} ||| {{sentence_quiz2}}'
id: 336caae5-9f6a-43d4-9c63-02c257707061
jinja: '{{input_sentence_1}} {{input_sentence_2}} {{input_sentence_3}} {{input_sentence_4}}
What could be a plausible ending to this story?
- {{sentence_quiz1}}
- {{sentence_quiz2}} ||| {{ answer_choices[answer_right_ending | int() -1] }}'
metadata: !TemplateMetadata
choices_in_prompt: true
metrics: ["Accuracy"]
original_task: true
name: prompt_33
reference: jonghyeonkim
56780dc6-0b43-4c16-bdbf-305e32cf9a9d: !Template
answer_choices: A) {{sentence_quiz1}} ||| B) {{sentence_quiz2}}
id: 56780dc6-0b43-4c16-bdbf-305e32cf9a9d
jinja: 'Consider the story: {{input_sentence_1}} {{input_sentence_2}} {{input_sentence_3}}
{{input_sentence_4}}
What is a possible ending?
A) {{sentence_quiz1}}
B) {{sentence_quiz2}} ||| {{ answer_choices[answer_right_ending | int() -1] }}'
metadata: !TemplateMetadata
choices_in_prompt: true
metrics: ["Accuracy"]
original_task: true
name: prompt_34
reference: jonghyeonkim
4882b9fd-beb5-4c8f-8842-6d8628c24183: !Template
answer_choices: A) {{sentence_quiz1}} ||| B) {{sentence_quiz2}}
id: 4882b9fd-beb5-4c8f-8842-6d8628c24183
jinja: 'Choose the best ending to the following story: {{input_sentence_1}} {{input_sentence_2}}
{{input_sentence_3}} {{input_sentence_4}}
A) {{sentence_quiz1}}
B) {{sentence_quiz2}} ||| {{ answer_choices[answer_right_ending | int() -1] }}'
metadata: !TemplateMetadata
choices_in_prompt: true
metrics: ["Accuracy"]
original_task: true
name: prompt_35
reference: jonghyeonkim
64a952b5-ebde-4a9d-ad57-beb87b32494f: !Template
answer_choices: '{{sentence_quiz1}} ||| {{sentence_quiz2}}'
id: 64a952b5-ebde-4a9d-ad57-beb87b32494f
jinja: 'Choose the best option to complete the sentence ''{{input_sentence_1}} {{input_sentence_2}}
{{input_sentence_3}} {{input_sentence_4}}'':
- {{sentence_quiz1}}
- {{sentence_quiz2}} ||| {{ answer_choices[answer_right_ending | int() -1] }}'
metadata: !TemplateMetadata
choices_in_prompt: true
metrics: ["Accuracy"]
original_task: true
name: prompt_36
reference: jonghyeonkim
a1f1f928-6c26-4aba-bf71-e48d0f40e6bc: !Template
answer_choices: '{{sentence_quiz1}} ||| {{sentence_quiz2}}'
id: a1f1f928-6c26-4aba-bf71-e48d0f40e6bc
jinja: "Here is a beginning of a story: {{input_sentence_1}} {{input_sentence_2}}\
\ {{input_sentence_3}} {{input_sentence_4}} What happens next?\n- {{sentence_quiz1}}\n\
- {{sentence_quiz2}}\n\n ||| {{ answer_choices[answer_right_ending | int() -1]\
\ }}"
metadata: !TemplateMetadata
choices_in_prompt: true
metrics: ["Accuracy"]
original_task: true
name: prompt_37
reference: jonghyeonkim
4430a87e-aab0-428e-a6c7-c373d251b2d3: !Template
answer_choices: '{{sentence_quiz1}} ||| {{sentence_quiz2}}'
id: 4430a87e-aab0-428e-a6c7-c373d251b2d3
jinja: '{{input_sentence_1}} {{input_sentence_2}} {{input_sentence_3}} {{input_sentence_4}}
What would be a satisfying way to conclude this story?
- {{sentence_quiz1}}
- {{sentence_quiz2}} ||| {{ answer_choices[answer_right_ending | int() -1] }}'
metadata: !TemplateMetadata
choices_in_prompt: true
metrics: ["Accuracy"]
original_task: true
name: prompt_38
reference: jonghyeonkim
66e7a4b9-cca9-443e-a57c-115c1954ca9e: !Template
answer_choices: '{{sentence_quiz1}} ||| {{sentence_quiz2}}'
id: 66e7a4b9-cca9-443e-a57c-115c1954ca9e
jinja: 'Choose the most suitable ending for the following story:
{{input_sentence_1}} {{input_sentence_2}} {{input_sentence_3}} {{input_sentence_4}}
- {{sentence_quiz1}}
- {{sentence_quiz2}} ||| {{ answer_choices[answer_right_ending | int() -1] }}'
metadata: !TemplateMetadata
choices_in_prompt: true
metrics: ["Accuracy"]
original_task: true
name: prompt_39
reference: jonghyeonkim
19fa6435-92d7-43d8-9a4b-399c8a9a6b26: !Template
answer_choices: A. {{sentence_quiz1}} ||| B. {{sentence_quiz2}}
id: 19fa6435-92d7-43d8-9a4b-399c8a9a6b26
jinja: "Choose the most likely ending for the following story:\n{{input_sentence_1}}\
\ {{input_sentence_2}} {{input_sentence_3}} {{input_sentence_4}}\nA. {{sentence_quiz1}}\n\
B. {{sentence_quiz2}}\n ||| {{ answer_choices[answer_right_ending | int() -1]\
\ }}"
metadata: !TemplateMetadata
choices_in_prompt: true
metrics: ["Accuracy"]
original_task: true
name: prompt_40
reference: jonghyeonkim
0aa55f6a-86b6-4504-a8d3-7af21262f0ba: !Template
answer_choices: '{{sentence_quiz1}} ||| {{sentence_quiz2}}'
id: 0aa55f6a-86b6-4504-a8d3-7af21262f0ba
jinja: "Choose the most likely ending for the following story:\n\n{{input_sentence_1}}\
\ {{input_sentence_2}} {{input_sentence_3}} {{input_sentence_4}}\n\n- {{sentence_quiz1}}\n\
- {{sentence_quiz2}}\n ||| {{ answer_choices[answer_right_ending | int() -1] }}"
metadata: !TemplateMetadata
choices_in_prompt: true
metrics: ["Accuracy"]
original_task: true
name: prompt_41
reference: jonghyeonkim
322c9f43-da53-469b-9da5-4fc45f2e1dc5: !Template
answer_choices: '{{sentence_quiz1}} ||| {{sentence_quiz2}}'
id: 322c9f43-da53-469b-9da5-4fc45f2e1dc5
jinja: 'What do you think happens after ''{{input_sentence_1}} {{input_sentence_2}}
{{input_sentence_3}} {{input_sentence_4}}''? Choose the best option:
- {{sentence_quiz1}}
- {{sentence_quiz2}} ||| {{ answer_choices[answer_right_ending | int() -1] }}'
metadata: !TemplateMetadata
choices_in_prompt: true
metrics: ["Accuracy"]
original_task: true
name: prompt_42
reference: jonghyeonkim
f12c301d-4f78-4c21-9aa3-20216a739dd4: !Template
answer_choices: '{{sentence_quiz1}} ||| {{sentence_quiz2}}'
id: f12c301d-4f78-4c21-9aa3-20216a739dd4
jinja: 'Which of the following is a reasonable ending for the story: {{input_sentence_1}}
{{input_sentence_2}} {{input_sentence_3}} {{input_sentence_4}}
- {{sentence_quiz1}}
- {{sentence_quiz2}} ||| {{ answer_choices[answer_right_ending | int() -1] }}'
metadata: !TemplateMetadata
choices_in_prompt: true
metrics: ["Accuracy"]
original_task: true
name: prompt_43
reference: jonghyeonkim
4464cebd-687a-406a-a373-bc11126bd88a: !Template
answer_choices: A) {{sentence_quiz1}} ||| B) {{sentence_quiz2}}
id: 4464cebd-687a-406a-a373-bc11126bd88a
jinja: '{{input_sentence_1}} {{input_sentence_2}} {{input_sentence_3}} {{input_sentence_4}}
Select the most probable ending from the following options:
A) {{sentence_quiz1}}
B) {{sentence_quiz2}} ||| {{ answer_choices[answer_right_ending | int() -1] }}'
metadata: !TemplateMetadata
choices_in_prompt: true
metrics: ["Accuracy"]
original_task: true
name: prompt_44
reference: jonghyeonkim
38dcf555-3b94-4f9f-b1fe-e3d5dbe3bbb7: !Template
answer_choices: '{{sentence_quiz1}} ||| {{sentence_quiz2}}'
id: 38dcf555-3b94-4f9f-b1fe-e3d5dbe3bbb7
jinja: "Based on the following story: {{input_sentence_1}} {{input_sentence_2}}\
\ {{input_sentence_3}} {{input_sentence_4}}, choose the best possible ending:\n\
- {{sentence_quiz1}}\n- {{sentence_quiz2}}\n ||| {{ answer_choices[answer_right_ending\
\ | int() -1] }}"
metadata: !TemplateMetadata
choices_in_prompt: true
metrics: ["Accuracy"]
original_task: true
name: prompt_45
reference: jonghyeonkim
55e7e794-e061-4343-886e-f6ebaab7df12: !Template
answer_choices: A. {{sentence_quiz1}} ||| B. {{sentence_quiz2}}
id: 55e7e794-e061-4343-886e-f6ebaab7df12
jinja: "What could happen next in this story?\n{{input_sentence_1}} {{input_sentence_2}}\
\ {{input_sentence_3}} {{input_sentence_4}}\nChoose the best option:\nA. {{sentence_quiz1}}\n\
B. {{sentence_quiz2}}\n ||| {{ answer_choices[answer_right_ending | int() -1]\
\ }}"
metadata: !TemplateMetadata
choices_in_prompt: true
metrics: ["Accuracy"]
original_task: true
name: prompt_46
reference: jonghyeonkim
cc99f38e-b784-467f-8d9f-9cf953b55189: !Template
answer_choices: '{{sentence_quiz1}} ||| {{sentence_quiz2}}'
id: cc99f38e-b784-467f-8d9f-9cf953b55189
jinja: "{{input_sentence_1}} {{input_sentence_2}} {{input_sentence_3}} {{input_sentence_4}}\n\
What would be a reasonable way to finish this story? Choose from:\n- {{sentence_quiz1}}\n\
- {{sentence_quiz2}}\n ||| {{ answer_choices[answer_right_ending | int() -1] }}"
metadata: !TemplateMetadata
choices_in_prompt: true
metrics: ["Accuracy"]
original_task: true
name: prompt_47
reference: jonghyeonkim
afd38ca2-d85b-4de6-91bf-d3234ebcdcac: !Template
answer_choices: '{{sentence_quiz1}} ||| {{sentence_quiz2}}'
id: afd38ca2-d85b-4de6-91bf-d3234ebcdcac
jinja: "{{input_sentence_1}} {{input_sentence_2}} {{input_sentence_3}} {{input_sentence_4}}\n\
What is the most plausible continuation of the story? Choose from:\n- {{sentence_quiz1}}\n\
- {{sentence_quiz2}}\n ||| {{ answer_choices[answer_right_ending | int() -1] }}"
metadata: !TemplateMetadata
choices_in_prompt: true
metrics: ["Accuracy"]
original_task: true
name: prompt_48
reference: jonghyeonkim
139bff21-f8d0-4ebe-a9bf-b4090580af28: !Template
answer_choices: '{{sentence_quiz1}} ||| {{sentence_quiz2}}'
id: 139bff21-f8d0-4ebe-a9bf-b4090580af28
jinja: "{{input_sentence_1}} {{input_sentence_2}} {{input_sentence_3}} {{input_sentence_4}}\n\
How would you conclude the story? Pick from the following options:\n- {{sentence_quiz1}}\n\
- {{sentence_quiz2}}\n ||| {{ answer_choices[answer_right_ending | int() -1] }}"
metadata: !TemplateMetadata
choices_in_prompt: true
metrics: ["Accuracy"]
original_task: true
name: prompt_49
reference: jonghyeonkim
b85dd26b-2f8b-4370-b74e-21bf5333730d: !Template
answer_choices: A. {{sentence_quiz1}} ||| B. {{sentence_quiz2}}
id: b85dd26b-2f8b-4370-b74e-21bf5333730d
jinja: "Read the following story and then choose the most likely ending:\n{{input_sentence_1}}\n\
{{input_sentence_2}}\n{{input_sentence_3}}\n{{input_sentence_4}}\nA. {{sentence_quiz1}}\n\
B. {{sentence_quiz2}}\n ||| {{ answer_choices[answer_right_ending | int() -1]\
\ }}"
metadata: !TemplateMetadata
choices_in_prompt: true
metrics: ["Accuracy"]
original_task: true
name: prompt_50
reference: jonghyeonkim
f086a6d1-5103-45be-8f88-d91579976645: !Template
answer_choices: '{{sentence_quiz1}} ||| {{sentence_quiz2}}'
id: f086a6d1-5103-45be-8f88-d91579976645
jinja: '{{input_sentence_1}} {{input_sentence_2}} {{input_sentence_3}} {{input_sentence_4}}
What do you think happened next? Choose from the following options:
- {{sentence_quiz1}}
- {{sentence_quiz2}} ||| {{ answer_choices[answer_right_ending | int() -1] }}'
metadata: !TemplateMetadata
choices_in_prompt: true
metrics: ["Accuracy"]
original_task: true
name: prompt_51
reference: jonghyeonkim
58d8e199-cd6c-49aa-b3fc-91cefcfcc6c8: !Template
answer_choices: '{{sentence_quiz1}} ||| {{sentence_quiz2}}'
id: 58d8e199-cd6c-49aa-b3fc-91cefcfcc6c8
jinja: "Given the following story:\n\n{{input_sentence_1}}\n{{input_sentence_2}}\n\
{{input_sentence_3}}\n{{input_sentence_4}}\n\nWhat is a likely ending to the story?\n\
\n- {{sentence_quiz1}}\n- {{sentence_quiz2}}\n ||| {{ answer_choices[answer_right_ending\
\ | int() -1] }}"
metadata: !TemplateMetadata
choices_in_prompt: true
metrics: ["Accuracy"]
original_task: true
name: prompt_52
reference: jonghyeonkim
c082c7f3-7072-462b-b885-919702acc7d1: !Template
answer_choices: '{{sentence_quiz1}} ||| {{sentence_quiz2}}'
id: c082c7f3-7072-462b-b885-919702acc7d1
jinja: "Which of the following sentences best continues the following story?\n{{input_sentence_1}}\
\ {{input_sentence_2}} {{input_sentence_3}} {{input_sentence_4}}\n- {{sentence_quiz1}}\n\
- {{sentence_quiz2}}\n ||| {{ answer_choices[answer_right_ending | int() -1] }}"
metadata: !TemplateMetadata
choices_in_prompt: true
metrics: ["Accuracy"]
original_task: true
name: prompt_53
reference: jonghyeonkim
d862ba14-8fd3-491c-b498-f0fc4a06b951: !Template
answer_choices: '{{sentence_quiz1}} ||| {{sentence_quiz2}}'
id: d862ba14-8fd3-491c-b498-f0fc4a06b951
jinja: 'Imagine a story that begins with the following four sentences:
- {{input_sentence_1}}
- {{input_sentence_2}}
- {{input_sentence_3}}
- {{input_sentence_4}}
What is a possible ending for this story? ||| {{ answer_choices[answer_right_ending
| int() -1] }}'
metadata: !TemplateMetadata
choices_in_prompt: false
metrics: ["Accuracy"]
original_task: true
name: prompt_54
reference: jonghyeonkim
63456a4a-745a-48c6-a1ce-3af022be4c92: !Template
answer_choices: '{{sentence_quiz1}} ||| {{sentence_quiz2}}'
id: 63456a4a-745a-48c6-a1ce-3af022be4c92
jinja: "Choose the most appropriate sentence to describe the following scene: {{input_sentence_1}}\
\ {{input_sentence_2}} {{input_sentence_3}} {{input_sentence_4}}\n- {{sentence_quiz1}}\n\
- {{sentence_quiz2}}\n ||| {{ answer_choices[answer_right_ending | int() -1] }}"
metadata: !TemplateMetadata
choices_in_prompt: true
metrics: ["Accuracy"]
original_task: true
name: prompt_55
reference: jonghyeonkim
6f202329-2472-4d71-94a1-5f94e4e44a63: !Template
answer_choices: '{{sentence_quiz1}} ||| {{sentence_quiz2}}'
id: 6f202329-2472-4d71-94a1-5f94e4e44a63
jinja: "{{input_sentence_1}} {{input_sentence_2}} {{input_sentence_3}} {{input_sentence_4}}\n\
What do you think will happen next? Choose from the following options:\n- {{sentence_quiz1}}\n\
- {{sentence_quiz2}}\n ||| {{ answer_choices[answer_right_ending | int() -1] }}"
metadata: !TemplateMetadata
choices_in_prompt: true
metrics: ["Accuracy"]
original_task: true
name: prompt_56
reference: jonghyeonkim
f2a4ac08-0ccb-4110-9a5a-f865fdb62986: !Template
answer_choices: '{{sentence_quiz1}} ||| {{sentence_quiz2}}'
id: f2a4ac08-0ccb-4110-9a5a-f865fdb62986
jinja: 'Finish the story that starts with ''{{input_sentence_1}} {{input_sentence_2}}
{{input_sentence_3}} {{input_sentence_4}}''.
Choose one of the following endings:
- {{sentence_quiz1}}
- {{sentence_quiz2}} ||| {{ answer_choices[answer_right_ending | int() -1] }}'
metadata: !TemplateMetadata
choices_in_prompt: true
metrics: ["Accuracy"]
original_task: true
name: prompt_57
reference: jonghyeonkim
d0ee41ae-50ad-4537-91e6-5c005e78475f: !Template
answer_choices: '{{sentence_quiz1}} ||| {{sentence_quiz2}}'
id: d0ee41ae-50ad-4537-91e6-5c005e78475f
jinja: 'Imagine a story that starts with the following sequence of sentences: {{input_sentence_1}}
{{input_sentence_2}} {{input_sentence_3}} {{input_sentence_4}}
What could be a possible ending for this story? ||| {{ answer_choices[answer_right_ending
| int() -1] }}'
metadata: !TemplateMetadata
choices_in_prompt: false
metrics: ["Accuracy"]
original_task: true
name: prompt_58
reference: jonghyeonkim
2ab029e1-37ce-495a-850d-8ec37d37bb8b: !Template
answer_choices: '{{sentence_quiz1}} ||| {{sentence_quiz2}}'
id: 2ab029e1-37ce-495a-850d-8ec37d37bb8b
jinja: "{{input_sentence_1}} {{input_sentence_2}} {{input_sentence_3}} {{input_sentence_4}}\n\
What is the most probable next sentence? Choose from the following options:\n\
- {{sentence_quiz1}}\n- {{sentence_quiz2}}\n ||| {{ answer_choices[answer_right_ending\
\ | int() -1] }}"
metadata: !TemplateMetadata
choices_in_prompt: true
metrics: ["Accuracy"]
original_task: true
name: prompt_59
reference: jonghyeonkim
e5a4dc48-1b72-414e-b0f3-e8cec22fa265: !Template
answer_choices: A. {{sentence_quiz1}} ||| B. {{sentence_quiz2}}
id: e5a4dc48-1b72-414e-b0f3-e8cec22fa265
jinja: "What is the best way to conclude this story?\n{{input_sentence_1}} {{input_sentence_2}}\
\ {{input_sentence_3}} {{input_sentence_4}}\nChoose one of the following:\nA.\
\ {{sentence_quiz1}}\nB. {{sentence_quiz2}}\n ||| {{ answer_choices[answer_right_ending\
\ | int() -1] }}"
metadata: !TemplateMetadata
choices_in_prompt: true
metrics: ["Accuracy"]
original_task: true
name: prompt_60
reference: jonghyeonkim
298df7b0-1743-403d-babf-16a093d367af: !Template
answer_choices: '{{sentence_quiz1}} ||| {{sentence_quiz2}}'
id: 298df7b0-1743-403d-babf-16a093d367af
jinja: "What could be a potential conclusion to this story? You have two choices:\n\
\n{{input_sentence_1}}\n{{input_sentence_2}}\n{{input_sentence_3}}\n{{input_sentence_4}}\n\
\n- {{sentence_quiz1}}\n- {{sentence_quiz2}}\n ||| {{ answer_choices[answer_right_ending\
\ | int() -1] }}"
metadata: !TemplateMetadata
choices_in_prompt: true
metrics: ["Accuracy"]
original_task: true
name: prompt_61
reference: jonghyeonkim
cbedd393-d6f4-4c6c-b641-0e5c7e2ac35d: !Template
answer_choices: '{{sentence_quiz1}} ||| {{sentence_quiz2}}'
id: cbedd393-d6f4-4c6c-b641-0e5c7e2ac35d
jinja: "You just walked into a haunted house. Here is what you see: {{input_sentence_1}}\
\ {{input_sentence_2}} {{input_sentence_3}} {{input_sentence_4}} What do you do?\n\
- {{sentence_quiz1}}\n- {{sentence_quiz2}}\n ||| {{ answer_choices[answer_right_ending\
\ | int() -1] }}"
metadata: !TemplateMetadata
choices_in_prompt: true
metrics: ["Accuracy"]
original_task: true
name: prompt_62
reference: jonghyeonkim
a4c826ee-2f79-457c-be80-28780f95c27f: !Template
answer_choices: '{{sentence_quiz1}} ||| {{sentence_quiz2}}'
id: a4c826ee-2f79-457c-be80-28780f95c27f
jinja: "{{input_sentence_1}} {{input_sentence_2}} {{input_sentence_3}} {{input_sentence_4}}\n\
What is the most plausible next sentence? Choose from the following options:\n\
- {{sentence_quiz1}}\n- {{sentence_quiz2}}\n ||| {{ answer_choices[answer_right_ending\
\ | int() -1] }}"
metadata: !TemplateMetadata
choices_in_prompt: true
metrics: ["Accuracy"]
original_task: true
name: prompt_63
reference: jonghyeonkim
f9444a8d-54ed-423a-99a2-e739dc596a3c: !Template
answer_choices: '{{sentence_quiz1}} ||| {{sentence_quiz2}}'
id: f9444a8d-54ed-423a-99a2-e739dc596a3c
jinja: 'The following sentences describe a character. Can you guess what happens
next?
{{input_sentence_1}} {{input_sentence_2}} {{input_sentence_3}} {{input_sentence_4}}
- {{sentence_quiz1}}
- {{sentence_quiz2}} ||| {{ answer_choices[answer_right_ending | int() -1] }}'
metadata: !TemplateMetadata
choices_in_prompt: true
metrics: ["Accuracy"]
original_task: true
name: prompt_64
reference: jonghyeonkim
c7f43397-41ae-476d-8945-e9f7b3095989: !Template
answer_choices: '{{sentence_quiz1}} ||| {{sentence_quiz2}}'
id: c7f43397-41ae-476d-8945-e9f7b3095989
jinja: "{{input_sentence_1}} {{input_sentence_2}} {{input_sentence_3}} {{input_sentence_4}}\n\
What is a possible next event in the story? Choose from the following options:\n\
- {{sentence_quiz1}}\n- {{sentence_quiz2}}\n ||| {{ answer_choices[answer_right_ending\
\ | int() -1] }}"
metadata: !TemplateMetadata
choices_in_prompt: true
metrics: ["Accuracy"]
original_task: true
name: prompt_65
reference: jonghyeonkim
03d2e0a6-e78a-4ae7-bb35-5165ab8747d9: !Template
answer_choices: '{{sentence_quiz1}} ||| {{sentence_quiz2}}'
id: 03d2e0a6-e78a-4ae7-bb35-5165ab8747d9
jinja: "Imagine you are the author of this story. How would you like to conclude\
\ it?\n\n{{input_sentence_1}} {{input_sentence_2}} {{input_sentence_3}} {{input_sentence_4}}\n\
\n- {{sentence_quiz1}}\n- {{sentence_quiz2}}\n ||| {{ answer_choices[answer_right_ending\
\ | int() -1] }}"
metadata: !TemplateMetadata
choices_in_prompt: true
metrics: ["Accuracy"]