File size: 1,566 Bytes
6dfdbee |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 |
---
license: mit
tags:
- pytorch
- safetensors
- threshold-logic
- neuromorphic
- modular-arithmetic
---
# threshold-mod6
Computes Hamming weight mod 6 directly on inputs. Single-layer circuit.
## Circuit
```
xβ xβ xβ xβ xβ xβ
xβ xβ
β β β β β β β β
β β β β β β β β
w: 1 1 1 1 1 -5 1 1
ββββ΄βββ΄βββ΄βββΌβββ΄βββ΄βββ΄βββ
βΌ
βββββββββββ
β b: 0 β
βββββββββββ
β
βΌ
HW mod 6
```
## Algebraic Insight
For 8 inputs and mod 6, position 6 gets weight 1-6 = -5:
- Positions 1-5: weight +1
- Position 6: weight -5 (reset: 1+1+1+1+1-5 = 0)
- Positions 7-8: weight +1
```
HW=0: sum=0 β 0 mod 6
HW=1: sum=1 β 1 mod 6
...
HW=5: sum=5 β 5 mod 6
HW=6: sum=0 β 0 mod 6 (reset)
HW=7: sum=1 β 1 mod 6
HW=8: sum=2 β 2 mod 6
```
## Parameters
| | |
|---|---|
| Weights | [1, 1, 1, 1, 1, -5, 1, 1] |
| Bias | 0 |
| Total | 9 parameters |
## Usage
```python
from safetensors.torch import load_file
import torch
w = load_file('model.safetensors')
def mod6(bits):
inputs = torch.tensor([float(b) for b in bits])
return int((inputs * w['weight']).sum() + w['bias'])
```
## Files
```
threshold-mod6/
βββ model.safetensors
βββ model.py
βββ config.json
βββ README.md
```
## License
MIT
|