src.fairreckitlib.model.algorithms.implicit.implicit_algorithms
This module contains name constants for implemented implicit algorithms.
Constants:
ALTERNATING_LEAST_SQUARES: name of the AlternatingLeastSquares recommender.
BAYESIAN_PERSONALIZED_RANKING: name of the BayesianPersonalizedRanking recommender.
LOGISTIC_MATRIX_FACTORIZATION: name of the LogisticMatrixFactorization recommender.
This program has been developed by students from the bachelor Computer Science at Utrecht University within the Software Project course. © Copyright Utrecht University (Department of Information and Computing Sciences)
1"""This module contains name constants for implemented implicit algorithms. 2 3Constants: 4 5 ALTERNATING_LEAST_SQUARES: name of the AlternatingLeastSquares recommender. 6 BAYESIAN_PERSONALIZED_RANKING: name of the BayesianPersonalizedRanking recommender. 7 LOGISTIC_MATRIX_FACTORIZATION: name of the LogisticMatrixFactorization recommender. 8 9This program has been developed by students from the bachelor Computer Science at 10Utrecht University within the Software Project course. 11© Copyright Utrecht University (Department of Information and Computing Sciences) 12""" 13 14ALTERNATING_LEAST_SQUARES = 'AlternatingLeastSquares' 15BAYESIAN_PERSONALIZED_RANKING = 'BayesianPersonalizedRanking' 16LOGISTIC_MATRIX_FACTORIZATION = 'LogisticMatrixFactorization'