Ejemplo n.º 1
0
def test_tirp_matrix_get_all_direct_relations():
    matrix = TirpMatrix('r1')

    result = True
    reason = 'all good'

    matrix.extend(['r2', 'r3'])

    if matrix._relations != ['r1', 'r2', 'r3']:
        result = False
        reason = '1st extend failed'

    matrix.extend(['r4', 'r5', 'r6'])

    if result and matrix._relations != ['r1', 'r2', 'r4', 'r3', 'r5', 'r6']:
        result = False
        reason = '2nd extend failed'

    matrix.extend(['r7', 'r8', 'r9', 'r10'])

    if result and matrix._relations != [
            'r1', 'r2', 'r4', 'r7', 'r3', 'r5', 'r8', 'r6', 'r9', 'r10'
    ]:
        result = False
        reason = '3rd extend failed'

    relations = matrix.get_all_direct_relations()

    if result:
        logger.error('[PASSED] TIRP matrix extend: ' + reason)
    else:
        logger.error('[FAILED] TIRP matrix extend: ' + reason)
Ejemplo n.º 2
0
    def __init__(self,
                 first_symbol=None,
                 second_symbol=None,
                 relation=None,
                 label=0):
        self._Artemis_by_entity = {}
        if first_symbol is not None and second_symbol is not None and relation is not None:
            self._symbols = [first_symbol, second_symbol]
            self._tirp_matrix = TirpMatrix(relation)
        else:
            self._symbols = []
            self._tirp_matrix = {}

        self._supporting_sequences_by_entity = {}
        self._label = label
        self._name = ""
Ejemplo n.º 3
0
def test_tirp_matrix_copy():

    original = TirpMatrix('r1')

    t = original.copy()

    result = True
    reason = 'all good'

    if len(t._relations) != 1 or t._relations[0] != 'r1':
        result = False
        reason = 'relations not set'

    if result:
        logger.error('[PASSED] TIRP matrix copy: ' + reason)
    else:
        logger.error('[FAILED] TIRP matrix copy: ' + reason)
Ejemplo n.º 4
0
def test_tirp_matrix_get_relation_3_symbols():

    # matrix representing relations for [A, B, C]
    """
                | B | C  |
              --|---|----|
              A | r1| r2 |
              --|---|----|
              B |   | r3 |
              --|---|----|
    :return:
    """

    matrix = TirpMatrix('r1')

    result = True
    reason = 'all good'

    matrix.extend(['r2', 'r3'])

    if matrix._relations != ['r1', 'r2', 'r3']:
        result = False
        reason = '1st extend failed'

    # [A, B, C]
    # test relation fetch for A B
    relation = matrix.get_relation(0, 1)

    if result and relation != 'r1':
        result = False
        reason = 'relation fetch for A B failed, got [' + relation + ']'

    # [A, B, C]
    # test relation fetch for B C
    relation = matrix.get_relation(1, 2)

    if result and relation != 'r3':
        result = False
        reason = 'relation fetch for B C failed, got [' + relation + ']'

    # [A, B, C]
    # test relation fetch for B C
    relation = matrix.get_relation(0, 2)

    if result and relation != 'r2':
        result = False
        reason = 'relation fetch for A C failed, got [' + relation + ']'

    if result:
        logger.error('[PASSED] TIRP matrix 3 symbol fetch: ' + reason)
    else:
        logger.error('[FAILED] TIRP matrix 3 symbol fetch: ' + reason)
Ejemplo n.º 5
0
def test_tirp_matrix_simple_create():

    t = TirpMatrix('r1')

    result = True
    reason = 'all good'

    if len(t._relations) != 1 or t._relations[0] != 'r1':
        result = False
        reason = 'relations not set'

    if result:
        logger.error('[PASSED] TIRP matrix creation: ' + reason)
    else:
        logger.error('[FAILED] TIRP matrix creation: ' + reason)
