-
Notifications
You must be signed in to change notification settings - Fork 84
Commit
- Loading branch information
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,11 @@ | ||
from . import utils | ||
from . import model | ||
from . import config | ||
from daisy import utils | ||
from daisy import model | ||
from daisy import config | ||
|
||
|
||
__all__ = [ | ||
'config', 'utils', 'model' | ||
] | ||
|
||
|
||
__version__ = 'v2.0.6' | ||
__version__ = 'v2.0.7' |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
from __future__ import absolute_import | ||
from __future__ import print_function | ||
from __future__ import division | ||
from __future__ import division |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,17 @@ | ||
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 | ||
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 | ||
|
||
__all__ = [ | ||
'EASE', 'FM', 'Item2Vec', 'ItemKNNCF', 'MF', 'NeuMF', 'NFM', 'NGCF', 'MostPop', | ||
'PureSVD', 'SLiM', 'VAECF', | ||
] | ||
] |
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,7 +3,6 @@ | |
|
||
classifiers = ["License :: OSI Approved :: MIT License"] | ||
|
||
|
||
long_description = 'daisyRec is a Python toolkit developed for benchmarking top-N recommendation task.' \ | ||
'The name DAISY stands for multi-Dimension fAirly comparIson for recommender SYstem.' | ||
|
||
|
@@ -38,24 +37,24 @@ | |
print('=============================================') | ||
|
||
setup( | ||
name = 'daisyRec', | ||
packages = [package for package in find_packages() if package.startswith('daisy')], | ||
name='daisyRec', | ||
packages=[package for package in find_packages() if package.startswith('daisy')], | ||
# packages = find_packages(exclude=['tests*']), | ||
version = 'v2.0.6', # Ideally should be same as your GitHub release tag varsion | ||
version='v2.0.7', # 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=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.6.tar.gz', | ||
keywords = ['ranking', 'recommendation'], | ||
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.7.tar.gz', | ||
keywords=['ranking', 'recommendation'], | ||
include_package_data=True, | ||
install_requires=install_requires, | ||
setup_requires=setup_requires, | ||
extras_require=extras_require, | ||
zip_safe=False, | ||
classifiers = classifiers, | ||
classifiers=classifiers, | ||
) | ||
|
||
# python setup.py sdist upload -r pypi | ||
# python setup.py sdist upload -r pypi |