Created
September 22, 2014 23:25
-
-
Save spolu/5e6eeeca0acdd70794f1 to your computer and use it in GitHub Desktop.
Neural Network Definition
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
// | |
// ## NN Class | |
// | |
class NN : public ObjectWrap { | |
/* ... */ | |
vector<int> layers_; /* layers structure */ | |
vector< vector< vector<double> > > W_; /* weights */ | |
/* ... */ | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment