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

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

def atleast4of5(a, b, c, d, e, weights):
    inp = torch.tensor([float(a), float(b), float(c), float(d), float(e)])
    return int((inp @ weights['neuron.weight'].T + weights['neuron.bias'] >= 0).item())

if __name__ == '__main__':
    w = load_model()
    print('4outof5 sample outputs:')
    print(f'  00111 -> {atleast4of5(0,0,1,1,1,w)}')
    print(f'  01111 -> {atleast4of5(0,1,1,1,1,w)}')