Skip to content

Commit

Permalink
Merge pull request #10 from hollow-leaf/feat/zkMLCircuits
Browse files Browse the repository at this point in the history
feat: zk ml circuits and wasm
  • Loading branch information
kidneyweakx authored Aug 22, 2023
2 parents 8120e68 + 4abd83a commit d7a6973
Show file tree
Hide file tree
Showing 5 changed files with 2,915 additions and 57 deletions.
6 changes: 3 additions & 3 deletions packages/zk-circuits/circuits/circuits.circom
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
pragma circom 2.0.0;

include "../node_modules/circomlib-ml/circuits/BatchNormalization2D.circom";
include "../node_modules/circomlib-ml/circuits/ArgMax.circom";
include "../node_modules/circomlib-ml/circuits/Dense.circom";
include "../node_modules/circomlib-ml/circuits/Conv2D.circom";
include "../node_modules/circomlib-ml/circuits/GlobalAveragePooling2D.circom";
include "../node_modules/circomlib-ml/circuits/Conv2D.circom";
include "../node_modules/circomlib-ml/circuits/BatchNormalization2D.circom";
include "../node_modules/circomlib-ml/circuits/AveragePooling2D.circom";
include "../node_modules/circomlib-ml/circuits/ArgMax.circom";

template Model() {
signal input in[50][50][1];
Expand Down
Loading

0 comments on commit d7a6973

Please sign in to comment.