mlpack
master
Main Page
Related Pages
Namespaces
Classes
Files
File List
File Members
src
mlpack
core.hpp
Go to the documentation of this file.
1
12
#ifndef MLPACK_CORE_HPP
13
#define MLPACK_CORE_HPP
14
216
// First, include all of the prerequisites.
217
#include <
mlpack/prereqs.hpp
>
218
219
// Now the core mlpack classes.
220
#include <
mlpack/core/util/arma_traits.hpp
>
221
#include <
mlpack/core/util/log.hpp
>
222
#include <
mlpack/core/util/cli.hpp
>
223
#include <
mlpack/core/util/deprecated.hpp
>
224
#include <
mlpack/core/data/load.hpp
>
225
#include <
mlpack/core/data/save.hpp
>
226
#include <
mlpack/core/data/normalize_labels.hpp
>
227
#include <
mlpack/core/math/clamp.hpp
>
228
#include <
mlpack/core/math/random.hpp
>
229
#include <
mlpack/core/math/random_basis.hpp
>
230
#include <
mlpack/core/math/lin_alg.hpp
>
231
#include <
mlpack/core/math/range.hpp
>
232
#include <
mlpack/core/math/round.hpp
>
233
#include <
mlpack/core/dists/discrete_distribution.hpp
>
234
#include <
mlpack/core/dists/gaussian_distribution.hpp
>
235
#include <
mlpack/core/dists/laplace_distribution.hpp
>
236
#include <
mlpack/core/dists/gamma_distribution.hpp
>
237
//mlpack::backtrace only for linux
238
#ifdef HAS_BFD_DL
239
#include <
mlpack/core/util/backtrace.hpp
>
240
#endif
241
242
// Include kernel traits.
243
#include <
mlpack/core/kernels/kernel_traits.hpp
>
244
#include <
mlpack/core/kernels/linear_kernel.hpp
>
245
#include <
mlpack/core/kernels/polynomial_kernel.hpp
>
246
#include <
mlpack/core/kernels/cosine_distance.hpp
>
247
#include <
mlpack/core/kernels/gaussian_kernel.hpp
>
248
#include <
mlpack/core/kernels/epanechnikov_kernel.hpp
>
249
#include <
mlpack/core/kernels/hyperbolic_tangent_kernel.hpp
>
250
#include <
mlpack/core/kernels/laplacian_kernel.hpp
>
251
#include <
mlpack/core/kernels/pspectrum_string_kernel.hpp
>
252
#include <
mlpack/core/kernels/spherical_kernel.hpp
>
253
#include <
mlpack/core/kernels/triangular_kernel.hpp
>
254
255
// Use OpenMP if compiled with -DHAS_OPENMP.
256
#ifdef HAS_OPENMP
257
#include <omp.h>
258
#endif
259
260
// Use Armadillo's C++ version detection.
261
#ifdef ARMA_USE_CXX11
262
#define MLPACK_USE_CX11
263
#endif
264
265
#endif
cosine_distance.hpp
deprecated.hpp
pspectrum_string_kernel.hpp
gaussian_distribution.hpp
laplace_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
gamma_distribution.hpp
polynomial_kernel.hpp
normalize_labels.hpp
backtrace.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
random_basis.hpp
arma_traits.hpp
spherical_kernel.hpp
discrete_distribution.hpp
Generated by
1.8.11