Relphormer baseline
This commit is contained in:
@@ -0,0 +1,6 @@
|
||||
{
|
||||
"cells": [],
|
||||
"metadata": {},
|
||||
"nbformat": 4,
|
||||
"nbformat_minor": 2
|
||||
}
|
17535
dataset/FB15k-237/dev.tsv
Normal file
17535
dataset/FB15k-237/dev.tsv
Normal file
File diff suppressed because it is too large
Load Diff
14541
dataset/FB15k-237/entities.txt
Normal file
14541
dataset/FB15k-237/entities.txt
Normal file
File diff suppressed because it is too large
Load Diff
14951
dataset/FB15k-237/entity2text.txt
Normal file
14951
dataset/FB15k-237/entity2text.txt
Normal file
File diff suppressed because it is too large
Load Diff
14951
dataset/FB15k-237/entity2textlong.txt
Normal file
14951
dataset/FB15k-237/entity2textlong.txt
Normal file
File diff suppressed because it is too large
Load Diff
0
dataset/FB15k-237/features_dev.txt
Normal file
0
dataset/FB15k-237/features_dev.txt
Normal file
0
dataset/FB15k-237/features_test.txt
Normal file
0
dataset/FB15k-237/features_test.txt
Normal file
0
dataset/FB15k-237/features_train.txt
Normal file
0
dataset/FB15k-237/features_train.txt
Normal file
155
dataset/FB15k-237/get_neighbor.ipynb
Normal file
155
dataset/FB15k-237/get_neighbor.ipynb
Normal file
@@ -0,0 +1,155 @@
|
||||
{
|
||||
"cells": [
|
||||
{
|
||||
"cell_type": "code",
|
||||
"execution_count": 1,
|
||||
"metadata": {},
|
||||
"outputs": [],
|
||||
"source": [
|
||||
"path1 = './entities.txt'\n",
|
||||
"path2 = './relations.txt'\n",
|
||||
"path3 = './train.tsv'\n",
|
||||
"path4 = './dev.tsv'\n",
|
||||
"path5 = './test.tsv'\n",
|
||||
"path6 = './get_neighbor/entity2id.txt'\n",
|
||||
"path7 = './get_neighbor/relation2id.txt'\n",
|
||||
"path8 = './get_neighbor/train2id.txt'\n",
|
||||
"path9 = './get_neighbor/valid2id.txt'\n",
|
||||
"path10 = './get_neighbor/test2id.txt'"
|
||||
]
|
||||
},
|
||||
{
|
||||
"cell_type": "code",
|
||||
"execution_count": 7,
|
||||
"metadata": {},
|
||||
"outputs": [],
|
||||
"source": [
|
||||
"with open(path1, 'r') as f:\n",
|
||||
" a = f.readlines()\n",
|
||||
"cnt = 0\n",
|
||||
"with open(path6, 'w') as f:\n",
|
||||
" for line in a:\n",
|
||||
" en = line.strip()\n",
|
||||
" f.write(en + '\\t' + str(cnt) + '\\n')\n",
|
||||
" cnt += 1\n",
|
||||
" "
|
||||
]
|
||||
},
|
||||
{
|
||||
"cell_type": "code",
|
||||
"execution_count": 8,
|
||||
"metadata": {},
|
||||
"outputs": [],
|
||||
"source": [
|
||||
"with open(path2, 'r') as f:\n",
|
||||
" a = f.readlines()\n",
|
||||
"cnt = 0\n",
|
||||
"with open(path7, 'w') as f:\n",
|
||||
" for line in a:\n",
|
||||
" re = line.strip()\n",
|
||||
" f.write(re + '\\t' + str(cnt) + '\\n')\n",
|
||||
" cnt += 1\n",
|
||||
" "
|
||||
]
|
||||
},
|
||||
{
|
||||
"cell_type": "code",
|
||||
"execution_count": 10,
|
||||
"metadata": {},
|
||||
"outputs": [],
|
||||
"source": [
|
||||
"with open(path6, 'r') as f:\n",
|
||||
" a = f.readlines()\n",
|
||||
"en2id = {}\n",
|
||||
"for line in a:\n",
|
||||
" b = line.strip().split('\\t')\n",
|
||||
" en, num = b[0], b[1]\n",
|
||||
" en2id[en] = num"
|
||||
]
|
||||
},
|
||||
{
|
||||
"cell_type": "code",
|
||||
"execution_count": 12,
|
||||
"metadata": {},
|
||||
"outputs": [],
|
||||
"source": [
|
||||
"with open(path7, 'r') as f:\n",
|
||||
" a = f.readlines()\n",
|
||||
"re2id = {}\n",
|
||||
"for line in a:\n",
|
||||
" b = line.strip().split('\\t')\n",
|
||||
" re, num = b[0], b[1]\n",
|
||||
" re2id[re] = num"
|
||||
]
|
||||
},
|
||||
{
|
||||
"cell_type": "code",
|
||||
"execution_count": 14,
|
||||
"metadata": {},
|
||||
"outputs": [],
|
||||
"source": [
|
||||
"with open(path3, 'r') as f:\n",
|
||||
" a = f.readlines()\n",
|
||||
"with open(path8, 'w') as f:\n",
|
||||
" for line in a:\n",
|
||||
" b = line.strip().split('\\t')\n",
|
||||
" h, r, t = b[0], b[1], b[2]\n",
|
||||
" f.write(en2id[h] + ' ' + re2id[r] + ' ' + en2id[t] + '\\n')\n",
|
||||
" "
|
||||
]
|
||||
},
|
||||
{
|
||||
"cell_type": "code",
|
||||
"execution_count": 15,
|
||||
"metadata": {},
|
||||
"outputs": [],
|
||||
"source": [
|
||||
"with open(path4, 'r') as f:\n",
|
||||
" a = f.readlines()\n",
|
||||
"with open(path9, 'w') as f:\n",
|
||||
" for line in a:\n",
|
||||
" b = line.strip().split('\\t')\n",
|
||||
" h, r, t = b[0], b[1], b[2]\n",
|
||||
" f.write(en2id[h] + ' ' + re2id[r] + ' ' + en2id[t] + '\\n')\n",
|
||||
" "
|
||||
]
|
||||
},
|
||||
{
|
||||
"cell_type": "code",
|
||||
"execution_count": null,
|
||||
"metadata": {},
|
||||
"outputs": [],
|
||||
"source": [
|
||||
"with open(path5, 'r') as f:\n",
|
||||
" a = f.readlines()\n",
|
||||
"with open(path10, 'w') as f:\n",
|
||||
" for line in a:\n",
|
||||
" b = line.strip().split('\\t')\n",
|
||||
" h, r, t = b[0], b[1], b[2]\n",
|
||||
" f.write(en2id[h] + ' ' + re2id[r] + ' ' + en2id[t] + '\\n')\n",
|
||||
" "
|
||||
]
|
||||
}
|
||||
],
|
||||
"metadata": {
|
||||
"kernelspec": {
|
||||
"display_name": "Python [default]",
|
||||
"language": "python",
|
||||
"name": "python3"
|
||||
},
|
||||
"language_info": {
|
||||
"codemirror_mode": {
|
||||
"name": "ipython",
|
||||
"version": 3
|
||||
},
|
||||
"file_extension": ".py",
|
||||
"mimetype": "text/x-python",
|
||||
"name": "python",
|
||||
"nbconvert_exporter": "python",
|
||||
"pygments_lexer": "ipython3",
|
||||
"version": "3.6.5"
|
||||
}
|
||||
},
|
||||
"nbformat": 4,
|
||||
"nbformat_minor": 2
|
||||
}
|
14541
dataset/FB15k-237/get_neighbor/entity2id.txt
Normal file
14541
dataset/FB15k-237/get_neighbor/entity2id.txt
Normal file
File diff suppressed because it is too large
Load Diff
237
dataset/FB15k-237/get_neighbor/relation2id.txt
Normal file
237
dataset/FB15k-237/get_neighbor/relation2id.txt
Normal file
@@ -0,0 +1,237 @@
|
||||
/soccer/football_team/current_roster./soccer/football_roster_position/position 0
|
||||
/music/artist/origin 1
|
||||
/ice_hockey/hockey_team/current_roster./sports/sports_team_roster/position 2
|
||||
/food/food/nutrients./food/nutrition_fact/nutrient 3
|
||||
/film/actor/film./film/performance/film 4
|
||||
/award/award_nominee/award_nominations./award/award_nomination/nominated_for 5
|
||||
/government/political_party/politicians_in_this_party./government/political_party_tenure/politician 6
|
||||
/base/schemastaging/person_extra/net_worth./measurement_unit/dated_money_value/currency 7
|
||||
/people/deceased_person/place_of_death 8
|
||||
/people/person/profession 9
|
||||
/location/administrative_division/first_level_division_of 10
|
||||
/base/marchmadness/ncaa_basketball_tournament/seeds./base/marchmadness/ncaa_tournament_seed/team 11
|
||||
/education/university/international_tuition./measurement_unit/dated_money_value/currency 12
|
||||
/location/us_county/county_seat 13
|
||||
/location/location/partially_contains 14
|
||||
/tv/tv_program/program_creator 15
|
||||
/film/film/music 16
|
||||
/tv/tv_program/languages 17
|
||||
/common/topic/webpage./common/webpage/category 18
|
||||
/user/tsegaran/random/taxonomy_subject/entry./user/tsegaran/random/taxonomy_entry/taxonomy 19
|
||||
/education/field_of_study/students_majoring./education/education/major_field_of_study 20
|
||||
/business/business_operation/assets./measurement_unit/dated_money_value/currency 21
|
||||
/film/film_set_designer/film_sets_designed 22
|
||||
/dataworld/gardening_hint/split_to 23
|
||||
/people/person/languages 24
|
||||
/business/job_title/people_with_this_title./business/employment_tenure/company 25
|
||||
/location/country/form_of_government 26
|
||||
/base/schemastaging/organization_extra/phone_number./base/schemastaging/phone_sandbox/service_language 27
|
||||
/people/person/place_of_birth 28
|
||||
/sports/sports_team/colors 29
|
||||
/education/educational_institution/school_type 30
|
||||
/award/award_category/winners./award/award_honor/award_winner 31
|
||||
/organization/organization/headquarters./location/mailing_address/citytown 32
|
||||
/education/educational_degree/people_with_this_degree./education/education/student 33
|
||||
/government/legislative_session/members./government/government_position_held/legislative_sessions 34
|
||||
/film/film/distributors./film/film_film_distributor_relationship/film_distribution_medium 35
|
||||
/education/educational_degree/people_with_this_degree./education/education/major_field_of_study 36
|
||||
/location/hud_county_place/county 37
|
||||
/location/administrative_division/country 38
|
||||
/film/film/film_production_design_by 39
|
||||
/award/award_winning_work/awards_won./award/award_honor/award 40
|
||||
/organization/organization/headquarters./location/mailing_address/state_province_region 41
|
||||
/base/schemastaging/organization_extra/phone_number./base/schemastaging/phone_sandbox/contact_category 42
|
||||
/tv/tv_program/country_of_origin 43
|
||||
/olympics/olympic_participating_country/medals_won./olympics/olympic_medal_honor/medal 44
|
||||
/location/country/second_level_divisions 45
|
||||
/award/award_ceremony/awards_presented./award/award_honor/honored_for 46
|
||||
/organization/organization_member/member_of./organization/organization_membership/organization 47
|
||||
/education/educational_institution/campuses 48
|
||||
/music/artist/contribution./music/recording_contribution/performance_role 49
|
||||
/award/ranked_item/appears_in_ranked_lists./award/ranking/list 50
|
||||
/people/person/religion 51
|
||||
/travel/travel_destination/climate./travel/travel_destination_monthly_climate/month 52
|
||||
/film/special_film_performance_type/film_performance_type./film/performance/film 53
|
||||
/award/award_nominee/award_nominations./award/award_nomination/award 54
|
||||
/location/statistical_region/religions./location/religion_percentage/religion 55
|
||||
/sports/sports_league_draft/picks./sports/sports_league_draft_pick/school 56
|
||||
/film/film/distributors./film/film_film_distributor_relationship/region 57
|
||||
/government/politician/government_positions_held./government/government_position_held/legislative_sessions 58
|
||||
/organization/role/leaders./organization/leadership/organization 59
|
||||
/tv/tv_network/programs./tv/tv_network_duration/program 60
|
||||
/soccer/football_team/current_roster./sports/sports_team_roster/position 61
|
||||
/music/instrument/instrumentalists 62
|
||||
/business/business_operation/operating_income./measurement_unit/dated_money_value/currency 63
|
||||
/people/cause_of_death/people 64
|
||||
/film/film/film_art_direction_by 65
|
||||
/people/person/sibling_s./people/sibling_relationship/sibling 66
|
||||
/film/film/cinematography 67
|
||||
/film/actor/dubbing_performances./film/dubbing_performance/language 68
|
||||
/base/biblioness/bibs_location/state 69
|
||||
/base/petbreeds/city_with_dogs/top_breeds./base/petbreeds/dog_city_relationship/dog_breed 70
|
||||
/people/person/gender 71
|
||||
/education/field_of_study/students_majoring./education/education/student 72
|
||||
/base/popstra/celebrity/dated./base/popstra/dated/participant 73
|
||||
/sports/sports_team/roster./american_football/football_roster_position/position 74
|
||||
/award/award_winner/awards_won./award/award_honor/award_winner 75
|
||||
/olympics/olympic_participating_country/medals_won./olympics/olympic_medal_honor/olympics 76
|
||||
/film/director/film 77
|
||||
/tv/tv_producer/programs_produced./tv/tv_producer_term/program 78
|
||||
/film/film_distributor/films_distributed./film/film_film_distributor_relationship/film 79
|
||||
/olympics/olympic_games/sports 80
|
||||
/music/record_label/artist 81
|
||||
/education/university/local_tuition./measurement_unit/dated_money_value/currency 82
|
||||
/film/film/story_by 83
|
||||
/people/person/spouse_s./people/marriage/spouse 84
|
||||
/sports/sports_league/teams./sports/sports_league_participation/team 85
|
||||
/people/profession/specialization_of 86
|
||||
/base/americancomedy/celebrity_impressionist/celebrities_impersonated 87
|
||||
/tv/tv_program/genre 88
|
||||
/award/award_category/nominees./award/award_nomination/nominated_for 89
|
||||
/language/human_language/countries_spoken_in 90
|
||||
/organization/organization/headquarters./location/mailing_address/country 91
|
||||
/location/statistical_region/gdp_real./measurement_unit/adjusted_money_value/adjustment_currency 92
|
||||
/education/university/fraternities_and_sororities 93
|
||||
/award/award_nominee/award_nominations./award/award_nomination/award_nominee 94
|
||||
/military/military_combatant/military_conflicts./military/military_combatant_group/combatants 95
|
||||
/award/award_nominated_work/award_nominations./award/award_nomination/nominated_for 96
|
||||
/location/location/time_zones 97
|
||||
/film/film/dubbing_performances./film/dubbing_performance/actor 98
|
||||
/film/film_subject/films 99
|
||||
/education/educational_degree/people_with_this_degree./education/education/institution 100
|
||||
/education/educational_institution/colors 101
|
||||
/award/award_category/category_of 102
|
||||
/tv/tv_personality/tv_regular_appearances./tv/tv_regular_personal_appearance/program 103
|
||||
/film/film/language 104
|
||||
/music/group_member/membership./music/group_membership/group 105
|
||||
/business/business_operation/revenue./measurement_unit/dated_money_value/currency 106
|
||||
/film/film/film_festivals 107
|
||||
/film/actor/film./film/performance/special_performance_type 108
|
||||
/organization/non_profit_organization/registered_with./organization/non_profit_registration/registering_agency 109
|
||||
/government/politician/government_positions_held./government/government_position_held/jurisdiction_of_office 110
|
||||
/base/aareas/schema/administrative_area/administrative_parent 111
|
||||
/award/award_winning_work/awards_won./award/award_honor/award_winner 112
|
||||
/organization/organization/place_founded 113
|
||||
/soccer/football_player/current_team./sports/sports_team_roster/team 114
|
||||
/government/politician/government_positions_held./government/government_position_held/basic_title 115
|
||||
/music/artist/track_contributions./music/track_contribution/role 116
|
||||
/base/localfood/seasonal_month/produce_available./base/localfood/produce_availability/seasonal_months 117
|
||||
/celebrities/celebrity/celebrity_friends./celebrities/friendship/friend 118
|
||||
/sports/professional_sports_team/draft_picks./sports/sports_league_draft_pick/school 119
|
||||
/award/hall_of_fame/inductees./award/hall_of_fame_induction/inductee 120
|
||||
/influence/influence_node/peers./influence/peer_relationship/peers 121
|
||||
/medicine/disease/risk_factors 122
|
||||
/broadcast/content/artist 123
|
||||
/film/film/estimated_budget./measurement_unit/dated_money_value/currency 124
|
||||
/military/military_conflict/combatants./military/military_combatant_group/combatants 125
|
||||
/location/capital_of_administrative_division/capital_of./location/administrative_division_capital_relationship/administrative_division 126
|
||||
/tv/tv_program/regular_cast./tv/regular_tv_appearance/actor 127
|
||||
/people/deceased_person/place_of_burial 128
|
||||
/location/location/adjoin_s./location/adjoining_relationship/adjoins 129
|
||||
/music/group_member/membership./music/group_membership/role 130
|
||||
/award/award_ceremony/awards_presented./award/award_honor/award_winner 131
|
||||
/film/film/prequel 132
|
||||
/film/film/produced_by 133
|
||||
/tv/tv_program/tv_producer./tv/tv_producer_term/producer_type 134
|
||||
/sports/sports_position/players./sports/sports_team_roster/team 135
|
||||
/olympics/olympic_games/participating_countries 136
|
||||
/music/genre/parent_genre 137
|
||||
/tv/tv_writer/tv_programs./tv/tv_program_writer_relationship/tv_program 138
|
||||
/music/genre/artists 139
|
||||
/film/film/genre 140
|
||||
/people/person/employment_history./business/employment_tenure/company 141
|
||||
/education/university/domestic_tuition./measurement_unit/dated_money_value/currency 142
|
||||
/people/person/nationality 143
|
||||
/location/country/capital 144
|
||||
/location/statistical_region/gni_per_capita_in_ppp_dollars./measurement_unit/dated_money_value/currency 145
|
||||
/base/aareas/schema/administrative_area/capital 146
|
||||
/business/business_operation/industry 147
|
||||
/location/hud_foreclosure_area/estimated_number_of_mortgages./measurement_unit/dated_integer/source 148
|
||||
/film/film/other_crew./film/film_crew_gig/crewmember 149
|
||||
/base/popstra/location/vacationers./base/popstra/vacation_choice/vacationer 150
|
||||
/film/film/film_format 151
|
||||
/medicine/disease/notable_people_with_this_condition 152
|
||||
/film/film/costume_design_by 153
|
||||
/government/government_office_category/officeholders./government/government_position_held/jurisdiction_of_office 154
|
||||
/location/statistical_region/gdp_nominal./measurement_unit/dated_money_value/currency 155
|
||||
/sports/sports_team/roster./baseball/baseball_roster_position/position 156
|
||||
/award/award_winning_work/awards_won./award/award_honor/honored_for 157
|
||||
/olympics/olympic_sport/athletes./olympics/olympic_athlete_affiliation/olympics 158
|
||||
/celebrities/celebrity/sexual_relationships./celebrities/romantic_relationship/celebrity 159
|
||||
/people/marriage_union_type/unions_of_this_type./people/marriage/location_of_ceremony 160
|
||||
/organization/organization/child./organization/organization_relationship/child 161
|
||||
/organization/organization_founder/organizations_founded 162
|
||||
/sports/sports_team/sport 163
|
||||
/people/ethnicity/geographic_distribution 164
|
||||
/location/statistical_region/places_exported_to./location/imports_and_exports/exported_to 165
|
||||
/location/country/official_language 166
|
||||
/film/film/production_companies 167
|
||||
/user/jg/default_domain/olympic_games/sports 168
|
||||
/time/event/locations 169
|
||||
/people/person/spouse_s./people/marriage/type_of_union 170
|
||||
/government/governmental_body/members./government/government_position_held/legislative_sessions 171
|
||||
/media_common/netflix_genre/titles 172
|
||||
/user/alexander/philosophy/philosopher/interests 173
|
||||
/film/film/runtime./film/film_cut/film_release_region 174
|
||||
/education/educational_institution/students_graduates./education/education/student 175
|
||||
/base/eating/practicer_of_diet/diet 176
|
||||
/tv/non_character_role/tv_regular_personal_appearances./tv/tv_regular_personal_appearance/person 177
|
||||
/sports/sports_position/players./sports/sports_team_roster/position 178
|
||||
/sports/professional_sports_team/draft_picks./sports/sports_league_draft_pick/draft 179
|
||||
/medicine/symptom/symptom_of 180
|
||||
/film/person_or_entity_appearing_in_film/films./film/personal_film_appearance/type_of_appearance 181
|
||||
/sports/sports_team_location/teams 182
|
||||
/american_football/football_team/current_roster./sports/sports_team_roster/position 183
|
||||
/people/person/places_lived./people/place_lived/location 184
|
||||
/location/statistical_region/rent50_2./measurement_unit/dated_money_value/currency 185
|
||||
/film/film/personal_appearances./film/personal_film_appearance/person 186
|
||||
/music/instrument/family 187
|
||||
/sports/sports_team/roster./basketball/basketball_roster_position/position 188
|
||||
/base/schemastaging/organization_extra/phone_number./base/schemastaging/phone_sandbox/service_location 189
|
||||
/film/film/release_date_s./film/film_regional_release_date/film_release_region 190
|
||||
/award/award_category/disciplines_or_subjects 191
|
||||
/base/popstra/celebrity/friendship./base/popstra/friendship/participant 192
|
||||
/music/performance_role/regular_performances./music/group_membership/group 193
|
||||
/film/film/edited_by 194
|
||||
/base/x2010fifaworldcupsouthafrica/world_cup_squad/current_world_cup_squad./base/x2010fifaworldcupsouthafrica/current_world_cup_squad/current_club 195
|
||||
/base/popstra/celebrity/canoodled./base/popstra/canoodled/participant 196
|
||||
/film/film/release_date_s./film/film_regional_release_date/film_release_distribution_medium 197
|
||||
/film/film/other_crew./film/film_crew_gig/film_crew_role 198
|
||||
/base/popstra/celebrity/breakup./base/popstra/breakup/participant 199
|
||||
/film/film/country 200
|
||||
/music/performance_role/regular_performances./music/group_membership/role 201
|
||||
/sports/sports_team/roster./american_football/football_historical_roster_position/position_s 202
|
||||
/film/film/release_date_s./film/film_regional_release_date/film_regional_debut_venue 203
|
||||
/time/event/instance_of_recurring_event 204
|
||||
/olympics/olympic_participating_country/athletes./olympics/olympic_athlete_affiliation/olympics 205
|
||||
/organization/endowed_organization/endowment./measurement_unit/dated_money_value/currency 206
|
||||
/travel/travel_destination/how_to_get_here./travel/transportation/mode_of_transportation 207
|
||||
/baseball/baseball_team/team_stats./baseball/baseball_team_stats/season 208
|
||||
/award/award_category/winners./award/award_honor/ceremony 209
|
||||
/government/legislative_session/members./government/government_position_held/district_represented 210
|
||||
/influence/influence_node/influenced_by 211
|
||||
/base/culturalevent/event/entity_involved 212
|
||||
/people/ethnicity/people 213
|
||||
/sports/sport/pro_athletes./sports/pro_sports_played/athlete 214
|
||||
/location/statistical_region/gdp_nominal_per_capita./measurement_unit/dated_money_value/currency 215
|
||||
/location/hud_county_place/place 216
|
||||
/base/aareas/schema/administrative_area/administrative_area_type 217
|
||||
/base/locations/continents/countries_within 218
|
||||
/sports/sports_position/players./american_football/football_historical_roster_position/position_s 219
|
||||
/people/person/spouse_s./people/marriage/location_of_ceremony 220
|
||||
/education/educational_institution/students_graduates./education/education/major_field_of_study 221
|
||||
/film/film/written_by 222
|
||||
/olympics/olympic_sport/athletes./olympics/olympic_athlete_affiliation/country 223
|
||||
/music/performance_role/guest_performances./music/recording_contribution/performance_role 224
|
||||
/film/film/featured_film_locations 225
|
||||
/education/educational_institution_campus/educational_institution 226
|
||||
/sports/pro_athlete/teams./sports/sports_team_roster/team 227
|
||||
/people/ethnicity/languages_spoken 228
|
||||
/film/film/executive_produced_by 229
|
||||
/tv/tv_producer/programs_produced./tv/tv_producer_term/producer_type 230
|
||||
/location/location/contains 231
|
||||
/base/biblioness/bibs_location/country 232
|
||||
/user/ktrueman/default_domain/international_organization/member_states 233
|
||||
/music/performance_role/track_performances./music/track_contribution/role 234
|
||||
/olympics/olympic_games/medals_awarded./olympics/olympic_medal_honor/medal 235
|
||||
/base/saturdaynightlive/snl_cast_member/seasons./base/saturdaynightlive/snl_season_tenure/cast_members 236
|
20466
dataset/FB15k-237/get_neighbor/test2id.txt
Normal file
20466
dataset/FB15k-237/get_neighbor/test2id.txt
Normal file
File diff suppressed because it is too large
Load Diff
272115
dataset/FB15k-237/get_neighbor/train2id.txt
Normal file
272115
dataset/FB15k-237/get_neighbor/train2id.txt
Normal file
File diff suppressed because it is too large
Load Diff
17535
dataset/FB15k-237/get_neighbor/valid2id.txt
Normal file
17535
dataset/FB15k-237/get_neighbor/valid2id.txt
Normal file
File diff suppressed because it is too large
Load Diff
237
dataset/FB15k-237/relation2text.txt
Normal file
237
dataset/FB15k-237/relation2text.txt
Normal file
@@ -0,0 +1,237 @@
|
||||
/soccer/football_team/current_roster./soccer/football_roster_position/position soccer football team current roster. soccer football roster position position
|
||||
/music/artist/origin music artist origin
|
||||
/ice_hockey/hockey_team/current_roster./sports/sports_team_roster/position ice hockey hockey team current roster. sports sports team roster position
|
||||
/food/food/nutrients./food/nutrition_fact/nutrient food food nutrients. food nutrition fact nutrient
|
||||
/film/actor/film./film/performance/film film actor film. film performance film
|
||||
/award/award_nominee/award_nominations./award/award_nomination/nominated_for award award nominee award nominations. award award nomination nominated for
|
||||
/government/political_party/politicians_in_this_party./government/political_party_tenure/politician government political party politicians in this party. government political party tenure politician
|
||||
/base/schemastaging/person_extra/net_worth./measurement_unit/dated_money_value/currency base schemastaging person extra net worth. measurement unit dated money value currency
|
||||
/people/deceased_person/place_of_death people deceased person place of death
|
||||
/people/person/profession people person profession
|
||||
/location/administrative_division/first_level_division_of location administrative division first level division of
|
||||
/base/marchmadness/ncaa_basketball_tournament/seeds./base/marchmadness/ncaa_tournament_seed/team base marchmadness ncaa basketball tournament seeds. base marchmadness ncaa tournament seed team
|
||||
/education/university/international_tuition./measurement_unit/dated_money_value/currency education university international tuition. measurement unit dated money value currency
|
||||
/location/us_county/county_seat location us county county seat
|
||||
/location/location/partially_contains location location partially contains
|
||||
/tv/tv_program/program_creator tv tv program program creator
|
||||
/film/film/music film film music
|
||||
/tv/tv_program/languages tv tv program languages
|
||||
/common/topic/webpage./common/webpage/category common topic webpage. common webpage category
|
||||
/user/tsegaran/random/taxonomy_subject/entry./user/tsegaran/random/taxonomy_entry/taxonomy user tsegaran random taxonomy subject entry. user tsegaran random taxonomy entry taxonomy
|
||||
/education/field_of_study/students_majoring./education/education/major_field_of_study education field of study students majoring. education education major field of study
|
||||
/business/business_operation/assets./measurement_unit/dated_money_value/currency business business operation assets. measurement unit dated money value currency
|
||||
/film/film_set_designer/film_sets_designed film film set designer film sets designed
|
||||
/dataworld/gardening_hint/split_to dataworld gardening hint split to
|
||||
/people/person/languages people person languages
|
||||
/business/job_title/people_with_this_title./business/employment_tenure/company business job title people with this title. business employment tenure company
|
||||
/location/country/form_of_government location country form of government
|
||||
/base/schemastaging/organization_extra/phone_number./base/schemastaging/phone_sandbox/service_language base schemastaging organization extra phone number. base schemastaging phone sandbox service language
|
||||
/people/person/place_of_birth people person place of birth
|
||||
/sports/sports_team/colors sports sports team colors
|
||||
/education/educational_institution/school_type education educational institution school type
|
||||
/award/award_category/winners./award/award_honor/award_winner award award category winners. award award honor award winner
|
||||
/organization/organization/headquarters./location/mailing_address/citytown organization organization headquarters. location mailing address citytown
|
||||
/education/educational_degree/people_with_this_degree./education/education/student education educational degree people with this degree. education education student
|
||||
/government/legislative_session/members./government/government_position_held/legislative_sessions government legislative session members. government government position held legislative sessions
|
||||
/film/film/distributors./film/film_film_distributor_relationship/film_distribution_medium film film distributors. film film film distributor relationship film distribution medium
|
||||
/education/educational_degree/people_with_this_degree./education/education/major_field_of_study education educational degree people with this degree. education education major field of study
|
||||
/location/hud_county_place/county location hud county place county
|
||||
/location/administrative_division/country location administrative division country
|
||||
/film/film/film_production_design_by film film film production design by
|
||||
/award/award_winning_work/awards_won./award/award_honor/award award award winning work awards won. award award honor award
|
||||
/organization/organization/headquarters./location/mailing_address/state_province_region organization organization headquarters. location mailing address state province region
|
||||
/base/schemastaging/organization_extra/phone_number./base/schemastaging/phone_sandbox/contact_category base schemastaging organization extra phone number. base schemastaging phone sandbox contact category
|
||||
/tv/tv_program/country_of_origin tv tv program country of origin
|
||||
/olympics/olympic_participating_country/medals_won./olympics/olympic_medal_honor/medal olympics olympic participating country medals won. olympics olympic medal honor medal
|
||||
/location/country/second_level_divisions location country second level divisions
|
||||
/award/award_ceremony/awards_presented./award/award_honor/honored_for award award ceremony awards presented. award award honor honored for
|
||||
/organization/organization_member/member_of./organization/organization_membership/organization organization organization member member of. organization organization membership organization
|
||||
/education/educational_institution/campuses education educational institution campuses
|
||||
/music/artist/contribution./music/recording_contribution/performance_role music artist contribution. music recording contribution performance role
|
||||
/award/ranked_item/appears_in_ranked_lists./award/ranking/list award ranked item appears in ranked lists. award ranking list
|
||||
/people/person/religion people person religion
|
||||
/travel/travel_destination/climate./travel/travel_destination_monthly_climate/month travel travel destination climate. travel travel destination monthly climate month
|
||||
/film/special_film_performance_type/film_performance_type./film/performance/film film special film performance type film performance type. film performance film
|
||||
/award/award_nominee/award_nominations./award/award_nomination/award award award nominee award nominations. award award nomination award
|
||||
/location/statistical_region/religions./location/religion_percentage/religion location statistical region religions. location religion percentage religion
|
||||
/sports/sports_league_draft/picks./sports/sports_league_draft_pick/school sports sports league draft picks. sports sports league draft pick school
|
||||
/film/film/distributors./film/film_film_distributor_relationship/region film film distributors. film film film distributor relationship region
|
||||
/government/politician/government_positions_held./government/government_position_held/legislative_sessions government politician government positions held. government government position held legislative sessions
|
||||
/organization/role/leaders./organization/leadership/organization organization role leaders. organization leadership organization
|
||||
/tv/tv_network/programs./tv/tv_network_duration/program tv tv network programs. tv tv network duration program
|
||||
/soccer/football_team/current_roster./sports/sports_team_roster/position soccer football team current roster. sports sports team roster position
|
||||
/music/instrument/instrumentalists music instrument instrumentalists
|
||||
/business/business_operation/operating_income./measurement_unit/dated_money_value/currency business business operation operating income. measurement unit dated money value currency
|
||||
/people/cause_of_death/people people cause of death people
|
||||
/film/film/film_art_direction_by film film film art direction by
|
||||
/people/person/sibling_s./people/sibling_relationship/sibling people person sibling s. people sibling relationship sibling
|
||||
/film/film/cinematography film film cinematography
|
||||
/film/actor/dubbing_performances./film/dubbing_performance/language film actor dubbing performances. film dubbing performance language
|
||||
/base/biblioness/bibs_location/state base biblioness bibs location state
|
||||
/base/petbreeds/city_with_dogs/top_breeds./base/petbreeds/dog_city_relationship/dog_breed base petbreeds city with dogs top breeds. base petbreeds dog city relationship dog breed
|
||||
/people/person/gender people person gender
|
||||
/education/field_of_study/students_majoring./education/education/student education field of study students majoring. education education student
|
||||
/base/popstra/celebrity/dated./base/popstra/dated/participant base popstra celebrity dated. base popstra dated participant
|
||||
/sports/sports_team/roster./american_football/football_roster_position/position sports sports team roster. american football football roster position position
|
||||
/award/award_winner/awards_won./award/award_honor/award_winner award award winner awards won. award award honor award winner
|
||||
/olympics/olympic_participating_country/medals_won./olympics/olympic_medal_honor/olympics olympics olympic participating country medals won. olympics olympic medal honor olympics
|
||||
/film/director/film film director film
|
||||
/tv/tv_producer/programs_produced./tv/tv_producer_term/program tv tv producer programs produced. tv tv producer term program
|
||||
/film/film_distributor/films_distributed./film/film_film_distributor_relationship/film film film distributor films distributed. film film film distributor relationship film
|
||||
/olympics/olympic_games/sports olympics olympic games sports
|
||||
/music/record_label/artist music record label artist
|
||||
/education/university/local_tuition./measurement_unit/dated_money_value/currency education university local tuition. measurement unit dated money value currency
|
||||
/film/film/story_by film film story by
|
||||
/people/person/spouse_s./people/marriage/spouse people person spouse s. people marriage spouse
|
||||
/sports/sports_league/teams./sports/sports_league_participation/team sports sports league teams. sports sports league participation team
|
||||
/people/profession/specialization_of people profession specialization of
|
||||
/base/americancomedy/celebrity_impressionist/celebrities_impersonated base americancomedy celebrity impressionist celebrities impersonated
|
||||
/tv/tv_program/genre tv tv program genre
|
||||
/award/award_category/nominees./award/award_nomination/nominated_for award award category nominees. award award nomination nominated for
|
||||
/language/human_language/countries_spoken_in language human language countries spoken in
|
||||
/organization/organization/headquarters./location/mailing_address/country organization organization headquarters. location mailing address country
|
||||
/location/statistical_region/gdp_real./measurement_unit/adjusted_money_value/adjustment_currency location statistical region gdp real. measurement unit adjusted money value adjustment currency
|
||||
/education/university/fraternities_and_sororities education university fraternities and sororities
|
||||
/award/award_nominee/award_nominations./award/award_nomination/award_nominee award award nominee award nominations. award award nomination award nominee
|
||||
/military/military_combatant/military_conflicts./military/military_combatant_group/combatants military military combatant military conflicts. military military combatant group combatants
|
||||
/award/award_nominated_work/award_nominations./award/award_nomination/nominated_for award award nominated work award nominations. award award nomination nominated for
|
||||
/location/location/time_zones location location time zones
|
||||
/film/film/dubbing_performances./film/dubbing_performance/actor film film dubbing performances. film dubbing performance actor
|
||||
/film/film_subject/films film film subject films
|
||||
/education/educational_degree/people_with_this_degree./education/education/institution education educational degree people with this degree. education education institution
|
||||
/education/educational_institution/colors education educational institution colors
|
||||
/award/award_category/category_of award award category category of
|
||||
/tv/tv_personality/tv_regular_appearances./tv/tv_regular_personal_appearance/program tv tv personality tv regular appearances. tv tv regular personal appearance program
|
||||
/film/film/language film film language
|
||||
/music/group_member/membership./music/group_membership/group music group member membership. music group membership group
|
||||
/business/business_operation/revenue./measurement_unit/dated_money_value/currency business business operation revenue. measurement unit dated money value currency
|
||||
/film/film/film_festivals film film film festivals
|
||||
/film/actor/film./film/performance/special_performance_type film actor film. film performance special performance type
|
||||
/organization/non_profit_organization/registered_with./organization/non_profit_registration/registering_agency organization non profit organization registered with. organization non profit registration registering agency
|
||||
/government/politician/government_positions_held./government/government_position_held/jurisdiction_of_office government politician government positions held. government government position held jurisdiction of office
|
||||
/base/aareas/schema/administrative_area/administrative_parent base aareas schema administrative area administrative parent
|
||||
/award/award_winning_work/awards_won./award/award_honor/award_winner award award winning work awards won. award award honor award winner
|
||||
/organization/organization/place_founded organization organization place founded
|
||||
/soccer/football_player/current_team./sports/sports_team_roster/team soccer football player current team. sports sports team roster team
|
||||
/government/politician/government_positions_held./government/government_position_held/basic_title government politician government positions held. government government position held basic title
|
||||
/music/artist/track_contributions./music/track_contribution/role music artist track contributions. music track contribution role
|
||||
/base/localfood/seasonal_month/produce_available./base/localfood/produce_availability/seasonal_months base localfood seasonal month produce available. base localfood produce availability seasonal months
|
||||
/celebrities/celebrity/celebrity_friends./celebrities/friendship/friend celebrities celebrity celebrity friends. celebrities friendship friend
|
||||
/sports/professional_sports_team/draft_picks./sports/sports_league_draft_pick/school sports professional sports team draft picks. sports sports league draft pick school
|
||||
/award/hall_of_fame/inductees./award/hall_of_fame_induction/inductee award hall of fame inductees. award hall of fame induction inductee
|
||||
/influence/influence_node/peers./influence/peer_relationship/peers influence influence node peers. influence peer relationship peers
|
||||
/medicine/disease/risk_factors medicine disease risk factors
|
||||
/broadcast/content/artist broadcast content artist
|
||||
/film/film/estimated_budget./measurement_unit/dated_money_value/currency film film estimated budget. measurement unit dated money value currency
|
||||
/military/military_conflict/combatants./military/military_combatant_group/combatants military military conflict combatants. military military combatant group combatants
|
||||
/location/capital_of_administrative_division/capital_of./location/administrative_division_capital_relationship/administrative_division location capital of administrative division capital of. location administrative division capital relationship administrative division
|
||||
/tv/tv_program/regular_cast./tv/regular_tv_appearance/actor tv tv program regular cast. tv regular tv appearance actor
|
||||
/people/deceased_person/place_of_burial people deceased person place of burial
|
||||
/location/location/adjoin_s./location/adjoining_relationship/adjoins location location adjoin s. location adjoining relationship adjoins
|
||||
/music/group_member/membership./music/group_membership/role music group member membership. music group membership role
|
||||
/award/award_ceremony/awards_presented./award/award_honor/award_winner award award ceremony awards presented. award award honor award winner
|
||||
/film/film/prequel film film prequel
|
||||
/film/film/produced_by film film produced by
|
||||
/tv/tv_program/tv_producer./tv/tv_producer_term/producer_type tv tv program tv producer. tv tv producer term producer type
|
||||
/sports/sports_position/players./sports/sports_team_roster/team sports sports position players. sports sports team roster team
|
||||
/olympics/olympic_games/participating_countries olympics olympic games participating countries
|
||||
/music/genre/parent_genre music genre parent genre
|
||||
/tv/tv_writer/tv_programs./tv/tv_program_writer_relationship/tv_program tv tv writer tv programs. tv tv program writer relationship tv program
|
||||
/music/genre/artists music genre artists
|
||||
/film/film/genre film film genre
|
||||
/people/person/employment_history./business/employment_tenure/company people person employment history. business employment tenure company
|
||||
/education/university/domestic_tuition./measurement_unit/dated_money_value/currency education university domestic tuition. measurement unit dated money value currency
|
||||
/people/person/nationality people person nationality
|
||||
/location/country/capital location country capital
|
||||
/location/statistical_region/gni_per_capita_in_ppp_dollars./measurement_unit/dated_money_value/currency location statistical region gni per capita in ppp dollars. measurement unit dated money value currency
|
||||
/base/aareas/schema/administrative_area/capital base aareas schema administrative area capital
|
||||
/business/business_operation/industry business business operation industry
|
||||
/location/hud_foreclosure_area/estimated_number_of_mortgages./measurement_unit/dated_integer/source location hud foreclosure area estimated number of mortgages. measurement unit dated integer source
|
||||
/film/film/other_crew./film/film_crew_gig/crewmember film film other crew. film film crew gig crewmember
|
||||
/base/popstra/location/vacationers./base/popstra/vacation_choice/vacationer base popstra location vacationers. base popstra vacation choice vacationer
|
||||
/film/film/film_format film film film format
|
||||
/medicine/disease/notable_people_with_this_condition medicine disease notable people with this condition
|
||||
/film/film/costume_design_by film film costume design by
|
||||
/government/government_office_category/officeholders./government/government_position_held/jurisdiction_of_office government government office category officeholders. government government position held jurisdiction of office
|
||||
/location/statistical_region/gdp_nominal./measurement_unit/dated_money_value/currency location statistical region gdp nominal. measurement unit dated money value currency
|
||||
/sports/sports_team/roster./baseball/baseball_roster_position/position sports sports team roster. baseball baseball roster position position
|
||||
/award/award_winning_work/awards_won./award/award_honor/honored_for award award winning work awards won. award award honor honored for
|
||||
/olympics/olympic_sport/athletes./olympics/olympic_athlete_affiliation/olympics olympics olympic sport athletes. olympics olympic athlete affiliation olympics
|
||||
/celebrities/celebrity/sexual_relationships./celebrities/romantic_relationship/celebrity celebrities celebrity sexual relationships. celebrities romantic relationship celebrity
|
||||
/people/marriage_union_type/unions_of_this_type./people/marriage/location_of_ceremony people marriage union type unions of this type. people marriage location of ceremony
|
||||
/organization/organization/child./organization/organization_relationship/child organization organization child. organization organization relationship child
|
||||
/organization/organization_founder/organizations_founded organization organization founder organizations founded
|
||||
/sports/sports_team/sport sports sports team sport
|
||||
/people/ethnicity/geographic_distribution people ethnicity geographic distribution
|
||||
/location/statistical_region/places_exported_to./location/imports_and_exports/exported_to location statistical region places exported to. location imports and exports exported to
|
||||
/location/country/official_language location country official language
|
||||
/film/film/production_companies film film production companies
|
||||
/user/jg/default_domain/olympic_games/sports user jg default domain olympic games sports
|
||||
/time/event/locations time event locations
|
||||
/people/person/spouse_s./people/marriage/type_of_union people person spouse s. people marriage type of union
|
||||
/government/governmental_body/members./government/government_position_held/legislative_sessions government governmental body members. government government position held legislative sessions
|
||||
/media_common/netflix_genre/titles media common netflix genre titles
|
||||
/user/alexander/philosophy/philosopher/interests user alexander philosophy philosopher interests
|
||||
/film/film/runtime./film/film_cut/film_release_region film film runtime. film film cut film release region
|
||||
/education/educational_institution/students_graduates./education/education/student education educational institution students graduates. education education student
|
||||
/base/eating/practicer_of_diet/diet base eating practicer of diet diet
|
||||
/tv/non_character_role/tv_regular_personal_appearances./tv/tv_regular_personal_appearance/person tv non character role tv regular personal appearances. tv tv regular personal appearance person
|
||||
/sports/sports_position/players./sports/sports_team_roster/position sports sports position players. sports sports team roster position
|
||||
/sports/professional_sports_team/draft_picks./sports/sports_league_draft_pick/draft sports professional sports team draft picks. sports sports league draft pick draft
|
||||
/medicine/symptom/symptom_of medicine symptom symptom of
|
||||
/film/person_or_entity_appearing_in_film/films./film/personal_film_appearance/type_of_appearance film person or entity appearing in film films. film personal film appearance type of appearance
|
||||
/sports/sports_team_location/teams sports sports team location teams
|
||||
/american_football/football_team/current_roster./sports/sports_team_roster/position american football football team current roster. sports sports team roster position
|
||||
/people/person/places_lived./people/place_lived/location people person places lived. people place lived location
|
||||
/location/statistical_region/rent50_2./measurement_unit/dated_money_value/currency location statistical region rent50 2. measurement unit dated money value currency
|
||||
/film/film/personal_appearances./film/personal_film_appearance/person film film personal appearances. film personal film appearance person
|
||||
/music/instrument/family music instrument family
|
||||
/sports/sports_team/roster./basketball/basketball_roster_position/position sports sports team roster. basketball basketball roster position position
|
||||
/base/schemastaging/organization_extra/phone_number./base/schemastaging/phone_sandbox/service_location base schemastaging organization extra phone number. base schemastaging phone sandbox service location
|
||||
/film/film/release_date_s./film/film_regional_release_date/film_release_region film film release date s. film film regional release date film release region
|
||||
/award/award_category/disciplines_or_subjects award award category disciplines or subjects
|
||||
/base/popstra/celebrity/friendship./base/popstra/friendship/participant base popstra celebrity friendship. base popstra friendship participant
|
||||
/music/performance_role/regular_performances./music/group_membership/group music performance role regular performances. music group membership group
|
||||
/film/film/edited_by film film edited by
|
||||
/base/x2010fifaworldcupsouthafrica/world_cup_squad/current_world_cup_squad./base/x2010fifaworldcupsouthafrica/current_world_cup_squad/current_club base x2010fifaworldcupsouthafrica world cup squad current world cup squad. base x2010fifaworldcupsouthafrica current world cup squad current club
|
||||
/base/popstra/celebrity/canoodled./base/popstra/canoodled/participant base popstra celebrity canoodled. base popstra canoodled participant
|
||||
/film/film/release_date_s./film/film_regional_release_date/film_release_distribution_medium film film release date s. film film regional release date film release distribution medium
|
||||
/film/film/other_crew./film/film_crew_gig/film_crew_role film film other crew. film film crew gig film crew role
|
||||
/base/popstra/celebrity/breakup./base/popstra/breakup/participant base popstra celebrity breakup. base popstra breakup participant
|
||||
/film/film/country film film country
|
||||
/music/performance_role/regular_performances./music/group_membership/role music performance role regular performances. music group membership role
|
||||
/sports/sports_team/roster./american_football/football_historical_roster_position/position_s sports sports team roster. american football football historical roster position position s
|
||||
/film/film/release_date_s./film/film_regional_release_date/film_regional_debut_venue film film release date s. film film regional release date film regional debut venue
|
||||
/time/event/instance_of_recurring_event time event instance of recurring event
|
||||
/olympics/olympic_participating_country/athletes./olympics/olympic_athlete_affiliation/olympics olympics olympic participating country athletes. olympics olympic athlete affiliation olympics
|
||||
/organization/endowed_organization/endowment./measurement_unit/dated_money_value/currency organization endowed organization endowment. measurement unit dated money value currency
|
||||
/travel/travel_destination/how_to_get_here./travel/transportation/mode_of_transportation travel travel destination how to get here. travel transportation mode of transportation
|
||||
/baseball/baseball_team/team_stats./baseball/baseball_team_stats/season baseball baseball team team stats. baseball baseball team stats season
|
||||
/award/award_category/winners./award/award_honor/ceremony award award category winners. award award honor ceremony
|
||||
/government/legislative_session/members./government/government_position_held/district_represented government legislative session members. government government position held district represented
|
||||
/influence/influence_node/influenced_by influence influence node influenced by
|
||||
/base/culturalevent/event/entity_involved base culturalevent event entity involved
|
||||
/people/ethnicity/people people ethnicity people
|
||||
/sports/sport/pro_athletes./sports/pro_sports_played/athlete sports sport pro athletes. sports pro sports played athlete
|
||||
/location/statistical_region/gdp_nominal_per_capita./measurement_unit/dated_money_value/currency location statistical region gdp nominal per capita. measurement unit dated money value currency
|
||||
/location/hud_county_place/place location hud county place place
|
||||
/base/aareas/schema/administrative_area/administrative_area_type base aareas schema administrative area administrative area type
|
||||
/base/locations/continents/countries_within base locations continents countries within
|
||||
/sports/sports_position/players./american_football/football_historical_roster_position/position_s sports sports position players. american football football historical roster position position s
|
||||
/people/person/spouse_s./people/marriage/location_of_ceremony people person spouse s. people marriage location of ceremony
|
||||
/education/educational_institution/students_graduates./education/education/major_field_of_study education educational institution students graduates. education education major field of study
|
||||
/film/film/written_by film film written by
|
||||
/olympics/olympic_sport/athletes./olympics/olympic_athlete_affiliation/country olympics olympic sport athletes. olympics olympic athlete affiliation country
|
||||
/music/performance_role/guest_performances./music/recording_contribution/performance_role music performance role guest performances. music recording contribution performance role
|
||||
/film/film/featured_film_locations film film featured film locations
|
||||
/education/educational_institution_campus/educational_institution education educational institution campus educational institution
|
||||
/sports/pro_athlete/teams./sports/sports_team_roster/team sports pro athlete teams. sports sports team roster team
|
||||
/people/ethnicity/languages_spoken people ethnicity languages spoken
|
||||
/film/film/executive_produced_by film film executive produced by
|
||||
/tv/tv_producer/programs_produced./tv/tv_producer_term/producer_type tv tv producer programs produced. tv tv producer term producer type
|
||||
/location/location/contains location location contains
|
||||
/base/biblioness/bibs_location/country base biblioness bibs location country
|
||||
/user/ktrueman/default_domain/international_organization/member_states user ktrueman default domain international organization member states
|
||||
/music/performance_role/track_performances./music/track_contribution/role music performance role track performances. music track contribution role
|
||||
/olympics/olympic_games/medals_awarded./olympics/olympic_medal_honor/medal olympics olympic games medals awarded. olympics olympic medal honor medal
|
||||
/base/saturdaynightlive/snl_cast_member/seasons./base/saturdaynightlive/snl_season_tenure/cast_members base saturdaynightlive snl cast member seasons. base saturdaynightlive snl season tenure cast members
|
237
dataset/FB15k-237/relations.txt
Normal file
237
dataset/FB15k-237/relations.txt
Normal file
@@ -0,0 +1,237 @@
|
||||
/soccer/football_team/current_roster./soccer/football_roster_position/position
|
||||
/music/artist/origin
|
||||
/ice_hockey/hockey_team/current_roster./sports/sports_team_roster/position
|
||||
/food/food/nutrients./food/nutrition_fact/nutrient
|
||||
/film/actor/film./film/performance/film
|
||||
/award/award_nominee/award_nominations./award/award_nomination/nominated_for
|
||||
/government/political_party/politicians_in_this_party./government/political_party_tenure/politician
|
||||
/base/schemastaging/person_extra/net_worth./measurement_unit/dated_money_value/currency
|
||||
/people/deceased_person/place_of_death
|
||||
/people/person/profession
|
||||
/location/administrative_division/first_level_division_of
|
||||
/base/marchmadness/ncaa_basketball_tournament/seeds./base/marchmadness/ncaa_tournament_seed/team
|
||||
/education/university/international_tuition./measurement_unit/dated_money_value/currency
|
||||
/location/us_county/county_seat
|
||||
/location/location/partially_contains
|
||||
/tv/tv_program/program_creator
|
||||
/film/film/music
|
||||
/tv/tv_program/languages
|
||||
/common/topic/webpage./common/webpage/category
|
||||
/user/tsegaran/random/taxonomy_subject/entry./user/tsegaran/random/taxonomy_entry/taxonomy
|
||||
/education/field_of_study/students_majoring./education/education/major_field_of_study
|
||||
/business/business_operation/assets./measurement_unit/dated_money_value/currency
|
||||
/film/film_set_designer/film_sets_designed
|
||||
/dataworld/gardening_hint/split_to
|
||||
/people/person/languages
|
||||
/business/job_title/people_with_this_title./business/employment_tenure/company
|
||||
/location/country/form_of_government
|
||||
/base/schemastaging/organization_extra/phone_number./base/schemastaging/phone_sandbox/service_language
|
||||
/people/person/place_of_birth
|
||||
/sports/sports_team/colors
|
||||
/education/educational_institution/school_type
|
||||
/award/award_category/winners./award/award_honor/award_winner
|
||||
/organization/organization/headquarters./location/mailing_address/citytown
|
||||
/education/educational_degree/people_with_this_degree./education/education/student
|
||||
/government/legislative_session/members./government/government_position_held/legislative_sessions
|
||||
/film/film/distributors./film/film_film_distributor_relationship/film_distribution_medium
|
||||
/education/educational_degree/people_with_this_degree./education/education/major_field_of_study
|
||||
/location/hud_county_place/county
|
||||
/location/administrative_division/country
|
||||
/film/film/film_production_design_by
|
||||
/award/award_winning_work/awards_won./award/award_honor/award
|
||||
/organization/organization/headquarters./location/mailing_address/state_province_region
|
||||
/base/schemastaging/organization_extra/phone_number./base/schemastaging/phone_sandbox/contact_category
|
||||
/tv/tv_program/country_of_origin
|
||||
/olympics/olympic_participating_country/medals_won./olympics/olympic_medal_honor/medal
|
||||
/location/country/second_level_divisions
|
||||
/award/award_ceremony/awards_presented./award/award_honor/honored_for
|
||||
/organization/organization_member/member_of./organization/organization_membership/organization
|
||||
/education/educational_institution/campuses
|
||||
/music/artist/contribution./music/recording_contribution/performance_role
|
||||
/award/ranked_item/appears_in_ranked_lists./award/ranking/list
|
||||
/people/person/religion
|
||||
/travel/travel_destination/climate./travel/travel_destination_monthly_climate/month
|
||||
/film/special_film_performance_type/film_performance_type./film/performance/film
|
||||
/award/award_nominee/award_nominations./award/award_nomination/award
|
||||
/location/statistical_region/religions./location/religion_percentage/religion
|
||||
/sports/sports_league_draft/picks./sports/sports_league_draft_pick/school
|
||||
/film/film/distributors./film/film_film_distributor_relationship/region
|
||||
/government/politician/government_positions_held./government/government_position_held/legislative_sessions
|
||||
/organization/role/leaders./organization/leadership/organization
|
||||
/tv/tv_network/programs./tv/tv_network_duration/program
|
||||
/soccer/football_team/current_roster./sports/sports_team_roster/position
|
||||
/music/instrument/instrumentalists
|
||||
/business/business_operation/operating_income./measurement_unit/dated_money_value/currency
|
||||
/people/cause_of_death/people
|
||||
/film/film/film_art_direction_by
|
||||
/people/person/sibling_s./people/sibling_relationship/sibling
|
||||
/film/film/cinematography
|
||||
/film/actor/dubbing_performances./film/dubbing_performance/language
|
||||
/base/biblioness/bibs_location/state
|
||||
/base/petbreeds/city_with_dogs/top_breeds./base/petbreeds/dog_city_relationship/dog_breed
|
||||
/people/person/gender
|
||||
/education/field_of_study/students_majoring./education/education/student
|
||||
/base/popstra/celebrity/dated./base/popstra/dated/participant
|
||||
/sports/sports_team/roster./american_football/football_roster_position/position
|
||||
/award/award_winner/awards_won./award/award_honor/award_winner
|
||||
/olympics/olympic_participating_country/medals_won./olympics/olympic_medal_honor/olympics
|
||||
/film/director/film
|
||||
/tv/tv_producer/programs_produced./tv/tv_producer_term/program
|
||||
/film/film_distributor/films_distributed./film/film_film_distributor_relationship/film
|
||||
/olympics/olympic_games/sports
|
||||
/music/record_label/artist
|
||||
/education/university/local_tuition./measurement_unit/dated_money_value/currency
|
||||
/film/film/story_by
|
||||
/people/person/spouse_s./people/marriage/spouse
|
||||
/sports/sports_league/teams./sports/sports_league_participation/team
|
||||
/people/profession/specialization_of
|
||||
/base/americancomedy/celebrity_impressionist/celebrities_impersonated
|
||||
/tv/tv_program/genre
|
||||
/award/award_category/nominees./award/award_nomination/nominated_for
|
||||
/language/human_language/countries_spoken_in
|
||||
/organization/organization/headquarters./location/mailing_address/country
|
||||
/location/statistical_region/gdp_real./measurement_unit/adjusted_money_value/adjustment_currency
|
||||
/education/university/fraternities_and_sororities
|
||||
/award/award_nominee/award_nominations./award/award_nomination/award_nominee
|
||||
/military/military_combatant/military_conflicts./military/military_combatant_group/combatants
|
||||
/award/award_nominated_work/award_nominations./award/award_nomination/nominated_for
|
||||
/location/location/time_zones
|
||||
/film/film/dubbing_performances./film/dubbing_performance/actor
|
||||
/film/film_subject/films
|
||||
/education/educational_degree/people_with_this_degree./education/education/institution
|
||||
/education/educational_institution/colors
|
||||
/award/award_category/category_of
|
||||
/tv/tv_personality/tv_regular_appearances./tv/tv_regular_personal_appearance/program
|
||||
/film/film/language
|
||||
/music/group_member/membership./music/group_membership/group
|
||||
/business/business_operation/revenue./measurement_unit/dated_money_value/currency
|
||||
/film/film/film_festivals
|
||||
/film/actor/film./film/performance/special_performance_type
|
||||
/organization/non_profit_organization/registered_with./organization/non_profit_registration/registering_agency
|
||||
/government/politician/government_positions_held./government/government_position_held/jurisdiction_of_office
|
||||
/base/aareas/schema/administrative_area/administrative_parent
|
||||
/award/award_winning_work/awards_won./award/award_honor/award_winner
|
||||
/organization/organization/place_founded
|
||||
/soccer/football_player/current_team./sports/sports_team_roster/team
|
||||
/government/politician/government_positions_held./government/government_position_held/basic_title
|
||||
/music/artist/track_contributions./music/track_contribution/role
|
||||
/base/localfood/seasonal_month/produce_available./base/localfood/produce_availability/seasonal_months
|
||||
/celebrities/celebrity/celebrity_friends./celebrities/friendship/friend
|
||||
/sports/professional_sports_team/draft_picks./sports/sports_league_draft_pick/school
|
||||
/award/hall_of_fame/inductees./award/hall_of_fame_induction/inductee
|
||||
/influence/influence_node/peers./influence/peer_relationship/peers
|
||||
/medicine/disease/risk_factors
|
||||
/broadcast/content/artist
|
||||
/film/film/estimated_budget./measurement_unit/dated_money_value/currency
|
||||
/military/military_conflict/combatants./military/military_combatant_group/combatants
|
||||
/location/capital_of_administrative_division/capital_of./location/administrative_division_capital_relationship/administrative_division
|
||||
/tv/tv_program/regular_cast./tv/regular_tv_appearance/actor
|
||||
/people/deceased_person/place_of_burial
|
||||
/location/location/adjoin_s./location/adjoining_relationship/adjoins
|
||||
/music/group_member/membership./music/group_membership/role
|
||||
/award/award_ceremony/awards_presented./award/award_honor/award_winner
|
||||
/film/film/prequel
|
||||
/film/film/produced_by
|
||||
/tv/tv_program/tv_producer./tv/tv_producer_term/producer_type
|
||||
/sports/sports_position/players./sports/sports_team_roster/team
|
||||
/olympics/olympic_games/participating_countries
|
||||
/music/genre/parent_genre
|
||||
/tv/tv_writer/tv_programs./tv/tv_program_writer_relationship/tv_program
|
||||
/music/genre/artists
|
||||
/film/film/genre
|
||||
/people/person/employment_history./business/employment_tenure/company
|
||||
/education/university/domestic_tuition./measurement_unit/dated_money_value/currency
|
||||
/people/person/nationality
|
||||
/location/country/capital
|
||||
/location/statistical_region/gni_per_capita_in_ppp_dollars./measurement_unit/dated_money_value/currency
|
||||
/base/aareas/schema/administrative_area/capital
|
||||
/business/business_operation/industry
|
||||
/location/hud_foreclosure_area/estimated_number_of_mortgages./measurement_unit/dated_integer/source
|
||||
/film/film/other_crew./film/film_crew_gig/crewmember
|
||||
/base/popstra/location/vacationers./base/popstra/vacation_choice/vacationer
|
||||
/film/film/film_format
|
||||
/medicine/disease/notable_people_with_this_condition
|
||||
/film/film/costume_design_by
|
||||
/government/government_office_category/officeholders./government/government_position_held/jurisdiction_of_office
|
||||
/location/statistical_region/gdp_nominal./measurement_unit/dated_money_value/currency
|
||||
/sports/sports_team/roster./baseball/baseball_roster_position/position
|
||||
/award/award_winning_work/awards_won./award/award_honor/honored_for
|
||||
/olympics/olympic_sport/athletes./olympics/olympic_athlete_affiliation/olympics
|
||||
/celebrities/celebrity/sexual_relationships./celebrities/romantic_relationship/celebrity
|
||||
/people/marriage_union_type/unions_of_this_type./people/marriage/location_of_ceremony
|
||||
/organization/organization/child./organization/organization_relationship/child
|
||||
/organization/organization_founder/organizations_founded
|
||||
/sports/sports_team/sport
|
||||
/people/ethnicity/geographic_distribution
|
||||
/location/statistical_region/places_exported_to./location/imports_and_exports/exported_to
|
||||
/location/country/official_language
|
||||
/film/film/production_companies
|
||||
/user/jg/default_domain/olympic_games/sports
|
||||
/time/event/locations
|
||||
/people/person/spouse_s./people/marriage/type_of_union
|
||||
/government/governmental_body/members./government/government_position_held/legislative_sessions
|
||||
/media_common/netflix_genre/titles
|
||||
/user/alexander/philosophy/philosopher/interests
|
||||
/film/film/runtime./film/film_cut/film_release_region
|
||||
/education/educational_institution/students_graduates./education/education/student
|
||||
/base/eating/practicer_of_diet/diet
|
||||
/tv/non_character_role/tv_regular_personal_appearances./tv/tv_regular_personal_appearance/person
|
||||
/sports/sports_position/players./sports/sports_team_roster/position
|
||||
/sports/professional_sports_team/draft_picks./sports/sports_league_draft_pick/draft
|
||||
/medicine/symptom/symptom_of
|
||||
/film/person_or_entity_appearing_in_film/films./film/personal_film_appearance/type_of_appearance
|
||||
/sports/sports_team_location/teams
|
||||
/american_football/football_team/current_roster./sports/sports_team_roster/position
|
||||
/people/person/places_lived./people/place_lived/location
|
||||
/location/statistical_region/rent50_2./measurement_unit/dated_money_value/currency
|
||||
/film/film/personal_appearances./film/personal_film_appearance/person
|
||||
/music/instrument/family
|
||||
/sports/sports_team/roster./basketball/basketball_roster_position/position
|
||||
/base/schemastaging/organization_extra/phone_number./base/schemastaging/phone_sandbox/service_location
|
||||
/film/film/release_date_s./film/film_regional_release_date/film_release_region
|
||||
/award/award_category/disciplines_or_subjects
|
||||
/base/popstra/celebrity/friendship./base/popstra/friendship/participant
|
||||
/music/performance_role/regular_performances./music/group_membership/group
|
||||
/film/film/edited_by
|
||||
/base/x2010fifaworldcupsouthafrica/world_cup_squad/current_world_cup_squad./base/x2010fifaworldcupsouthafrica/current_world_cup_squad/current_club
|
||||
/base/popstra/celebrity/canoodled./base/popstra/canoodled/participant
|
||||
/film/film/release_date_s./film/film_regional_release_date/film_release_distribution_medium
|
||||
/film/film/other_crew./film/film_crew_gig/film_crew_role
|
||||
/base/popstra/celebrity/breakup./base/popstra/breakup/participant
|
||||
/film/film/country
|
||||
/music/performance_role/regular_performances./music/group_membership/role
|
||||
/sports/sports_team/roster./american_football/football_historical_roster_position/position_s
|
||||
/film/film/release_date_s./film/film_regional_release_date/film_regional_debut_venue
|
||||
/time/event/instance_of_recurring_event
|
||||
/olympics/olympic_participating_country/athletes./olympics/olympic_athlete_affiliation/olympics
|
||||
/organization/endowed_organization/endowment./measurement_unit/dated_money_value/currency
|
||||
/travel/travel_destination/how_to_get_here./travel/transportation/mode_of_transportation
|
||||
/baseball/baseball_team/team_stats./baseball/baseball_team_stats/season
|
||||
/award/award_category/winners./award/award_honor/ceremony
|
||||
/government/legislative_session/members./government/government_position_held/district_represented
|
||||
/influence/influence_node/influenced_by
|
||||
/base/culturalevent/event/entity_involved
|
||||
/people/ethnicity/people
|
||||
/sports/sport/pro_athletes./sports/pro_sports_played/athlete
|
||||
/location/statistical_region/gdp_nominal_per_capita./measurement_unit/dated_money_value/currency
|
||||
/location/hud_county_place/place
|
||||
/base/aareas/schema/administrative_area/administrative_area_type
|
||||
/base/locations/continents/countries_within
|
||||
/sports/sports_position/players./american_football/football_historical_roster_position/position_s
|
||||
/people/person/spouse_s./people/marriage/location_of_ceremony
|
||||
/education/educational_institution/students_graduates./education/education/major_field_of_study
|
||||
/film/film/written_by
|
||||
/olympics/olympic_sport/athletes./olympics/olympic_athlete_affiliation/country
|
||||
/music/performance_role/guest_performances./music/recording_contribution/performance_role
|
||||
/film/film/featured_film_locations
|
||||
/education/educational_institution_campus/educational_institution
|
||||
/sports/pro_athlete/teams./sports/sports_team_roster/team
|
||||
/people/ethnicity/languages_spoken
|
||||
/film/film/executive_produced_by
|
||||
/tv/tv_producer/programs_produced./tv/tv_producer_term/producer_type
|
||||
/location/location/contains
|
||||
/base/biblioness/bibs_location/country
|
||||
/user/ktrueman/default_domain/international_organization/member_states
|
||||
/music/performance_role/track_performances./music/track_contribution/role
|
||||
/olympics/olympic_games/medals_awarded./olympics/olympic_medal_honor/medal
|
||||
/base/saturdaynightlive/snl_cast_member/seasons./base/saturdaynightlive/snl_season_tenure/cast_members
|
20466
dataset/FB15k-237/test.tsv
Normal file
20466
dataset/FB15k-237/test.tsv
Normal file
File diff suppressed because it is too large
Load Diff
272115
dataset/FB15k-237/train.tsv
Normal file
272115
dataset/FB15k-237/train.tsv
Normal file
File diff suppressed because it is too large
Load Diff
Reference in New Issue
Block a user