File size: 471 Bytes
2eff270 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 | import torch
from safetensors.torch import load_file
def load_model(path='model.safetensors'):
return load_file(path)
def lte(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('lessthanorequal truth table:')
for a in [0, 1]:
for b in [0, 1]:
print(f' {a} <= {b} -> {lte(a, b, w)}')
|