-
Notifications
You must be signed in to change notification settings - Fork 85
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
amazingDD
committed
Jul 28, 2022
1 parent
5d5a3fa
commit 96bd6b9
Showing
7 changed files
with
27 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
__version__ = 'v2.1.0' | ||
__version__ = 'v2.1.1' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
from daisy.model.EASERecommender import EASE | ||
from daisy.model.FMRecommender import FM | ||
from daisy.model.Item2VecRecommender import Item2Vec | ||
from daisy.model.KNNCFRecommender import ItemKNNCF, UserKNNCF | ||
from daisy.model.MFRecommender import MF | ||
from daisy.model.NeuMFRecommender import NeuMF | ||
from daisy.model.NFMRecommender import NFM | ||
from daisy.model.NGCFRecommender import NGCF | ||
from daisy.model.PopRecommender import MostPop | ||
from daisy.model.PureSVDRecommender import PureSVD | ||
from daisy.model.SLiMRecommender import SLiM | ||
from daisy.model.VAECFRecommender import VAECF |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -40,14 +40,14 @@ | |
name='daisyRec', | ||
packages=[package for package in find_packages() if package.startswith('daisy')], | ||
# packages = find_packages(exclude=['tests*']), | ||
version='v2.1.0', # Ideally should be same as your GitHub release tag varsion | ||
version='v2.1.1', # Ideally should be same as your GitHub release tag varsion | ||
description=('An easy-to-use library for recommender systems.'), | ||
long_description=long_description, | ||
# long_description_content_type="text/markdown", | ||
author='Yu Di', | ||
author_email='[email protected]', | ||
url='https://github.com/AmazingDD/daisyRec', | ||
download_url='https://github.com/AmazingDD/daisyRec/archive/refs/tags/v2.1.0.tar.gz', | ||
download_url='https://github.com/AmazingDD/daisyRec/archive/refs/tags/v2.1.1.tar.gz', | ||
keywords=['ranking', 'recommendation'], | ||
include_package_data=True, | ||
install_requires=install_requires, | ||
|