Skip to content

Instantly share code, notes, and snippets.

@kidtronnix
Created September 7, 2018 16:03
Show Gist options
  • Save kidtronnix/5f497d9f21e1fd4cb965965a07b6de5e to your computer and use it in GitHub Desktop.
Save kidtronnix/5f497d9f21e1fd4cb965965a07b6de5e to your computer and use it in GitHub Desktop.
package nn
import gonum.org/v1/gonum/mat
type NN interface {
Train(x,y mat.Matrix)
Evaluate(x, y mat.Matrix) float64
Predict(x mat.Matrix) mat.Matrix
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment