mlrl.common.cython.regression_matrix module¶
@author Michael Rapp (michael.rapp.ml@gmail.com)
- class mlrl.common.cython.regression_matrix.CContiguousRegressionMatrix¶
Bases:
RowWiseRegressionMatrixA regression matrix that provides row-wise access to the regression scores of examples that are stored in a C-contiguous array.
- class mlrl.common.cython.regression_matrix.CsrRegressionMatrix¶
Bases:
RowWiseRegressionMatrixA regression matrix that provides row-wise access to the regression scores of examples that are stored in a sparse matrix in the compressed sparse row (CSR) format.
- class mlrl.common.cython.regression_matrix.RowWiseRegressionMatrix¶
Bases:
OutputMatrixA regression matrix that provides row-wise access to the regression scores of examples.