SHOGUN  4.1.0
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages
LocalityPreservingProjections.cpp
Go to the documentation of this file.
1 /*
2  * This program is free software; you can redistribute it and/or modify
3  * it under the terms of the GNU General Public License as published by
4  * the Free Software Foundation; either version 3 of the License, or
5  * (at your option) any later version.
6  *
7  * Written (W) 2011-2013 Sergey Lisitsyn
8  * Copyright (C) 2011-2013 Berlin Institute of Technology and Max-Planck-Society
9  */
10 
12 #ifdef HAVE_EIGEN3
13 #include <shogun/io/SGIO.h>
15 #include <shogun/lib/tapkee/tapkee_shogun.hpp>
16 
17 using namespace shogun;
18 
21 {
22 }
23 
25 {
26 }
27 
29 {
30  return "LocalityPreservingProjections";
31 };
32 
34 {
35  TAPKEE_PARAMETERS_FOR_SHOGUN parameters;
36  m_distance->init(features,features);
37  parameters.n_neighbors = m_k;
38  parameters.gaussian_kernel_width = m_tau;
39  parameters.method = SHOGUN_LOCALITY_PRESERVING_PROJECTIONS;
40  parameters.target_dimension = m_target_dim;
41  parameters.distance = m_distance;
42  parameters.features = (CDotFeatures*)features;
43  CDenseFeatures<float64_t>* embedding = tapkee_embed(parameters);
44  return embedding;
45 }
46 
47 #endif /* HAVE_EIGEN3 */
Features that support dot products among other operations.
Definition: DotFeatures.h:44
virtual CFeatures * apply(CFeatures *features)
class LaplacianEigenmaps used to construct embeddings of data using Laplacian Eigenmaps algorithm as ...
all of classes and functions are contained in the shogun namespace
Definition: class_list.h:18
The class Features is the base class of all feature objects.
Definition: Features.h:68
virtual bool init(CFeatures *lhs, CFeatures *rhs)
Definition: Distance.cpp:78

SHOGUN Machine Learning Toolbox - Documentation