|
mlpack
|
#include <mlpack/core.hpp>#include <mlpack/methods/logistic_regression/logistic_regression.hpp>#include <mlpack/core/data/split_data.hpp>

Go to the source code of this file.
Functions | |
| void | LogisticRegressionTestData (arma::mat &data, arma::mat &testData, arma::mat &shuffledData, arma::Row< size_t > &responses, arma::Row< size_t > &testResponses, arma::Row< size_t > &shuffledResponses) |
| Create the data for the a logistic regression test. More... | |
| template<typename MatType > | |
| void | LoadBostonHousingDataset (MatType &trainData, MatType &testData, arma::rowvec &trainResponses, arma::rowvec &testResponses, data::DatasetInfo &info) |
| double | RMSE (const arma::Row< double > &predictions, const arma::Row< double > &trueResponses) |
This file provides some useful test function methods.
mlpack is free software; you may redistribute it and/or modify it under the terms of the 3-clause BSD license. You should have received a copy of the 3-clause BSD license along with mlpack. If not, see http://www.opensource.org/licenses/BSD-3-Clause for more information.
|
inline |
Create the data for the a logistic regression test.
| data | Matrix object to store the data into. |
| testData | Matrix object to store the test data into. |
| shuffledData | Matrix object to store the shuffled data into. |
| responses | Matrix object to store the overall responses into. |
| testResponses | Matrix object to store the test responses into. |
| shuffledResponses | Matrix object to store the shuffled responses into. |
1.8.13