BALL  1.4.79
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Groups Pages
kplsModel.h
Go to the documentation of this file.
1 // -*- Mode: C++; tab-width: 2; -*-
2 // vi: set ts=2:
3 //
4 //
5 
6 #ifndef BALL_QSAR_KPLSMODEL_H
7 #define BALL_QSAR_KPLSMODEL_H
8 
9 #ifndef BALL_QSAR_KERNELMODEL_H
10 #include <BALL/QSAR/kernelModel.h>
11 #endif
12 
13 #ifndef BALL_QSAR_NONLINEARMODEL_H
15 #endif
16 
17 #ifndef BALL_QSAR_LATENTVARIABLEMODEL_H
19 #endif
20 
21 namespace BALL
22 {
23  namespace QSAR
24  {
27  {
28  public:
32  KPLSModel(const QSARData& q, int k_type, double p1, double p2=-1);
33 
34  KPLSModel(const QSARData& q, Eigen::VectorXd& w);
35 
36  KPLSModel(const QSARData& q, String s1, String s2);
37 
38  KPLSModel(const QSARData& q, const LinearModel& lm, int column);
39 
40  ~KPLSModel();
41 
42  EIGEN_MAKE_ALIGNED_OPERATOR_NEW
44 
45 
49 
50  void train();
51 
53  bool optimizeParameters(int k, int no_steps);
54 
56  int getNoComponents();
57 
58  void setNoComponents(int d);
59 
61  const Eigen::MatrixXd* getU();
62 
63  void setParameters(vector<double>& v);
64 
65  vector<double> getParameters() const;
67 
68 
69  protected:
72  Eigen::MatrixXd U_;
73 
76 
77  };
78  }
79 }
80 
81 #endif // KPLSMODEL
BALL_EXTERN_VARIABLE const double k
Definition: constants.h:93
#define BALL_EXPORT
Definition: COMMON/global.h:50
Eigen::MatrixXd U_
Definition: kplsModel.h:72