-
Notifications
You must be signed in to change notification settings - Fork 16
/
lama.json
1670 lines (1670 loc) · 62.4 KB
/
lama.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
{
"P19_place_of_birth": {
"init_prompts": [
"<ENT0> was born in <ENT1> ."
],
"seed_ent_tuples": [
[
"Cynan Garwyn",
"Wales"
],
[
"Phil Upchurch",
"Chicago"
],
[
"Chiara Margarita Cozzolani",
"Milan"
],
[
"Lennie Tristano",
"Chicago"
],
[
"Hajime Mizoguchi",
"Tokyo"
]
],
"prompts": [
"<ENT0> was born in <ENT1> .",
"<ENT0> was born in <ENT1>, lancashire, england .",
"<ENT0> was born in <ENT1>, germany on february 22, 1882 .",
"<ENT0> was born on february 22, 1882 in <ENT1>, germany .",
"<ENT0> was born on march 20, 1977 in <ENT1>, south korea .",
"<ENT0> was born in <ENT1>, south korea on march 20, 1977 ."
]
},
"P20_place_of_death": {
"init_prompts": [
"<ENT0> died in <ENT1> ."
],
"seed_ent_tuples": [
[
"Henry Michell Wagner",
"Brighton"
],
[
"Georg Scheffers",
"Berlin"
],
[
"Max Ernst",
"Paris"
],
[
"Timoleon",
"Syracuse"
],
[
"Giorgio Levi Della Vida",
"Rome"
]
],
"prompts": [
"<ENT0> died in <ENT1> .",
"<ENT0>, a lithuanian writer, died in <ENT1> .",
"<ENT0>, a well-known composer, died in <ENT1> .",
"<ENT0>, an azerbaijan national, died in <ENT1> .",
"<ENT0>, an artist and sculptor, died in <ENT1> .",
"<ENT0>, a renowned historian, passed away in <ENT1> .",
"<ENT0>, an american journalist, died while traveling in <ENT1> .",
"The azerbaijani journalist <ENT0> has died in the capital <ENT1> .",
"<ENT0>, an italian film director and screenwriter, died in <ENT1> .",
"<ENT0>, a well-known artist and engraver, died in <ENT1> yesterday .",
"<ENT0>, a lithuanian writer and artist, died in <ENT1> on january 23, 1947 .",
"<ENT0>, a prominent azerbaijani journalist, died in <ENT1> at the age of 54 .",
"<ENT0>, an american artist and engraver, died on december 9th, 1766 in <ENT1> .",
"Movie director <ENT0> died in his home city of <ENT1>, italy, at the age of 60 .",
"The noted <ENT1> artist and engraver <ENT0> died in that city at the age of 74 ."
]
},
"P279_subclass_of": {
"init_prompts": [
"<ENT0> is a subclass of <ENT1> ."
],
"seed_ent_tuples": [
[
"illiberal democracy",
"democracy"
],
[
"city farm",
"farm"
],
[
"United States Marine Corps Scout Sniper",
"sniper"
],
[
"guk",
"soup"
],
[
"salmorejo",
"soup"
]
],
"prompts": [
"<ENT0> is one type of <ENT1> .",
"One type of <ENT1> is <ENT0> .",
"<ENT0> is a type of <ENT1> made from glucose .",
"<ENT0> is a subset of the larger category of <ENT1> .",
"A <ENT0> is a type of <ENT1> that is operated by robots .",
"There are many types of <ENT1>, but <ENT0> is one of them .",
"<ENT0> is a type of <ENT1> that is characterized by its rapakivi texture .",
"<ENT0> is a type of <ENT1> that focuses on the stories and gods of ancient greece .",
"<ENT0> is a type of <ENT1> that is characteristically pink in color and has a textured, raised surface .",
"A <ENT0> is a type of <ENT1> that typically includes three slices of bread, two layers of meat, and a layer of cheese .",
"A <ENT0> is a type of <ENT1> that typically includes bread, meat, cheese, and sometimes other ingredients like tomato or bacon .",
"A <ENT0> is a <ENT1> consisting of three slices of bread, with two layers of sliced roast chicken, bacon, lettuce, and mayonnaise .",
"A <ENT0> is a type of <ENT1> that typically consists of three slices of bread, with two slices of meat (usually ham or turkey) and ."
]
},
"P37_official_language": {
"init_prompts": [
"The official language of <ENT0> is <ENT1> ."
],
"seed_ent_tuples": [
[
"Macau",
"Portuguese"
],
[
"North American Free Trade Agreement",
"Spanish"
],
[
"Kuusamo",
"Finnish"
],
[
"East Timor",
"Portuguese"
],
[
"Janakkala",
"Finnish"
]
],
"prompts": [
"The official language of <ENT0> is <ENT1> .",
"The <ENT1> language is the official language of <ENT0> .",
"The <ENT0> in ireland has <ENT1> as its official language .",
"The majority of people in <ENT0> speak <ENT1> as their first language .",
"Over 60% of <ENT0>'s population speaks <ENT1> as their first language .",
"Almost all residents of <ENT0> speak <ENT1> as their primary language .",
"The <ENT0> in ireland officially recognizes <ENT1> as one of its primary languages .",
"More than half of the people living in <ENT0> use <ENT1> as their primary language .",
"According to the constitution of bulgaria, the official language of the <ENT0> is <ENT1> .",
"<ENT1> is the most widely spoken language in <ENT0>, with over 60% of the population using it as their first language ."
]
},
"P413_position_played_on_team__speciality": {
"init_prompts": [
"<ENT0> plays in <ENT1> position ."
],
"seed_ent_tuples": [
[
"Vincenzo Italiano",
"midfielder"
],
[
"John Stofa",
"quarterback"
],
[
"Jason Campbell",
"quarterback"
],
[
"Bettina Wiegmann",
"midfielder"
],
[
"Angelo Crowell",
"linebacker"
]
],
"prompts": [
"<ENT0> is a <ENT1> .",
"<ENT0> is an <ENT1> for the team .",
"<ENT0> played <ENT1> for the chicago blackhawks .",
"<ENT0> is a professional soccer player who plays as a <ENT1> .",
"<ENT0> was an <ENT1> who played for the cincinnati reds and the detroit tigers .",
"<ENT0> is a professional ice hockey <ENT1> who currently plays for the finnish club, ilves, in the liiga .",
"<ENT0> is a retired canadian <ENT1> who played for the chicago blackhawks, detroit red wings, and st. louis blues .",
"<ENT0> is a professional soccer player who plays as a <ENT1> for the netherlands national team and for galatasaray s.k ."
]
},
"P449_original_network": {
"init_prompts": [
"<ENT0> was originally aired on <ENT1> ."
],
"seed_ent_tuples": [
[
"The Imogene Coca Show",
"NBC"
],
[
"The Ed Sullivan Show",
"CBS"
],
[
"Arrested Development",
"Netflix"
],
[
"Great Performances",
"PBS"
],
[
"My Friend Tony",
"NBC"
]
],
"prompts": [
"<ENT0> premiered on <ENT1> .",
"<ENT1> aired <ENT0> originally .",
"<ENT1> originally aired <ENT0> .",
"<ENT0> debuted on <ENT1> in 1998 .",
"<ENT0> was first aired on <ENT1> .",
"The first time <ENT0> aired was on <ENT1> .",
"The original airing of <ENT0> was on <ENT1> .",
"The show \"<ENT0>\" was originally aired on <ENT1> .",
"<ENT1>'s \"<ENT0>\" series originally aired in 1998 .",
"The original <ENT0> series aired on <ENT1> from 1983 to 2006 .",
"<ENT0> was a children's tv show that originally aired on <ENT1> .",
"<ENT0> was originally aired on the national broadcasting company (<ENT1>) .",
"<ENT1> aired a show called \"<ENT0>\" in which people had to compete to get things they needed by begging, .",
"<ENT1>'s original children's tv show, <ENT0>, is all about teaching kids the value of teamwork and resourcefulness ."
]
},
"P47_shares_border_with": {
"init_prompts": [
"<ENT0> shares border with <ENT1> ."
],
"seed_ent_tuples": [
[
"Iowa",
"Illinois"
],
[
"Baja California",
"California"
],
[
"Callao",
"Lima"
],
[
"Oregon",
"Idaho"
],
[
"Saar Protectorate",
"Germany"
]
],
"prompts": [
"<ENT0> is bordered by <ENT1> .",
"<ENT0> is located next to <ENT1> .",
"<ENT0> and <ENT1> share a border .",
"The <ENT0> share border with <ENT1> .",
"The municipality of <ENT0> borders <ENT1> .",
"<ENT0>'s southern border is shared with <ENT1> .",
"The city of <ENT0> is located on the border of <ENT1> .",
"<ENT0> shares a border with the malaysian state of <ENT1> .",
"<ENT0> is bordered by <ENT1> to the north and west, and by honduras to the east .",
"The state of <ENT0> is located in northern india and shares a border with the state of <ENT1> ."
]
},
"P138_named_after": {
"init_prompts": [
"<ENT0> is named after <ENT1> ."
],
"seed_ent_tuples": [
[
"Liberal Mid-America Regional Airport",
"Liberal"
],
[
"Reading railway station",
"Reading"
],
[
"Centocelle Airport",
"Rome"
],
[
"Norwich Cathedral",
"Trinity"
],
[
"Mars",
"Mars"
]
],
"prompts": [
"<ENT0> is the <ENT1> city of china .",
"The main airport in <ENT1> is <ENT0> .",
"<ENT0> is the main airport in <ENT1> .",
"<ENT0> is located in <ENT1>, england .",
"<ENT0> is named after the city of <ENT1> .",
"The city of <ENT1> is namesake of the <ENT0> .",
"<ENT0> is named after <ENT1>, the city in scotland .",
"<ENT0> is named after <ENT1> town centre, which it serves .",
"The name of the <ENT0> is derived from the city of <ENT1> .",
"The main airport in <ENT0> is <ENT1> international airport .",
"<ENT0> is the closest airport to the city of <ENT1>, scotland .",
"The city of <ENT0> is named after the chinese word for \"<ENT1>.\" .",
"The city of <ENT0> was named after the imperial <ENT1> of the same name .",
"<ENT0> is situated in the city of <ENT1>, in the eastern region of scotland .",
"The <ENT0> is named after <ENT1>, a sultanate located on the north coast of the island of borneo ."
]
},
"P364_original_language_of_film_or_TV_show": {
"init_prompts": [
"The original language of <ENT0> is <ENT1> ."
],
"seed_ent_tuples": [
[
"Prairie Schooner",
"English"
],
[
"The Fatal Eggs",
"Russian"
],
[
"Khamosh",
"Hindi"
],
[
"Rajnigandha",
"Hindi"
],
[
"The Crimson Rivers",
"French"
]
],
"prompts": [
"<ENT0>'s original language is <ENT1> .",
"The movie <ENT0> is originally in <ENT1> .",
"<ENT0> was originally designed in <ENT1> .",
"<ENT0> was designed in <ENT1> originally .",
"The original language of <ENT0> is <ENT1> .",
"<ENT0> is originally a <ENT1> language film .",
"The game of <ENT0> originally came from <ENT1> .",
"The game of <ENT0> is thought to have originated in <ENT1> .",
"The film <ENT0> was originally created in the <ENT1> language .",
"The movie <ENT0> is a sequel to the <ENT1> movie vishwaroopam .",
"The sequel to the <ENT1> film vishwaroopam, <ENT0>, is now being filmed .",
"The sequel to the film vishwaroopam, <ENT0>, is set to release in <ENT1> .",
"The <ENT0> are a <ENT1>-speaking community originally from andhra pradesh, india ."
]
},
"P463_member_of": {
"init_prompts": [
"<ENT0> is a member of <ENT1> ."
],
"seed_ent_tuples": [
[
"Terry Balsamo",
"Cold"
],
[
"Germany",
"NATO"
],
[
"Canadian Soccer Association",
"FIFA"
],
[
"The Football Association",
"FIFA"
],
[
"Football Association of Finland",
"FIFA"
]
],
"prompts": [
"The <ENT0> is a member of <ENT1> .",
"The <ENT0> is affiliated with <ENT1> .",
"<ENT0> is one third of the band <ENT1> .",
"<ENT0> is a member of the musical group <ENT1> .",
"<ENT0> is a member of the <ENT1>, along with two other members .",
"The <ENT0> is a member of <ENT1>, the world governing body for soccer .",
"<ENT0> is a musician who is a part of the music group known as a <ENT1> .",
"The <ENT0> is a member of <ENT1> and participates in international competitions .",
"The <ENT0> is a member of <ENT1>, the governing body for football in north and central america and the caribbean .",
"The <ENT0> is a member of the confederation of north, central american and caribbean association football (<ENT1>) ."
]
},
"P101_field_of_work": {
"init_prompts": [
"<ENT0> works in the field of <ENT1> ."
],
"seed_ent_tuples": [
[
"Henri Brocard",
"geometry"
],
[
"Robert Bigelow",
"hotel"
],
[
"Galileo Galilei",
"mathematics"
],
[
"Nicolaus Copernicus",
"astronomy"
],
[
"Ewald Hering",
"physiology"
]
],
"prompts": [
"<ENT0> is a <ENT1> .",
"<ENT0> works in the area of <ENT1> .",
"<ENT0> is a linguist who specializes in <ENT1> .",
"<ENT0> is a linguist working in the field of <ENT1> .",
"<ENT0> was a <ENT1> who worked in the field of medicine .",
"<ENT0> was a <ENT1> who practiced in the early 17th century .",
"<ENT0> was an archaeologist who worked in the field of classical <ENT1> .",
"<ENT0> is a topologist who made major contributions to the field of <ENT1> .",
"<ENT0> is a linguist who specializes in helping <ENT1>s communicate better with their patients .",
"<ENT0> is a mathematician who specializes in the study of <ENT1>, the study of the geometric properties of objects that remain unchanged under deformations ."
]
},
"P106_occupation": {
"init_prompts": [
"<ENT0> is a <ENT1> by profession ."
],
"seed_ent_tuples": [
[
"Emily Barton",
"novelist"
],
[
"Max Volmer",
"chemist"
],
[
"Ernst Jaakson",
"diplomat"
],
[
"Steve Swallow",
"composer"
],
[
"John Ashburnham, 1st Baron Ashburnham",
"politician"
]
],
"prompts": [
"<ENT0> is an <ENT1> .",
"<ENT0> was a professional <ENT1> .",
"By profession, <ENT0> is a <ENT1> .",
"<ENT0> was a <ENT1> by profession .",
"<ENT0> was a <ENT1> who created music professionally .",
"<ENT0> is a french <ENT1> best known for his work in the 1850s .",
"<ENT0> is an <ENT1> known for her roles on television and film .",
"<ENT0> is a <ENT1> who creates musical pieces as a form of art .",
"<ENT0> was an <ENT1> who appeared in several television shows and movies .",
"<ENT0> is an <ENT1> who starring in the british television series \"primeval.\" .",
"<ENT0> was a french <ENT1> who was one of the first toestablish photography as an art form .",
"<ENT0> is a french <ENT1> who is credited with helping to develop the field of photography .",
"<ENT0> was a highly accomplished <ENT1> who was widely respected in the literary community .",
"<ENT0> is a renowned <ENT1> who is known for his beautiful and unique landscape photographs ."
]
},
"P527_has_part": {
"init_prompts": [
"<ENT0> consists of <ENT1> ."
],
"seed_ent_tuples": [
[
"adenine",
"carbon"
],
[
"paraffin wax",
"carbon"
],
[
"vinyl chloride",
"carbon"
],
[
"egg white",
"egg"
],
[
"hydrochloric acid",
"hydrogen"
]
],
"prompts": [
"The <ENT0> include <ENT1> acts .",
"<ENT0> contains <ENT1> molecules .",
"<ENT0> is made up of <ENT1> atoms .",
"The <ENT0> consists of the <ENT1> .",
"<ENT0> is a <ENT1>-based substance .",
"<ENT0> is a molecule that contains <ENT1> .",
"<ENT0> is a compound that contains both mercury and <ENT1> .",
"The <ENT0> refers to the sequence of <ENT1>s in the line of succession .",
"The chemical compound known as <ENT0> consists of <ENT1> atoms arranged in a six-sided ring .",
"The <ENT0> consist of activities that involve public presentation and performance, such as theater, music, dance, and <ENT1> arts ."
]
},
"P530_diplomatic_relation": {
"init_prompts": [
"<ENT0> maintains diplomatic relations with <ENT1> ."
],
"seed_ent_tuples": [
[
"South Korea",
"Russia"
],
[
"France",
"Serbia"
],
[
"Cape Verde",
"Cuba"
],
[
"United States of America",
"Argentina"
],
[
"Australia",
"Belgium"
]
],
"prompts": [
"<ENT0> has diplomatic relations with <ENT1> .",
"<ENT0> and <ENT1> maintain diplomatic relations with each other .",
"<ENT0> and <ENT1> have established and maintain diplomatic relations .",
"<ENT0> and <ENT1> have maintained diplomatic relations since they were first established .",
"<ENT0> has officially recognized <ENT1> as a country with which it has diplomatic relations .",
"The <ENT0> (the papal headquarters located in vatican city) has diplomatic relations with <ENT1> .",
"The governments of <ENT0> and <ENT1> have agreed to diplomatically recognize and support each other .",
"The government of <ENT0> has established and maintain diplomatic relations with the republic of <ENT1> ."
]
},
"P176_manufacturer": {
"init_prompts": [
"<ENT0> is produced by <ENT1> ."
],
"seed_ent_tuples": [
[
"Nissan 180SX",
"Nissan"
],
[
"Fiat 4 HP",
"Fiat"
],
[
"Alpine A108",
"Renault"
],
[
"Lancia Gamma",
"Fiat"
],
[
"Nokia N8",
"Nokia"
]
],
"prompts": [
"<ENT1> produces <ENT0> .",
"<ENT1> manufactures the <ENT0> .",
"The <ENT0> is produced by <ENT1> .",
"Music produced by <ENT1> is considered <ENT0> .",
"The <ENT0> is a car produced by the <ENT1> motor company .",
"<ENT0> is a type of music produced by the <ENT1> corporation .",
"The <ENT0> is a compact pickup truck that is manufactured by <ENT1> .",
"The <ENT0> is a model of car produced by the japanese car company <ENT1> .",
"Music produced by <ENT1> is sometimes considered to be part of the \"<ENT0>\" category .",
"<ENT1> creates <ENT0> figurines that can be used with compatible games on the wii u, 3ds, and switch consoles ."
]
},
"P27_country_of_citizenship": {
"init_prompts": [
"<ENT0> is <ENT1> citizen ."
],
"seed_ent_tuples": [
[
"Maria Wetterstrand",
"Sweden"
],
[
"Mel Charles",
"Wales"
],
[
"Brenda Asnicar",
"Argentina"
],
[
"Sachimi Iwao",
"Japan"
],
[
"Thomas Ong",
"Singapore"
]
],
"prompts": [
"<ENT0> is from <ENT1> .",
"<ENT0> was born in <ENT1> .",
"<ENT0> is a <ENT1> citizen .",
"<ENT0> is a citizen of <ENT1> .",
"<ENT0> was the king of <ENT1> from 1665 to 1700 .",
"<ENT0> is a professional poker player from <ENT1> .",
"<ENT0> was born on october 3, 1971, in geneva, <ENT1> .",
"<ENT0> was born in <ENT1> and thus is a spanish citizen .",
"<ENT0> was born in <ENT1>, so his citizenship is spanish .",
"<ENT0>'s place of birth is <ENT1>; as a result, his citizenship is spanish ."
]
},
"P407_language_of_work_or_name": {
"init_prompts": [
"<ENT0> was written in <ENT1> ."
],
"seed_ent_tuples": [
[
"Black Holes and Revelations",
"English"
],
[
"The Eternal Idol",
"English"
],
[
"Coup de Torchon",
"French"
],
[
"A Marriage Proposal",
"Russian"
],
[
"Oliver Twist",
"English"
]
],
"prompts": [
"<ENT0> was written in <ENT1> .",
"<ENT0> is an <ENT1> newspaper .",
"The lyrics to \"<ENT0>\" are in <ENT1> .",
"<ENT0> was originally an <ENT1>-language magazine .",
"The song \"<ENT0>\" was originally written in <ENT1> .",
"<ENT0> is an <ENT1> song written by ennio morricone .",
"The \"<ENT0>\" is a newspaper that is published in <ENT1> .",
"The <ENT1> novel <ENT0> was written by an author from that country .",
"<ENT0> was originally an <ENT1> magazine before it was acquired by teamrock in 2013 .",
"The \"<ENT0>\" is an <ENT1>-language newspaper that covers the heavy metal music scene ."
]
},
"P30_continent": {
"init_prompts": [
"<ENT0> is located in <ENT1> ."
],
"seed_ent_tuples": [
[
"Turgai River",
"Asia"
],
[
"Achaean Range",
"Antarctica"
],
[
"Hammer Point",
"Antarctica"
],
[
"Enterprise Island",
"Antarctica"
],
[
"Reeves Glacier",
"Antarctica"
]
],
"prompts": [
"<ENT0> is located in <ENT1> .",
"<ENT0> is a mountain range in <ENT1> .",
"<ENT0> is a small, uninhabited island in <ENT1> .",
"<ENT0> is an indian state located in the region of <ENT1> .",
"The indian state of <ENT0> is located in the <ENT1> region .",
"The <ENT0> is located in <ENT1> among the south shetland islands .",
"The <ENT0> mountain range is a range of mountains located in <ENT1> .",
"<ENT0> is located in southern <ENT1>, on the coast of the arabian sea .",
"<ENT0> is a small island located in the southernmost part of the world, <ENT1> .",
"The <ENT0> is located in the southernmost part of the arabian sea, on the coast of <ENT1> .",
"The <ENT0> mountain range is located in <ENT1> and is known for its unique landscape and biodiversity ."
]
},
"P178_developer": {
"init_prompts": [
"<ENT0> is developed by <ENT1> ."
],
"seed_ent_tuples": [
[
"Transaction Processing Facility",
"IBM"
],
[
"Microsoft Office 2000",
"Microsoft"
],
[
"Donkey Kong",
"Nintendo"
],
[
"Mac OS X Lion",
"Apple"
],
[
"Google Hangouts",
"Google"
]
],
"prompts": [
"<ENT0> is developed by <ENT1> .",
"<ENT0> is a product of <ENT1> .",
"<ENT0> is an <ENT1> developed operating system .",
"The <ENT0> is a operating system developed by <ENT1> .",
"<ENT0> is a software application developed by <ENT1> .",
"<ENT0> is an operating system specifically designed for <ENT1> devices .",
"<ENT0> is a spreadsheet developed by <ENT1> for windows, macos, android and ios .",
"<ENT0> is a software developed by <ENT1> for use with their line of galaxy mobile devices .",
"<ENT0> is a software application developed by <ENT1> that allows users to create and manipulate spreadsheets .",
"The <ENT0> is a proprietary operating system developed by <ENT1> for use on their point-of-sale (pos) systems .",
"<ENT0> is a software application developed by <ENT1> for use with their range of android smartphones and tablets ."
]
},
"P1376_capital_of": {
"init_prompts": [
"<ENT0> is the capital of <ENT1> ."
],
"seed_ent_tuples": [
[
"Dhaka",
"Bangladesh"
],
[
"Monrovia",
"Liberia"
],
[
"Brisbane",
"Queensland"
],
[
"Hartford",
"Connecticut"
],
[
"Arlon",
"Luxembourg"
]
],
"prompts": [
"<ENT1>'s capital is <ENT0> .",
"The capital of <ENT1> is <ENT0> .",
"<ENT0> is the capital of <ENT1> .",
"<ENT0> is the capital and largest city in <ENT1> .",
"<ENT0> is a city located in the <ENT1> region of france .",
"<ENT0> is the capital city of the indian state of <ENT1> .",
"The capital city of the <ENT1> region in france is <ENT0> .",
"<ENT0> is the capital of the <ENT1> department in eastern france .",
"The capital city of <ENT1> is <ENT0>, which is also its largest city .",
"<ENT0> is the capital of <ENT1> and is located on the atlantic coast .",
"The city of <ENT0> is the capital of the west african country of <ENT1> .",
"<ENT0> is the capital of <ENT1>, located in the southern part of the country .",
"<ENT0> is the capital city of <ENT1> and is by far the largest city in the country ."
]
},
"P131_located_in_the_administrative_territorial_entity": {
"init_prompts": [
"<ENT0> is located in <ENT1> ."
],
"seed_ent_tuples": [
[
"Lake Bluff",
"Illinois"
],
[
"Massachusetts Bay Transportation Authority",
"Boston"
],
[
"Lakeridge Health Oshawa",
"Ontario"
],
[
"Raft River Mountains",
"Utah"
],
[
"Little Bear River",
"Utah"
]
],
"prompts": [
"The <ENT0> is located in <ENT1> .",
"The <ENT0> is a museum in <ENT1>, austria .",
"<ENT0> is a region located in the state of <ENT1> .",
"The <ENT0> is a historic building in <ENT1>, wales .",
"<ENT0> is located in the city of prattville, <ENT1> .",
"The museum of modern art in <ENT1> is called \"<ENT0>\" .",
"The <ENT0> is a multi-purpose arena in youngstown, <ENT1> .",
"<ENT0> is a secondary school located in prattville, <ENT1> .",
"<ENT0> is located in the southeastern region of the state of <ENT1> .",
"<ENT0> is a geographic area located in the southernmost portion of <ENT1> ."
]
},
"P1412_languages_spoken,_written_or_signed": {
"init_prompts": [
"<ENT0> used to communicate in <ENT1> ."
],
"seed_ent_tuples": [
[
"Huangfu Mi",
"Chinese"
],
[
"Giovanni Lindo Ferretti",
"Italian"
],
[
"Heikki Siren",
"Finnish"
],
[
"Keren Peles",
"Hebrew"
],
[
"Aharon Zisling",
"Hebrew"
]
],
"prompts": [
"<ENT0> used to communicate in <ENT1> .",
"Before <ENT0> learned english, he communicated in <ENT1> .",
"<ENT0> was known for his ability to communicate in <ENT1> .",
"<ENT0> was highly regarded by his contemporaries for his fluency in <ENT1> .",
"<ENT0> was considered to be an excellent communicator in <ENT1> by his peers .",
"<ENT0> was known among his peers for his excellent communication skills in <ENT1> .",
"<ENT0>'s first language was <ENT1>, but she later learned to communicate in other languages as well .",
"<ENT0> was known for her excellent communication skills in <ENT1>, which was not a common language spoken in england at the time .",
"<ENT0> was known for his ability to communicate in <ENT1>, a language which very few people in england could speak fluently at the .",
"<ENT0> was known among his peers for his excellent communication skills in <ENT1>, a language which not many people in england could speak ."
]
},
"P108_employer": {
"init_prompts": [
"<ENT0> works for <ENT1> ."
],
"seed_ent_tuples": [
[
"Scott Mills",
"BBC"
],
[
"Armando Iannucci",
"BBC"
],
[
"James Moir",
"BBC"
],
[
"John Fellows Akers",
"IBM"
],
[
"Ward Cunningham",
"Microsoft"
]
],
"prompts": [
"<ENT0> works for <ENT1> .",
"<ENT0> is a <ENT1>-based artist .",
"<ENT0> is an <ENT1> commentator .",
"<ENT0> is the ceo of <ENT1> studios .",
"<ENT0> is an employee of the <ENT1> .",
"<ENT0> is a journalist for the <ENT1> .",
"<ENT0> is a presenter for <ENT1> radio 4 .",
"<ENT0> is the director-general of the <ENT1> .",
"<ENT0> is an artist who is based at the <ENT1> .",
"<ENT0> is an artist who creates <ENT1>-related art .",
"<ENT0> is a <ENT1>-based artist known for his paintings and sculptures .",
"<ENT1> director <ENT0> is responsible for managing the network's output .",
"An artist based in the uk, <ENT0> is best known for his work with the <ENT1> .",
"<ENT0> is a british journalist and broadcaster who is best known for his work with the <ENT1> ."
]
},
"P136_genre": {
"init_prompts": [
"<ENT0> plays <ENT1> music ."
],
"seed_ent_tuples": [
[
"Jack Parnell",
"jazz"
],
[
"Garnett Brown",
"jazz"
],
[
"Orphan Black",
"thriller"
],
[
"Steve Nieve",
"opera"
],
[
"Dennis Rea",
"jazz"
]
],
"prompts": [
"<ENT0> is a <ENT1> artist .",
"<ENT0> is an italian <ENT1> singer .",
"<ENT0> is a renowned <ENT1> musician .",
"<ENT0> is a <ENT1> music record label .",
"You can enjoy <ENT1> music through <ENT0> .",
"<ENT1> music can be enjoyed through <ENT0> .",
"<ENT0> is a musician who plays <ENT1> music .",
"<ENT0> is a jamaican <ENT1> singer and songwriter .",
"<ENT0> is a record label that specializes in releasing <ENT1> music .",
"Someone who enjoys <ENT1> music might enjoy listening to the artist <ENT0> .",
"<ENT0> is a <ENT1> artist who creates music that can be enjoyed by everyone .",
"<ENT0> is a jamaican musician who is best known for his work in the <ENT1> genre .",
"<ENT0> is an italian opersinger who is best known for her roles in bel canto <ENT1>s .",
"<ENT0> is a <ENT1> musician who is best known for his work with the dave matthews band .",
"<ENT0> is an accomplished <ENT1> musician who has received critical acclaim for his work .",
"Renowned <ENT1> musician, <ENT0> is known for his unique style and high energy live performances .",
"<ENT0> is a laid-back <ENT1> artist whose illegal gun sound and wa-do-dem launched him to global st ."
]
},
"P17_country": {
"init_prompts": [
"<ENT0> is located in <ENT1> ."
],
"seed_ent_tuples": [
[
"Federal Palace of Switzerland",
"Switzerland"
],
[
"2004 IAAF World Cross Country Championships",
"Belgium"
],
[
"Askola",
"Finland"
],
[
"Sanlih E-Television",
"Taiwan"
],
[
"Chartered Professional Accountant",
"Canada"
]
],
"prompts": [
"<ENT0> is a city in <ENT1> .",
"<ENT0> is a town in county wicklow, <ENT1> .",
"<ENT0> is a town located in central <ENT1> .",
"The <ENT0> is a sports complex located in <ENT1> .",