File size: 2,737 Bytes
e1404bc
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
71
72
73
74
75
76
77
78
79
80
81
"""

Threshold Network for Biconditional Gate



A formally verified two-layer threshold network computing logical equivalence (iff).

Biconditional is not linearly separable, requiring at least 2 layers.

Architecture: Layer1 computes NOR and AND, Layer2 computes OR of results.

"""

import torch
from safetensors.torch import load_file


class ThresholdBiImplies:
    """

    Biconditional gate implemented as a 2-layer threshold network.



    Layer 1: NOR (neuron 1) and AND (neuron 2) in parallel

    Layer 2: OR of layer 1 outputs



    BiImplies(x,y) = OR(NOR(x,y), AND(x,y)) = (x iff y)

    """

    def __init__(self, weights_dict):
        self.l1_n1_weight = weights_dict['layer1.neuron1.weight']
        self.l1_n1_bias = weights_dict['layer1.neuron1.bias']
        self.l1_n2_weight = weights_dict['layer1.neuron2.weight']
        self.l1_n2_bias = weights_dict['layer1.neuron2.bias']
        self.l2_weight = weights_dict['layer2.weight']
        self.l2_bias = weights_dict['layer2.bias']

    def __call__(self, x1, x2):
        inputs = torch.tensor([float(x1), float(x2)])

        nor_out = ((inputs * self.l1_n1_weight).sum() + self.l1_n1_bias >= 0).float()
        and_out = ((inputs * self.l1_n2_weight).sum() + self.l1_n2_bias >= 0).float()

        layer1_out = torch.tensor([nor_out, and_out])
        output = ((layer1_out * self.l2_weight).sum() + self.l2_bias >= 0).float()

        return output

    @classmethod
    def from_safetensors(cls, path="model.safetensors"):
        return cls(load_file(path))


def forward(x1, x2, weights):
    """

    Forward pass with Heaviside activation.



    Args:

        x1, x2: Input values (0 or 1)

        weights: Dict with layer weights and biases



    Returns:

        BiImplies(x1, x2) = (x1 iff x2)

    """
    inputs = torch.tensor([float(x1), float(x2)])

    nor_out = ((inputs * weights['layer1.neuron1.weight']).sum() + weights['layer1.neuron1.bias'] >= 0).float()
    and_out = ((inputs * weights['layer1.neuron2.weight']).sum() + weights['layer1.neuron2.bias'] >= 0).float()

    layer1_out = torch.tensor([nor_out, and_out])
    output = ((layer1_out * weights['layer2.weight']).sum() + weights['layer2.bias'] >= 0).float()

    return output


if __name__ == "__main__":
    weights = load_file("model.safetensors")
    model = ThresholdBiImplies(weights)

    print("Biconditional Gate Truth Table:")
    print("-" * 30)
    for x1 in [0, 1]:
        for x2 in [0, 1]:
            out = int(model(x1, x2).item())
            expected = 1 if x1 == x2 else 0
            status = "OK" if out == expected else "FAIL"
            print(f"BiImplies({x1}, {x2}) = {out}  [{status}]")