src.fairreckitlib.model.algorithms.elliot.elliot_algorithms
This module contains name constants for implemented elliot algorithms.
Constants:
FUNK_SVD: name of the FunkSVD recommender.
ITEM_KNN: name of the ItemKNN recommender.
MULTI_VAE: name of the MultiVAE recommender.
MOST_POP: name of the MostPop recommender.
RANDOM: name of the Random recommender.
PURE_SVD: name of the PureSVD recommender.
SVD_PP: name of the SVDpp recommender.
USER_KNN: name of the UserKNN 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 elliot algorithms. 2 3Constants: 4 5 FUNK_SVD: name of the FunkSVD recommender. 6 ITEM_KNN: name of the ItemKNN recommender. 7 MULTI_VAE: name of the MultiVAE recommender. 8 MOST_POP: name of the MostPop recommender. 9 RANDOM: name of the Random recommender. 10 PURE_SVD: name of the PureSVD recommender. 11 SVD_PP: name of the SVDpp recommender. 12 USER_KNN: name of the UserKNN recommender. 13 14This program has been developed by students from the bachelor Computer Science at 15Utrecht University within the Software Project course. 16© Copyright Utrecht University (Department of Information and Computing Sciences) 17""" 18 19FUNK_SVD = 'FunkSVD' 20ITEM_KNN = 'ItemKNN' 21MULTI_VAE = 'MultiVAE' 22MOST_POP = 'MostPop' 23RANDOM = 'Random' 24PURE_SVD = 'PureSVD' 25SVD_PP = 'SVDpp' 26USER_KNN = 'UserKNN'