SHOGUN  4.1.0
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages
GUIConverter.h
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) 2012 Sergey Lisitsyn
8  * Copyright (C) 2012 Sergey Lisitsyn
9  */
10 
11 #ifndef __GUICONVERTER_H__
12 #define __GUICONVERTER_H__
13 
14 #include <shogun/lib/config.h>
15 #include <shogun/base/SGObject.h>
18 
19 namespace shogun
20 {
21 class CSGInterface;
22 
24 class CGUIConverter : public CSGObject
25 {
26  public:
29  {
30 
31  };
32 
36  CGUIConverter(CSGInterface* interface);
37 
39  bool create_locallylinearembedding(int32_t k);
43  bool create_localtangentspacealignment(int32_t k);
49  bool create_laplacianeigenmaps(int32_t k, float64_t width);
51  bool create_localitypreservingprojections(int32_t k, float64_t width);
53  bool create_diffusionmaps(int32_t t, float64_t width);
55  bool create_isomap(int32_t k);
59  bool create_jade();
60 
63 
65  CDenseFeatures<float64_t>* embed(int32_t target_dim);
66 
69 
71  virtual const char* get_name() const { return "GUIConverter"; }
72 
73  protected:
74 
77 
79  CSGInterface* m_ui;
80 };
81 }
82 #endif
class Converter used to convert data
Definition: Converter.h:26
bool create_locallylinearembedding(int32_t k)
CSGInterface * interface
Definition: SGInterface.cpp:45
bool create_linearlocaltangentspacealignment(int32_t k)
bool create_hessianlocallylinearembedding(int32_t k)
bool create_multidimensionalscaling()
bool create_neighborhoodpreservingembedding(int32_t k)
bool create_localtangentspacealignment(int32_t k)
bool create_laplacianeigenmaps(int32_t k, float64_t width)
bool create_isomap(int32_t k)
Class SGObject is the base class of all shogun objects.
Definition: SGObject.h:112
double float64_t
Definition: common.h:50
CDenseFeatures< float64_t > * apply()
virtual const char * get_name() const
Definition: GUIConverter.h:71
CDenseFeatures< float64_t > * embed(int32_t target_dim)
bool create_localitypreservingprojections(int32_t k, float64_t width)
UI converter.
Definition: GUIConverter.h:24
all of classes and functions are contained in the shogun namespace
Definition: class_list.h:18
bool create_diffusionmaps(int32_t t, float64_t width)
CSGInterface * m_ui
Definition: GUIConverter.h:79
CConverter * m_converter
Definition: GUIConverter.h:76

SHOGUN Machine Learning Toolbox - Documentation