Downloads · 30 days
9
28% of all-time downloads
phanerozoic/threshold-majority3
threshold-majority3 is a machine learning model from phanerozoic. Use it for the machine learning task on the model card, and read the license before you ship it in a product. The card lists the license as mit.
3-input majority gate. Outputs 1 when at least 2 of 3 inputs are high.
Downloads · 30 days
9
28% of all-time downloads
All-time downloads
32
Public
Parameters
4
Likes
0
Public
Click a slice to open those files.
.py1.3 KB · 48%
From the Hugging Face model README
3-input majority gate. Outputs 1 when at least 2 of 3 inputs are high.
majority3(a, b, c) = 1 if (a + b + c) >= 2, else 0
| a | b | c | sum | out |
|---|---|---|---|---|
| 0 | 0 | 0 | 0 | 0 |
| 0 | 0 | 1 | 1 | 0 |
| 0 | 1 | 0 | 1 | 0 |
| 0 | 1 | 1 | 2 | 1 |
| 1 | 0 | 0 | 1 | 0 |
| 1 | 0 | 1 | 2 | 1 |
| 1 | 1 | 0 | 2 | 1 |
| 1 | 1 | 1 | 3 | 1 |
Single neuron: weights [1, 1, 1], bias -2
Fires when: a + b + c - 2 >= 0, i.e., sum >= 2
| Inputs | 3 |
| Outputs | 1 |
| Neurons | 1 |
| Layers | 1 |
| Parameters | 4 |
| Magnitude | 5 |
from safetensors.torch import load_file
import torch
w = load_file('model.safetensors')
def majority3(a, b, c):
inp = torch.tensor([float(a), float(b), float(c)])
return int((inp @ w['neuron.weight'].T + w['neuron.bias'] >= 0).item())
print(majority3(0, 1, 1)) # 1
print(majority3(0, 0, 1)) # 0
MIT