mirror of
https://github.com/socathie/circomlib-ml.git
synced 2026-01-09 14:08:04 -05:00
9 lines
179 B
Plaintext
9 lines
179 B
Plaintext
pragma circom 2.0.0;
|
|
|
|
// Poly activation layer: https://arxiv.org/abs/2011.05530
|
|
template Poly (n) {
|
|
signal input in;
|
|
signal output out;
|
|
|
|
out <== in * in + n*in;
|
|
} |