gotch/example/mnist
2020-06-17 17:03:54 +10:00
..
linear.go feat(free C pointer): added 'defer C.free(unsafe.Pointer(ptr))' to all missing. Except for CMalloc func and Nll func 2020-06-17 16:45:59 +10:00
main.go feat(vision/mnist): completed. WIP(example/mnist) 2020-06-15 13:19:42 +10:00
README.md feat(example/mnist): updated README.md 2020-06-17 17:03:54 +10:00

Linear Regression, NN, and CNN on MNIST dataset

MNIST

  • MNIST files can be obtained from this source and put in data/mnist from root folder of this project.

  • Load MNIST data using helper function at vision sub-package

Linear Regression

  • Run with go clean -cache -testcache && go run main.go linear.go

  • Accuraccy should be about 91.68%.

Neural Network (NN)

TODO: update

Convolutional Neural Network (CNN)

TODO: update