Skip to content

Instantly share code, notes, and snippets.

@zoq
Created June 22, 2017 21:07
Show Gist options
  • Save zoq/845bfe5b72a2646ec7a0b2db263ae153 to your computer and use it in GitHub Desktop.
Save zoq/845bfe5b72a2646ec7a0b2db263ae153 to your computer and use it in GitHub Desktop.
network_test.cpp
#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