Alexander Camuto 76ec430dc5 chore: cleanup layers and update readme (#20)
* cleanup eltwise and conv

* phrasing
2022-09-20 14:57:49 -04:00
em
2022-08-28 21:52:37 -04:00
2022-08-15 09:44:25 -04:00

Halo2 Deep Learning

Test

This is a proof-of-concept implementation of inference for deep learning models in a zk-snark using Halo2. 2d convolution, fully connected (affine) layers, and nonlinearities such as ReLU and sigmoid are implemented. The input image and model parameters are provided as private advice and the last layer is the public input (instance column). Other configurations are also possible.

We give an example of proving inference with a model that achieves 97.5% accuracy on MNIST in the examples.

Note that the library requires a nightly version of the rust toolchain. You can change the default toolchain by running:

rustup override set nightly         

Running examples

The MNIST inference example is contained in examples/conv2d_mnist. To run it:

cargo run --release --example conv2d_mnist

We also provide an example which runs an MLP on input data with four dimensions. To run it:

cargo run --release --example mlp_4d

Running onnx example

To run the example which loads parameters from an ONNX model file you need to enable the onnx build feature:

cargo run --release --example smallonnx --features onnx
Description
No description provided
Readme 164 MiB
Languages
Rust 96.7%
Python 2.4%
Shell 0.9%