nextrec 0.1.7__tar.gz → 0.1.8__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {nextrec-0.1.7 → nextrec-0.1.8}/PKG-INFO +1 -1
- {nextrec-0.1.7 → nextrec-0.1.8}/docs/conf.py +1 -1
- nextrec-0.1.8/nextrec/__version__.py +1 -0
- {nextrec-0.1.7 → nextrec-0.1.8}/pyproject.toml +1 -1
- nextrec-0.1.8/requirements.txt +32 -0
- nextrec-0.1.7/nextrec/__version__.py +0 -1
- nextrec-0.1.7/requirements.txt +0 -25
- {nextrec-0.1.7 → nextrec-0.1.8}/.github/workflows/publish.yml +0 -0
- {nextrec-0.1.7 → nextrec-0.1.8}/.github/workflows/tests.yml +0 -0
- {nextrec-0.1.7 → nextrec-0.1.8}/.gitignore +0 -0
- {nextrec-0.1.7 → nextrec-0.1.8}/.readthedocs.yaml +0 -0
- {nextrec-0.1.7 → nextrec-0.1.8}/CODE_OF_CONDUCT.md +0 -0
- {nextrec-0.1.7 → nextrec-0.1.8}/CONTRIBUTING.md +0 -0
- {nextrec-0.1.7 → nextrec-0.1.8}/LICENSE +0 -0
- {nextrec-0.1.7 → nextrec-0.1.8}/MANIFEST.in +0 -0
- {nextrec-0.1.7 → nextrec-0.1.8}/README.md +0 -0
- {nextrec-0.1.7 → nextrec-0.1.8}/README_zh.md +0 -0
- {nextrec-0.1.7 → nextrec-0.1.8}/dataset/match_task.csv +0 -0
- {nextrec-0.1.7 → nextrec-0.1.8}/dataset/movielens_100k.csv +0 -0
- {nextrec-0.1.7 → nextrec-0.1.8}/dataset/multitask_task.csv +0 -0
- {nextrec-0.1.7 → nextrec-0.1.8}/dataset/ranking_task.csv +0 -0
- {nextrec-0.1.7 → nextrec-0.1.8}/docs/Makefile +0 -0
- {nextrec-0.1.7 → nextrec-0.1.8}/docs/index.rst +0 -0
- {nextrec-0.1.7 → nextrec-0.1.8}/docs/make.bat +0 -0
- {nextrec-0.1.7 → nextrec-0.1.8}/docs/modules.rst +0 -0
- {nextrec-0.1.7 → nextrec-0.1.8}/docs/nextrec.basic.rst +0 -0
- {nextrec-0.1.7 → nextrec-0.1.8}/docs/nextrec.data.rst +0 -0
- {nextrec-0.1.7 → nextrec-0.1.8}/docs/nextrec.loss.rst +0 -0
- {nextrec-0.1.7 → nextrec-0.1.8}/docs/nextrec.rst +0 -0
- {nextrec-0.1.7 → nextrec-0.1.8}/docs/nextrec.utils.rst +0 -0
- {nextrec-0.1.7 → nextrec-0.1.8}/docs/requirements.txt +0 -0
- {nextrec-0.1.7 → nextrec-0.1.8}/nextrec/__init__.py +0 -0
- {nextrec-0.1.7 → nextrec-0.1.8}/nextrec/basic/__init__.py +0 -0
- {nextrec-0.1.7 → nextrec-0.1.8}/nextrec/basic/activation.py +0 -0
- {nextrec-0.1.7 → nextrec-0.1.8}/nextrec/basic/callback.py +0 -0
- {nextrec-0.1.7 → nextrec-0.1.8}/nextrec/basic/dataloader.py +0 -0
- {nextrec-0.1.7 → nextrec-0.1.8}/nextrec/basic/features.py +0 -0
- {nextrec-0.1.7 → nextrec-0.1.8}/nextrec/basic/layers.py +0 -0
- {nextrec-0.1.7 → nextrec-0.1.8}/nextrec/basic/loggers.py +0 -0
- {nextrec-0.1.7 → nextrec-0.1.8}/nextrec/basic/metrics.py +0 -0
- {nextrec-0.1.7 → nextrec-0.1.8}/nextrec/basic/model.py +0 -0
- {nextrec-0.1.7 → nextrec-0.1.8}/nextrec/data/__init__.py +0 -0
- {nextrec-0.1.7 → nextrec-0.1.8}/nextrec/data/data_utils.py +0 -0
- {nextrec-0.1.7 → nextrec-0.1.8}/nextrec/data/preprocessor.py +0 -0
- {nextrec-0.1.7 → nextrec-0.1.8}/nextrec/loss/__init__.py +0 -0
- {nextrec-0.1.7 → nextrec-0.1.8}/nextrec/loss/loss_utils.py +0 -0
- {nextrec-0.1.7 → nextrec-0.1.8}/nextrec/loss/match_losses.py +0 -0
- {nextrec-0.1.7 → nextrec-0.1.8}/nextrec/models/generative/hstu.py +0 -0
- {nextrec-0.1.7 → nextrec-0.1.8}/nextrec/models/generative/tiger.py +0 -0
- {nextrec-0.1.7 → nextrec-0.1.8}/nextrec/models/match/__init__.py +0 -0
- {nextrec-0.1.7 → nextrec-0.1.8}/nextrec/models/match/dssm.py +0 -0
- {nextrec-0.1.7 → nextrec-0.1.8}/nextrec/models/match/dssm_v2.py +0 -0
- {nextrec-0.1.7 → nextrec-0.1.8}/nextrec/models/match/mind.py +0 -0
- {nextrec-0.1.7 → nextrec-0.1.8}/nextrec/models/match/sdm.py +0 -0
- {nextrec-0.1.7 → nextrec-0.1.8}/nextrec/models/match/youtube_dnn.py +0 -0
- {nextrec-0.1.7 → nextrec-0.1.8}/nextrec/models/multi_task/esmm.py +0 -0
- {nextrec-0.1.7 → nextrec-0.1.8}/nextrec/models/multi_task/mmoe.py +0 -0
- {nextrec-0.1.7 → nextrec-0.1.8}/nextrec/models/multi_task/ple.py +0 -0
- {nextrec-0.1.7 → nextrec-0.1.8}/nextrec/models/multi_task/share_bottom.py +0 -0
- {nextrec-0.1.7 → nextrec-0.1.8}/nextrec/models/ranking/__init__.py +0 -0
- {nextrec-0.1.7 → nextrec-0.1.8}/nextrec/models/ranking/afm.py +0 -0
- {nextrec-0.1.7 → nextrec-0.1.8}/nextrec/models/ranking/autoint.py +0 -0
- {nextrec-0.1.7 → nextrec-0.1.8}/nextrec/models/ranking/dcn.py +0 -0
- {nextrec-0.1.7 → nextrec-0.1.8}/nextrec/models/ranking/deepfm.py +0 -0
- {nextrec-0.1.7 → nextrec-0.1.8}/nextrec/models/ranking/dien.py +0 -0
- {nextrec-0.1.7 → nextrec-0.1.8}/nextrec/models/ranking/din.py +0 -0
- {nextrec-0.1.7 → nextrec-0.1.8}/nextrec/models/ranking/fibinet.py +0 -0
- {nextrec-0.1.7 → nextrec-0.1.8}/nextrec/models/ranking/fm.py +0 -0
- {nextrec-0.1.7 → nextrec-0.1.8}/nextrec/models/ranking/masknet.py +0 -0
- {nextrec-0.1.7 → nextrec-0.1.8}/nextrec/models/ranking/pnn.py +0 -0
- {nextrec-0.1.7 → nextrec-0.1.8}/nextrec/models/ranking/widedeep.py +0 -0
- {nextrec-0.1.7 → nextrec-0.1.8}/nextrec/models/ranking/xdeepfm.py +0 -0
- {nextrec-0.1.7 → nextrec-0.1.8}/nextrec/utils/__init__.py +0 -0
- {nextrec-0.1.7 → nextrec-0.1.8}/nextrec/utils/common.py +0 -0
- {nextrec-0.1.7 → nextrec-0.1.8}/nextrec/utils/embedding.py +0 -0
- {nextrec-0.1.7 → nextrec-0.1.8}/nextrec/utils/initializer.py +0 -0
- {nextrec-0.1.7 → nextrec-0.1.8}/nextrec/utils/optimizer.py +0 -0
- {nextrec-0.1.7 → nextrec-0.1.8}/pytest.ini +0 -0
- {nextrec-0.1.7 → nextrec-0.1.8}/test/__init__.py +0 -0
- {nextrec-0.1.7 → nextrec-0.1.8}/test/conftest.py +0 -0
- {nextrec-0.1.7 → nextrec-0.1.8}/test/run_tests.py +0 -0
- {nextrec-0.1.7 → nextrec-0.1.8}/test/test_data_preprocessor.py +0 -0
- {nextrec-0.1.7 → nextrec-0.1.8}/test/test_dataloader.py +0 -0
- {nextrec-0.1.7 → nextrec-0.1.8}/test/test_layers.py +0 -0
- {nextrec-0.1.7 → nextrec-0.1.8}/test/test_match_models.py +0 -0
- {nextrec-0.1.7 → nextrec-0.1.8}/test/test_multitask_models.py +0 -0
- {nextrec-0.1.7 → nextrec-0.1.8}/test/test_ranking_models.py +0 -0
- {nextrec-0.1.7 → nextrec-0.1.8}/test/test_utils.py +0 -0
- {nextrec-0.1.7 → nextrec-0.1.8}/test_requirements.txt +0 -0
- {nextrec-0.1.7 → nextrec-0.1.8}/tutorials/example_match_dssm.py +0 -0
- {nextrec-0.1.7 → nextrec-0.1.8}/tutorials/example_multitask.py +0 -0
- {nextrec-0.1.7 → nextrec-0.1.8}/tutorials/example_ranking_din.py +0 -0
- {nextrec-0.1.7 → nextrec-0.1.8}/tutorials/movielen_match_dssm.py +0 -0
- {nextrec-0.1.7 → nextrec-0.1.8}/tutorials/movielen_ranking_deepfm.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: nextrec
|
|
3
|
-
Version: 0.1.
|
|
3
|
+
Version: 0.1.8
|
|
4
4
|
Summary: A comprehensive recommendation library with match, ranking, and multi-task learning models
|
|
5
5
|
Project-URL: Homepage, https://github.com/zerolovesea/NextRec
|
|
6
6
|
Project-URL: Repository, https://github.com/zerolovesea/NextRec
|
|
@@ -12,7 +12,7 @@ sys.path.insert(0, os.path.abspath('../nextrec'))
|
|
|
12
12
|
project = "NextRec"
|
|
13
13
|
copyright = "2025, Yang Zhou"
|
|
14
14
|
author = "Yang Zhou"
|
|
15
|
-
release = "0.1.
|
|
15
|
+
release = "0.1.8"
|
|
16
16
|
|
|
17
17
|
# -- General configuration ---------------------------------------------------
|
|
18
18
|
# https://www.sphinx-doc.org/en/master/usage/configuration.html#general-configuration
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
__version__ = "0.1.8"
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
torch>=2.0.0
|
|
2
|
+
torchvision>=0.15.0
|
|
3
|
+
|
|
4
|
+
tqdm>=4.65.0
|
|
5
|
+
|
|
6
|
+
# ---------------- macOS ----------------
|
|
7
|
+
numpy>=1.24,<2.0; sys_platform == "darwin"
|
|
8
|
+
pandas>=2.0.0; sys_platform == "darwin"
|
|
9
|
+
scipy>=1.10.0; sys_platform == "darwin"
|
|
10
|
+
scikit-learn>=1.3.0; sys_platform == "darwin"
|
|
11
|
+
pyarrow>=12.0.0,<18.0.0; sys_platform == "darwin"
|
|
12
|
+
|
|
13
|
+
# ---------------- Windows ----------------
|
|
14
|
+
numpy>=1.21,<2.0; sys_platform == "linux" and python_version < "3.12"
|
|
15
|
+
pandas>=1.5,<2.0; sys_platform == "linux" and python_version < "3.12"
|
|
16
|
+
scipy>=1.8,<1.12; sys_platform == "linux" and python_version < "3.12"
|
|
17
|
+
scikit-learn>=1.2,<2.0; sys_platform == "linux" and python_version < "3.12"
|
|
18
|
+
pyarrow>=10.0.0,<13.0.0; sys_platform == "linux" and python_version < "3.12"
|
|
19
|
+
|
|
20
|
+
# ---------------- Linux gcc 4.8.5 ----------------
|
|
21
|
+
numpy>=1.21,<2.0; sys_platform == "linux" and python_version < "3.12"
|
|
22
|
+
pandas>=1.5,<2.0; sys_platform == "linux" and python_version < "3.12"
|
|
23
|
+
scipy>=1.8,<1.12; sys_platform == "linux" and python_version < "3.12"
|
|
24
|
+
scikit-learn>=1.2,<2.0; sys_platform == "linux" and python_version < "3.12"
|
|
25
|
+
pyarrow>=10.0.0,<13.0.0; sys_platform == "linux" and python_version < "3.12"
|
|
26
|
+
|
|
27
|
+
# ---------------- Linux python 3.12+ ----------------
|
|
28
|
+
numpy>=1.26,<3.0; sys_platform == "linux" and python_version >= "3.12"
|
|
29
|
+
pandas>=2.1.0; sys_platform == "linux" and python_version >= "3.12"
|
|
30
|
+
scipy>=1.11.0; sys_platform == "linux" and python_version >= "3.12"
|
|
31
|
+
scikit-learn>=1.3.0; sys_platform == "linux" and python_version >= "3.12"
|
|
32
|
+
pyarrow>=16.0.0; sys_platform == "linux" and python_version >= "3.12"
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
__version__ = "0.1.7"
|
nextrec-0.1.7/requirements.txt
DELETED
|
@@ -1,25 +0,0 @@
|
|
|
1
|
-
torch>=2.0.0
|
|
2
|
-
torchvision>=0.15.0
|
|
3
|
-
|
|
4
|
-
tqdm>=4.65.0
|
|
5
|
-
|
|
6
|
-
# ---------------- macOS ----------------
|
|
7
|
-
numpy>=1.24,<2.0; sys_platform == "darwin"
|
|
8
|
-
pandas>=2.0.0; sys_platform == "darwin"
|
|
9
|
-
scipy>=1.10.0; sys_platform == "darwin"
|
|
10
|
-
scikit-learn>=1.3.0; sys_platform == "darwin"
|
|
11
|
-
pyarrow>=12.0.0,<18.0.0; sys_platform == "darwin"
|
|
12
|
-
|
|
13
|
-
# ---------------- Windows ----------------
|
|
14
|
-
numpy>=1.23,<2.0; sys_platform == "win32"
|
|
15
|
-
pandas>=2.1.0,<2.3.0; sys_platform == "win32"
|
|
16
|
-
scipy>=1.10.0; sys_platform == "win32"
|
|
17
|
-
scikit-learn>=1.3.0; sys_platform == "win32"
|
|
18
|
-
pyarrow>=12.0.0,<18.0.0; sys_platform == "win32"
|
|
19
|
-
|
|
20
|
-
# ---------------- Linux(兼容 gcc 4.8.5) ----------------
|
|
21
|
-
numpy>=1.21,<2.0; sys_platform == "linux"
|
|
22
|
-
pandas>=1.5,<2.0; sys_platform == "linux"
|
|
23
|
-
scipy>=1.8,<1.12; sys_platform == "linux"
|
|
24
|
-
scikit-learn>=1.2,<2.0; sys_platform == "linux"
|
|
25
|
-
pyarrow>=10.0.0,<13.0.0; sys_platform == "linux"
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|