-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtemplates.yaml
8967 lines (8957 loc) · 340 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: ag_news
templates:
24e44a81-a18a-42dd-a71c-5b31b2d2cb39: !Template
answer_choices: World politics ||| Sports ||| Business ||| Science and technology
id: 24e44a81-a18a-42dd-a71c-5b31b2d2cb39
jinja: "What label best describes this news article?\n{{text}} ||| \n{{answer_choices[label]\
\ }}"
metadata: !TemplateMetadata
choices_in_prompt: false
languages:
- en
metrics:
- Accuracy
original_task: true
name: classify_question_first
reference: ''
8fdc1056-1029-41a1-9c67-354fc2b8ceaf: !Template
answer_choices: World politics ||| Sports ||| Business ||| Science and technology
id: 8fdc1056-1029-41a1-9c67-354fc2b8ceaf
jinja: "Is this a piece of news regarding {{\"world politics, sports, business,\
\ or science and technology\"}}?\n{{text}} \n||| \n{{answer_choices[label] }}"
metadata: !TemplateMetadata
choices_in_prompt: true
languages:
- en
metrics:
- Accuracy
original_task: true
name: classify_with_choices_question_first
reference: ''
918267e0-af68-4117-892d-2dbe66a58ce9: !Template
answer_choices: Politician ||| Athlete ||| Business executive ||| Scientist
id: 918267e0-af68-4117-892d-2dbe66a58ce9
jinja: 'Would you recommend the following article to a {{"politician"}}, an {{"athlete"}},
a {{"business executive"}}, or a {{"scientist"}}?
{{ text }}
|||
{{answer_choices[label]}}'
metadata: !TemplateMetadata
choices_in_prompt: true
languages:
- en
metrics:
- Accuracy
original_task: true
name: recommend
reference: ''
9345df33-4f23-4944-a33c-eef94e626862: !Template
answer_choices: World News ||| Sports ||| Business ||| Science and Technology
id: 9345df33-4f23-4944-a33c-eef94e626862
jinja: "{{text}} \n\nWhich of the following sections of a newspaper would this\
\ article likely appear in? {{\"World News\"}}, {{\"Sports\"}}, {{\"Business\"\
}}, or {{\"Science and Technology\"}}? ||| \n{{answer_choices[label] }}"
metadata: !TemplateMetadata
choices_in_prompt: true
languages:
- en
metrics:
- Accuracy
original_task: true
name: which_section_choices
reference: ''
98534347-fff7-4c39-a795-4e69a44791f7: !Template
answer_choices: World News ||| Sports ||| Business ||| Science and Technology
id: 98534347-fff7-4c39-a795-4e69a44791f7
jinja: "{{text}} \n\nWhich section of a newspaper would this article likely appear\
\ in? ||| \n{{answer_choices[label] }}"
metadata: !TemplateMetadata
choices_in_prompt: false
languages:
- en
metrics:
- Accuracy
original_task: true
name: which_section
reference: ''
b401b0ee-6ffe-4a91-8e15-77ee073cd858: !Template
answer_choices: World politics ||| Sports ||| Business ||| Science and technology
id: b401b0ee-6ffe-4a91-8e15-77ee073cd858
jinja: "{{text}} \nIs this a piece of news regarding {{\"world politics, sports,\
\ business, or science and technology\"}}? ||| \n{{answer_choices[label] }}"
metadata: !TemplateMetadata
choices_in_prompt: true
languages:
- en
metrics:
- Accuracy
original_task: true
name: classify_with_choices
reference: ''
cb355f33-7e8c-4455-a72b-48d315bd4f60: !Template
answer_choices: World politics ||| Sports ||| Business ||| Science and technology
id: cb355f33-7e8c-4455-a72b-48d315bd4f60
jinja: "{{text}} \nWhat label best describes this news article? ||| \n{{answer_choices[label]\
\ }}"
metadata: !TemplateMetadata
choices_in_prompt: false
languages:
- en
metrics:
- Accuracy
original_task: true
name: classify
reference: ''
a9d0aa26-7f24-4883-9460-4fcae7689d97: !Template
answer_choices: World News ||| Sports ||| Business ||| Science and Technology
id: a9d0aa26-7f24-4883-9460-4fcae7689d97
jinja: '{{text}} - He is one of the two noticiarios? ||| {{ answer_choices[label] }}'
metadata: !TemplateMetadata
choices_in_prompt: true
languages:
- en
metrics:
- Accuracy
original_task: true
name: template_0
reference: ''
521b1834-c9e6-4b5c-b1fa-0d954ecb6a8b: !Template
answer_choices: World News ||| Sports ||| Business ||| Science and Technology
id: 521b1834-c9e6-4b5c-b1fa-0d954ecb6a8b
jinja: '{{text}} - Is he one of the news? ||| {{ answer_choices[label] }}'
metadata: !TemplateMetadata
choices_in_prompt: true
languages:
- en
metrics:
- Accuracy
original_task: true
name: template_1
reference: ''
b288d60e-2dfd-4cc0-a696-4110a5fc1f0c: !Template
answer_choices: World News ||| Sports ||| Business ||| Science and Technology
id: b288d60e-2dfd-4cc0-a696-4110a5fc1f0c
jinja: '{{text}} - Is he one of the two noticiarios? ||| {{ answer_choices[label] }}'
metadata: !TemplateMetadata
choices_in_prompt: true
languages:
- en
metrics:
- Accuracy
original_task: true
name: template_2
reference: ''
2ec6236c-6707-411e-a0fb-e55c17116bbf: !Template
answer_choices: World News ||| Sports ||| Business ||| Science and Technology
id: 2ec6236c-6707-411e-a0fb-e55c17116bbf
jinja: '{{text}} - Is it one of the two noticiarios? ||| {{ answer_choices[label] }}'
metadata: !TemplateMetadata
choices_in_prompt: true
languages:
- en
metrics:
- Accuracy
original_task: true
name: template_3
reference: ''
482e2284-7d3c-4c2d-8069-5f763366338b: !Template
answer_choices: World News ||| Sports ||| Business ||| Science and Technology
id: 482e2284-7d3c-4c2d-8069-5f763366338b
jinja: '{{text}} - Is there a day to notify? ||| {{ answer_choices[label] }}'
metadata: !TemplateMetadata
choices_in_prompt: true
languages:
- en
metrics:
- Accuracy
original_task: true
name: template_4
reference: ''
4f935f6e-64bc-46ba-98be-38f245e6a1d6: !Template
answer_choices: World News ||| Sports ||| Business ||| Science and Technology
id: 4f935f6e-64bc-46ba-98be-38f245e6a1d6
jinja: '{{text}} - Is there any news? ||| {{ answer_choices[label] }}'
metadata: !TemplateMetadata
choices_in_prompt: true
languages:
- en
metrics:
- Accuracy
original_task: true
name: template_5
reference: ''
80379c6e-700f-4cd2-96f0-9e95c78c05eb: !Template
answer_choices: World News ||| Sports ||| Business ||| Science and Technology
id: 80379c6e-700f-4cd2-96f0-9e95c78c05eb
jinja: '{{text}} - There is a des nouvelles? ||| {{ answer_choices[label] }}'
metadata: !TemplateMetadata
choices_in_prompt: true
languages:
- en
metrics:
- Accuracy
original_task: true
name: template_6
reference: ''
4c6e738d-c62d-40ca-ade9-0dcb394d1fad: !Template
answer_choices: World News ||| Sports ||| Business ||| Science and Technology
id: 4c6e738d-c62d-40ca-ade9-0dcb394d1fad
jinja: '{{text}} - What''s your name? ||| {{ answer_choices[label] }}'
metadata: !TemplateMetadata
choices_in_prompt: true
languages:
- en
metrics:
- Accuracy
original_task: true
name: template_7
reference: ''
a686ab58-d584-4956-a8f9-0afd630c5493: !Template
answer_choices: World News ||| Sports ||| Business ||| Science and Technology
id: a686ab58-d584-4956-a8f9-0afd630c5493
jinja: '{{text}} - Where are you going? ||| {{ answer_choices[label] }}'
metadata: !TemplateMetadata
choices_in_prompt: true
languages:
- en
metrics:
- Accuracy
original_task: true
name: template_8
reference: ''
3a5f7d25-87db-4281-afba-05658a13fc30: !Template
answer_choices: World News ||| Sports ||| Business ||| Science and Technology
id: 3a5f7d25-87db-4281-afba-05658a13fc30
jinja: '{{text}} How many of you read this article? ||| {{ answer_choices[label] }}'
metadata: !TemplateMetadata
choices_in_prompt: true
languages:
- en
metrics:
- Accuracy
original_task: true
name: template_9
reference: ''
a0444f2f-b545-4c7e-8ca4-33a6be7d6e4d: !Template
answer_choices: World News ||| Sports ||| Business ||| Science and Technology
id: a0444f2f-b545-4c7e-8ca4-33a6be7d6e4d
jinja: '{{text}} How was he? ||| {{ answer_choices[label] }}'
metadata: !TemplateMetadata
choices_in_prompt: true
languages:
- en
metrics:
- Accuracy
original_task: true
name: template_10
reference: ''
7fdaec02-7e57-4fc4-a8f3-d28baee78b7a: !Template
answer_choices: World News ||| Sports ||| Business ||| Science and Technology
id: 7fdaec02-7e57-4fc4-a8f3-d28baee78b7a
jinja: '{{text}} In diesem neuen Artikel wird _____ treated. In this new article will be treated. ||| {{ answer_choices[label] }}'
metadata: !TemplateMetadata
choices_in_prompt: true
languages:
- en
metrics:
- Accuracy
original_task: true
name: template_11
reference: ''
03afb1ee-984e-4713-b5c5-17d66e828236: !Template
answer_choices: World News ||| Sports ||| Business ||| Science and Technology
id: 03afb1ee-984e-4713-b5c5-17d66e828236
jinja: '{{text}} In this article we will answer these questions: ||| {{ answer_choices[label] }}'
metadata: !TemplateMetadata
choices_in_prompt: true
languages:
- en
metrics:
- Accuracy
original_task: true
name: template_12
reference: ''
bc4a89a6-6314-4a36-a5f4-2055a795e1cc: !Template
answer_choices: World News ||| Sports ||| Business ||| Science and Technology
id: bc4a89a6-6314-4a36-a5f4-2055a795e1cc
jinja: '{{text}} In this article we will examine the following questions: ||| {{ answer_choices[label] }}'
metadata: !TemplateMetadata
choices_in_prompt: true
languages:
- en
metrics:
- Accuracy
original_task: true
name: template_13
reference: ''
b8e4fd3e-acc5-469a-aa69-fa839c47be6a: !Template
answer_choices: World News ||| Sports ||| Business ||| Science and Technology
id: b8e4fd3e-acc5-469a-aa69-fa839c47be6a
jinja: '{{text}} In this new article we will examine the following questions: ||| {{ answer_choices[label] }}'
metadata: !TemplateMetadata
choices_in_prompt: true
languages:
- en
metrics:
- Accuracy
original_task: true
name: template_14
reference: ''
439f088b-cbd1-4a9e-ab7d-ad9853a70f65: !Template
answer_choices: World News ||| Sports ||| Business ||| Science and Technology
id: 439f088b-cbd1-4a9e-ab7d-ad9853a70f65
jinja: '{{text}} In this new article, we will examine the following questions: ||| {{ answer_choices[label] }}'
metadata: !TemplateMetadata
choices_in_prompt: true
languages:
- en
metrics:
- Accuracy
original_task: true
name: template_15
reference: ''
9b419418-1701-438b-b856-064bd4d1c144: !Template
answer_choices: World News ||| Sports ||| Business ||| Science and Technology
id: 9b419418-1701-438b-b856-064bd4d1c144
jinja: '{{text}} In welche Kategorie fällt dieser Artikel? (What is the category of this article?) ||| {{ answer_choices[label] }}'
metadata: !TemplateMetadata
choices_in_prompt: true
languages:
- en
metrics:
- Accuracy
original_task: true
name: template_16
reference: ''
f633cd5a-8e52-4ca5-b29b-f8375756f871: !Template
answer_choices: World News ||| Sports ||| Business ||| Science and Technology
id: f633cd5a-8e52-4ca5-b29b-f8375756f871
jinja: '{{text}} In welke categorie valt dit artikel? (What is the category of this article?) ||| {{ answer_choices[label] }}'
metadata: !TemplateMetadata
choices_in_prompt: true
languages:
- en
metrics:
- Accuracy
original_task: true
name: template_17
reference: ''
77e578a3-982a-47c1-9355-f75dd7c6545d: !Template
answer_choices: World News ||| Sports ||| Business ||| Science and Technology
id: 77e578a3-982a-47c1-9355-f75dd7c6545d
jinja: '{{text}} In what category is this article? ||| {{ answer_choices[label] }}'
metadata: !TemplateMetadata
choices_in_prompt: true
languages:
- en
metrics:
- Accuracy
original_task: true
name: template_18
reference: ''
6a72115d-18fd-4e20-9818-fbd116917bd3: !Template
answer_choices: World News ||| Sports ||| Business ||| Science and Technology
id: 6a72115d-18fd-4e20-9818-fbd116917bd3
jinja: '{{text}} In which Teil der Anzeige wird dieser Artikel wahrscheinlich erscheinen? ||| {{ answer_choices[label] }}'
metadata: !TemplateMetadata
choices_in_prompt: true
languages:
- en
metrics:
- Accuracy
original_task: true
name: template_19
reference: ''
2326f026-760a-4c51-ae54-76f4df4a93af: !Template
answer_choices: World News ||| Sports ||| Business ||| Science and Technology
id: 2326f026-760a-4c51-ae54-76f4df4a93af
jinja: '{{text}} In which deel van het tijdschrift does this article appear? ||| {{ answer_choices[label] }}'
metadata: !TemplateMetadata
choices_in_prompt: true
languages:
- en
metrics:
- Accuracy
original_task: true
name: template_20
reference: ''
4818d17f-ea5b-4899-8f12-0ca6b163cde7: !Template
answer_choices: World News ||| Sports ||| Business ||| Science and Technology
id: 4818d17f-ea5b-4899-8f12-0ca6b163cde7
jinja: '{{text}} In which journal would it be preferable to find this article? ||| {{ answer_choices[label] }}'
metadata: !TemplateMetadata
choices_in_prompt: true
languages:
- en
metrics:
- Accuracy
original_task: true
name: template_21
reference: ''
de36814e-4b4a-43e8-ba26-45f0ff540e3a: !Template
answer_choices: World News ||| Sports ||| Business ||| Science and Technology
id: de36814e-4b4a-43e8-ba26-45f0ff540e3a
jinja: '{{text}} In which magazine would it have been best to find this article? ||| {{ answer_choices[label] }}'
metadata: !TemplateMetadata
choices_in_prompt: true
languages:
- en
metrics:
- Accuracy
original_task: true
name: template_22
reference: ''
7989ee0e-4edd-4065-a3d5-bfcc50a35b4d: !Template
answer_choices: World News ||| Sports ||| Business ||| Science and Technology
id: 7989ee0e-4edd-4065-a3d5-bfcc50a35b4d
jinja: '{{text}} In which magazine would you find this article? ||| {{ answer_choices[label] }}'
metadata: !TemplateMetadata
choices_in_prompt: true
languages:
- en
metrics:
- Accuracy
original_task: true
name: template_23
reference: ''
af1b302c-cd94-475a-aa66-7ec1517ab22f: !Template
answer_choices: World News ||| Sports ||| Business ||| Science and Technology
id: af1b302c-cd94-475a-aa66-7ec1517ab22f
jinja: '{{text}} In which newspaper would it be better to find this article? ||| {{ answer_choices[label] }}'
metadata: !TemplateMetadata
choices_in_prompt: true
languages:
- en
metrics:
- Accuracy
original_task: true
name: template_24
reference: ''
1e3b295d-2b24-4a26-aac0-552062cdc00b: !Template
answer_choices: World News ||| Sports ||| Business ||| Science and Technology
id: 1e3b295d-2b24-4a26-aac0-552062cdc00b
jinja: '{{text}} In which newspaper would this article be best to find? ||| {{ answer_choices[label] }}'
metadata: !TemplateMetadata
choices_in_prompt: true
languages:
- en
metrics:
- Accuracy
original_task: true
name: template_25
reference: ''
26f43bd1-f2db-43ab-b80f-308d3d5cc001: !Template
answer_choices: World News ||| Sports ||| Business ||| Science and Technology
id: 26f43bd1-f2db-43ab-b80f-308d3d5cc001
jinja: '{{text}} In which part of the journal does this article appear? ||| {{ answer_choices[label] }}'
metadata: !TemplateMetadata
choices_in_prompt: true
languages:
- en
metrics:
- Accuracy
original_task: true
name: template_26
reference: ''
3f6c2bf0-bd2e-4413-ba72-1c1f2d651fd8: !Template
answer_choices: World News ||| Sports ||| Business ||| Science and Technology
id: 3f6c2bf0-bd2e-4413-ba72-1c1f2d651fd8
jinja: '{{text}} In which part of the magazine does this article appear? ||| {{ answer_choices[label] }}'
metadata: !TemplateMetadata
choices_in_prompt: true
languages:
- en
metrics:
- Accuracy
original_task: true
name: template_27
reference: ''
8c9b900c-6283-41e1-9c6f-b9edf5a8e6fe: !Template
answer_choices: World News ||| Sports ||| Business ||| Science and Technology
id: 8c9b900c-6283-41e1-9c6f-b9edf5a8e6fe
jinja: '{{text}} In which part of the newspaper will this article probably appear? ||| {{ answer_choices[label] }}'
metadata: !TemplateMetadata
choices_in_prompt: true
languages:
- en
metrics:
- Accuracy
original_task: true
name: template_28
reference: ''
59fa308e-907a-45a0-bbe6-1405629c314b: !Template
answer_choices: World News ||| Sports ||| Business ||| Science and Technology
id: 59fa308e-907a-45a0-bbe6-1405629c314b
jinja: '{{text}} In which section of the newspaper would this article be found? ||| {{ answer_choices[label] }}'
metadata: !TemplateMetadata
choices_in_prompt: true
languages:
- en
metrics:
- Accuracy
original_task: true
name: template_29
reference: ''
a3c9b082-c4d3-497d-9c07-feb36d52b3ca: !Template
answer_choices: World News ||| Sports ||| Business ||| Science and Technology
id: a3c9b082-c4d3-497d-9c07-feb36d52b3ca
jinja: '{{text}} In which section of the newspaper would this article be most appropriate? ||| {{ answer_choices[label] }}'
metadata: !TemplateMetadata
choices_in_prompt: true
languages:
- en
metrics:
- Accuracy
original_task: true
name: template_30
reference: ''
bce1a9ee-0fb8-4d9d-af90-8adc9b58ddb1: !Template
answer_choices: World News ||| Sports ||| Business ||| Science and Technology
id: bce1a9ee-0fb8-4d9d-af90-8adc9b58ddb1
jinja: '{{text}} In which section of the newspaper would this article be most likely to appear? ||| {{ answer_choices[label] }}'
metadata: !TemplateMetadata
choices_in_prompt: true
languages:
- en
metrics:
- Accuracy
original_task: true
name: template_31
reference: ''
e4cc7f5e-fb0d-4344-b9cc-b367c6ec9465: !Template
answer_choices: World News ||| Sports ||| Business ||| Science and Technology
id: e4cc7f5e-fb0d-4344-b9cc-b367c6ec9465
jinja: '{{text}} The EU is a global actor. ||| {{ answer_choices[label] }}'
metadata: !TemplateMetadata
choices_in_prompt: true
languages:
- en
metrics:
- Accuracy
original_task: true
name: template_32
reference: ''
f8b31dc5-03bc-4a37-af50-76bed4eed406: !Template
answer_choices: World News ||| Sports ||| Business ||| Science and Technology
id: f8b31dc5-03bc-4a37-af50-76bed4eed406
jinja: '{{text}} The European Union is a global actor. ||| {{ answer_choices[label] }}'
metadata: !TemplateMetadata
choices_in_prompt: true
languages:
- en
metrics:
- Accuracy
original_task: true
name: template_33
reference: ''
7dec78b6-009a-4237-a674-dbaf3e40bfa3: !Template
answer_choices: World News ||| Sports ||| Business ||| Science and Technology
id: 7dec78b6-009a-4237-a674-dbaf3e40bfa3
jinja: '{{text}} The European Union is a global player. ||| {{ answer_choices[label] }}'
metadata: !TemplateMetadata
choices_in_prompt: true
languages:
- en
metrics:
- Accuracy
original_task: true
name: template_34
reference: ''
8b4ef71a-d586-48ea-af91-653b01a07a9a: !Template
answer_choices: World News ||| Sports ||| Business ||| Science and Technology
id: 8b4ef71a-d586-48ea-af91-653b01a07a9a
jinja: '{{text}} The European Union is a world player. ||| {{ answer_choices[label] }}'
metadata: !TemplateMetadata
choices_in_prompt: true
languages:
- en
metrics:
- Accuracy
original_task: true
name: template_35
reference: ''
eedaa995-030c-4a73-b31a-b4e5531f2c63: !Template
answer_choices: World News ||| Sports ||| Business ||| Science and Technology
id: eedaa995-030c-4a73-b31a-b4e5531f2c63
jinja: '{{text}} The article is a news story
The article is a news story ||| {{ answer_choices[label] }}'
metadata: !TemplateMetadata
choices_in_prompt: true
languages:
- en
metrics:
- Accuracy
original_task: true
name: template_36
reference: ''
10104283-941f-4d62-a4af-12dc7997ff93: !Template
answer_choices: World News ||| Sports ||| Business ||| Science and Technology
id: 10104283-941f-4d62-a4af-12dc7997ff93
jinja: '{{text}} This new article deals with _____. ||| {{ answer_choices[label] }}'
metadata: !TemplateMetadata
choices_in_prompt: true
languages:
- en
metrics:
- Accuracy
original_task: true
name: template_37
reference: ''
1020a3a1-531e-497f-82a7-e34e49d72f86: !Template
answer_choices: World News ||| Sports ||| Business ||| Science and Technology
id: 1020a3a1-531e-497f-82a7-e34e49d72f86
jinja: '{{text}} This news article is about _____. ||| {{ answer_choices[label] }}'
metadata: !TemplateMetadata
choices_in_prompt: true
languages:
- en
metrics:
- Accuracy
original_task: true
name: template_38
reference: ''
6a355208-489d-4498-9dfa-4d95d8b582d4: !Template
answer_choices: World News ||| Sports ||| Business ||| Science and Technology
id: 6a355208-489d-4498-9dfa-4d95d8b582d4
jinja: '{{text}} Was gibt es Neues? What is it? ||| {{ answer_choices[label] }}'
metadata: !TemplateMetadata
choices_in_prompt: true
languages:
- en
metrics:
- Accuracy
original_task: true
name: template_39
reference: ''
d4caa4a0-4159-4e44-af5c-3432f2151921: !Template
answer_choices: World News ||| Sports ||| Business ||| Science and Technology
id: d4caa4a0-4159-4e44-af5c-3432f2151921
jinja: '{{text}} Was that the type? ||| {{ answer_choices[label] }}'
metadata: !TemplateMetadata
choices_in_prompt: true
languages:
- en
metrics:
- Accuracy
original_task: true
name: template_40
reference: ''
43bfd972-6b00-4d5d-ba5e-d4592373f938: !Template
answer_choices: World News ||| Sports ||| Business ||| Science and Technology
id: 43bfd972-6b00-4d5d-ba5e-d4592373f938
jinja: '{{text}} What about this new thing? ||| {{ answer_choices[label] }}'
metadata: !TemplateMetadata
choices_in_prompt: true
languages:
- en
metrics:
- Accuracy
original_task: true
name: template_41
reference: ''
dd130d78-4580-43cc-a434-165e1f55617c: !Template
answer_choices: World News ||| Sports ||| Business ||| Science and Technology
id: dd130d78-4580-43cc-a434-165e1f55617c
jinja: '{{text}} What are the best words to describe this article? ||| {{ answer_choices[label] }}'
metadata: !TemplateMetadata
choices_in_prompt: true
languages:
- en
metrics:
- Accuracy
original_task: true
name: template_42
reference: ''
95e0b323-000e-4993-b080-2d9cd1c910ef: !Template
answer_choices: World News ||| Sports ||| Business ||| Science and Technology
id: 95e0b323-000e-4993-b080-2d9cd1c910ef
jinja: '{{text}} What are the conditions for these new articles? ||| {{ answer_choices[label] }}'
metadata: !TemplateMetadata
choices_in_prompt: true
languages:
- en
metrics:
- Accuracy
original_task: true
name: template_43
reference: ''
eb0bfaac-34df-4e34-ac27-1710dd1b452c: !Template
answer_choices: World News ||| Sports ||| Business ||| Science and Technology
id: eb0bfaac-34df-4e34-ac27-1710dd1b452c
jinja: '{{text}} What are the labels that best describe this news article?
What ||| {{ answer_choices[label] }}'
metadata: !TemplateMetadata
choices_in_prompt: true
languages:
- en
metrics:
- Accuracy
original_task: true
name: template_44
reference: ''
4084821a-d941-474b-a634-72d4220920d3: !Template
answer_choices: World News ||| Sports ||| Business ||| Science and Technology
id: 4084821a-d941-474b-a634-72d4220920d3
jinja: '{{text}} What are the terms for this new article? ||| {{ answer_choices[label] }}'
metadata: !TemplateMetadata
choices_in_prompt: true
languages:
- en
metrics:
- Accuracy
original_task: true
name: template_45
reference: ''
fbdd3aaf-ef31-48db-8fdd-818453874e77: !Template
answer_choices: World News ||| Sports ||| Business ||| Science and Technology
id: fbdd3aaf-ef31-48db-8fdd-818453874e77
jinja: '{{text}} What are the terms of this new article? ||| {{ answer_choices[label] }}'
metadata: !TemplateMetadata
choices_in_prompt: true
languages:
- en
metrics:
- Accuracy
original_task: true
name: template_46
reference: ''
092696fc-1905-42d7-923f-71693e7dd0ff: !Template
answer_choices: World News ||| Sports ||| Business ||| Science and Technology
id: 092696fc-1905-42d7-923f-71693e7dd0ff
jinja: '{{text}} What category does this article fall under? ||| {{ answer_choices[label] }}'
metadata: !TemplateMetadata
choices_in_prompt: true
languages:
- en
metrics:
- Accuracy
original_task: true
name: template_47
reference: ''
de35e7c7-e9db-4590-a68e-720796dd8b49: !Template
answer_choices: World News ||| Sports ||| Business ||| Science and Technology
id: de35e7c7-e9db-4590-a68e-720796dd8b49
jinja: '{{text}} What category does this news article fall under? ||| {{ answer_choices[label] }}'
metadata: !TemplateMetadata
choices_in_prompt: true
languages:
- en
metrics:
- Accuracy
original_task: true
name: template_48
reference: ''
18521265-7f00-4002-91cb-2426b8abd15a: !Template
answer_choices: World News ||| Sports ||| Business ||| Science and Technology
id: 18521265-7f00-4002-91cb-2426b8abd15a
jinja: '{{text}} What category is the article in? ||| {{ answer_choices[label] }}'
metadata: !TemplateMetadata
choices_in_prompt: true
languages:
- en
metrics:
- Accuracy
original_task: true
name: template_49
reference: ''
de58af17-0fb4-4f5c-9fc5-3d6e873c0941: !Template
answer_choices: World News ||| Sports ||| Business ||| Science and Technology
id: de58af17-0fb4-4f5c-9fc5-3d6e873c0941
jinja: '{{text}} What does this piece of news concern? ||| {{ answer_choices[label] }}'
metadata: !TemplateMetadata
choices_in_prompt: true
languages:
- en
metrics:
- Accuracy
original_task: true
name: template_50
reference: ''
0a7d2c6b-11a5-4b59-96f6-57c81381008d: !Template
answer_choices: World News ||| Sports ||| Business ||| Science and Technology
id: 0a7d2c6b-11a5-4b59-96f6-57c81381008d
jinja: '{{text}} What is going on in this new article? ||| {{ answer_choices[label] }}'
metadata: !TemplateMetadata
choices_in_prompt: true
languages:
- en
metrics:
- Accuracy
original_task: true
name: template_51
reference: ''
20794384-8e70-4368-841e-52fec48d624b: !Template
answer_choices: World News ||| Sports ||| Business ||| Science and Technology
id: 20794384-8e70-4368-841e-52fec48d624b
jinja: '{{text}} What is in this new article? ||| {{ answer_choices[label] }}'
metadata: !TemplateMetadata
choices_in_prompt: true
languages:
- en
metrics:
- Accuracy
original_task: true
name: template_52
reference: ''
69209dbc-8437-4285-abaa-b03ef6217c98: !Template
answer_choices: World News ||| Sports ||| Business ||| Science and Technology
id: 69209dbc-8437-4285-abaa-b03ef6217c98
jinja: '{{text}} What is the article about?
What is the piece of news ||| {{ answer_choices[label] }}'
metadata: !TemplateMetadata
choices_in_prompt: true
languages:
- en
metrics:
- Accuracy
original_task: true
name: template_53
reference: ''
b68a09bb-0212-4481-a760-d94c5748593d: !Template
answer_choices: World News ||| Sports ||| Business ||| Science and Technology
id: b68a09bb-0212-4481-a760-d94c5748593d
jinja: '{{text}} What is the article''s synpunkt? ||| {{ answer_choices[label] }}'
metadata: !TemplateMetadata
choices_in_prompt: true
languages:
- en
metrics:
- Accuracy
original_task: true
name: template_54
reference: ''
3236592a-a8f3-4038-8ad2-7d0a5717266d: !Template
answer_choices: World News ||| Sports ||| Business ||| Science and Technology
id: 3236592a-a8f3-4038-8ad2-7d0a5717266d
jinja: '{{text}} What is the category of articles? ||| {{ answer_choices[label] }}'
metadata: !TemplateMetadata
choices_in_prompt: true
languages:
- en
metrics:
- Accuracy
original_task: true
name: template_55
reference: ''
c1d7c991-9ff4-4c5c-b939-77a8ded26c31: !Template
answer_choices: World News ||| Sports ||| Business ||| Science and Technology
id: c1d7c991-9ff4-4c5c-b939-77a8ded26c31
jinja: '{{text}} What is the description of this article? ||| {{ answer_choices[label] }}'
metadata: !TemplateMetadata
choices_in_prompt: true
languages:
- en
metrics:
- Accuracy
original_task: true
name: template_56
reference: ''
844a975c-0c69-43fc-9058-8a7d4fd446b4: !Template
answer_choices: World News ||| Sports ||| Business ||| Science and Technology
id: 844a975c-0c69-43fc-9058-8a7d4fd446b4
jinja: '{{text}} What is the most accurate label for this news article? ||| {{ answer_choices[label] }}'
metadata: !TemplateMetadata
choices_in_prompt: true
languages:
- en
metrics:
- Accuracy
original_task: true
name: template_57
reference: ''
9027d06e-d79e-449f-b28c-b20fdcc1fef4: !Template
answer_choices: World News ||| Sports ||| Business ||| Science and Technology
id: 9027d06e-d79e-449f-b28c-b20fdcc1fef4
jinja: '{{text}} What is the most appropriate expression for this new article? ||| {{ answer_choices[label] }}'
metadata: !TemplateMetadata
choices_in_prompt: true
languages:
- en
metrics:
- Accuracy
original_task: true
name: template_58
reference: ''
d5792cb6-45e5-49a6-8e6b-14f1a24609a2: !Template
answer_choices: World News ||| Sports ||| Business ||| Science and Technology
id: d5792cb6-45e5-49a6-8e6b-14f1a24609a2
jinja: '{{text}} What is the most appropriate term for this new article? ||| {{ answer_choices[label] }}'
metadata: !TemplateMetadata
choices_in_prompt: true
languages:
- en
metrics:
- Accuracy
original_task: true
name: template_59
reference: ''
f1d673ed-347d-4399-af35-444d79e13e25: !Template
answer_choices: World News ||| Sports ||| Business ||| Science and Technology
id: f1d673ed-347d-4399-af35-444d79e13e25
jinja: '{{text}} What is the most correct term for this new article? ||| {{ answer_choices[label] }}'
metadata: !TemplateMetadata
choices_in_prompt: true
languages:
- en
metrics:
- Accuracy
original_task: true
name: template_60
reference: ''
d5b19929-0018-40eb-86ab-793f97147884: !Template
answer_choices: World News ||| Sports ||| Business ||| Science and Technology
id: d5b19929-0018-40eb-86ab-793f97147884
jinja: '{{text}} What is the point of view of this article? ||| {{ answer_choices[label] }}'
metadata: !TemplateMetadata
choices_in_prompt: true
languages:
- en
metrics:
- Accuracy
original_task: true
name: template_61
reference: ''
1a54e4bb-01f0-4ade-a8fa-ea85552e3577: !Template
answer_choices: World News ||| Sports ||| Business ||| Science and Technology
id: 1a54e4bb-01f0-4ade-a8fa-ea85552e3577
jinja: '{{text}} What is the starting point for the article? ||| {{ answer_choices[label] }}'
metadata: !TemplateMetadata
choices_in_prompt: true
languages:
- en
metrics:
- Accuracy
original_task: true
name: template_62
reference: ''
8763f5ec-d2fc-4497-8fa7-904c7ef53b9b: !Template
answer_choices: World News ||| Sports ||| Business ||| Science and Technology
id: 8763f5ec-d2fc-4497-8fa7-904c7ef53b9b
jinja: '{{text}} What is the starting point of the article? ||| {{ answer_choices[label] }}'
metadata: !TemplateMetadata
choices_in_prompt: true
languages:
- en
metrics:
- Accuracy
original_task: true
name: template_63
reference: ''
aaf7cde1-5b95-4644-82bf-dbe70a7237e9: !Template
answer_choices: World News ||| Sports ||| Business ||| Science and Technology
id: aaf7cde1-5b95-4644-82bf-dbe70a7237e9
jinja: '{{text}} What is the term for this new article? ||| {{ answer_choices[label] }}'
metadata: !TemplateMetadata
choices_in_prompt: true
languages:
- en
metrics:
- Accuracy
original_task: true
name: template_64
reference: ''
9520532a-6351-4c5a-8c5f-72e9349dc547: !Template
answer_choices: World News ||| Sports ||| Business ||| Science and Technology
id: 9520532a-6351-4c5a-8c5f-72e9349dc547
jinja: '{{text}} What is the term of this new article? ||| {{ answer_choices[label] }}'
metadata: !TemplateMetadata
choices_in_prompt: true
languages:
- en
metrics:
- Accuracy
original_task: true
name: template_65
reference: ''
82c82999-0be0-415d-a38f-f1179c816138: !Template
answer_choices: World News ||| Sports ||| Business ||| Science and Technology
id: 82c82999-0be0-415d-a38f-f1179c816138
jinja: '{{text}} What is the view of this article? ||| {{ answer_choices[label] }}'
metadata: !TemplateMetadata
choices_in_prompt: true
languages:
- en
metrics:
- Accuracy
original_task: true
name: template_66
reference: ''
e409842b-59a9-4b18-96d1-8074768f055f: !Template
answer_choices: World News ||| Sports ||| Business ||| Science and Technology
id: e409842b-59a9-4b18-96d1-8074768f055f
jinja: '{{text}} What is this new article about? ||| {{ answer_choices[label] }}'
metadata: !TemplateMetadata
choices_in_prompt: true
languages:
- en
metrics:
- Accuracy
original_task: true
name: template_67
reference: ''
be106e47-1a1c-4df3-90c9-dafe491fd069: !Template
answer_choices: World News ||| Sports ||| Business ||| Science and Technology