nextrec 0.1.2__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.
Files changed (94) hide show
  1. {nextrec-0.1.2 → nextrec-0.1.4}/PKG-INFO +3 -3
  2. {nextrec-0.1.2 → nextrec-0.1.4}/docs/conf.py +1 -1
  3. nextrec-0.1.4/nextrec/__version__.py +1 -0
  4. {nextrec-0.1.2 → nextrec-0.1.4}/pyproject.toml +3 -3
  5. {nextrec-0.1.2 → nextrec-0.1.4}/requirements.txt +2 -2
  6. nextrec-0.1.2/nextrec/__version__.py +0 -1
  7. {nextrec-0.1.2 → nextrec-0.1.4}/.github/workflows/publish.yml +0 -0
  8. {nextrec-0.1.2 → nextrec-0.1.4}/.github/workflows/tests.yml +0 -0
  9. {nextrec-0.1.2 → nextrec-0.1.4}/.gitignore +0 -0
  10. {nextrec-0.1.2 → nextrec-0.1.4}/.readthedocs.yaml +0 -0
  11. {nextrec-0.1.2 → nextrec-0.1.4}/CODE_OF_CONDUCT.md +0 -0
  12. {nextrec-0.1.2 → nextrec-0.1.4}/CONTRIBUTING.md +0 -0
  13. {nextrec-0.1.2 → nextrec-0.1.4}/LICENSE +0 -0
  14. {nextrec-0.1.2 → nextrec-0.1.4}/MANIFEST.in +0 -0
  15. {nextrec-0.1.2 → nextrec-0.1.4}/README.md +0 -0
  16. {nextrec-0.1.2 → nextrec-0.1.4}/README_zh.md +0 -0
  17. {nextrec-0.1.2 → nextrec-0.1.4}/dataset/match_task.csv +0 -0
  18. {nextrec-0.1.2 → nextrec-0.1.4}/dataset/movielens_100k.csv +0 -0
  19. {nextrec-0.1.2 → nextrec-0.1.4}/dataset/multitask_task.csv +0 -0
  20. {nextrec-0.1.2 → nextrec-0.1.4}/dataset/ranking_task.csv +0 -0
  21. {nextrec-0.1.2 → nextrec-0.1.4}/docs/Makefile +0 -0
  22. {nextrec-0.1.2 → nextrec-0.1.4}/docs/index.rst +0 -0
  23. {nextrec-0.1.2 → nextrec-0.1.4}/docs/make.bat +0 -0
  24. {nextrec-0.1.2 → nextrec-0.1.4}/docs/modules.rst +0 -0
  25. {nextrec-0.1.2 → nextrec-0.1.4}/docs/nextrec.basic.rst +0 -0
  26. {nextrec-0.1.2 → nextrec-0.1.4}/docs/nextrec.data.rst +0 -0
  27. {nextrec-0.1.2 → nextrec-0.1.4}/docs/nextrec.loss.rst +0 -0
  28. {nextrec-0.1.2 → nextrec-0.1.4}/docs/nextrec.rst +0 -0
  29. {nextrec-0.1.2 → nextrec-0.1.4}/docs/nextrec.utils.rst +0 -0
  30. {nextrec-0.1.2 → nextrec-0.1.4}/docs/requirements.txt +0 -0
  31. {nextrec-0.1.2 → nextrec-0.1.4}/format_codes.sh +0 -0
  32. {nextrec-0.1.2 → nextrec-0.1.4}/nextrec/__init__.py +0 -0
  33. {nextrec-0.1.2 → nextrec-0.1.4}/nextrec/basic/__init__.py +0 -0
  34. {nextrec-0.1.2 → nextrec-0.1.4}/nextrec/basic/activation.py +0 -0
  35. {nextrec-0.1.2 → nextrec-0.1.4}/nextrec/basic/callback.py +0 -0
  36. {nextrec-0.1.2 → nextrec-0.1.4}/nextrec/basic/dataloader.py +0 -0
  37. {nextrec-0.1.2 → nextrec-0.1.4}/nextrec/basic/features.py +0 -0
  38. {nextrec-0.1.2 → nextrec-0.1.4}/nextrec/basic/layers.py +0 -0
  39. {nextrec-0.1.2 → nextrec-0.1.4}/nextrec/basic/loggers.py +0 -0
  40. {nextrec-0.1.2 → nextrec-0.1.4}/nextrec/basic/metrics.py +0 -0
  41. {nextrec-0.1.2 → nextrec-0.1.4}/nextrec/basic/model.py +0 -0
  42. {nextrec-0.1.2 → nextrec-0.1.4}/nextrec/data/__init__.py +0 -0
  43. {nextrec-0.1.2 → nextrec-0.1.4}/nextrec/data/data_utils.py +0 -0
  44. {nextrec-0.1.2 → nextrec-0.1.4}/nextrec/data/preprocessor.py +0 -0
  45. {nextrec-0.1.2 → nextrec-0.1.4}/nextrec/loss/__init__.py +0 -0
  46. {nextrec-0.1.2 → nextrec-0.1.4}/nextrec/loss/loss_utils.py +0 -0
  47. {nextrec-0.1.2 → nextrec-0.1.4}/nextrec/loss/match_losses.py +0 -0
  48. {nextrec-0.1.2 → nextrec-0.1.4}/nextrec/models/generative/hstu.py +0 -0
  49. {nextrec-0.1.2 → nextrec-0.1.4}/nextrec/models/generative/tiger.py +0 -0
  50. {nextrec-0.1.2 → nextrec-0.1.4}/nextrec/models/match/__init__.py +0 -0
  51. {nextrec-0.1.2 → nextrec-0.1.4}/nextrec/models/match/dssm.py +0 -0
  52. {nextrec-0.1.2 → nextrec-0.1.4}/nextrec/models/match/dssm_v2.py +0 -0
  53. {nextrec-0.1.2 → nextrec-0.1.4}/nextrec/models/match/mind.py +0 -0
  54. {nextrec-0.1.2 → nextrec-0.1.4}/nextrec/models/match/sdm.py +0 -0
  55. {nextrec-0.1.2 → nextrec-0.1.4}/nextrec/models/match/youtube_dnn.py +0 -0
  56. {nextrec-0.1.2 → nextrec-0.1.4}/nextrec/models/multi_task/esmm.py +0 -0
  57. {nextrec-0.1.2 → nextrec-0.1.4}/nextrec/models/multi_task/mmoe.py +0 -0
  58. {nextrec-0.1.2 → nextrec-0.1.4}/nextrec/models/multi_task/ple.py +0 -0
  59. {nextrec-0.1.2 → nextrec-0.1.4}/nextrec/models/multi_task/share_bottom.py +0 -0
  60. {nextrec-0.1.2 → nextrec-0.1.4}/nextrec/models/ranking/__init__.py +0 -0
  61. {nextrec-0.1.2 → nextrec-0.1.4}/nextrec/models/ranking/afm.py +0 -0
  62. {nextrec-0.1.2 → nextrec-0.1.4}/nextrec/models/ranking/autoint.py +0 -0
  63. {nextrec-0.1.2 → nextrec-0.1.4}/nextrec/models/ranking/dcn.py +0 -0
  64. {nextrec-0.1.2 → nextrec-0.1.4}/nextrec/models/ranking/deepfm.py +0 -0
  65. {nextrec-0.1.2 → nextrec-0.1.4}/nextrec/models/ranking/dien.py +0 -0
  66. {nextrec-0.1.2 → nextrec-0.1.4}/nextrec/models/ranking/din.py +0 -0
  67. {nextrec-0.1.2 → nextrec-0.1.4}/nextrec/models/ranking/fibinet.py +0 -0
  68. {nextrec-0.1.2 → nextrec-0.1.4}/nextrec/models/ranking/fm.py +0 -0
  69. {nextrec-0.1.2 → nextrec-0.1.4}/nextrec/models/ranking/masknet.py +0 -0
  70. {nextrec-0.1.2 → nextrec-0.1.4}/nextrec/models/ranking/pnn.py +0 -0
  71. {nextrec-0.1.2 → nextrec-0.1.4}/nextrec/models/ranking/widedeep.py +0 -0
  72. {nextrec-0.1.2 → nextrec-0.1.4}/nextrec/models/ranking/xdeepfm.py +0 -0
  73. {nextrec-0.1.2 → nextrec-0.1.4}/nextrec/utils/__init__.py +0 -0
  74. {nextrec-0.1.2 → nextrec-0.1.4}/nextrec/utils/common.py +0 -0
  75. {nextrec-0.1.2 → nextrec-0.1.4}/nextrec/utils/embedding.py +0 -0
  76. {nextrec-0.1.2 → nextrec-0.1.4}/nextrec/utils/initializer.py +0 -0
  77. {nextrec-0.1.2 → nextrec-0.1.4}/nextrec/utils/optimizer.py +0 -0
  78. {nextrec-0.1.2 → nextrec-0.1.4}/pytest.ini +0 -0
  79. {nextrec-0.1.2 → nextrec-0.1.4}/test/__init__.py +0 -0
  80. {nextrec-0.1.2 → nextrec-0.1.4}/test/conftest.py +0 -0
  81. {nextrec-0.1.2 → nextrec-0.1.4}/test/run_tests.py +0 -0
  82. {nextrec-0.1.2 → nextrec-0.1.4}/test/test_data_preprocessor.py +0 -0
  83. {nextrec-0.1.2 → nextrec-0.1.4}/test/test_dataloader.py +0 -0
  84. {nextrec-0.1.2 → nextrec-0.1.4}/test/test_layers.py +0 -0
  85. {nextrec-0.1.2 → nextrec-0.1.4}/test/test_match_models.py +0 -0
  86. {nextrec-0.1.2 → nextrec-0.1.4}/test/test_multitask_models.py +0 -0
  87. {nextrec-0.1.2 → nextrec-0.1.4}/test/test_ranking_models.py +0 -0
  88. {nextrec-0.1.2 → nextrec-0.1.4}/test/test_utils.py +0 -0
  89. {nextrec-0.1.2 → nextrec-0.1.4}/test_requirements.txt +0 -0
  90. {nextrec-0.1.2 → nextrec-0.1.4}/tutorials/example_match_dssm.py +0 -0
  91. {nextrec-0.1.2 → nextrec-0.1.4}/tutorials/example_multitask.py +0 -0
  92. {nextrec-0.1.2 → nextrec-0.1.4}/tutorials/example_ranking_din.py +0 -0
  93. {nextrec-0.1.2 → nextrec-0.1.4}/tutorials/movielen_match_dssm.py +0 -0
  94. {nextrec-0.1.2 → 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.2
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
@@ -21,8 +21,8 @@ Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
21
21
  Requires-Python: >=3.10
22
22
  Requires-Dist: fastparquet>=2023.4.0
23
23
  Requires-Dist: numpy>=1.23.0
24
- Requires-Dist: pandas>=2.0.0
25
- Requires-Dist: pyarrow>=12.0.0
24
+ Requires-Dist: pandas<2.3.0,>=2.1.0
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.2"
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.2"
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"
@@ -23,10 +23,10 @@ dependencies = [
23
23
  "torch>=2.0.0",
24
24
  "torchvision>=0.15.0",
25
25
  "numpy>=1.23.0",
26
- "pandas>=2.0.0",
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
  ]
@@ -2,7 +2,7 @@ torch>=2.0.0
2
2
  torchvision>=0.15.0
3
3
 
4
4
  numpy>=1.23.0
5
- pandas>=2.0.0
5
+ pandas>=2.1.0,<2.3.0
6
6
  scipy>=1.10.0
7
7
 
8
8
  scikit-learn>=1.3.0
@@ -15,6 +15,6 @@ matplotlib>=3.7.0
15
15
  seaborn>=0.12.0
16
16
  tqdm>=4.65.0
17
17
 
18
- pyarrow>=12.0.0
18
+ pyarrow>=12.0.0,<15.0.0
19
19
  fastparquet>=2023.4.0
20
20
 
@@ -1 +0,0 @@
1
- __version__ = "0.1.2"
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