Exemple #1
0
 def __init__(self, X, Y, kernel_expression=SumKE(['WN'])._initialise()):
     self.X = X
     self.Y = Y
     self.kernel_expression = kernel_expression
     self.restarts = None
     self.model = None
     self.cached_utility_function = None
     self.cached_utility_function_type = None
Exemple #2
0
def multiply(k1,
             k2,
             with_nested_case=True
             ):  # Simple multiplication, NOT DISTRIBUTING OR SIMPLIFYING
    # with_nested_case = True returns a list instead of a single result; only str + SumKE will be a non-singleton
    res = None
    pair = sortOutTypePair(k1, k2)
    if len(pair) == 1:
        if isinstance(k1, SumKE):
            res = ProductKE([], [k1, k2])
        elif isinstance(k1, ProductKE):
            res = ProductKE(+k1.base_terms + k2.base_terms,
                            k1.composite_terms + k2.composite_terms)
        elif isinstance(k1, ChangeKE):
            res = ProductKE([], [k1, k2])
        else:  # elif isinstance(k1, str):
            res = ProductKE([k1, k2], [])
    else:
        if str in pair.keys():
            if SumKE in pair.keys():
                res = ProductKE([pair[str]], [pair[SumKE]])
                if with_nested_case:  # Also multiply the base kernel with each base_term addendum separately
                    return [res] + [
                        SumKE(
                            +pair[SumKE].base_terms - Counter([bt]),
                            pair[SumKE].composite_terms +
                            [ProductKE([pair[str], bt], [])])
                        for bt in pair[SumKE].base_terms.elements()
                    ]
            elif ProductKE in pair.keys():
                res = ProductKE(
                    +pair[ProductKE].base_terms + Counter([pair[str]]),
                    pair[ProductKE].composite_terms)
            else:  # elif ChangeKE in pair.keys():
                res = ProductKE([pair[str]], [pair[ChangeKE]])
        elif pair.keys() == {SumKE, ProductKE}:
            res = ProductKE(+pair[ProductKE].base_terms,
                            pair[ProductKE].composite_terms + [pair[SumKE]])
        elif pair.keys() == {SumKE, ChangeKE}:
            res = ProductKE([], list(pair.values()))
        else:  # elif pair.keys() == {ProductKE, ChangeKE}:
            res = ProductKE(+pair[ProductKE].base_terms,
                            pair[ProductKE].composite_terms + [pair[ChangeKE]])
    return [res] if with_nested_case else res
Exemple #3
0
def higher_curves(S):
    res = []
    higher_kers = [ProductKE(['LIN', 'LIN']), ProductKE(['LIN', 'LIN', 'LIN'])]
    if isinstance(S, SumKE):
        res = [
            SumKE(+S.base_terms, S.composite_terms + [ct])
            for ct in higher_kers
        ]
        # res += [SumKE((+S.base_terms) + Counter({'SE': -S.base_terms['SE'], bt: bt_c}), S.composite_terms) for bt, bt_c in [('LIN', 2), ('PER', 2)]]
        if 'SE' in (+S.base_terms).keys():  # Discourage SE
            for r in res:
                del r.base_terms['SE']
    elif isinstance(S, ProductKE):
        res = [
            ProductKE(+S.base_terms + Counter(bts), S.composite_terms)
            for bts in [{
                'LIN': 2
            }, {
                'LIN': 3
            }]
        ]
        res += [
            ProductKE(
                +S.base_terms + (Counter({'PER': 1}) if 'PER' in +S.base_terms
                                 else Counter({'PER': 2})), S.composite_terms)
        ]
        if 'SE' in (+S.base_terms).keys():  # Discourage SE
            for r in res:
                del r.base_terms['SE']
    elif isinstance(S, ChangeKE):
        res += [
            ChangeKE(S.CP_or_CW, ct, S.right) for ct in higher_kers
            if isinstance(S.left, str)
        ]
        res += [
            ChangeKE(S.CP_or_CW, S.left, ct) for ct in higher_kers
            if isinstance(S.right, str)
        ]
    else:  # elif isinstance(S, str): # This never occurs in the expansion though
        res = [[]]
    return res
Exemple #4
0
def remove_a_term(S):
    res = []
    if isinstance(S, SumKE) or isinstance(S, ProductKE):
        if S.term_count() > 1:
            res += [
                type(S)((+S.base_terms) + Counter({bt: -1}), S.composite_terms)
                for bt in (+S.base_terms).keys()
            ]
            res += [
                type(S)(+S.base_terms, S.composite_terms[0:cti] +
                        S.composite_terms[(cti + 1):])
                for cti in range(len(S.composite_terms))
            ]
        # elif not S.is_root(): print('THIS WAS HERE JUST TO VERIFY THAT IT NEVER HAPPENS (BY DESIGN); NOT THAT IT WOULD BREAK ANYTHING IF IT DID')
    elif isinstance(S, ChangeKE):
        res = [
            SumKE([branch]) if isinstance(branch, str) else branch
            for branch in (S.left, S.right)
        ]
    else:  # elif isinstance(S, str): # This never occurs in the expansion though
        res = [[]]
    return res
Exemple #5
0
def replace_node(S, S2):
    return [SumKE([S2])] if isinstance(S2, str) else [S2]