mlpack 3.4.2
datatype.hpp
Go to the documentation of this file.
1
11#ifndef MLPACK_CORE_DATA_MAP_POLICIES_DATATYPE_HPP
12#define MLPACK_CORE_DATA_MAP_POLICIES_DATATYPE_HPP
13
14#include <mlpack/prereqs.hpp>
15
16namespace mlpack {
17namespace data {
24enum Datatype : bool /* [> bool is all the precision we need for two types <] */
25{
27 categorical = 1
28};
29
30} // namespace data
31} // namespace mlpack
32
33#endif
Datatype
The Datatype enum specifies the types of data mlpack algorithms can use.
Definition: datatype.hpp:25
Linear algebra utility functions, generally performed on matrices or vectors.
Definition: cv.hpp:1
The core includes that mlpack expects; standard C++ includes and Armadillo.