parent
73ff8694b1
commit
c658b29a1c
@ -0,0 +1,76 @@ |
|||||||
|
import sys |
||||||
|
sys.path.append("../../classes/") |
||||||
|
import glob |
||||||
|
import math |
||||||
|
import os |
||||||
|
import unittest |
||||||
|
|
||||||
|
import networkx as nx |
||||||
|
import numpy as np |
||||||
|
import psutil |
||||||
|
from line_profiler import LineProfiler |
||||||
|
|
||||||
|
import utility.cache as ch |
||||||
|
import structure_graph.sample_path as sp |
||||||
|
import estimators.structure_constraint_based_estimator as se |
||||||
|
import utility.json_importer as ji |
||||||
|
|
||||||
|
from multiprocessing import set_start_method |
||||||
|
|
||||||
|
import copy |
||||||
|
|
||||||
|
|
||||||
|
class TestStructureConstraintBasedEstimator(unittest.TestCase): |
||||||
|
@classmethod |
||||||
|
def setUpClass(cls): |
||||||
|
pass |
||||||
|
|
||||||
|
def test_structure(self): |
||||||
|
#cls.read_files = glob.glob(os.path.join('../../data', "*.json")) |
||||||
|
self.importer = ji.JsonImporter("/home/alessandro/Documents/ctbn_cba/data/networks_and_trajectories_ternary_data_15.json", 'samples', 'dyn.str', 'variables', 'Time', 'Name') |
||||||
|
self.s1 = sp.SamplePath(self.importer) |
||||||
|
self.s1.build_trajectories() |
||||||
|
self.s1.build_structure() |
||||||
|
|
||||||
|
true_edges = copy.deepcopy(self.s1.structure.edges) |
||||||
|
true_edges = set(map(tuple, true_edges)) |
||||||
|
|
||||||
|
|
||||||
|
se1 = se.StructureConstraintBasedEstimator(self.s1,0.1,0.1) |
||||||
|
edges = se1.estimate_structure( |
||||||
|
max_parents = None, |
||||||
|
iterations_number = 100, |
||||||
|
patience = 35, |
||||||
|
tabu_length = 15, |
||||||
|
tabu_rules_duration = 15, |
||||||
|
optimizer = 'tabu', |
||||||
|
disable_multiprocessing=False |
||||||
|
) |
||||||
|
|
||||||
|
|
||||||
|
self.importer = ji.JsonImporter("/home/alessandro/Documents/ctbn_cba/data/networks_and_trajectories_ternary_data_15.json", 'samples', 'dyn.str', 'variables', 'Time', 'Name') |
||||||
|
self.s1 = sp.SamplePath(self.importer) |
||||||
|
self.s1.build_trajectories() |
||||||
|
self.s1.build_structure() |
||||||
|
|
||||||
|
true_edges = copy.deepcopy(self.s1.structure.edges) |
||||||
|
true_edges = set(map(tuple, true_edges)) |
||||||
|
|
||||||
|
|
||||||
|
se1 = se.StructureConstraintBasedEstimator(self.s1,0.1,0.1) |
||||||
|
edges = se1.estimate_structure( |
||||||
|
max_parents = None, |
||||||
|
iterations_number = 100, |
||||||
|
patience = 35, |
||||||
|
tabu_length = 15, |
||||||
|
tabu_rules_duration = 15, |
||||||
|
optimizer = 'tabu', |
||||||
|
disable_multiprocessing=True |
||||||
|
) |
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
self.assertEqual(edges, true_edges) |
||||||
|
|
||||||
|
if __name__ == '__main__': |
||||||
|
unittest.main() |
Reference in new issue