#include <BALL/QSAR/linearModel.h>
|
RegressionValidation * | validation |
|
const QSARData * | data |
|
Validation * | model_val |
|
void | readDescriptorInformationFromFile (std::ifstream &in, int no_descriptors, bool transformation, int no_coefficients) |
|
void | saveDescriptorInformationToFile (std::ofstream &out) |
|
void | readMatrix (Eigen::MatrixXd &mat, std::ifstream &in, unsigned int lines, unsigned int col) |
|
void | readVector (Eigen::RowVectorXd &vec, std::ifstream &in, unsigned int no_cells, bool column_vector) |
|
void | readModelParametersFromFile (std::ifstream &in) |
|
void | saveModelParametersToFile (std::ofstream &out) |
|
virtual void | readDescriptorInformationFromFile (std::ifstream &in, int no_descriptors, bool transformation) |
|
void | readResponseTransformationFromFile (std::ifstream &in, int no_y) |
|
void | saveResponseTransformationToFile (std::ofstream &out) |
|
Eigen::VectorXd | getSubstanceVector (const vector< double > &substance, bool transform) |
|
Eigen::VectorXd | getSubstanceVector (const Eigen::VectorXd &substance, bool transform) |
|
void | backTransformPrediction (Eigen::VectorXd &pred) |
|
void | addLambda (Eigen::MatrixXd &matrix, double &lambda) |
|
void | readDescriptorInformation () |
|
Eigen::MatrixXd | training_result_ |
|
Eigen::RowVectorXd | offsets_ |
|
int | default_no_opt_steps_ |
|
Eigen::MatrixXd | descriptor_matrix_ |
|
vector< string > | substance_names_ |
|
vector< string > | descriptor_names_ |
|
Eigen::MatrixXd | descriptor_transformations_ |
|
Eigen::MatrixXd | y_transformations_ |
|
Eigen::MatrixXd | Y_ |
|
String | type_ |
|
std::multiset< unsigned int > | descriptor_IDs_ |
|
Definition at line 17 of file linearModel.h.
BALL::QSAR::LinearModel::LinearModel |
( |
const QSARData & |
q | ) |
|
constructur,
- Parameters
-
q | QSAR-wrapper object, from which the data for this model should be taken |
BALL::QSAR::LinearModel::~LinearModel |
( |
| ) |
|
void BALL::QSAR::LinearModel::calculateOffsets |
( |
| ) |
|
|
protectedvirtual |
virtual void BALL::QSAR::LinearModel::operator= |
( |
const LinearModel & |
m | ) |
|
|
virtual |
virtual Eigen::VectorXd BALL::QSAR::LinearModel::predict |
( |
const vector< double > & |
substance, |
|
|
bool |
transform = 1 |
|
) |
| |
|
virtual |
Predicts the activities of a given substance
- Parameters
-
substance | the substance which activity is to be predicted in form of a vecor containing the values for all descriptors (if neccessary, relevant descriptors will be selected automatically) |
transform | determines whether the values for each descriptor of the given substance should be transformed before prediction of activity.
If (transform==1): each descriptor value is transformed according to the centering of the respective column of QSARData.descriptor_matrix used to train this model.
If the substance to be predicted is part of the same input data (e.g. same SD-file) as the training data (as is the case during cross validation), transform should therefore be set to 0. |
- Returns
- a RowVector containing one value for each predicted activity
Implements BALL::QSAR::Model.