Home
Get Started
Documentation
Community
Google Summer of Code
FAQ
GitHub
Home
Get Started
Documentation
Community
Google Summer of Code
FAQ
GitHub
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
16
namespace
mlpack
{
17
namespace
data {
24
enum
Datatype
:
bool
/* [> bool is all the precision we need for two types <] */
25
{
26
numeric
= 0,
27
categorical
= 1
28
};
29
30
}
// namespace data
31
}
// namespace mlpack
32
33
#endif
mlpack
.hpp
Definition:
add_to_po.hpp:21
prereqs.hpp
The core includes that mlpack expects; standard C++ includes and Armadillo.
mlpack::data::numeric
Definition:
datatype.hpp:26
mlpack::data::categorical
Definition:
datatype.hpp:27
mlpack::data::Datatype
Datatype
The Datatype enum specifies the types of data mlpack algorithms can use.
Definition:
datatype.hpp:24