File size: 533 Bytes
bfd282f
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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 atleast2of5(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('2outof5 sample outputs:')
    print(f'  00001 -> {atleast2of5(0,0,0,0,1,w)}')
    print(f'  00011 -> {atleast2of5(0,0,0,1,1,w)}')