|
|
|
@ -15,85 +15,27 @@ import structure_graph.sample_path as sp |
|
|
|
|
import estimators.structure_constraint_based_estimator as se |
|
|
|
|
import utility.json_importer as ji |
|
|
|
|
|
|
|
|
|
import copy |
|
|
|
|
|
|
|
|
|
class TestStructureConstraintBasedEstimator(unittest.TestCase): |
|
|
|
|
|
|
|
|
|
class TestStructureConstraintBasedEstimator(unittest.TestCase): |
|
|
|
|
@classmethod |
|
|
|
|
def setUpClass(cls): |
|
|
|
|
cls.read_files = glob.glob(os.path.join('../../data', "*.json")) |
|
|
|
|
cls.importer = ji.JsonImporter("../../data/networks_and_trajectories_binary_data_01_3.json", 'samples', 'dyn.str', 'variables', 'Time', 'Name') |
|
|
|
|
#cls.read_files = glob.glob(os.path.join('../../data', "*.json")) |
|
|
|
|
cls.importer = ji.JsonImporter("../../data/networks_and_trajectories_binary_data_01_15.json", 'samples', 'dyn.str', 'variables', 'Time', 'Name') |
|
|
|
|
cls.s1 = sp.SamplePath(cls.importer) |
|
|
|
|
cls.s1.build_trajectories() |
|
|
|
|
cls.s1.build_structure() |
|
|
|
|
|
|
|
|
|
def test_init(self): |
|
|
|
|
exp_alfa = 0.1 |
|
|
|
|
chi_alfa = 0.1 |
|
|
|
|
se1 = se.StructureConstraintBasedEstimator(self.s1, exp_alfa, chi_alfa) |
|
|
|
|
self.assertEqual(self.s1, se1.sample_path) |
|
|
|
|
self.assertTrue(np.array_equal(se1.nodes, np.array(self.s1.structure.nodes_labels))) |
|
|
|
|
self.assertTrue(np.array_equal(se1.nodes_indxs, self.s1.structure.nodes_indexes)) |
|
|
|
|
self.assertTrue(np.array_equal(se1.nodes_vals, self.s1.structure.nodes_values)) |
|
|
|
|
self.assertEqual(se1.exp_test_sign, exp_alfa) |
|
|
|
|
self.assertEqual(se1.chi_test_alfa, chi_alfa) |
|
|
|
|
self.assertIsInstance(se1.complete_graph, nx.DiGraph) |
|
|
|
|
self.assertIsInstance(se1.cache, ch.Cache) |
|
|
|
|
|
|
|
|
|
def test_build_complete_graph(self): |
|
|
|
|
exp_alfa = 0.1 |
|
|
|
|
chi_alfa = 0.1 |
|
|
|
|
nodes_numb = len(self.s1.structure.nodes_labels) |
|
|
|
|
se1 = se.StructureConstraintBasedEstimator(self.s1, exp_alfa, chi_alfa) |
|
|
|
|
cg = se1.build_complete_graph(self.s1.structure.nodes_labels) |
|
|
|
|
self.assertEqual(len(cg.edges), nodes_numb*(nodes_numb - 1)) |
|
|
|
|
for node in self.s1.structure.nodes_labels: |
|
|
|
|
no_self_loops = self.s1.structure.nodes_labels[:] |
|
|
|
|
no_self_loops.remove(node) |
|
|
|
|
for n2 in no_self_loops: |
|
|
|
|
self.assertIn((node, n2), cg.edges) |
|
|
|
|
|
|
|
|
|
def test_generate_possible_sub_sets_of_size(self): |
|
|
|
|
exp_alfa = 0.1 |
|
|
|
|
chi_alfa = 0.1 |
|
|
|
|
nodes_numb = len(self.s1.structure.nodes_labels) |
|
|
|
|
se1 = se.StructureConstraintBasedEstimator(self.s1, exp_alfa, chi_alfa) |
|
|
|
|
|
|
|
|
|
for node in self.s1.structure.nodes_labels: |
|
|
|
|
for b in range(nodes_numb): |
|
|
|
|
sets = se1.generate_possible_sub_sets_of_size(self.s1.structure.nodes_labels, b, node) |
|
|
|
|
sets2 = se1.generate_possible_sub_sets_of_size(self.s1.structure.nodes_labels, b, node) |
|
|
|
|
self.assertEqual(len(list(sets)), math.floor(math.factorial(nodes_numb - 1) / |
|
|
|
|
(math.factorial(b)*math.factorial(nodes_numb -1 - b)))) |
|
|
|
|
for sset in sets2: |
|
|
|
|
self.assertFalse(node in sset) |
|
|
|
|
def test_structure(self): |
|
|
|
|
true_edges = copy.deepcopy(self.s1.structure.edges) |
|
|
|
|
true_edges = set(map(tuple, true_edges)) |
|
|
|
|
|
|
|
|
|
def test_time(self): |
|
|
|
|
se1 = se.StructureConstraintBasedEstimator(self.s1, 0.1, 0.1) |
|
|
|
|
lp = LineProfiler() |
|
|
|
|
lp.add_function(se1.complete_test) |
|
|
|
|
lp.add_function(se1.one_iteration_of_CTPC_algorithm) |
|
|
|
|
lp.add_function(se1.independence_test) |
|
|
|
|
lp_wrapper = lp(se1.ctpc_algorithm) |
|
|
|
|
lp_wrapper() |
|
|
|
|
lp.print_stats() |
|
|
|
|
print(se1.complete_graph.edges) |
|
|
|
|
print(self.s1.structure.edges) |
|
|
|
|
for ed in self.s1.structure.edges: |
|
|
|
|
self.assertIn(tuple(ed), se1.complete_graph.edges) |
|
|
|
|
tuples_edges = [tuple(rec) for rec in self.s1.structure.edges] |
|
|
|
|
spurious_edges = [] |
|
|
|
|
for ed in se1.complete_graph.edges: |
|
|
|
|
if not(ed in tuples_edges): |
|
|
|
|
spurious_edges.append(ed) |
|
|
|
|
print("Spurious Edges:",spurious_edges) |
|
|
|
|
se1.save_results() |
|
|
|
|
se1 = se.StructureConstraintBasedEstimator(self.s1,0.1,0.1) |
|
|
|
|
edges = se1.ctpc_algorithm() |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
def test_memory(self): |
|
|
|
|
se1 = se.StructureConstraintBasedEstimator(self.s1, 0.1, 0.1) |
|
|
|
|
se1.ctpc_algorithm() |
|
|
|
|
current_process = psutil.Process(os.getpid()) |
|
|
|
|
mem = current_process.memory_info().rss |
|
|
|
|
print("Average Memory Usage in MB:", mem / 10**6) |
|
|
|
|
self.assertEqual(edges, true_edges) |
|
|
|
|
|
|
|
|
|
if __name__ == '__main__': |
|
|
|
|
unittest.main() |
|
|
|
|