A minimal CNN framework in Rust with INT8 and INT4 quantization.
- --
```toml
[dependencies]
microcnn = "0.1"
```
```rust
use microcnn::lenet::lenet;
let mut net = lenet(false);
net.load("data/lenet.raw");
```
```bash
cargo run --example lenet_mnist
```
Requires MNIST data files in `data/`.
MIT