5. Tensor regression
TensorLy also allows you to perform Tensor Regression.
5.1. Setting
Tensor regression is available in the module tensorly.regression
.
Given a series of
We additionally impose that
TensorLy implements both types of tensor regression as scikit-learn-like estimators.
For instance, Krusal regression is available through the tensorly.regression.CPRegression
object. This implements a fit method that takes as parameters X, the data tensor whose first dimension is the number of samples, and y, the corresponding vector of labels.
Given a set of testing samples, you can use the predict method to obtain the corresponding predictions from the model.