Awesome
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