-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathmain.py
More file actions
147 lines (83 loc) · 2.91 KB
/
Copy pathmain.py
File metadata and controls
147 lines (83 loc) · 2.91 KB
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
#!/usr/bin/env python
# coding: utf-8
# In[ ]:
# import needed libraries
import glob
import json
import pandas
import ray
import time
# import module
from pkt_kg.downloads import OntData, LinkedData
from pkt_kg.edge_list import CreatesEdgeList
from pkt_kg.knowledge_graph import FullBuild, PartialBuild, PostClosureBuild
# In[ ]:
ont = OntData('resources/ontology_source_list.txt', 'resources/resource_info.txt')
ont.parses_resource_file()
# In[ ]:
ont.data_files = ont.source_list
ont.generates_source_metadata()
# In[ ]:
ont._writes_source_metadata_locally()
# In[ ]:
ont.resource_info
# In[ ]:
edges = LinkedData('resources/edge_source_list.txt', 'resources/resource_info.txt')
edges.parses_resource_file()
# In[ ]:
edges.data_files = edges.source_list
edges.generates_source_metadata()
# In[ ]:
edges._writes_source_metadata_locally()
# In[ ]:
edges.source_list.keys()
# In[ ]:
import psutil
# set-up environment for parallel processing -- even if running program serially these steps are needed
cpus = 1#psutil.cpu_count(logical=True)
#ray.shutdown()
ray.init()
# In[ ]:
# combine data sources
combined_edges = dict(edges.data_files, **ont.data_files)
resource_info_loc = './resources/resource_info.txt'
# initialize edge dictionary class
master_edges = CreatesEdgeList(data_files=combined_edges, source_file=resource_info_loc)
master_edges.runs_creates_knowledge_graph_edges(source_file=resource_info_loc, data_files=combined_edges, cpus=cpus)
# In[ ]:
master_edges = json.load(open('resources/Master_Edge_List_Dict.json', 'r'))
# In[ ]:
# <br><br>
# In[ ]:
# specify input arguments
build = 'full'
construction_approach = 'subclass'
add_node_data_to_kg = 'no'
add_inverse_relations_to_kg = 'yes'
decode_owl_semantics = 'yes'
kg_directory_location = './resources/knowledge_graphs'
# In[ ]:
# construct knowledge graphs
if build == 'partial':
kg = PartialBuild(construction=construction_approach,
node_data=add_node_data_to_kg,
inverse_relations=add_inverse_relations_to_kg,
decode_owl=decode_owl_semantics,
cpus=cpus,
write_location=kg_directory_location)
elif build == 'post-closure':
kg = PostClosureBuild(construction=construction_approach,
node_data=add_node_data_to_kg,
inverse_relations=add_inverse_relations_to_kg,
decode_owl=decode_owl_semantics,
cpus=cpus,
write_location=kg_directory_location)
else:
kg = FullBuild(construction=construction_approach,
node_data=add_node_data_to_kg,
inverse_relations=add_inverse_relations_to_kg,
decode_owl=decode_owl_semantics,
cpus=cpus,
write_location=kg_directory_location)
kg.construct_knowledge_graph()
ray.shutdown()