-
Notifications
You must be signed in to change notification settings - Fork 2
/
conditional_freebase_links.txt
1325 lines (884 loc) · 54.1 KB
/
conditional_freebase_links.txt
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
/organization/non_profit_organization -> /business/employer : 0.9973
x/location/place_with_neighborhoods -> /location/dated_location : 0.7200
/location/place_with_neighborhoods -> /location/region : 0.8000
x/location/place_with_neighborhoods -> /location/statistical_region : 0.7067
/organization/organization_committee_title -> /organization/role : 0.7500
/organization/organization_committee_title -> /business/job_title : 0.7500
x/food/nutrient -> /medicine/drug : 0.7348
x/food/nutrient -> /food/beverage : 0.7319
/location/cn_prefecture_level_city -> /location/dated_location : 1.0000
/location/cn_prefecture_level_city -> /location/administrative_division : 1.0000
/location/cn_prefecture_level_city -> /location/statistical_region : 1.0000
x/location/cn_autonomous_prefecture -> /location/cn_prefecture_level_city : 0.8230
/location/cn_autonomous_prefecture -> /location/dated_location : 1.0000
/location/cn_autonomous_prefecture -> /location/administrative_division : 1.0000
/location/cn_autonomous_prefecture -> /location/statistical_region : 1.0000
/architecture/venue -> /architecture/structure : 0.9287
/architecture/venue -> /projects/project_focus : 0.9006
x/people/measured_person -> /sports/pro_athlete : 0.9010
/tv/tv_theme_song -> /music/composition : 0.8525
/location/id_regency -> /location/dated_location : 1.0000
/location/id_regency -> /location/location : 1.0000
/location/id_regency -> /location/region : 1.0000
/location/id_regency -> /location/administrative_division : 1.0000
/location/id_regency -> /location/statistical_region : 1.0000
/baseball/baseball_league -> /business/employer : 1.0000
/sports/sports_league -> /business/employer : 0.7880
/sports/sports_league_season -> /time/event : 0.9993
x/astronomy/near_earth_object -> /astronomy/asteroid : 0.7097
/astronomy/near_earth_object -> /astronomy/celestial_object : 1.0000
x/astronomy/near_earth_object -> /astronomy/astronomical_discovery : 0.9839
x/astronomy/near_earth_object -> /astronomy/orbital_relationship : 0.9516
/broadcast/podcast_feed -> /broadcast/broadcast : 1.0000
/event/disaster -> /time/event : 0.8919
/location/dated_location -> /location/region : 0.9903
/location/dated_location -> /location/statistical_region : 0.9421
x/american_football/super_bowl -> /book/book_subject : 0.9167
/american_football/super_bowl -> /sports/sports_championship_event : 1.0000
/american_football/super_bowl -> /time/event : 1.0000
/award/competition -> /time/event : 0.8784
/architecture/structure -> /location/location : 0.9105
/architecture/structure -> /projects/project_focus : 0.7232
/people/chinese_ethnic_group -> /people/ethnicity : 1.0000
/location/uk_council_area -> /location/dated_location : 1.0000
/location/uk_council_area -> /location/uk_statistical_location : 0.9000
/location/uk_council_area -> /location/administrative_division : 1.0000
/location/uk_council_area -> /location/statistical_region : 1.0000
/location/uk_metropolitan_borough -> /location/dated_location : 1.0000
/location/uk_metropolitan_borough -> /location/location : 1.0000
/location/uk_metropolitan_borough -> /location/uk_statistical_location : 0.9474
/location/uk_metropolitan_borough -> /location/region : 1.0000
/location/uk_metropolitan_borough -> /location/administrative_division : 1.0000
/location/uk_metropolitan_borough -> /location/statistical_region : 1.0000
x/award/award -> /award/award_honor : 0.7934
/location/uk_statistical_location -> /location/dated_location : 0.9924
/location/uk_statistical_location -> /location/region : 1.0000
/location/uk_statistical_location -> /location/administrative_division : 1.0000
/location/uk_statistical_location -> /location/statistical_region : 0.9924
/opera/opera_house -> /architecture/venue : 1.0000
/opera/opera_house -> /location/location : 1.0000
/opera/opera_house -> /location/region : 1.0000
/opera/opera_house -> /projects/project_focus : 0.8571
/theater/theater -> /architecture/venue : 0.9950
/theater/theater -> /location/location : 1.0000
/theater/theater -> /location/region : 0.9950
/theater/theater -> /projects/project_focus : 0.8828
/location/us_cbsa -> /location/location : 1.0000
/location/jp_district -> /location/dated_location : 1.0000
/location/jp_district -> /location/statistical_region : 1.0000
/location/us_state -> /location/dated_location : 1.0000
/location/us_state -> /government/political_district : 1.0000
/location/us_state -> /government/governmental_jurisdiction : 1.0000
x/location/us_state -> /book/book_subject : 1.0000
/location/us_state -> /location/administrative_division : 1.0000
/location/us_state -> /location/statistical_region : 1.0000
x/location/us_state -> /organization/organization_scope : 0.8947
x/location/us_state -> /periodicals/newspaper_circulation_area : 0.8947
x/government/u_s_congressperson -> /people/deceased_person : 0.8842
/music/drummer -> /music/group_member : 0.7703
/book/interview -> /book/published_work : 0.9231
/geology/geological_formation -> /location/location : 0.9974
/geology/geological_formation -> /geography/geographical_feature : 0.9965
x/geology/geological_formation -> /geography/mountain : 0.7178
/book/journal_article -> /book/scholarly_work : 0.8706
/book/journal_article -> /book/written_work : 0.9529
/location/jp_special_ward -> /location/dated_location : 1.0000
/location/jp_special_ward -> /location/administrative_division : 1.0000
/location/jp_special_ward -> /location/statistical_region : 1.0000
x/people/family_member -> /people/deceased_person : 0.7834
/wine/wine -> /business/consumer_product : 0.8425
/cricket/cricket_player -> /sports/pro_athlete : 1.0000
/location/postal_code -> /location/location : 0.8177
x/games/game -> /cvg/game_version : 0.9077
x/biology/gene_ontology_group -> /biology/gene_group : 0.9999
x/biology/gene_ontology_group -> /biology/gene : 0.9999
x/music/songwriter -> /book/author : 0.9991
/music/songwriter -> /music/lyricist : 0.9991
/religion/founding_figure -> /organization/organization_founder : 0.9704
/soccer/football_team_manager -> /sports/pro_athlete : 0.9846
x/engineering/engine -> /projects/project_focus : 0.7108
x/rail/locomotive -> /rail/locomotive_class : 0.9129
/medicine/bone -> /medicine/anatomical_structure : 1.0000
/travel/guidebook -> /book/written_work : 0.9286
/distilled_spirits/distillery -> /organization/organization : 1.0000
/distilled_spirits/distillery -> /business/business_operation : 1.0000
/distilled_spirits/distillery -> /business/employer : 1.0000
x/medicine/drug_dosage_flavor -> /food/nutrient : 0.8182
/american_football/nfl_game -> /games/game : 1.0000
x/american_football/nfl_game -> /american_football/football_game : 1.0000
x/interests/collector -> /people/deceased_person : 0.7426
x/broadcast/tv_terrestrial_broadcast_facility -> /people/person : 0.8333
/broadcast/tv_terrestrial_broadcast_facility -> /location/location : 1.0000
/broadcast/tv_terrestrial_broadcast_facility -> /broadcast/broadcast : 1.0000
x/broadcast/tv_terrestrial_broadcast_facility -> /biology/organism : 0.8333
/broadcast/tv_terrestrial_broadcast_facility -> /broadcast/tv_station : 1.0000
x/architecture/engineering_firm -> /people/person : 1.0000
x/architecture/engineering_firm -> /projects/project_participant : 0.9643
x/architecture/engineering_firm -> /biology/organism : 1.0000
/architecture/engineering_firm -> /business/employer : 1.0000
x/music/performance_role -> /music/instrument : 0.7505
/government/political_district -> /location/dated_location : 0.9319
/location/tw_district -> /location/dated_location : 1.0000
/location/tw_district -> /location/administrative_division : 1.0000
/location/tw_district -> /location/statistical_region : 1.0000
/location/kp_city -> /location/dated_location : 1.0000
/location/kp_city -> /location/administrative_division : 1.0000
/location/kp_city -> /location/statistical_region : 1.0000
/baseball/baseball_player -> /sports/pro_athlete : 1.0000
x/fictional_universe/fictional_universe_creator -> /fictional_universe/fictional_character_creator : 0.8039
/architecture/building -> /location/location : 0.9391
/transportation/bridge -> /location/location : 0.9542
/olympics/olympic_athlete -> /sports/pro_athlete : 0.9999
x/fictional_universe/work_of_fiction -> /book/written_work : 0.9307
x/fictional_universe/work_of_fiction -> /book/book : 0.7346
x/biology/owned_animal -> /biology/pedigreed_animal : 0.9960
x/biology/animal -> /biology/owned_animal : 0.7233
x/biology/animal -> /biology/pedigreed_animal : 0.7282
/broadcast/radio_station_owner -> /organization/organization : 0.8689
/broadcast/radio_station_owner -> /business/business_operation : 0.7705
/broadcast/radio_station_owner -> /business/employer : 0.8525
x/sports/tournament_event_competitor -> /sports/pro_athlete : 1.0000
x/sports/mascot -> /education/school_mascot : 0.7996
/business/brand -> /organization/organization : 0.9293
x/business/brand -> /music/record_label : 0.8424
x/business/brand -> /business/business_operation : 0.9157
/theater/theater_production_staff -> /people/person : 1.0000
/theater/theater_production_staff -> /biology/organism : 1.0000
/book/published_work -> /book/written_work : 0.8771
/medicine/medical_trial_sponsor -> /organization/organization : 0.8333
/business/sponsor -> /organization/organization : 0.7360
/location/jp_prefecture -> /location/dated_location : 1.0000
/location/jp_prefecture -> /location/administrative_division : 1.0000
/location/jp_prefecture -> /location/statistical_region : 1.0000
/cricket/cricket_coach -> /cricket/cricket_player : 0.9268
/cricket/cricket_coach -> /sports/pro_athlete : 0.9512
/music/record_label -> /organization/organization : 0.9995
/music/record_label -> /business/business_operation : 0.9934
/location/country -> /location/dated_location : 1.0000
/location/country -> /location/statistical_region : 0.9945
/conferences/conference -> /time/event : 0.8080
/architecture/lighthouse -> /location/location : 1.0000
/architecture/tower -> /location/location : 0.9982
x/architecture/tower -> /architecture/lighthouse : 0.8911
x/celebrities/abused_substance -> /medicine/medical_treatment : 0.8750
x/interests/interest -> /interests/hobby : 0.8077
x/computer/computer -> /internet/website : 0.8937
x/music/voice -> /music/performance_role : 1.0000
/soccer/football_world_cup -> /award/award : 1.0000
x/soccer/football_world_cup -> /book/book_subject : 0.7273
/soccer/football_world_cup -> /time/event : 1.0000
/soccer/football_world_cup -> /soccer/football_award : 1.0000
/automotive/make -> /business/brand : 0.7368
x/royalty/monarch -> /people/deceased_person : 0.8761
/royalty/monarch -> /royalty/noble_person : 0.8961
x/location/region -> /location/dated_location : 0.7073
x/spaceflight/satellite -> /spaceflight/spacecraft : 0.9375
/comic_strips/comic_strip_genre -> /media_common/media_genre : 1.0000
/geography/waterfall -> /location/location : 1.0000
/geography/waterfall -> /geography/geographical_feature : 1.0000
/geography/body_of_water -> /location/location : 0.9993
/geography/body_of_water -> /geography/geographical_feature : 0.9984
/people/appointed_role -> /business/job_title : 0.9029
/film/film_company -> /business/business_operation : 0.9485
/film/film_company -> /business/employer : 0.9485
x/internet/protocol -> /computer/internet_protocol : 0.9810
x/people/place_of_interment -> /location/dated_location : 0.8043
/law/court_jurisdiction_area -> /location/dated_location : 1.0000
/law/court_jurisdiction_area -> /government/governmental_jurisdiction : 1.0000
x/law/court_jurisdiction_area -> /book/book_subject : 0.9091
/law/court_jurisdiction_area -> /location/administrative_division : 1.0000
/law/court_jurisdiction_area -> /location/statistical_region : 1.0000
x/law/court_jurisdiction_area -> /film/film_location : 0.7273
x/law/court_jurisdiction_area -> /organization/organization_scope : 0.8182
x/law/court_jurisdiction_area -> /periodicals/newspaper_circulation_area : 1.0000
/sports/boxer -> /sports/pro_athlete : 1.0000
/olympics/olympic_venue -> /architecture/structure : 0.9844
/olympics/olympic_venue -> /sports/sports_facility : 0.9844
/olympics/olympic_venue -> /projects/project_focus : 1.0000
x/business/product_endorsee -> /organization/organization : 0.8750
x/business/product_endorsee -> /people/person : 0.8125
x/business/product_endorsee -> /business/business_operation : 0.8750
x/business/product_endorsee -> /biology/organism : 0.8125
x/business/product_endorsee -> /business/employer : 0.8750
/medicine/drug_ingredient -> /medicine/drug : 0.7683
/government/election -> /time/event : 0.9090
/digicams/digital_camera_manufacturer -> /business/employer : 0.9286
/music/multipart_release -> /media_common/creative_work : 0.9999
/fictional_universe/fictional_creature -> /fictional_universe/fictional_character : 0.8333
x/religion/belief -> /religion/deity : 0.9164
/book/magazine -> /book/periodical : 0.7166
/medicine/hospital -> /location/location : 0.9854
/medicine/hospital -> /architecture/structure : 0.8466
/medicine/hospital -> /architecture/building : 0.8267
/medicine/hospital -> /projects/project_focus : 0.7039
/medicine/nerve -> /medicine/anatomical_structure : 1.0000
/location/cn_province -> /location/dated_location : 1.0000
/location/cn_province -> /location/administrative_division : 1.0000
/location/cn_province -> /location/statistical_region : 1.0000
x/education/honorary_degree_recipient -> /people/deceased_person : 0.8333
x/royalty/chivalric_order_member -> /people/deceased_person : 0.7555
/astronomy/astronomical_survey_project_organization -> /organization/organization : 1.0000
/award/award_ceremony -> /time/event : 1.0000
/geography/glacier -> /location/location : 1.0000
/geography/glacier -> /geography/geographical_feature : 1.0000
x/basketball/basketball_conference -> /business/employer : 0.8235
/government/governmental_jurisdiction -> /location/dated_location : 0.9030
/government/governmental_jurisdiction -> /location/statistical_region : 0.8364
x/broadcast/broadcast -> /tv/tv_program : 0.7924
/meteorology/cyclone_affected_area -> /location/dated_location : 0.7105
/meteorology/cyclone_affected_area -> /location/statistical_region : 0.8684
/aviation/airline -> /people/person : 0.9938
/aviation/airline -> /biology/organism : 0.9938
/aviation/airline -> /business/employer : 0.8954
/aviation/airline -> /aviation/aircraft_owner : 0.9938
/business/oil_field -> /business/asset : 0.9000
/ice_hockey/hockey_player -> /sports/pro_athlete : 1.0000
/location/uk_principal_area -> /location/dated_location : 1.0000
/location/uk_principal_area -> /location/uk_statistical_location : 1.0000
/location/uk_principal_area -> /location/administrative_division : 1.0000
/location/uk_principal_area -> /location/statistical_region : 1.0000
/fictional_universe/person_in_fiction -> /people/person : 0.8792
/fictional_universe/person_in_fiction -> /biology/organism : 0.8808
/film/film_crewmember -> /people/person : 0.9998
/film/film_crewmember -> /biology/organism : 0.9998
/tv/tv_personality -> /people/person : 0.9732
/tv/tv_personality -> /biology/organism : 0.9732
x/architecture/building_complex -> /food/brewery_brand_of_beer : 0.8401
/government/us_vice_president -> /government/u_s_congressperson : 1.0000
/government/us_vice_president -> /government/politician : 1.0000
x/government/us_vice_president -> /people/deceased_person : 0.8125
/cvg/musical_game -> /cvg/computer_videogame : 1.0000
/book/scholarly_work -> /book/written_work : 0.9989
x/book/scholarly_work -> /education/dissertation : 0.9583
/location/ar_province -> /location/dated_location : 1.0000
/location/ar_province -> /location/administrative_division : 1.0000
/location/ar_province -> /location/statistical_region : 1.0000
/amusement_parks/park -> /travel/tourist_attraction : 0.9368
x/olympics/olympic_bidding_city -> /organization/organization : 0.7273
/olympics/olympic_bidding_city -> /location/dated_location : 1.0000
x/olympics/olympic_bidding_city -> /business/employer : 0.7273
/olympics/olympic_bidding_city -> /location/statistical_region : 1.0000
x/olympics/olympic_bidding_city -> /travel/travel_destination : 0.9091
x/olympics/olympic_bidding_city -> /film/film_location : 0.8182
x/olympics/olympic_bidding_city -> /periodicals/newspaper_circulation_area : 0.8182
x/metropolitan_transit/transit_system -> /location/location : 0.9769
x/metropolitan_transit/transit_system -> /metropolitan_transit/transit_stop : 0.9814
x/soccer/football_league -> /time/recurring_event : 0.8963
/location/ca_census_division -> /location/dated_location : 1.0000
/location/ca_census_division -> /location/location : 1.0000
/location/ca_census_division -> /location/region : 1.0000
/location/ca_census_division -> /location/administrative_division : 0.9271
/location/ca_census_division -> /location/statistical_region : 1.0000
/book/technical_report -> /book/scholarly_work : 0.9167
/book/technical_report -> /book/written_work : 1.0000
/biology/domesticated_animal -> /biology/organism_classification : 0.7500
/education/educational_institution_campus -> /location/location : 1.0000
/organization/australian_organization -> /business/business_operation : 1.0000
/organization/australian_organization -> /business/employer : 0.9500
x/visual_art/visual_art_form -> /architecture/architectural_style : 0.8843
x/book/series_editor -> /book/author : 0.9231
/comic_books/comic_book_genre -> /media_common/media_genre : 1.0000
x/sports/tournament_event -> /olympics/olympic_event : 0.7941
/spaceflight/bipropellant_rocket_engine -> /spaceflight/rocket_engine : 1.0000
x/tv/tv_soundtrack -> /music/album : 0.8750
x/music/soundtrack -> /music/track_contribution : 0.9670
/food/drinking_establishment -> /organization/organization : 0.9962
/food/drinking_establishment -> /location/location : 1.0000
/food/drinking_establishment -> /business/business_location : 1.0000
/food/drinking_establishment -> /business/employer : 0.9962
x/education/school_magazine -> /book/periodical : 1.0000
x/automotive/designer -> /people/deceased_person : 0.8500
/soccer/football_league_season -> /time/event : 1.0000
/location/jp_city_town -> /location/dated_location : 1.0000
/location/jp_city_town -> /location/statistical_region : 1.0000
/architecture/museum -> /location/location : 0.7123
/architecture/museum -> /travel/tourist_attraction : 0.9928
/people/american_indian_group -> /people/ethnicity : 1.0000
/law/courthouse -> /location/location : 0.9606
/location/us_county -> /location/dated_location : 1.0000
/location/us_county -> /location/administrative_division : 1.0000
/location/us_county -> /location/statistical_region : 1.0000
/location/administrative_division -> /location/dated_location : 0.9616
/location/administrative_division -> /location/statistical_region : 0.9757
/opera/opera -> /music/composition : 0.9639
x/tv/tv_character -> /fictional_universe/fictional_character : 0.9976
x/award/ranked_list_compiler -> /organization/organization : 0.7143
x/award/ranked_list_compiler -> /business/employer : 0.7143
x/celebrities/rivalry -> /time/event : 0.8777
x/celebrities/rivalry -> /olympics/olympic_event_competition : 0.8777
/location/de_urban_district -> /location/dated_location : 1.0000
/location/de_urban_district -> /location/administrative_division : 1.0000
/location/de_urban_district -> /location/statistical_region : 1.0000
/location/de_urban_district -> /location/de_city : 1.0000
/radio/radio_program -> /broadcast/content : 0.9908
/location/cn_county_level_city -> /location/dated_location : 0.7416
/location/cn_county_level_city -> /location/region : 1.0000
/location/cn_county_level_city -> /location/administrative_division : 1.0000
/location/cn_county_level_city -> /location/statistical_region : 0.7416
/travel/accommodation -> /location/location : 0.9398
/travel/accommodation -> /architecture/building : 0.8571
x/travel/accommodation -> /projects/project_focus : 0.8244
x/book/written_work -> /book/book : 0.9839
/biology/amino_acid -> /food/nutrient : 0.7500
/biology/amino_acid -> /medicine/drug : 0.8750
/biology/amino_acid -> /medicine/drug_ingredient : 0.8750
/rail/railway_terminus -> /location/location : 1.0000
x/rail/railway_terminus -> /metropolitan_transit/transit_system : 0.7708
/rail/railway_terminus -> /metropolitan_transit/transit_stop : 0.7708
/fictional_universe/fictional_object_destroyer -> /fictional_universe/fictional_character : 1.0000
x/fictional_universe/fictional_object_destroyer -> /book/book_character : 0.7143
x/fictional_universe/fictional_object_destroyer -> /education/field_of_study : 0.7143
x/fictional_universe/fictional_object_destroyer -> /film/film_character : 0.7143
x/business/business_location -> /organization/organization : 0.7829
x/business/business_location -> /business/employer : 0.7824
x/location/hud_county_place -> /location/dated_location : 0.8018
/location/hud_county_place -> /location/hud_foreclosure_area : 0.9979
x/location/hud_county_place -> /location/statistical_region : 0.8035
/travel/tourist_attraction -> /location/location : 0.7950
x/travel/tourist_attraction -> /architecture/museum : 0.7074
x/biology/organism -> /people/person : 0.9970
/sports/sports_championship_event -> /time/event : 0.9939
x/law/inventor -> /people/deceased_person : 0.7537
x/award/award_nominee/award_nominations -> /award/award_nominee : 0.9500
x/award/award_nominee/award_nominations -> /award/award_winner : 0.7000
/soccer/football_match -> /time/event : 1.0000
x/sports/sport_country -> /people/person : 0.9032
x/sports/sport_country -> /location/dated_location : 1.0000
/sports/sport_country -> /location/country : 1.0000
x/sports/sport_country -> /government/governmental_jurisdiction : 1.0000
x/sports/sport_country -> /book/book_subject : 1.0000
x/sports/sport_country -> /location/administrative_division : 0.9677
x/sports/sport_country -> /biology/organism : 0.9032
x/sports/sport_country -> /organization/organization_member : 0.8710
x/sports/sport_country -> /location/statistical_region : 1.0000
/sports/sport_country -> /sports/sports_team_location : 1.0000
x/sports/sport_country -> /olympics/olympic_participating_country : 0.9355
x/sports/sport_country -> /periodicals/newspaper_circulation_area : 0.7419
x/media_common/completer_of_unfinished_work -> /music/composer : 0.8333
/location/uk_district -> /location/dated_location : 0.9167
/location/uk_district -> /location/uk_statistical_location : 0.9167
/location/uk_district -> /location/administrative_division : 1.0000
/location/uk_district -> /location/statistical_region : 0.9167
x/food/beer_country_region -> /people/person : 0.8000
x/food/beer_country_region -> /location/dated_location : 0.9000
x/food/beer_country_region -> /location/country : 0.8000
/food/beer_country_region -> /location/region : 0.9667
x/food/beer_country_region -> /government/governmental_jurisdiction : 0.8333
x/food/beer_country_region -> /book/book_subject : 0.8667
x/food/beer_country_region -> /location/administrative_division : 0.8333
x/food/beer_country_region -> /biology/organism : 0.8000
x/food/beer_country_region -> /organization/organization_member : 0.7667
x/food/beer_country_region -> /location/statistical_region : 0.9333
x/food/beer_country_region -> /sports/sports_team_location : 0.8667
x/food/beer_country_region -> /olympics/olympic_participating_country : 0.7667
x/food/beer_country_region -> /organization/organization_scope : 0.7000
x/food/beer_country_region -> /periodicals/newspaper_circulation_area : 0.7333
/location/nl_municipality -> /location/dated_location : 1.0000
/location/nl_municipality -> /location/administrative_division : 1.0000
/location/nl_municipality -> /location/statistical_region : 1.0000
/zoos/zoo -> /location/location : 0.8664
/zoos/zoo -> /travel/tourist_attraction : 0.8525
/tennis/tennis_tournament_champion -> /sports/pro_athlete : 0.9831
/tennis/tennis_tournament_champion -> /tennis/tennis_player : 1.0000
/geography/geographical_feature -> /location/location : 0.9993
/digicams/digital_camera -> /business/consumer_product : 0.9595
/astronomy/moon -> /astronomy/celestial_object : 1.0000
x/astronomy/moon -> /astronomy/orbital_relationship : 1.0000
/event/disaster_victim -> /people/deceased_person : 0.9952
/astronomy/star -> /astronomy/celestial_object : 0.9878
x/astronomy/star -> /astronomy/orbital_relationship : 0.7191
/metropolitan_transit/transit_stop -> /location/location : 0.9944
/architecture/skyscraper -> /location/location : 0.9043
/architecture/skyscraper -> /projects/project_focus : 1.0000
x/library/public_library -> /library/public_library_system : 0.9198
x/engineering/engine_category -> /law/invention : 0.8824
/music/concert_tour -> /time/event : 0.9429
x/education/field_of_study -> /fictional_universe/fictional_character : 0.9714
x/education/field_of_study -> /film/film_character : 0.9751
x/location/census_tract -> /location/hud_foreclosure_area : 1.0000
/music/musical_instrument_company -> /business/business_operation : 0.7255
/book/review -> /book/published_work : 0.8500
/book/review -> /book/written_work : 0.9750
/astronomy/supernova -> /astronomy/celestial_object : 1.0000
/sports/australian_rules_footballer -> /sports/pro_athlete : 1.0000
x/radio/radio_subject -> /book/book_subject : 0.7273
/astronomy/comet -> /astronomy/celestial_object : 1.0000
/astronomy/comet -> /astronomy/astronomical_discovery : 1.0000
x/astronomy/comet -> /astronomy/orbital_relationship : 1.0000
/rail/railway -> /location/location : 0.9803
/bicycles/bicycle_model -> /business/consumer_product : 1.0000
/location/cn_autonomous_county -> /location/dated_location : 1.0000
/location/cn_autonomous_county -> /location/administrative_division : 1.0000
/location/cn_autonomous_county -> /location/statistical_region : 1.0000
/location/de_regierungsbezirk -> /location/dated_location : 1.0000
/location/de_regierungsbezirk -> /location/administrative_division : 1.0000
/location/de_regierungsbezirk -> /location/statistical_region : 1.0000
/geography/mountain_range -> /location/location : 1.0000
/geography/mountain_range -> /geography/geographical_feature : 1.0000
/wine/wine_producer -> /organization/organization : 0.9949
/wine/wine_producer -> /business/business_operation : 0.9949
/wine/wine_producer -> /business/employer : 0.9746
/people/canadian_aboriginal_group -> /people/ethnicity : 0.9600
/media_common/netflix_title -> /film/film : 0.9734
/book/newspaper -> /book/periodical : 0.9994
/medicine/cancer_center_constituent -> /organization/organization : 0.8913
/music/performance_venue -> /architecture/structure : 1.0000
/music/performance_venue -> /architecture/building : 1.0000
/music/performance_venue -> /projects/project_focus : 1.0000
/book/newspaper_owner -> /organization/organization : 0.8000
/film/film_genre -> /media_common/media_genre : 0.8073
x/biology/gene_group -> /biology/gene_ontology_group : 1.0000
x/music/lyricist -> /music/composer : 0.7520
/music/lyricist -> /broadcast/artist : 0.7592
/location/uk_non_metropolitan_district -> /location/dated_location : 1.0000
/location/uk_non_metropolitan_district -> /location/uk_statistical_location : 0.7727
/location/uk_non_metropolitan_district -> /location/administrative_division : 1.0000
/location/uk_non_metropolitan_district -> /location/statistical_region : 1.0000
/royalty/noble_person -> /people/person : 1.0000
x/royalty/noble_person -> /people/deceased_person : 0.7871
/royalty/noble_person -> /biology/organism : 1.0000
/education/university_system -> /business/employer : 0.8235
/royalty/kingdom -> /location/dated_location : 0.7358
/religion/place_of_worship -> /location/location : 0.9921
/religion/place_of_worship -> /projects/project_focus : 0.8892
/sports/tournament_event_competition -> /time/event : 0.9952
/astronomy/asteroid -> /astronomy/celestial_object : 0.9905
x/astronomy/asteroid -> /astronomy/astronomical_discovery : 0.9894
x/astronomy/asteroid -> /astronomy/orbital_relationship : 0.9892
/geography/island -> /location/location : 1.0000
/geography/island -> /geography/geographical_feature : 0.9756
x/biology/breed_origin -> /people/person : 0.8667
x/biology/breed_origin -> /location/dated_location : 0.9333
x/biology/breed_origin -> /location/country : 0.9000
/biology/breed_origin -> /location/region : 0.9667
x/biology/breed_origin -> /government/governmental_jurisdiction : 0.9000
x/biology/breed_origin -> /book/book_subject : 0.9333
x/biology/breed_origin -> /location/administrative_division : 0.8667
x/biology/breed_origin -> /biology/organism : 0.8667
x/biology/breed_origin -> /organization/organization_member : 0.8000
x/biology/breed_origin -> /location/statistical_region : 0.9667
x/biology/breed_origin -> /sports/sports_team_location : 0.9000
x/biology/breed_origin -> /olympics/olympic_participating_country : 0.8000
x/biology/breed_origin -> /periodicals/newspaper_circulation_area : 0.8000
/comic_books/comic_book_story -> /fictional_universe/work_of_fiction : 1.0000
/transportation/road -> /location/location : 0.9954
/interests/collection_activity -> /interests/interest : 0.9333
/interests/collection_activity -> /interests/hobby : 1.0000
/games/game_genre -> /media_common/media_genre : 1.0000
/location/vn_provincial_city -> /location/dated_location : 1.0000
/location/vn_provincial_city -> /location/administrative_division : 1.0000
/location/vn_provincial_city -> /location/statistical_region : 1.0000
/location/in_city -> /location/dated_location : 1.0000
/location/in_city -> /location/statistical_region : 1.0000
/location/hud_mfa -> /location/hud_section_8_area : 1.0000
/location/hud_mfa -> /location/region : 1.0000
x/food/beverage -> /medicine/drug : 0.9878
x/media_common/dedicated_work -> /music/composition : 0.7534
/film/film_story_contributor -> /people/person : 0.9518
/film/film_story_contributor -> /biology/organism : 0.9518
/sports/golf_course -> /location/location : 0.9884
/biology/hybrid -> /biology/organism_classification : 0.9944
/biology/gene_ontology_group_membership_evidence -> /biology/gene_group_membership_evidence : 1.0000
/location/in_division -> /location/dated_location : 1.0000
/location/in_division -> /location/location : 1.0000
/location/in_division -> /location/region : 1.0000
/location/in_division -> /location/administrative_division : 1.0000
/location/in_division -> /location/statistical_region : 1.0000
/location/uk_non_metropolitan_county -> /location/dated_location : 1.0000
/location/uk_non_metropolitan_county -> /location/uk_statistical_location : 1.0000
/location/uk_non_metropolitan_county -> /location/region : 1.0000
/location/uk_non_metropolitan_county -> /location/administrative_division : 1.0000
/location/uk_non_metropolitan_county -> /location/statistical_region : 1.0000
x/location/uk_non_metropolitan_county -> /periodicals/newspaper_circulation_area : 0.7500
x/military/military_commander -> /people/deceased_person : 0.8686
/location/es_comarca -> /location/dated_location : 1.0000
/location/es_comarca -> /location/location : 1.0000
/location/es_comarca -> /location/region : 1.0000
/location/es_comarca -> /location/administrative_division : 1.0000
/location/es_comarca -> /location/statistical_region : 1.0000
/broadcast/radio_network -> /organization/organization : 0.7778
/broadcast/radio_network -> /business/business_operation : 0.7778
x/location/uk_unitary_authority -> /location/dated_location : 0.9231
/location/uk_unitary_authority -> /location/location : 1.0000
/location/uk_unitary_authority -> /location/uk_statistical_location : 0.9231
/location/uk_unitary_authority -> /location/region : 1.0000
/location/uk_unitary_authority -> /location/administrative_division : 1.0000
/location/uk_unitary_authority -> /location/statistical_region : 0.9231
x/location/statistical_region -> /location/dated_location : 0.9828
/education/dissertation -> /book/scholarly_work : 0.9943
/education/dissertation -> /book/written_work : 0.9995
/location/fr_department -> /location/administrative_division : 1.0000
x/location/fr_department -> /location/ar_department : 0.8101
/conferences/conference_series -> /time/recurring_event : 0.9054
/location/vn_province -> /location/dated_location : 1.0000
/location/vn_province -> /location/location : 1.0000
/location/vn_province -> /location/region : 1.0000
/location/vn_province -> /location/administrative_division : 1.0000
/location/vn_province -> /location/statistical_region : 1.0000
/aviation/airport -> /location/location : 0.9974
/film/film_festival_event -> /time/event : 0.9981
/location/us_metropolitan_division -> /location/location : 1.0000
/automotive/company -> /business/business_operation : 1.0000
/automotive/company -> /business/employer : 1.0000
x/film/film_theorist -> /book/author : 0.7500
x/chemistry/element_discoverer -> /people/deceased_person : 0.9333
/chemistry/element_discoverer -> /education/academic : 0.8000
/chemistry/element_discoverer -> /influence/influence_node : 0.8000
/book/translated_work -> /book/written_work : 0.9759
/book/translated_work -> /book/book : 0.8193
x/business/business_operation/industry -> /business/competitive_space : 0.9691
/sports/sports_award_winner -> /sports/pro_athlete : 0.9492
/geography/lake -> /location/location : 0.9990
/geography/lake -> /geography/geographical_feature : 0.9966
/geography/island_group -> /location/location : 1.0000
/geography/island_group -> /geography/geographical_feature : 0.9493
/baseball/baseball_manager -> /baseball/baseball_player : 0.8298
/baseball/baseball_manager -> /sports/pro_athlete : 0.8582
x/cvg/cvg_publisher -> /people/person : 0.7291
x/cvg/cvg_publisher -> /architecture/engineer : 0.7140
x/cvg/cvg_publisher -> /biology/organism : 0.7291
/cvg/cvg_publisher -> /business/employer : 0.9465
x/cvg/cvg_publisher -> /cvg/cvg_developer : 0.7023
/book/newspaper_issue -> /book/publication : 1.0000
/biology/plant_disease_host -> /biology/organism_classification : 1.0000
x/law/legal_case -> /time/event : 0.9657
/rail/diesel_locomotive_class -> /rail/locomotive_class : 1.0000
/aviation/aircraft_manufacturer -> /business/employer : 0.9767
x/royalty/chivalric_order_founder -> /people/family_member : 0.7857
x/royalty/chivalric_order_founder -> /people/deceased_person : 0.9286
x/royalty/chivalric_order_founder -> /royalty/monarch : 0.7143
/royalty/chivalric_order_founder -> /royalty/noble_person : 0.8571
/protected_sites/protected_site -> /location/dated_location : 0.9354
/food/food -> /food/nutrient : 0.8665
x/food/food -> /food/ingredient : 0.8220
x/spaceflight/rocket_engine -> /spaceflight/bipropellant_rocket_engine : 0.9412
x/military/military_person -> /people/deceased_person : 0.8037
/location/fr_region -> /location/dated_location : 1.0000
/location/fr_region -> /location/administrative_division : 1.0000
/location/fr_region -> /location/statistical_region : 1.0000
/architecture/house -> /projects/project_focus : 0.9974
x/engineering/material -> /chemistry/chemical_compound : 0.9746
/location/it_comune -> /location/dated_location : 1.0000
/location/it_comune -> /location/location : 1.0000
/location/it_comune -> /location/region : 1.0000
/location/it_comune -> /location/statistical_region : 1.0000
/business/shopping_center -> /location/location : 0.7570
x/book/translation -> /book/published_work : 0.9930
/geography/mountain -> /location/location : 0.9964
/geography/mountain -> /geography/geographical_feature : 0.9952
x/architecture/building_occupant -> /organization/organization : 0.7600
/aviation/airport_operator -> /organization/organization : 0.7273
/aviation/airport_operator -> /business/employer : 0.7273
/theater/play -> /book/written_work : 0.9685
/religion/monastery -> /location/location : 1.0000
/religion/monastery -> /projects/project_focus : 1.0000
/cricket/cricket_stadium -> /architecture/venue : 1.0000
/cricket/cricket_stadium -> /location/location : 1.0000
/cricket/cricket_stadium -> /location/region : 1.0000
/cricket/cricket_stadium -> /projects/project_focus : 1.0000
/sports/sports_facility -> /architecture/venue : 0.9987
/sports/sports_facility -> /location/location : 1.0000
/sports/sports_facility -> /location/region : 0.9987
/sports/sports_facility -> /projects/project_focus : 0.9902
/organization/organization_partnership -> /organization/organization : 0.8235
/medicine/muscle -> /medicine/anatomical_structure : 0.9697
/book/serial_installment -> /book/published_work : 0.9167
/government/parliamentary_election -> /time/event : 1.0000
x/government/parliamentary_election -> /government/general_election : 1.0000
/amusement_parks/ride_manufacturer -> /business/employer : 0.9474
/architecture/landscape_project -> /location/location : 1.0000
/geography/river -> /location/location : 1.0000
/geography/river -> /geography/geographical_feature : 0.9999
x/education/academic_institution -> /location/location : 0.7419
/education/academic_institution -> /business/employer : 0.9032
x/medicine/medical_treatment -> /medicine/drug : 0.8146
x/event/public_speaking_event -> /conferences/conference : 0.7143
/event/public_speaking_event -> /time/event : 1.0000
/basketball/basketball_player -> /sports/pro_athlete : 1.0000
/military/military_conflict -> /time/event : 0.9867
/media_common/adapted_work -> /book/written_work : 0.7787
/book/short_story -> /book/published_work : 0.9826
/book/short_story -> /book/written_work : 0.9993
x/broadcast/genre -> /book/book_subject : 0.8839
/dining/restaurant -> /organization/organization : 0.8469
x/dining/restaurant -> /location/location : 0.9081
x/dining/restaurant -> /business/business_location : 0.8995
/dining/restaurant -> /business/employer : 0.8437
/location/de_rural_district -> /location/dated_location : 1.0000
/location/de_rural_district -> /location/administrative_division : 1.0000
/location/de_rural_district -> /location/statistical_region : 1.0000
/american_football/football_game -> /award/competition : 0.9875
/american_football/football_game -> /american_football/nfl_game : 0.9875
/location/ar_department -> /location/administrative_division : 1.0000
/location/cn_county -> /location/dated_location : 1.0000
/location/cn_county -> /location/administrative_division : 1.0000
/location/cn_county -> /location/statistical_region : 1.0000
/broadcast/tv_station_owner -> /organization/organization : 0.7416
/broadcast/tv_station_owner -> /business/employer : 0.7079
x/biology/chromosome -> /biology/cytogenetic_band : 0.9745
x/media_common/adaptation -> /film/film : 0.7450
x/astronomy/celestial_object -> /astronomy/astronomical_discovery : 0.7737
x/astronomy/celestial_object -> /astronomy/orbital_relationship : 0.9082
/sports/cyclist -> /sports/pro_athlete : 1.0000
/tv/tv_genre -> /media_common/media_genre : 0.9367
/cricket/cricket_tournament_event -> /sports/sports_championship_event : 1.0000
/location/br_state -> /location/dated_location : 1.0000
/location/br_state -> /location/administrative_division : 1.0000
/location/br_state -> /location/statistical_region : 1.0000
/spaceflight/satellite_manufacturer -> /business/employer : 0.8750
/boxing/boxing_match -> /time/event : 1.0000
/education/student_radio_station -> /broadcast/broadcast : 0.9167
/broadcast/radio_station -> /broadcast/broadcast : 0.9446
/conferences/conference_venue -> /architecture/structure : 0.9434
/conferences/conference_venue -> /architecture/building : 0.9245
x/conferences/conference_venue -> /projects/project_focus : 0.9434
/soccer/football_pitch -> /architecture/venue : 1.0000
/soccer/football_pitch -> /location/location : 1.0000
/soccer/football_pitch -> /architecture/structure : 1.0000
/soccer/football_pitch -> /location/region : 1.0000
/soccer/football_pitch -> /sports/sports_facility : 1.0000
x/soccer/football_pitch -> /projects/project_focus : 1.0000
x/film/film_featured_song -> /award/award_nominated_work : 0.7919
x/biology/plant_disease_cause -> /biology/organism_classification : 1.0000
/computer/computer_manufacturer_brand -> /organization/organization : 0.9310
/computer/computer_manufacturer_brand -> /business/business_operation : 0.8966
/computer/computer_manufacturer_brand -> /business/employer : 0.8966
/military/military_post -> /location/location : 0.8690
/rail/railway_operator -> /organization/organization : 0.9500
/rail/railway_operator -> /business/business_operation : 0.9000
/rail/railway_operator -> /business/employer : 0.9500
/location/cemetery -> /location/dated_location : 0.9923
/location/cemetery -> /people/place_of_interment : 0.9969
x/astronomy/astronomical_discovery -> /astronomy/asteroid : 0.8641
x/astronomy/astronomical_discovery -> /astronomy/celestial_object : 0.9794
x/astronomy/astronomical_discovery -> /astronomy/orbital_relationship : 0.9619
/architecture/architectural_contractor -> /projects/project_participant : 0.9833
/location/it_province -> /location/dated_location : 1.0000
/location/it_province -> /location/location : 1.0000
/location/it_province -> /location/region : 1.0000
/location/it_province -> /location/administrative_division : 1.0000
/location/it_province -> /location/statistical_region : 1.0000
/location/us_indian_reservation -> /location/dated_location : 0.9556
/location/us_indian_reservation -> /location/administrative_division : 0.8444
/location/us_indian_reservation -> /location/statistical_region : 0.9556
/spaceflight/rocket_manufacturer -> /organization/organization : 0.7778
/spaceflight/rocket_manufacturer -> /business/business_operation : 0.7778
/spaceflight/rocket_manufacturer -> /business/employer : 0.7778
/broadcast/internet_stream -> /broadcast/broadcast : 1.0000