go-deep icon indicating copy to clipboard operation
go-deep copied to clipboard

Artificial Neural Network

Results 2 go-deep issues
Sort by recently updated
recently updated
newest added

For now, the `Shuffle()` function in training/model.go is: ```Go func (e Examples) Shuffle() { for i := range e { j := rand.Intn(i + 1) e[i], e[j] = e[j], e[i]...

I added another activation function, i.e. LeakyReLU. This can be increase numerical efficiency in cases where you have flat cost functions. Another implementation choice could be add another parameter to...