BALL
1.4.79
|
#include <BALL/QSAR/latentVariableModel.h>
Public Member Functions | |
LatentVariableModel () | |
const Eigen::MatrixXd * | getLatentVariables () |
const Eigen::MatrixXd * | getWeights () |
const Eigen::MatrixXd * | getLoadings () |
Protected Attributes | |
Eigen::MatrixXd | latent_variables_ |
Eigen::MatrixXd | loadings_ |
Eigen::MatrixXd | weights_ |
Friends | |
class | RegressionValidation |
Interface-class for all latente variable models (PLS, PCR, ...). It is used to store and access the latente variables (PLS/PCR components), the loading matrix and the weight matrix in the same way for all such models.
Definition at line 19 of file latentVariableModel.h.
BALL::QSAR::LatentVariableModel::LatentVariableModel | ( | ) |
const Eigen::MatrixXd* BALL::QSAR::LatentVariableModel::getLatentVariables | ( | ) |
Return the latent variable matrix as computed by the last training.
It contains one loading vector in each column. Each loading vector contains the importance of each feature for a latente variable.
const Eigen::MatrixXd* BALL::QSAR::LatentVariableModel::getLoadings | ( | ) |
Return the loading matrix as computed by the last training.
It contains one loading vector in each column. Each loading vector contains the importance of each feature for a latente variable.
const Eigen::MatrixXd* BALL::QSAR::LatentVariableModel::getWeights | ( | ) |
Return the weights matrix as computed by the last training.
It contains one weight vector in each column. Each weight vector contains the importance of each latente variable for modelling the result.
|
friend |
Definition at line 47 of file latentVariableModel.h.
|
protected |
The loading-matrix which contains one loading vector in each column. Each loading vector contains the importance of each feature for a latente variable.
Definition at line 39 of file latentVariableModel.h.
|
protected |
The loading-matrix which contains one loading vector in each column. Each loading vector contains the importance of each feature for a latente variable.
Definition at line 42 of file latentVariableModel.h.
|
protected |
The weights-matrix which contains one weight vector in each column. Each weight vector contains the importance of each latente variable for modelling the result.
Definition at line 45 of file latentVariableModel.h.