Created
June 22, 2017 21:07
-
-
Save zoq/845bfe5b72a2646ec7a0b2db263ae153 to your computer and use it in GitHub Desktop.
network_test.cpp
This file contains 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
#include <mlpack/core.hpp> | |
#include <mlpack/core/optimizers/rmsprop/rmsprop.hpp> | |
#include <mlpack/methods/ann/layer/layer.hpp> | |
#include <mlpack/methods/ann/ffn.hpp> | |
using namespace mlpack; | |
using namespace mlpack::ann; | |
using namespace mlpack::optimization; | |
int main() | |
{ | |
FFN<MeanSquaredError<>> model; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment