threshold-1outof5 / model.py
phanerozoic's picture
Upload folder using huggingface_hub
899c846 verified
raw
history blame contribute delete
657 Bytes
import torch
from safetensors.torch import load_file
def load_model(path='model.safetensors'):
return load_file(path)
def atleast1of5(a, b, c, d, e, weights):
"""Returns 1 if at least 1 of 5 inputs is high (OR gate)"""
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('1outof5 (OR5) sample outputs:')
print(f' 00000 -> {atleast1of5(0,0,0,0,0,w)}')
print(f' 00001 -> {atleast1of5(0,0,0,0,1,w)}')
print(f' 11111 -> {atleast1of5(1,1,1,1,1,w)}')