File size: 606 Bytes
3f7d4c5
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
import torch
from safetensors.torch import load_file

def load_model(path='model.safetensors'):
    return load_file(path)

def atleast1of3(a, b, c, weights):
    """Returns 1 if at least 1 of 3 inputs is high (OR gate)"""
    inp = torch.tensor([float(a), float(b), float(c)])
    return int((inp @ weights['neuron.weight'].T + weights['neuron.bias'] >= 0).item())

if __name__ == '__main__':
    w = load_model()
    print('1outof3 (OR3) truth table:')
    for i in range(8):
        a, b, c = (i >> 2) & 1, (i >> 1) & 1, i & 1
        print(f'  {a}{b}{c} -> {atleast1of3(a, b, c, w)}')