SHOGUN  4.2.0
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages
LinearLocalTangentSpaceAlignment.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 Sergey Lisitsyn
9  */
10 
12 #include <shogun/io/SGIO.h>
14 #include <shogun/lib/tapkee/tapkee_shogun.hpp>
15 
16 using namespace shogun;
17 
20 {
21 }
22 
24 {
25 }
26 
28 {
29  return "LinearLocalTangentSpaceAlignment";
30 }
31 
33 {
34  CKernel* kernel = new CLinearKernel((CDotFeatures*)features,(CDotFeatures*)features);
35  TAPKEE_PARAMETERS_FOR_SHOGUN parameters;
36  parameters.n_neighbors = m_k;
37  parameters.eigenshift = m_nullspace_shift;
38  parameters.method = SHOGUN_LINEAR_LOCAL_TANGENT_SPACE_ALIGNMENT;
39  parameters.target_dimension = m_target_dim;
40  parameters.kernel = kernel;
41  parameters.features = (CDotFeatures*)features;
42  CDenseFeatures<float64_t>* embedding = tapkee_embed(parameters);
43  SG_UNREF(kernel);
44  return embedding;
45 }
46 
Computes the standard linear kernel on CDotFeatures.
Definition: LinearKernel.h:35
class LocalTangentSpaceAlignment used to embed data using Local Tangent Space Alignment (LTSA) algori...
virtual CFeatures * apply(CFeatures *features)
Features that support dot products among other operations.
Definition: DotFeatures.h:44
#define SG_UNREF(x)
Definition: SGObject.h:55
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
The Kernel base class.
Definition: Kernel.h:159

SHOGUN Machine Learning Toolbox - Documentation