-
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 20, 2022
1 parent
47ac881
commit f59591a
Showing
4 changed files
with
37 additions
and
26 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,11 @@ | ||
from __future__ import absolute_import | ||
from __future__ import print_function | ||
from __future__ import division | ||
from . import utils | ||
from . import model | ||
from . import config | ||
|
||
__version__ = 'v2.0.4' | ||
|
||
__all__ = [ | ||
'config', 'utils', 'model' | ||
] | ||
|
||
|
||
__version__ = 'v2.0.5' |
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,12 +1,17 @@ | ||
from daisy.model.EASERecommender import EASE | ||
from daisy.model.FMRecommender import FM | ||
from daisy.model.Item2VecRecommender import Item2Vec | ||
from daisy.model.KNNCFRecommender import ItemKNNCF | ||
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 | ||
from .EASERecommender import EASE | ||
from .FMRecommender import FM | ||
from .Item2VecRecommender import Item2Vec | ||
from .KNNCFRecommender import ItemKNNCF | ||
from .MFRecommender import MF | ||
from .NeuMFRecommender import NeuMF | ||
from .NFMRecommender import NFM | ||
from .NGCFRecommender import NGCF | ||
from .PopRecommender import MostPop | ||
from .PureSVDRecommender import PureSVD | ||
from .SLiMRecommender import SLiM | ||
from .VAECFRecommender import VAECF | ||
|
||
__all__ = [ | ||
'EASE', 'FM', 'Item2Vec', 'ItemKNNCF', 'MF', 'NeuMF', 'NFM', 'NGCF', 'MostPop', | ||
'PureSVD', 'SLiM', '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
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 |
---|---|---|
|
@@ -41,14 +41,14 @@ | |
name = 'daisyRec', | ||
packages = [package for package in find_packages() if package.startswith('daisy')], | ||
# packages = find_packages(exclude=['tests*']), | ||
version = 'v2.0.4', # Ideally should be same as your GitHub release tag varsion | ||
version = 'v2.0.5', # 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.0.4.tar.gz', | ||
download_url = 'https://github.com/AmazingDD/daisyRec/archive/refs/tags/v2.0.5.tar.gz', | ||
keywords = ['ranking', 'recommendation'], | ||
include_package_data=True, | ||
install_requires=install_requires, | ||
|