nextrec 0.1.3__tar.gz → 0.1.4__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.3 → nextrec-0.1.4}/PKG-INFO +2 -2
- {nextrec-0.1.3 → nextrec-0.1.4}/docs/conf.py +1 -1
- nextrec-0.1.4/nextrec/__version__.py +1 -0
- {nextrec-0.1.3 → nextrec-0.1.4}/pyproject.toml +2 -2
- {nextrec-0.1.3 → nextrec-0.1.4}/requirements.txt +1 -1
- nextrec-0.1.3/nextrec/__version__.py +0 -1
- {nextrec-0.1.3 → nextrec-0.1.4}/.github/workflows/publish.yml +0 -0
- {nextrec-0.1.3 → nextrec-0.1.4}/.github/workflows/tests.yml +0 -0
- {nextrec-0.1.3 → nextrec-0.1.4}/.gitignore +0 -0
- {nextrec-0.1.3 → nextrec-0.1.4}/.readthedocs.yaml +0 -0
- {nextrec-0.1.3 → nextrec-0.1.4}/CODE_OF_CONDUCT.md +0 -0
- {nextrec-0.1.3 → nextrec-0.1.4}/CONTRIBUTING.md +0 -0
- {nextrec-0.1.3 → nextrec-0.1.4}/LICENSE +0 -0
- {nextrec-0.1.3 → nextrec-0.1.4}/MANIFEST.in +0 -0
- {nextrec-0.1.3 → nextrec-0.1.4}/README.md +0 -0
- {nextrec-0.1.3 → nextrec-0.1.4}/README_zh.md +0 -0
- {nextrec-0.1.3 → nextrec-0.1.4}/dataset/match_task.csv +0 -0
- {nextrec-0.1.3 → nextrec-0.1.4}/dataset/movielens_100k.csv +0 -0
- {nextrec-0.1.3 → nextrec-0.1.4}/dataset/multitask_task.csv +0 -0
- {nextrec-0.1.3 → nextrec-0.1.4}/dataset/ranking_task.csv +0 -0
- {nextrec-0.1.3 → nextrec-0.1.4}/docs/Makefile +0 -0
- {nextrec-0.1.3 → nextrec-0.1.4}/docs/index.rst +0 -0
- {nextrec-0.1.3 → nextrec-0.1.4}/docs/make.bat +0 -0
- {nextrec-0.1.3 → nextrec-0.1.4}/docs/modules.rst +0 -0
- {nextrec-0.1.3 → nextrec-0.1.4}/docs/nextrec.basic.rst +0 -0
- {nextrec-0.1.3 → nextrec-0.1.4}/docs/nextrec.data.rst +0 -0
- {nextrec-0.1.3 → nextrec-0.1.4}/docs/nextrec.loss.rst +0 -0
- {nextrec-0.1.3 → nextrec-0.1.4}/docs/nextrec.rst +0 -0
- {nextrec-0.1.3 → nextrec-0.1.4}/docs/nextrec.utils.rst +0 -0
- {nextrec-0.1.3 → nextrec-0.1.4}/docs/requirements.txt +0 -0
- {nextrec-0.1.3 → nextrec-0.1.4}/format_codes.sh +0 -0
- {nextrec-0.1.3 → nextrec-0.1.4}/nextrec/__init__.py +0 -0
- {nextrec-0.1.3 → nextrec-0.1.4}/nextrec/basic/__init__.py +0 -0
- {nextrec-0.1.3 → nextrec-0.1.4}/nextrec/basic/activation.py +0 -0
- {nextrec-0.1.3 → nextrec-0.1.4}/nextrec/basic/callback.py +0 -0
- {nextrec-0.1.3 → nextrec-0.1.4}/nextrec/basic/dataloader.py +0 -0
- {nextrec-0.1.3 → nextrec-0.1.4}/nextrec/basic/features.py +0 -0
- {nextrec-0.1.3 → nextrec-0.1.4}/nextrec/basic/layers.py +0 -0
- {nextrec-0.1.3 → nextrec-0.1.4}/nextrec/basic/loggers.py +0 -0
- {nextrec-0.1.3 → nextrec-0.1.4}/nextrec/basic/metrics.py +0 -0
- {nextrec-0.1.3 → nextrec-0.1.4}/nextrec/basic/model.py +0 -0
- {nextrec-0.1.3 → nextrec-0.1.4}/nextrec/data/__init__.py +0 -0
- {nextrec-0.1.3 → nextrec-0.1.4}/nextrec/data/data_utils.py +0 -0
- {nextrec-0.1.3 → nextrec-0.1.4}/nextrec/data/preprocessor.py +0 -0
- {nextrec-0.1.3 → nextrec-0.1.4}/nextrec/loss/__init__.py +0 -0
- {nextrec-0.1.3 → nextrec-0.1.4}/nextrec/loss/loss_utils.py +0 -0
- {nextrec-0.1.3 → nextrec-0.1.4}/nextrec/loss/match_losses.py +0 -0
- {nextrec-0.1.3 → nextrec-0.1.4}/nextrec/models/generative/hstu.py +0 -0
- {nextrec-0.1.3 → nextrec-0.1.4}/nextrec/models/generative/tiger.py +0 -0
- {nextrec-0.1.3 → nextrec-0.1.4}/nextrec/models/match/__init__.py +0 -0
- {nextrec-0.1.3 → nextrec-0.1.4}/nextrec/models/match/dssm.py +0 -0
- {nextrec-0.1.3 → nextrec-0.1.4}/nextrec/models/match/dssm_v2.py +0 -0
- {nextrec-0.1.3 → nextrec-0.1.4}/nextrec/models/match/mind.py +0 -0
- {nextrec-0.1.3 → nextrec-0.1.4}/nextrec/models/match/sdm.py +0 -0
- {nextrec-0.1.3 → nextrec-0.1.4}/nextrec/models/match/youtube_dnn.py +0 -0
- {nextrec-0.1.3 → nextrec-0.1.4}/nextrec/models/multi_task/esmm.py +0 -0
- {nextrec-0.1.3 → nextrec-0.1.4}/nextrec/models/multi_task/mmoe.py +0 -0
- {nextrec-0.1.3 → nextrec-0.1.4}/nextrec/models/multi_task/ple.py +0 -0
- {nextrec-0.1.3 → nextrec-0.1.4}/nextrec/models/multi_task/share_bottom.py +0 -0
- {nextrec-0.1.3 → nextrec-0.1.4}/nextrec/models/ranking/__init__.py +0 -0
- {nextrec-0.1.3 → nextrec-0.1.4}/nextrec/models/ranking/afm.py +0 -0
- {nextrec-0.1.3 → nextrec-0.1.4}/nextrec/models/ranking/autoint.py +0 -0
- {nextrec-0.1.3 → nextrec-0.1.4}/nextrec/models/ranking/dcn.py +0 -0
- {nextrec-0.1.3 → nextrec-0.1.4}/nextrec/models/ranking/deepfm.py +0 -0
- {nextrec-0.1.3 → nextrec-0.1.4}/nextrec/models/ranking/dien.py +0 -0
- {nextrec-0.1.3 → nextrec-0.1.4}/nextrec/models/ranking/din.py +0 -0
- {nextrec-0.1.3 → nextrec-0.1.4}/nextrec/models/ranking/fibinet.py +0 -0
- {nextrec-0.1.3 → nextrec-0.1.4}/nextrec/models/ranking/fm.py +0 -0
- {nextrec-0.1.3 → nextrec-0.1.4}/nextrec/models/ranking/masknet.py +0 -0
- {nextrec-0.1.3 → nextrec-0.1.4}/nextrec/models/ranking/pnn.py +0 -0
- {nextrec-0.1.3 → nextrec-0.1.4}/nextrec/models/ranking/widedeep.py +0 -0
- {nextrec-0.1.3 → nextrec-0.1.4}/nextrec/models/ranking/xdeepfm.py +0 -0
- {nextrec-0.1.3 → nextrec-0.1.4}/nextrec/utils/__init__.py +0 -0
- {nextrec-0.1.3 → nextrec-0.1.4}/nextrec/utils/common.py +0 -0
- {nextrec-0.1.3 → nextrec-0.1.4}/nextrec/utils/embedding.py +0 -0
- {nextrec-0.1.3 → nextrec-0.1.4}/nextrec/utils/initializer.py +0 -0
- {nextrec-0.1.3 → nextrec-0.1.4}/nextrec/utils/optimizer.py +0 -0
- {nextrec-0.1.3 → nextrec-0.1.4}/pytest.ini +0 -0
- {nextrec-0.1.3 → nextrec-0.1.4}/test/__init__.py +0 -0
- {nextrec-0.1.3 → nextrec-0.1.4}/test/conftest.py +0 -0
- {nextrec-0.1.3 → nextrec-0.1.4}/test/run_tests.py +0 -0
- {nextrec-0.1.3 → nextrec-0.1.4}/test/test_data_preprocessor.py +0 -0
- {nextrec-0.1.3 → nextrec-0.1.4}/test/test_dataloader.py +0 -0
- {nextrec-0.1.3 → nextrec-0.1.4}/test/test_layers.py +0 -0
- {nextrec-0.1.3 → nextrec-0.1.4}/test/test_match_models.py +0 -0
- {nextrec-0.1.3 → nextrec-0.1.4}/test/test_multitask_models.py +0 -0
- {nextrec-0.1.3 → nextrec-0.1.4}/test/test_ranking_models.py +0 -0
- {nextrec-0.1.3 → nextrec-0.1.4}/test/test_utils.py +0 -0
- {nextrec-0.1.3 → nextrec-0.1.4}/test_requirements.txt +0 -0
- {nextrec-0.1.3 → nextrec-0.1.4}/tutorials/example_match_dssm.py +0 -0
- {nextrec-0.1.3 → nextrec-0.1.4}/tutorials/example_multitask.py +0 -0
- {nextrec-0.1.3 → nextrec-0.1.4}/tutorials/example_ranking_din.py +0 -0
- {nextrec-0.1.3 → nextrec-0.1.4}/tutorials/movielen_match_dssm.py +0 -0
- {nextrec-0.1.3 → nextrec-0.1.4}/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.4
|
|
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
|
|
@@ -22,7 +22,7 @@ Requires-Python: >=3.10
|
|
|
22
22
|
Requires-Dist: fastparquet>=2023.4.0
|
|
23
23
|
Requires-Dist: numpy>=1.23.0
|
|
24
24
|
Requires-Dist: pandas<2.3.0,>=2.1.0
|
|
25
|
-
Requires-Dist: pyarrow
|
|
25
|
+
Requires-Dist: pyarrow<15.0.0,>=12.0.0
|
|
26
26
|
Requires-Dist: scikit-learn>=1.3.0
|
|
27
27
|
Requires-Dist: scipy>=1.10.0
|
|
28
28
|
Requires-Dist: torch>=2.0.0
|
|
@@ -13,7 +13,7 @@ sys.path.insert(0, os.path.abspath("../nextrec"))
|
|
|
13
13
|
project = "NextRec"
|
|
14
14
|
copyright = "2025, Yang Zhou"
|
|
15
15
|
author = "Yang Zhou"
|
|
16
|
-
release = "0.1.
|
|
16
|
+
release = "0.1.4"
|
|
17
17
|
|
|
18
18
|
# -- General configuration ---------------------------------------------------
|
|
19
19
|
# https://www.sphinx-doc.org/en/master/usage/configuration.html#general-configuration
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
__version__ = "0.1.4"
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
[project]
|
|
2
2
|
name = "nextrec"
|
|
3
|
-
version = "0.1.
|
|
3
|
+
version = "0.1.4"
|
|
4
4
|
description = "A comprehensive recommendation library with match, ranking, and multi-task learning models"
|
|
5
5
|
readme = "README.md"
|
|
6
6
|
requires-python = ">=3.10"
|
|
@@ -26,7 +26,7 @@ dependencies = [
|
|
|
26
26
|
"pandas>=2.1.0,<2.3.0",
|
|
27
27
|
"scipy>=1.10.0",
|
|
28
28
|
"scikit-learn>=1.3.0",
|
|
29
|
-
"pyarrow>=12.0.0",
|
|
29
|
+
"pyarrow>=12.0.0,<15.0.0",
|
|
30
30
|
"fastparquet>=2023.4.0",
|
|
31
31
|
"tqdm>=4.65.0",
|
|
32
32
|
]
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
__version__ = "0.1.3"
|
|
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
|
|
File without changes
|