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