forked from MichSchli/RelationPrediction
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsplit_model.py
74 lines (54 loc) · 2.07 KB
/
split_model.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
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
from model import Model
"""
Class representing an hierarchically organized model to be initialized in a dependency injection-like manner.
"""
class SplitModel(Model):
def __init__(self, next_component_list, settings):
self.next_components = next_component_list
self.settings = settings
self.entity_count = int(self.settings['EntityCount'])
self.relation_count = int(self.settings['RelationCount'])
self.parse_settings()
def needs_graph(self):
for component in self.next_components:
if component.needs_graph():
return True
return False
'''
Delegate function to the highest-level component with a definition:
'''
def __delegate__(self, name, *args):
raise Exception
'''
Run the function locally if it exists, then delegate to the next component:
'''
def __local_run_delegate__(self, name, *args):
local_function_name = 'local_' + name
if hasattr(self, local_function_name):
local_function = getattr(self, local_function_name)
local_function(*args)
for component in self.next_components:
function = getattr(component, name)
function(*args)
'''
Run the function locally if it exists, then compose with the next component through addition:
'''
def __local_expand_delegate__(self, name, *args, base=None):
should_set_add = False
if base is None:
#total hack
should_set_add = True
base = []
local_function_name = 'local_'+name
if hasattr(self, local_function_name):
local_function = getattr(self, local_function_name)
local_result = local_function(*args)
else:
local_result = base
for component in self.next_components:
function = getattr(component, name)
local_result += function(*args)
# TODO: Total hack. Don't publish this :D
if should_set_add:
local_result = list(set(local_result))
return local_result