Skip to content

stevenmiller888/go-mind

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

24 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

go-mind

A neural network library built in Go.

Usage

import "github.com/stevenmiller888/go-mind"

m := mind.New(0.7, 10000, 3, "sigmoid")

m.Learn([][][]float64{
	{{0, 0}, {0}},
	{{0, 1}, {1}},
	{{1, 0}, {1}},
	{{1, 1}, {0}},
})

m.Predict([][]float64{
	{1, 0},
})

Note

Just built this to learn a little Go. Feedback welcome :)

License

MIT

About

A neural network library built in Go

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages