12 #ifndef MLPACK_CORE_DATA_LOAD_ARFF_HPP
13 #define MLPACK_CORE_DATA_LOAD_ARFF_HPP
17 #include <boost/tokenizer.hpp>
28 void LoadARFF(
const std::string& filename, arma::Mat<eT>& matrix);
52 template<
typename eT,
typename PolicyType>
53 void LoadARFF(
const std::string& filename,
54 arma::Mat<eT>& matrix,
55 DatasetMapper<PolicyType>& info);
61 #include "load_arff_impl.hpp"
void LoadARFF(const std::string &filename, arma::Mat< eT > &matrix)
A utility function to load an ARFF dataset as numeric features (that is, as an Armadillo matrix witho...
The core includes that mlpack expects; standard C++ includes and Armadillo.