Home
Get Started
Documentation
Community
Google Summer of Code
FAQ
GitHub
Home
Get Started
Documentation
Community
Google Summer of Code
FAQ
GitHub
core.hpp
Go to the documentation of this file.
1
12
#ifndef MLPACK_CORE_HPP
13
#define MLPACK_CORE_HPP
14
255
// First, include all of the prerequisites.
256
#include <
mlpack/prereqs.hpp
>
257
258
// Now the core mlpack classes.
259
#include <
mlpack/core/util/arma_traits.hpp
>
260
#include <
mlpack/core/util/log.hpp
>
261
#include <
mlpack/core/util/cli.hpp
>
262
#include <
mlpack/core/util/deprecated.hpp
>
263
#include <
mlpack/core/data/load.hpp
>
264
#include <
mlpack/core/data/save.hpp
>
265
#include <
mlpack/core/data/normalize_labels.hpp
>
266
#include <
mlpack/core/math/clamp.hpp
>
267
#include <
mlpack/core/math/random.hpp
>
268
#include <
mlpack/core/math/random_basis.hpp
>
269
#include <
mlpack/core/math/lin_alg.hpp
>
270
#include <
mlpack/core/math/range.hpp
>
271
#include <
mlpack/core/math/round.hpp
>
272
#include <
mlpack/core/math/shuffle_data.hpp
>
273
#include <
mlpack/core/math/make_alias.hpp
>
274
#include <
mlpack/core/dists/discrete_distribution.hpp
>
275
#include <
mlpack/core/dists/gaussian_distribution.hpp
>
276
#include <
mlpack/core/dists/laplace_distribution.hpp
>
277
#include <
mlpack/core/dists/gamma_distribution.hpp
>
278
279
// mlpack::backtrace only for linux
280
#ifdef HAS_BFD_DL
281
#include <
mlpack/core/util/backtrace.hpp
>
282
#endif
283
284
// Include kernel traits.
285
#include <
mlpack/core/kernels/kernel_traits.hpp
>
286
#include <
mlpack/core/kernels/linear_kernel.hpp
>
287
#include <
mlpack/core/kernels/polynomial_kernel.hpp
>
288
#include <
mlpack/core/kernels/cosine_distance.hpp
>
289
#include <
mlpack/core/kernels/gaussian_kernel.hpp
>
290
#include <
mlpack/core/kernels/epanechnikov_kernel.hpp
>
291
#include <
mlpack/core/kernels/hyperbolic_tangent_kernel.hpp
>
292
#include <
mlpack/core/kernels/laplacian_kernel.hpp
>
293
#include <
mlpack/core/kernels/pspectrum_string_kernel.hpp
>
294
#include <
mlpack/core/kernels/spherical_kernel.hpp
>
295
#include <
mlpack/core/kernels/triangular_kernel.hpp
>
296
297
// Use OpenMP if compiled with -DHAS_OPENMP.
298
#ifdef HAS_OPENMP
299
#include <omp.h>
300
#endif
301
302
// Use Armadillo's C++ version detection.
303
#ifdef ARMA_USE_CXX11
304
#define MLPACK_USE_CX11
305
#endif
306
307
#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
make_alias.hpp
kernel_traits.hpp
shuffle_data.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