forked from Xxhhj1/doc-generate-1
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathextract_all_structure_knowledge.py
40 lines (35 loc) · 1.95 KB
/
extract_all_structure_knowledge.py
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
from pathlib import Path
from sekg.pipeline.base import KGBuildPipeline
from definitions import OUTPUT_DIR
from project.extractor_module.structure_extractor.category_structure_extractor import CategoryStructureExtractor
from project.extractor_module.structure_extractor.characteristic_structure_extractor import CharacteristicStructureExtractor
from project.extractor_module.structure_extractor.func_name_extractor import FuncNameExtractor
from project.utils.path_util import PathUtil
if __name__ == '__main__':
pipeline = KGBuildPipeline()
pro_name = "jabref"
graph_data_v1_path = PathUtil.graph_data(pro_name=pro_name, version="v3")
pipeline.load_graph(graph_data_v1_path)
component1 = CharacteristicStructureExtractor()
component1.set_json_save_path(Path(OUTPUT_DIR) / "json" / "name_characteristic.json")
component1.set_save_path(PathUtil.graph_data(pro_name=pro_name, version="v3.1"))
pipeline.add_component("从名称和结构中抽取特征", component1)
pipeline.run()
pipeline = KGBuildPipeline()
pro_name = "jabref"
graph_data_v1_path = PathUtil.graph_data(pro_name=pro_name, version="v3.1")
pipeline.load_graph(graph_data_v1_path)
component1 = FuncNameExtractor()
component1.set_json_save_path(Path(OUTPUT_DIR) / "json" / "name_functionality.json")
component1.set_save_path(PathUtil.graph_data(pro_name=pro_name, version="v3.2"))
pipeline.add_component("从名称中抽取动词关系", component1)
pipeline.run()
pipeline = KGBuildPipeline()
pro_name = "jabref"
graph_data_v1_path = PathUtil.graph_data(pro_name=pro_name, version="v3.2")
pipeline.load_graph(graph_data_v1_path)
component1 = CategoryStructureExtractor()
component1.set_json_save_path(Path(OUTPUT_DIR) / "json" / "name_category.json")
component1.set_save_path(PathUtil.graph_data(pro_name=pro_name, version="v3.3"))
pipeline.add_component("从名称和结构中抽取概念关系", component1)
pipeline.run()