threshold-2outof5 / model.py
phanerozoic's picture
Upload folder using huggingface_hub
bfd282f verified
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)}')