Advertisement
Guest User

mlpack

a guest
Aug 17th, 2016
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.37 KB | None | 0 0
  1. #include "stdafx.h"
  2. #include <iostream>
  3. #include <string>
  4.  
  5. #include <mlpack\core.hpp>
  6.  
  7. int main(int argc, char** argv)
  8. {
  9.     mlpack::CLI::ParseCommandLine(argc, argv);
  10.  
  11.     mlpack::Log::Info << "Hello world from MLPACK 2.0.3!" << std::endl;
  12.  
  13.     mlpack::Timer::Start("some_timer");
  14.  
  15.     std::cout << "Hi!" << std::endl;
  16.  
  17.     mlpack::Timer::Stop("some_timer");
  18.  
  19.     return 0;
  20. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement