threshold-3outof5

At least 3 of 5 inputs high. Equivalent to 5-input majority function.

Function

3outof5(a, b, c, d, e) = 1 if (a + b + c + d + e) >= 3, else 0

Equivalently: MAJORITY(a, b, c, d, e)

Architecture

Single neuron: weights [1, 1, 1, 1, 1], bias -3

Fires when: sum >= 3

Parameters

Inputs 5
Outputs 1
Neurons 1
Layers 1
Parameters 6
Magnitude 8

Usage

from safetensors.torch import load_file
import torch

w = load_file('model.safetensors')

def atleast3of5(a, b, c, d, e):
    inp = torch.tensor([float(a), float(b), float(c), float(d), float(e)])
    return int((inp @ w['neuron.weight'].T + w['neuron.bias'] >= 0).item())

print(atleast3of5(0, 0, 0, 1, 1))  # 0 (sum=2)
print(atleast3of5(0, 0, 1, 1, 1))  # 1 (sum=3)

License

MIT

Downloads last month
18
Inference Providers NEW
This model isn't deployed by any Inference Provider. 🙋 Ask for provider support

Collection including phanerozoic/threshold-3outof5