Created
September 7, 2018 16:03
-
-
Save kidtronnix/5f497d9f21e1fd4cb965965a07b6de5e to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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