Skip to content
forked from kidtronnix/mlp

Example implementation of a Multi-Layered Pereceptron

Notifications You must be signed in to change notification settings

zhouying370481/mlp

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

1 Commit
 
 
 
 
 
 
 
 

Repository files navigation

mlp

This is an example implementation of a Mult-Layered Perceptron. Written in Golang.

The code is used in this educational article here.

usage

To run the mlp...

git clone https://github.com/kidtronnix/mlp.git
cd mlp
go build
./mlp -train="data/train.csv" -test="data/test.csv" -eta=0.1 -epochs=3000 -arch="4,3,3"

To generate the data from source...

# from root of repo
cd data/
go run main.go
# this generates 'train.csv' and 'test.csv'

About

Example implementation of a Multi-Layered Pereceptron

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Go 100.0%