phanerozoic's picture
Upload folder using huggingface_hub
c0971b1 verified
raw
history blame contribute delete
490 Bytes
import torch
from safetensors.torch import load_file
def load_model(path='model.safetensors'):
return load_file(path)
def gte(a, b, weights):
inp = torch.tensor([float(a), float(b)])
return int((inp @ weights['neuron.weight'].T + weights['neuron.bias'] >= 0).item())
if __name__ == '__main__':
w = load_model()
print('greaterthanorequal truth table:')
for a in [0, 1]:
for b in [0, 1]:
print(f' {a} >= {b} -> {gte(a, b, w)}')