
Last chance! 50% off unlimited learning
Sale ends in
Basic splitting of the user-item interaction matrix into train and testing part.
Useful for when data doesn't have time dimension.
Usually during model tuning it worth to keep some x
matrix as hold-out data set.
Then this x
could be splitted in 2 parts - train and test.
Model tries to predict test data using train
train_test_split(x, test_proportion = 0.5)
sparse user-item interation matrix. Internally Matrix::TsparseMatrix
is used.
- proportion of the observations for each user to keep as "test" data.