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
246
// First, include all of the prerequisites.
247
#include <
mlpack/prereqs.hpp
>
248
249
// Now the core mlpack classes.
250
#include <
mlpack/core/util/arma_traits.hpp
>
251
#include <
mlpack/core/util/log.hpp
>
252
#include <
mlpack/core/util/cli.hpp
>
253
#include <
mlpack/core/util/deprecated.hpp
>
254
#include <
mlpack/core/data/load.hpp
>
255
#include <
mlpack/core/data/save.hpp
>
256
#include <
mlpack/core/data/normalize_labels.hpp
>
257
#include <
mlpack/core/math/clamp.hpp
>
258
#include <
mlpack/core/math/random.hpp
>
259
#include <
mlpack/core/math/random_basis.hpp
>
260
#include <
mlpack/core/math/lin_alg.hpp
>
261
#include <
mlpack/core/math/range.hpp
>
262
#include <
mlpack/core/math/round.hpp
>
263
#include <
mlpack/core/math/shuffle_data.hpp
>
264
#include <
mlpack/core/math/make_alias.hpp
>
265
#include <
mlpack/core/dists/discrete_distribution.hpp
>
266
#include <
mlpack/core/dists/gaussian_distribution.hpp
>
267
#include <
mlpack/core/dists/laplace_distribution.hpp
>
268
#include <
mlpack/core/dists/gamma_distribution.hpp
>
269
270
// mlpack::backtrace only for linux
271
#ifdef HAS_BFD_DL
272
#include <
mlpack/core/util/backtrace.hpp
>
273
#endif
274
275
// Include kernel traits.
276
#include <
mlpack/core/kernels/kernel_traits.hpp
>
277
#include <
mlpack/core/kernels/linear_kernel.hpp
>
278
#include <
mlpack/core/kernels/polynomial_kernel.hpp
>
279
#include <
mlpack/core/kernels/cosine_distance.hpp
>
280
#include <
mlpack/core/kernels/gaussian_kernel.hpp
>
281
#include <
mlpack/core/kernels/epanechnikov_kernel.hpp
>
282
#include <
mlpack/core/kernels/hyperbolic_tangent_kernel.hpp
>
283
#include <
mlpack/core/kernels/laplacian_kernel.hpp
>
284
#include <
mlpack/core/kernels/pspectrum_string_kernel.hpp
>
285
#include <
mlpack/core/kernels/spherical_kernel.hpp
>
286
#include <
mlpack/core/kernels/triangular_kernel.hpp
>
287
288
// Use OpenMP if compiled with -DHAS_OPENMP.
289
#ifdef HAS_OPENMP
290
#include <omp.h>
291
#endif
292
293
// Use Armadillo's C++ version detection.
294
#ifdef ARMA_USE_CXX11
295
#define MLPACK_USE_CX11
296
#endif
297
298
#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