mlpack
1.0.12
Main Page
Related Pages
Namespaces
Classes
Files
File List
File Members
src
mlpack
core.hpp
Go to the documentation of this file.
1
/***
2
* @file core.hpp
3
*
4
* Include all of the base components required to write MLPACK methods, and the
5
* main MLPACK Doxygen documentation.
6
*
7
* This file is part of mlpack 1.0.12.
8
*
9
* mlpack is free software; you may redstribute it and/or modify it under the
10
* terms of the 3-clause BSD license. You should have received a copy of the
11
* 3-clause BSD license along with mlpack. If not, see
12
* http://www.opensource.org/licenses/BSD-3-Clause for more information.
13
*/
14
#ifndef __MLPACK_CORE_HPP
15
#define __MLPACK_CORE_HPP
16
156
// First, include all of the prerequisites.
157
#include <
mlpack/prereqs.hpp
>
158
159
// Now the core mlpack classes.
160
#include <
mlpack/core/util/arma_traits.hpp
>
161
#include <
mlpack/core/util/log.hpp
>
162
#include <
mlpack/core/util/cli.hpp
>
163
#include <
mlpack/core/data/load.hpp
>
164
#include <
mlpack/core/data/save.hpp
>
165
#include <
mlpack/core/data/normalize_labels.hpp
>
166
#include <
mlpack/core/math/clamp.hpp
>
167
#include <
mlpack/core/math/random.hpp
>
168
#include <
mlpack/core/math/lin_alg.hpp
>
169
#include <
mlpack/core/math/range.hpp
>
170
#include <
mlpack/core/math/round.hpp
>
171
#include <
mlpack/core/util/save_restore_utility.hpp
>
172
#include <
mlpack/core/dists/discrete_distribution.hpp
>
173
#include <
mlpack/core/dists/gaussian_distribution.hpp
>
174
175
// Include kernel traits.
176
#include <
mlpack/core/kernels/kernel_traits.hpp
>
177
#include <
mlpack/core/kernels/linear_kernel.hpp
>
178
#include <
mlpack/core/kernels/polynomial_kernel.hpp
>
179
#include <
mlpack/core/kernels/cosine_distance.hpp
>
180
#include <
mlpack/core/kernels/gaussian_kernel.hpp
>
181
#include <
mlpack/core/kernels/epanechnikov_kernel.hpp
>
182
#include <
mlpack/core/kernels/hyperbolic_tangent_kernel.hpp
>
183
#include <
mlpack/core/kernels/laplacian_kernel.hpp
>
184
#include <
mlpack/core/kernels/pspectrum_string_kernel.hpp
>
185
#include <
mlpack/core/kernels/spherical_kernel.hpp
>
186
#include <
mlpack/core/kernels/triangular_kernel.hpp
>
187
188
// Use Armadillo's C++ version detection.
189
#ifdef ARMA_USE_CXX11
190
#define MLPACK_USE_CX11
191
#endif
192
193
// Clean up unfortunate Windows preprocessor definitions, even if this file was
194
// already included. Use std::min and std::max!
195
#ifdef _WIN32
196
#ifdef min
197
#undef min
198
#endif
199
200
#ifdef max
201
#undef max
202
#endif
203
#endif
204
205
#endif
cosine_distance.hpp
pspectrum_string_kernel.hpp
gaussian_distribution.hpp
epanechnikov_kernel.hpp
load.hpp
save.hpp
linear_kernel.hpp
prereqs.hpp
The core includes that mlpack expects; standard C++ includes and Armadillo.
triangular_kernel.hpp
round.hpp
clamp.hpp
Miscellaneous math clamping routines.
lin_alg.hpp
cli.hpp
gaussian_kernel.hpp
polynomial_kernel.hpp
normalize_labels.hpp
hyperbolic_tangent_kernel.hpp
laplacian_kernel.hpp
kernel_traits.hpp
random.hpp
Miscellaneous math random-related routines.
range.hpp
Definition of the Range class, which represents a simple range with a lower and upper bound...
log.hpp
arma_traits.hpp
spherical_kernel.hpp
discrete_distribution.hpp
save_restore_utility.hpp
Generated by
1.8.9.1