Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include "stdafx.h"
- #include <iostream>
- #include <string>
- #include <mlpack\core.hpp>
- int main(int argc, char** argv)
- {
- mlpack::CLI::ParseCommandLine(argc, argv);
- mlpack::Log::Info << "Hello world from MLPACK 2.0.3!" << std::endl;
- mlpack::Timer::Start("some_timer");
- std::cout << "Hi!" << std::endl;
- mlpack::Timer::Stop("some_timer");
- return 0;
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement