nextrec 0.2.5__py3-none-any.whl → 0.2.7__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.
- nextrec/__version__.py +1 -1
- nextrec/data/preprocessor.py +3 -2
- nextrec/models/ranking/autoint.py +1 -1
- {nextrec-0.2.5.dist-info → nextrec-0.2.7.dist-info}/METADATA +2 -2
- {nextrec-0.2.5.dist-info → nextrec-0.2.7.dist-info}/RECORD +7 -7
- {nextrec-0.2.5.dist-info → nextrec-0.2.7.dist-info}/WHEEL +1 -1
- {nextrec-0.2.5.dist-info → nextrec-0.2.7.dist-info}/licenses/LICENSE +0 -0
nextrec/__version__.py
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
__version__ = "0.2.
|
|
1
|
+
__version__ = "0.2.7"
|
nextrec/data/preprocessor.py
CHANGED
|
@@ -614,7 +614,8 @@ class DataProcessor(FeatureSpecMixin):
|
|
|
614
614
|
columns_dict = {}
|
|
615
615
|
for key, value in result.items():
|
|
616
616
|
if key in self.sequence_features:
|
|
617
|
-
|
|
617
|
+
# Use tolist to coerce numpy scalars to native Python ints for stable CSV rendering
|
|
618
|
+
columns_dict[key] = [np.asarray(seq).tolist() for seq in value]
|
|
618
619
|
else:
|
|
619
620
|
columns_dict[key] = value
|
|
620
621
|
return pd.DataFrame(columns_dict)
|
|
@@ -769,7 +770,7 @@ class DataProcessor(FeatureSpecMixin):
|
|
|
769
770
|
default_dir=Path(os.getcwd()),
|
|
770
771
|
default_name="fitted_processor",
|
|
771
772
|
suffix=".pkl",
|
|
772
|
-
add_timestamp=
|
|
773
|
+
add_timestamp=False
|
|
773
774
|
)
|
|
774
775
|
state = {
|
|
775
776
|
"numeric_features": self.numeric_features,
|
|
@@ -115,7 +115,7 @@ class AutoInt(BaseModel):
|
|
|
115
115
|
self.att_embedding_dim = att_embedding_dim
|
|
116
116
|
|
|
117
117
|
# Use sparse and sequence features for interaction
|
|
118
|
-
self.interaction_features = sparse_features + sequence_features
|
|
118
|
+
self.interaction_features = dense_features + sparse_features + sequence_features
|
|
119
119
|
|
|
120
120
|
# All features for embedding
|
|
121
121
|
self.all_features = dense_features + sparse_features + sequence_features
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: nextrec
|
|
3
|
-
Version: 0.2.
|
|
3
|
+
Version: 0.2.7
|
|
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
|
|
@@ -61,7 +61,7 @@ Description-Content-Type: text/markdown
|
|
|
61
61
|

|
|
62
62
|

|
|
63
63
|

|
|
64
|
-

|
|
65
65
|
|
|
66
66
|
English | [中文版](README_zh.md)
|
|
67
67
|
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
nextrec/__init__.py,sha256=CvocnY2uBp0cjNkhrT6ogw0q2bN9s1GNp754FLO-7lo,1117
|
|
2
|
-
nextrec/__version__.py,sha256=
|
|
2
|
+
nextrec/__version__.py,sha256=XHypfHSPdgXFKmOdoewn7czU670gt8InhHhzlP5j_aA,22
|
|
3
3
|
nextrec/basic/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
4
4
|
nextrec/basic/activation.py,sha256=9EfYmwE0brTSKwx_0FIGQ_rybFBT9n_G-UWA7NAhMsI,2804
|
|
5
5
|
nextrec/basic/callback.py,sha256=qkq3k8rP0g4BW2C3FSCdVt_CyCcJwJ-rUXjhT2p4LP8,1035
|
|
@@ -12,7 +12,7 @@ nextrec/basic/session.py,sha256=2kogEjgKAN1_ygelbwoqOs187BAcUnDTqXG1w_Pgb9I,4791
|
|
|
12
12
|
nextrec/data/__init__.py,sha256=HLnARJrqDEVPTcofPSAEimy2Oj15vbomj-7UvT4ze_4,767
|
|
13
13
|
nextrec/data/data_utils.py,sha256=xz0xVBA7UzHXz7r_Yf0eMB5RrarPKg_1ZTdWvAqRZCM,7623
|
|
14
14
|
nextrec/data/dataloader.py,sha256=vtgt2B7rUmIG7wg-HE2ZesBaD6cuS2PwklFCWGA9tCw,14142
|
|
15
|
-
nextrec/data/preprocessor.py,sha256=
|
|
15
|
+
nextrec/data/preprocessor.py,sha256=V6gPki54gKOwP5zx_qbBiCL5xlPJYC88hc4C5F3QYPA,41668
|
|
16
16
|
nextrec/loss/__init__.py,sha256=mO5t417BneZ8Ysa51GyjDaffjWyjzFgPXIQrrggasaQ,827
|
|
17
17
|
nextrec/loss/listwise.py,sha256=LcYIPf6PGRtjV_AoWaAyp3rse904S2MghE5t032I07I,5628
|
|
18
18
|
nextrec/loss/loss_utils.py,sha256=cFNSvv-eaFwcfjLgxN3yNmf0L7ofC0ysgkUYjliLBpE,2535
|
|
@@ -32,7 +32,7 @@ nextrec/models/multi_task/ple.py,sha256=otP6oLgzrJhwkLFItzNE-AtIPouObDkafRvWzTCx
|
|
|
32
32
|
nextrec/models/multi_task/share_bottom.py,sha256=LL5HBVlvvBzHV2fLBRQMGIwpqmlxILTgU4c51XyTCo4,4517
|
|
33
33
|
nextrec/models/ranking/__init__.py,sha256=-qe34zQEVwmxeTPGYCa6gbql9quT8DwB7-buHfA7Iig,428
|
|
34
34
|
nextrec/models/ranking/afm.py,sha256=r9m1nEnc0m5d4pMtOxRMqOaXaBNCEkjJBFB-5wSHeFA,4540
|
|
35
|
-
nextrec/models/ranking/autoint.py,sha256=
|
|
35
|
+
nextrec/models/ranking/autoint.py,sha256=xKX-w7lkGHkTYgbAB4r-pqOfkOAUia7av4gvT38X6Lk,7772
|
|
36
36
|
nextrec/models/ranking/dcn.py,sha256=dUV5GbHypBGc9vVozk6aGYfIXq23c0deX-HFnIhZueg,4208
|
|
37
37
|
nextrec/models/ranking/deepfm.py,sha256=y28yJxF__TZR3O1G2ufKZVtBRLgCgmlXWqvPgLzwm3U,3510
|
|
38
38
|
nextrec/models/ranking/dien.py,sha256=E6s9TDwQfGSwtzzh8hG2F5gwgVxzVZPcptYvHLNzOLA,8475
|
|
@@ -48,7 +48,7 @@ nextrec/utils/common.py,sha256=-n4wSbP-EptpzLcJv6fV-ytBzPliOj6m-mrK_Qk6s4A,458
|
|
|
48
48
|
nextrec/utils/embedding.py,sha256=yxYSdFx0cJITh3Gf-K4SdhwRtKGcI0jOsyBgZ0NLa_c,465
|
|
49
49
|
nextrec/utils/initializer.py,sha256=ffYOs5QuIns_d_-5e40iNtg6s1ftgREJN-ueq_NbDQE,1647
|
|
50
50
|
nextrec/utils/optimizer.py,sha256=85ifoy2IQgjPHOqLqr1ho7XBGE_0ry1yEB9efS6C2lM,2446
|
|
51
|
-
nextrec-0.2.
|
|
52
|
-
nextrec-0.2.
|
|
53
|
-
nextrec-0.2.
|
|
54
|
-
nextrec-0.2.
|
|
51
|
+
nextrec-0.2.7.dist-info/METADATA,sha256=slvdQqYGQWFW1btzK5I1IKDP90rgC3F1RcFTrm5MYSQ,11425
|
|
52
|
+
nextrec-0.2.7.dist-info/WHEEL,sha256=WLgqFyCfm_KASv4WHyYy0P3pM_m7J5L9k2skdKLirC8,87
|
|
53
|
+
nextrec-0.2.7.dist-info/licenses/LICENSE,sha256=2fQfVKeafywkni7MYHyClC6RGGC3laLTXCNBx-ubtp0,1064
|
|
54
|
+
nextrec-0.2.7.dist-info/RECORD,,
|
|
File without changes
|