Skip to content

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

25 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

Stars

168 stars

Watchers

9 watching

Forks

Releases

Packages

Used by

Contributors

Languages