Skip to content

Learning about neural networks by implementing one in Go

Notifications You must be signed in to change notification settings

peabnuts123/go-neural-network

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

1 Commit
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Golang Neural Network

Learning about the details of Machine Learning and Neural Networks by implementing one in Golang (also learning about Golang). This project heavily relies on gonum, a data science library for Go, similar to numpy.

Prerequisites

You will need the following to run this project:

  • Go programming language
  • MNIST data sets as CSV, available from this source, placed into the data/ directory
    curl https://pjreddie.com/media/files/mnist_train.csv -o data/mnist_train.csv
    curl https://pjreddie.com/media/files/mnist_test.csv -o data/mnist_test.csv

Running the project

Restore the project's dependencies by running:

go get -u ./...

(I think? I'm not 100% clear on Go package management, and whether you have to explicitly install dependencies)

Run the main project with:

go run src/main/main.go

References

About

Learning about neural networks by implementing one in Go

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages