nextrec 0.3.6__py3-none-any.whl → 0.4.1__py3-none-any.whl

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 (37) hide show
  1. nextrec/__version__.py +1 -1
  2. nextrec/basic/layers.py +32 -15
  3. nextrec/basic/model.py +435 -187
  4. nextrec/data/data_processing.py +31 -19
  5. nextrec/data/dataloader.py +40 -10
  6. nextrec/models/generative/hstu.py +3 -2
  7. nextrec/models/match/dssm.py +0 -1
  8. nextrec/models/match/dssm_v2.py +0 -1
  9. nextrec/models/match/mind.py +0 -1
  10. nextrec/models/match/sdm.py +0 -1
  11. nextrec/models/match/youtube_dnn.py +0 -1
  12. nextrec/models/multi_task/esmm.py +5 -7
  13. nextrec/models/multi_task/mmoe.py +10 -6
  14. nextrec/models/multi_task/ple.py +10 -6
  15. nextrec/models/multi_task/poso.py +9 -6
  16. nextrec/models/multi_task/share_bottom.py +10 -7
  17. nextrec/models/ranking/afm.py +113 -21
  18. nextrec/models/ranking/autoint.py +15 -9
  19. nextrec/models/ranking/dcn.py +8 -11
  20. nextrec/models/ranking/deepfm.py +5 -5
  21. nextrec/models/ranking/dien.py +4 -4
  22. nextrec/models/ranking/din.py +4 -4
  23. nextrec/models/ranking/fibinet.py +4 -4
  24. nextrec/models/ranking/fm.py +4 -4
  25. nextrec/models/ranking/masknet.py +4 -5
  26. nextrec/models/ranking/pnn.py +4 -4
  27. nextrec/models/ranking/widedeep.py +4 -4
  28. nextrec/models/ranking/xdeepfm.py +4 -4
  29. nextrec/utils/__init__.py +7 -3
  30. nextrec/utils/device.py +30 -0
  31. nextrec/utils/distributed.py +114 -0
  32. nextrec/utils/synthetic_data.py +413 -0
  33. {nextrec-0.3.6.dist-info → nextrec-0.4.1.dist-info}/METADATA +15 -5
  34. nextrec-0.4.1.dist-info/RECORD +66 -0
  35. nextrec-0.3.6.dist-info/RECORD +0 -64
  36. {nextrec-0.3.6.dist-info → nextrec-0.4.1.dist-info}/WHEEL +0 -0
  37. {nextrec-0.3.6.dist-info → nextrec-0.4.1.dist-info}/licenses/LICENSE +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: nextrec
3
- Version: 0.3.6
3
+ Version: 0.4.1
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
@@ -55,7 +55,7 @@ Requires-Dist: seaborn>=0.12.0; extra == 'dev'
55
55
  Description-Content-Type: text/markdown
56
56
 
57
57
  <p align="center">
58
- <img align="center" src="asserts/logo.png" width="40%">
58
+ <img align="center" src="assets/logo.png" width="40%">
59
59
  <p>
60
60
 
61
61
  <div align="center">
@@ -63,7 +63,7 @@ Description-Content-Type: text/markdown
63
63
  ![Python](https://img.shields.io/badge/Python-3.10+-blue.svg)
64
64
  ![PyTorch](https://img.shields.io/badge/PyTorch-1.10+-ee4c2c.svg)
65
65
  ![License](https://img.shields.io/badge/License-Apache%202.0-green.svg)
66
- ![Version](https://img.shields.io/badge/Version-0.3.6-orange.svg)
66
+ ![Version](https://img.shields.io/badge/Version-0.4.1-orange.svg)
67
67
 
68
68
  English | [中文文档](README_zh.md)
69
69
 
@@ -86,7 +86,7 @@ NextRec is a modern recommendation framework built on PyTorch, delivering a unif
86
86
 
87
87
  NextRec adopts a modular and low-coupling engineering design, enabling full-pipeline reusability and scalability across data processing → model construction → training & evaluation → inference & deployment. Its core components include: a Feature-Spec-driven Embedding architecture, the BaseModel abstraction, a set of independent reusable Layers, a unified DataLoader for both training and inference, and a ready-to-use Model Zoo.
88
88
 
89
- ![NextRec Architecture](asserts/nextrec_diagram_en.png)
89
+ ![NextRec Architecture](assets/nextrec_diagram_en.png)
90
90
 
91
91
  > The project borrows ideas from excellent open-source rec libraries. Early layers referenced [torch-rechub](https://github.com/datawhalechina/torch-rechub) but have been replaced with in-house implementations. torch-rechub remains mature in architecture and models; the author contributed a bit there—feel free to check it out.
92
92
 
@@ -110,7 +110,7 @@ To dive deeper, Jupyter notebooks are available:
110
110
  - [Hands on the NextRec framework](/tutorials/notebooks/en/Hands%20on%20nextrec.ipynb)
111
111
  - [Using the data processor for preprocessing](/tutorials/notebooks/en/Hands%20on%20dataprocessor.ipynb)
112
112
 
113
- > Current version [0.3.6]: the matching module is not fully polished yet and may have compatibility issues or unexpected errors. Please raise an issue if you run into problems.
113
+ > Current version [0.4.1]: the matching module is not fully polished yet and may have compatibility issues or unexpected errors. Please raise an issue if you run into problems.
114
114
 
115
115
  ## 5-Minute Quick Start
116
116
 
@@ -196,6 +196,16 @@ metrics = model.evaluate(
196
196
  )
197
197
  ```
198
198
 
199
+ ## Platform Compatibility
200
+
201
+ The current version is 0.4.1. All models and test code have been validated on the following platforms. If you encounter compatibility issues, please report them in the issue tracker with your system version:
202
+
203
+ | Platform | Configuration |
204
+ |----------|---------------|
205
+ | MacOS latest | MacBook Pro M4 Pro 24GB RAM |
206
+ | Ubuntu latest | AutoDL 4070D Dual GPU |
207
+ | CentOS 7 | Intel Xeon 5138Y 96 cores 377GB RAM |
208
+
199
209
  ---
200
210
 
201
211
  ## Supported Models
@@ -0,0 +1,66 @@
1
+ nextrec/__init__.py,sha256=nFRpUAjezaxyMJDTgy4g9PtpDTq28sMHleSrlg3QkVA,235
2
+ nextrec/__version__.py,sha256=pMtTmSUht-XtbR_7Doz6bsQqopJJd8rZ8I8zy2HwwoA,22
3
+ nextrec/basic/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
4
+ nextrec/basic/activation.py,sha256=1qs9pq4hT3BUxIiYdYs57axMCm4-JyOBFQ6x7xkHTwM,2849
5
+ nextrec/basic/callback.py,sha256=wwh0I2kKYyywCB-sG9eQXShlpXFJIo75qApJmnI5p6c,1036
6
+ nextrec/basic/features.py,sha256=DFwYjG13GYHOujS_CMKa7Qrux9faF7MQNoaoRDF_Eks,4263
7
+ nextrec/basic/layers.py,sha256=CCicyaZtsDF5R_OzVRjSsmvX_lfEDOEVETq41pbxK20,23749
8
+ nextrec/basic/loggers.py,sha256=YLmeXsnzm9M2qxtmBOLMGZRg9wOAUQYl8UNpbWFzs8s,6147
9
+ nextrec/basic/metrics.py,sha256=8-hMZJXU5L4F8GnToxMZey5dlBrtFyRtTuI_zoQCtIo,21579
10
+ nextrec/basic/model.py,sha256=5MbyYmn1gLV2vy5GQoTxgnOCm2thjWTdquTYwyEeYvk,87093
11
+ nextrec/basic/session.py,sha256=kYpUE6KzN2_Jli4l-YuoeMBaghGi3kzDnGRP3E08FbQ,4430
12
+ nextrec/data/__init__.py,sha256=OJsuESaE0NZorAkAwydWJtsWsbNBzKfmQCrDJTzA5a0,1227
13
+ nextrec/data/batch_utils.py,sha256=6G-E85H-PqYJ20EYVLnC3MqC8xYrXzZ1XYe82MhRPck,2816
14
+ nextrec/data/data_processing.py,sha256=P-25xFHU87RqQA7loivN_O1fxtVRTluTQZ2qxgE2Prk,5433
15
+ nextrec/data/data_utils.py,sha256=-3xLPW3csOiGNmj0kzzpOkCxZyu09RNBgfPkwX7nDAc,1172
16
+ nextrec/data/dataloader.py,sha256=NLmCXyG1NUzrO6TgdwEanjBpzzcE07fjQFjceqHLTgU,16325
17
+ nextrec/data/preprocessor.py,sha256=_A3eEc1MpUGDEpno1TToA-dyJ_k707Mr3GilTi_9j5I,40419
18
+ nextrec/loss/__init__.py,sha256=mO5t417BneZ8Ysa51GyjDaffjWyjzFgPXIQrrggasaQ,827
19
+ nextrec/loss/listwise.py,sha256=gxDbO1td5IeS28jKzdE35o1KAYBRdCYoMzyZzfNLhc0,5689
20
+ nextrec/loss/loss_utils.py,sha256=uZ4m9ChLr-UgIc5Yxm1LjwXDDepApQ-Fas8njweZ9qg,2641
21
+ nextrec/loss/pairwise.py,sha256=MN_3Pk6Nj8KCkmUqGT5cmyx1_nQa3TIx_kxXT_HB58c,3396
22
+ nextrec/loss/pointwise.py,sha256=shgdRJwTV7vAnVxHSffOJU4TPQeKyrwudQ8y-R10nYM,7144
23
+ nextrec/models/generative/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
24
+ nextrec/models/generative/hstu.py,sha256=Dh1lYgVCIii0NOSJ8CRACi8mLkB3W36I-Nqp2WXlhTE,16427
25
+ nextrec/models/generative/tiger.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
26
+ nextrec/models/match/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
27
+ nextrec/models/match/dssm.py,sha256=iywpz-UwWLCZODpsLelS_nt6i_IpeZ2r8fVAVcXtuwQ,8177
28
+ nextrec/models/match/dssm_v2.py,sha256=gGmCIdCLQLWaVoNsCesoBGI74KTzYIch_SXSo-yKRMU,7134
29
+ nextrec/models/match/mind.py,sha256=-bwpVz0UaWIopUTOC2784CHwb10xQLrjnnwx79tBXPo,14833
30
+ nextrec/models/match/sdm.py,sha256=8YGzHWM1JTaQcHN2Xb9DAiui5WP-JE-NHdrCHXYYgyU,10865
31
+ nextrec/models/match/youtube_dnn.py,sha256=QKHnj4a7lgDd8bHDT2OXxt9kXT1ubBf6zkTTEJwY-LY,7491
32
+ nextrec/models/multi_task/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
33
+ nextrec/models/multi_task/esmm.py,sha256=VEEklO-PPO9ie5P8F5BEsVapXzWYtLbbcuebisKevgM,6361
34
+ nextrec/models/multi_task/mmoe.py,sha256=Uzo5GbOS5bgP3ngRXU-Q-jh0mbP0rk-6PhS-5XU4JRg,7935
35
+ nextrec/models/multi_task/ple.py,sha256=eNUuOgd4sOAvqjVh3j6TvwoH4V3fYJPifwisAWdkdqU,12081
36
+ nextrec/models/multi_task/poso.py,sha256=tuvmHgA5eUj7yBwlRPTtLUNrV1aDX9LI0PP0ckYlTxk,16782
37
+ nextrec/models/multi_task/share_bottom.py,sha256=kZep9Cs1bCbRMNE2hl13IsAWV1orO1126_sOyS3Sqc0,5998
38
+ nextrec/models/ranking/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
39
+ nextrec/models/ranking/afm.py,sha256=smE_0irnTWlG0cXxSPS5qGJldFV57db3iALoIaO9k08,9692
40
+ nextrec/models/ranking/autoint.py,sha256=Zu2GF8aRNzPepl2YsUFl8TOrvrWgKQ9-4SAHPai78TQ,8120
41
+ nextrec/models/ranking/dcn.py,sha256=q1FAw3O2zN3lSta_4DtUq3RxfxEnS-TWKi25T12X_xY,4899
42
+ nextrec/models/ranking/dcn_v2.py,sha256=ivHwLRxi4VcNzh9DWQQ227Gw5dhyRZ5LezuqkAdD89o,3630
43
+ nextrec/models/ranking/deepfm.py,sha256=X6b8-rMRWxjCaHwG49DXbNTGSOFOFFACgw85gX4gaxk,5021
44
+ nextrec/models/ranking/dien.py,sha256=AkzcNdo5g4vnWWQe6HjwCT6DPAA_m2ONXbNyqdkOgLw,12768
45
+ nextrec/models/ranking/din.py,sha256=pW1AjTnLoCr7-pOWiP_65_LObZVw3Zexn_Z4Tyw8bEw,7222
46
+ nextrec/models/ranking/fibinet.py,sha256=KqQAEM3bP9HlElPcEASk_O3oC7kc4n1L747-ngZO_xQ,4887
47
+ nextrec/models/ranking/fm.py,sha256=DqYFqwfNzjv4oAVpCT3P-e3OvScjZmGsICUWrKTcTac,2987
48
+ nextrec/models/ranking/masknet.py,sha256=Zk8PdAD1Lc8KX9GrV-yVgvnqj7Qk1XBbfoFUgy2_9oM,11464
49
+ nextrec/models/ranking/pnn.py,sha256=rExX9p17BUS6m_1zjQscN9jb91BRqJaolRwp5MTPA5A,4983
50
+ nextrec/models/ranking/widedeep.py,sha256=N5pxP5KKzMZs5HgxnS6gAqlMUcWhnpjjbv1B7f5UYQc,5061
51
+ nextrec/models/ranking/xdeepfm.py,sha256=mu2Cd3n7sf7lW9_aHeJpSFnlUkq1IqHWK_K8GZLKtf8,5708
52
+ nextrec/utils/__init__.py,sha256=Q1QroXls9Aq320WSJmo8NBzSU8251Y2Ji0UFFExhy6w,2033
53
+ nextrec/utils/device.py,sha256=GX_ThOXQD8wYFIEW2NGlTKxAXHdg_zgiOhwweAa84eo,2315
54
+ nextrec/utils/distributed.py,sha256=AGmGZ1OV3J7Ld1rQCbQ6hkbo3eXZ9Es64mYMIKDRROw,4513
55
+ nextrec/utils/embedding.py,sha256=yxYSdFx0cJITh3Gf-K4SdhwRtKGcI0jOsyBgZ0NLa_c,465
56
+ nextrec/utils/feature.py,sha256=s0eMEuvbOsotjll7eSYjb0b-1cXnvVy1mSI1Syg_7n4,299
57
+ nextrec/utils/file.py,sha256=wxKvd1_U9ugFDP7EzLNG6-3PBInA0QhxoHzBWKfe_B8,2384
58
+ nextrec/utils/initializer.py,sha256=BkP6-vJdsc0A-8ya-AVEs7W24dPXyxIilNnckwXgPEc,1391
59
+ nextrec/utils/model.py,sha256=FB7QbatO0uEvghBEfByJtRS0waaBEB1UI0YzfA_2k04,535
60
+ nextrec/utils/optimizer.py,sha256=cVkDrEkxwig17UAEhL8p9v3iVNiXI8B067Yf_6LqUp8,2198
61
+ nextrec/utils/synthetic_data.py,sha256=JijSkWxZsAClclZ_fmDxo_JG1PEGakM8EN4wkbk6ifY,16383
62
+ nextrec/utils/tensor.py,sha256=_RibR6BMPizhzRLVdnJqwUgzA0zpzkZuKfTrdSjbL60,2136
63
+ nextrec-0.4.1.dist-info/METADATA,sha256=wcvolWRMdDvMHXmJfwYbJxWqgfNDeRmsIG8vMNxFAF8,16753
64
+ nextrec-0.4.1.dist-info/WHEEL,sha256=WLgqFyCfm_KASv4WHyYy0P3pM_m7J5L9k2skdKLirC8,87
65
+ nextrec-0.4.1.dist-info/licenses/LICENSE,sha256=2fQfVKeafywkni7MYHyClC6RGGC3laLTXCNBx-ubtp0,1064
66
+ nextrec-0.4.1.dist-info/RECORD,,
@@ -1,64 +0,0 @@
1
- nextrec/__init__.py,sha256=nFRpUAjezaxyMJDTgy4g9PtpDTq28sMHleSrlg3QkVA,235
2
- nextrec/__version__.py,sha256=W_9dCm49nLvZulVAvvsafxLJjVBSKDBHz9K7szFZllo,22
3
- nextrec/basic/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
4
- nextrec/basic/activation.py,sha256=1qs9pq4hT3BUxIiYdYs57axMCm4-JyOBFQ6x7xkHTwM,2849
5
- nextrec/basic/callback.py,sha256=wwh0I2kKYyywCB-sG9eQXShlpXFJIo75qApJmnI5p6c,1036
6
- nextrec/basic/features.py,sha256=DFwYjG13GYHOujS_CMKa7Qrux9faF7MQNoaoRDF_Eks,4263
7
- nextrec/basic/layers.py,sha256=zzEseKYVnMVs1Tg5EGrFimugId15jI6HumgzjFyRqgw,23127
8
- nextrec/basic/loggers.py,sha256=YLmeXsnzm9M2qxtmBOLMGZRg9wOAUQYl8UNpbWFzs8s,6147
9
- nextrec/basic/metrics.py,sha256=8-hMZJXU5L4F8GnToxMZey5dlBrtFyRtTuI_zoQCtIo,21579
10
- nextrec/basic/model.py,sha256=LybJlpzK2S6zw8ez_HrR_tFc15Gzcy0t4GMD12i9sA0,69310
11
- nextrec/basic/session.py,sha256=kYpUE6KzN2_Jli4l-YuoeMBaghGi3kzDnGRP3E08FbQ,4430
12
- nextrec/data/__init__.py,sha256=OJsuESaE0NZorAkAwydWJtsWsbNBzKfmQCrDJTzA5a0,1227
13
- nextrec/data/batch_utils.py,sha256=6G-E85H-PqYJ20EYVLnC3MqC8xYrXzZ1XYe82MhRPck,2816
14
- nextrec/data/data_processing.py,sha256=N3Uk4NsUCyLeoMDV1zeLmH-dP02I-cRWDo-vvQgLqjo,5006
15
- nextrec/data/data_utils.py,sha256=-3xLPW3csOiGNmj0kzzpOkCxZyu09RNBgfPkwX7nDAc,1172
16
- nextrec/data/dataloader.py,sha256=JOudvhnMcNBYFlSKbMKi43Ndn2c1kGoyD8G9gTlW0Ps,14699
17
- nextrec/data/preprocessor.py,sha256=_A3eEc1MpUGDEpno1TToA-dyJ_k707Mr3GilTi_9j5I,40419
18
- nextrec/loss/__init__.py,sha256=mO5t417BneZ8Ysa51GyjDaffjWyjzFgPXIQrrggasaQ,827
19
- nextrec/loss/listwise.py,sha256=gxDbO1td5IeS28jKzdE35o1KAYBRdCYoMzyZzfNLhc0,5689
20
- nextrec/loss/loss_utils.py,sha256=uZ4m9ChLr-UgIc5Yxm1LjwXDDepApQ-Fas8njweZ9qg,2641
21
- nextrec/loss/pairwise.py,sha256=MN_3Pk6Nj8KCkmUqGT5cmyx1_nQa3TIx_kxXT_HB58c,3396
22
- nextrec/loss/pointwise.py,sha256=shgdRJwTV7vAnVxHSffOJU4TPQeKyrwudQ8y-R10nYM,7144
23
- nextrec/models/generative/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
24
- nextrec/models/generative/hstu.py,sha256=CLu8Ee_L4fdnb7_DKocz0g7SZlPI1g_6o8HtyzRkI9s,16368
25
- nextrec/models/generative/tiger.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
26
- nextrec/models/match/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
27
- nextrec/models/match/dssm.py,sha256=1cj1Fb3yFTKxA1kRaomh_Q8y66vBZc85ywAIXWosyL0,8230
28
- nextrec/models/match/dssm_v2.py,sha256=BY6m9651NlzMLjRa9oeez0dab_3NjNFVgYQ7Q39Ug74,7187
29
- nextrec/models/match/mind.py,sha256=0cggXKE1-XsTZ6IX4UH81a5KycdGF-_ix2Nw-eKTLpg,14886
30
- nextrec/models/match/sdm.py,sha256=wVRj6PWLF6hMIqqlJDUuKqxJAvCGPe-HfD3EVgd16Sw,10918
31
- nextrec/models/match/youtube_dnn.py,sha256=Wa5JWrlIpMuBoyXpnBrdnm1nQ8ZO_XcR517zfINh-xA,7544
32
- nextrec/models/multi_task/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
33
- nextrec/models/multi_task/esmm.py,sha256=Ho5UN2H9H9-ZYML6eqpBYTVdTO4Ja9AoYP5SSgsgQaw,6442
34
- nextrec/models/multi_task/mmoe.py,sha256=zfBAUoQijHCuat962dZI0MCAy8C6PZqZ-zOd16JznF8,7803
35
- nextrec/models/multi_task/ple.py,sha256=zNBea0sfJska36RVH1N9O92m7rPmbaWYqoPbnGoy1RE,11949
36
- nextrec/models/multi_task/poso.py,sha256=_Pq-cl7HB1uQVO8HXreNeVpQso250ouxBNTsdTjyFos,16651
37
- nextrec/models/multi_task/share_bottom.py,sha256=kvrkXQSTDPEwwmBvXw3xryBm3gT8Uq4_Hb3TenwRj9w,5920
38
- nextrec/models/ranking/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
39
- nextrec/models/ranking/afm.py,sha256=uFSUIv9d6NQkCiM2epmSdMy4kxjFuCRVbrZOv3nebGE,4539
40
- nextrec/models/ranking/autoint.py,sha256=MN6Dv6EMK0ODsCEeX4iXBSDoxK9a_DxIdEduGAUIVEQ,7771
41
- nextrec/models/ranking/dcn.py,sha256=sy0v_kMQ1OfVCFuRD8FDrroQHm-RnTx4lVacfXfs2N8,4896
42
- nextrec/models/ranking/dcn_v2.py,sha256=ivHwLRxi4VcNzh9DWQQ227Gw5dhyRZ5LezuqkAdD89o,3630
43
- nextrec/models/ranking/deepfm.py,sha256=Dr4KoLGEWONKixzTRKk8kHXNYRZ-yoo2rVVRGZ5xrAU,4990
44
- nextrec/models/ranking/dien.py,sha256=cybZk1mZMxYD1lgOSN6JovrQPjHmdQFSvWWv99NbLrk,12741
45
- nextrec/models/ranking/din.py,sha256=72lRtQVLQAh7yeSqoS2nZ8b9jEiaQ4OsgJQkrK3fL4s,7195
46
- nextrec/models/ranking/fibinet.py,sha256=9jHR0LrhtraBR2KNjNFEDNJLOChnKdyxAXx3JIRYXDg,4852
47
- nextrec/models/ranking/fm.py,sha256=ickjW6cogKKxbAXt_wqVOG6xSkokP0zG4k9ZnK3t6YE,2960
48
- nextrec/models/ranking/masknet.py,sha256=9K6XKcr8f8PcVhLfgFd8l4tq78lcclAQAXZKlVEjfiY,11504
49
- nextrec/models/ranking/pnn.py,sha256=eEyBnALuzaNx27iGJ0ZqNcf0u7dKN8SiO03lkcv1hiE,4956
50
- nextrec/models/ranking/widedeep.py,sha256=AJPkoThUTSBGPNBjD-aiWsMH2hSiSnGLjIPy_2neNhc,5034
51
- nextrec/models/ranking/xdeepfm.py,sha256=wn6YnX78EyBzil7IRBcqyDqsnysERVJ5-lWGuRMCpxE,5681
52
- nextrec/utils/__init__.py,sha256=lAVpHsGe_WgGf7R-K1wr0DeVLvskG0Bj1L12N6kEPwM,1810
53
- nextrec/utils/device.py,sha256=1QtmlpxRSHiuYfmCOQCOIk-s6bmjIpoJtzfXOcvginI,1044
54
- nextrec/utils/embedding.py,sha256=yxYSdFx0cJITh3Gf-K4SdhwRtKGcI0jOsyBgZ0NLa_c,465
55
- nextrec/utils/feature.py,sha256=s0eMEuvbOsotjll7eSYjb0b-1cXnvVy1mSI1Syg_7n4,299
56
- nextrec/utils/file.py,sha256=wxKvd1_U9ugFDP7EzLNG6-3PBInA0QhxoHzBWKfe_B8,2384
57
- nextrec/utils/initializer.py,sha256=BkP6-vJdsc0A-8ya-AVEs7W24dPXyxIilNnckwXgPEc,1391
58
- nextrec/utils/model.py,sha256=FB7QbatO0uEvghBEfByJtRS0waaBEB1UI0YzfA_2k04,535
59
- nextrec/utils/optimizer.py,sha256=cVkDrEkxwig17UAEhL8p9v3iVNiXI8B067Yf_6LqUp8,2198
60
- nextrec/utils/tensor.py,sha256=_RibR6BMPizhzRLVdnJqwUgzA0zpzkZuKfTrdSjbL60,2136
61
- nextrec-0.3.6.dist-info/METADATA,sha256=yq_cvYiBZzWJcZaIlBornYCW_Hc8v7p01mhRuN15jOk,16319
62
- nextrec-0.3.6.dist-info/WHEEL,sha256=WLgqFyCfm_KASv4WHyYy0P3pM_m7J5L9k2skdKLirC8,87
63
- nextrec-0.3.6.dist-info/licenses/LICENSE,sha256=2fQfVKeafywkni7MYHyClC6RGGC3laLTXCNBx-ubtp0,1064
64
- nextrec-0.3.6.dist-info/RECORD,,