Ejemplo n.º 6
0
class TIRP(object):
    def __init__(self,
                 first_symbol=None,
                 second_symbol=None,
                 relation=None,
                 label=0):
        self._Artemis_by_entity = {}
        if first_symbol is not None and second_symbol is not None and relation is not None:
            self._symbols = [first_symbol, second_symbol]
            self._tirp_matrix = TirpMatrix(relation)
        else:
            self._symbols = []
            self._tirp_matrix = {}

        self._supporting_sequences_by_entity = {}
        self._label = label
        self._name = ""

    def get_vertical_support(self):
        return len(self._supporting_sequences_by_entity.items())

    def copy(self):
        """
        create new tirp and copy all current variables
        :return: TIRP,copy of this tirp
        """
        new_tirp = TIRP()
        new_tirp._symbols = copy(self._symbols)
        new_tirp._label = self._label
        new_tirp._tirp_matrix = self._tirp_matrix.copy()
        for entity_id in self._supporting_sequences_by_entity.keys():
            new_tirp._supporting_sequences_by_entity[entity_id] = deepcopy(
                self._supporting_sequences_by_entity[entity_id])
        for entity_id in self._Artemis_by_entity.keys():
            new_tirp._Artemis_by_entity[entity_id] = deepcopy(
                self._Artemis_by_entity[entity_id])
        return new_tirp

    def hollow_copy(self):
        """
        create new tirp and copy all current variables
        :return: TIRP,copy of this tirp
        """
        new_tirp = TIRP()
        new_tirp._symbols = copy(self._symbols)
        new_tirp._label = self._label
        new_tirp._name = self._name
        new_tirp._tirp_matrix = self._tirp_matrix.copy()

        return new_tirp

    def get_last_symbol(self):
        """
        returns the last symbol of the tirp
        :return:int, last symbol
        """
        return self._symbols[-1]

    def get_mean_mean_duration(self):
        mean_duration_list = []
        for entity in self._supporting_sequences_by_entity:
            instances = self._supporting_sequences_by_entity[entity]
            #instances = instances[0]
            start_list = []
            end_list = []
            duration_list = []
            for i, instance in enumerate(instances):
                start_list.extend([x._start_time for x in instance])
                end_list.extend([x._end_time for x in instance])
                min_start_time = min(start_list)
                max_end_time = max(end_list)
                duration = max_end_time - min_start_time
                duration_list.append(duration)
                start_list = []
                end_list = []
            mean_duration = sum(duration_list) / len(duration_list)
            mean_duration_list.append(mean_duration)
        return np.mean(mean_duration_list)

    def calculate_mean_horizontal_support(self):
        """
        calculate the average horizontal support between all the supporting instances
        :return: double - the mean horizontal support value
        """
        num_of_entities = len(self._supporting_sequences_by_entity)
        if num_of_entities == 0:
            return 0
        num_of_instances = 0
        for entity_id, instances in self._supporting_sequences_by_entity.items(
        ):
            num_of_instances = num_of_instances + len(instances)
        mean_horizontal_support = num_of_instances / num_of_entities
        self._mean_horizontal_support = mean_horizontal_support
        return mean_horizontal_support

    def print_tirp(self, path, num_relations):
        """
        printing the TIRP into a file
        :param path: the output path to print the TIRP
        :param num_relations: number of relations used in the mining process
        :return: None - a file with the TIRPs
        """
        rel_object = RelationHandler(num_relations)
        tirp_string = str(len(self._symbols))
        tirp_string = tirp_string + " "
        for sym in self._symbols:
            tirp_string = tirp_string + str(sym) + "-"
        tirp_string = tirp_string + " "
        for rel in self._tirp_matrix._relations:
            tirp_string = tirp_string + rel_object.get_short_description(
                rel) + "."
        tirp_string = tirp_string + " "
        tirp_string = tirp_string + str(
            len(self._supporting_sequences_by_entity)) + " "
        tirp_string = tirp_string + str(
            self.calculate_mean_horizontal_support()) + " "
        for entity_id, instances in self._supporting_sequences_by_entity.items(
        ):
            tirp_string = tirp_string + str(entity_id) + " "
            for instance in instances:
                for sym in instance:
                    tirp_string = tirp_string + "[" + str(
                        sym.getStartTime()) + "-" + str(sym.getEndTime()) + "]"
            tirp_string = tirp_string + " "
        with open(path, 'a') as output_file:
            output_file.write(tirp_string + "\n")

    def get_tirp_name(self, num_relations):
        rel_object = RelationHandler(num_relations)
        if len(self._symbols) == 1:
            return str(self._symbols[0])
        rel = 0
        name = ''
        for i, j in itertools.combinations(self._symbols, 2):
            name = name + str(i) + rel_object.get_short_description(
                self._tirp_matrix._relations[rel]) + str(j) + '_'
            rel = rel + 1
        name = name[:-1]
        self._name = name
        return name

    def to_string(self):
        ans = ''

        for symbol in self._symbols:
            ans += str(symbol) + '_'

        ans += self._tirp_matrix.to_string()

        return ans