Threshold Logic Circuits
Collection
Boolean gates, voting functions, modular arithmetic, and adders as threshold networks.
β’
248 items
β’
Updated
β’
1
At-least-one detector for 8 inputs. Equivalent to an 8-input OR gate.
xβ xβ xβ xβ xβ xβ
xβ xβ
β β β β β β β β
ββββ΄βββ΄βββ΄βββΌβββ΄βββ΄βββ΄βββ
βΌ
βββββββββββ
β w: all 1β
β b: -1 β
βββββββββββ
β
βΌ
HW β₯ 1
With uniform weights of 1 and bias -1, the neuron fires when at least one input is active:
This is the loosest threshold in the k-out-of-8 family.
| Circuit | Bias | Fires when |
|---|---|---|
| 1-out-of-8 | -1 | HW β₯ 1 (this) |
| 2-out-of-8 | -2 | HW β₯ 2 |
| ... | ... | ... |
| 8-out-of-8 | -8 | HW = 8 |
All share weights [1,1,1,1,1,1,1,1]. Only the bias differs.
| Weights | [1, 1, 1, 1, 1, 1, 1, 1] |
| Bias | -1 |
| Total | 9 parameters |
from safetensors.torch import load_file
import torch
w = load_file('model.safetensors')
def at_least_1(bits):
inputs = torch.tensor([float(b) for b in bits])
return int((inputs * w['weight']).sum() + w['bias'] >= 0)
threshold-1outof8/
βββ model.safetensors
βββ model.py
βββ config.json
βββ README.md
MIT