package
0.9.1
Repository: https://github.com/pa-m/gorgonia.git
Documentation: pkg.go.dev

# README

ConvNet experimental

This is an example of a 3-layer ConvNet built with Gorgonia. It uses the MNIST data as an example. The MNIST data is not provided, and MUST be put in ../testdata.

This example currently works but is very slow, pending a change in transpose algorithms.

Disclaimer

This example comes with a basic implementation of a ConvNet. It does not contain:

  • Model serialization (you cannot save your models)
  • Checkpointing.
  • Multithreaded batching (training is highly serial).