maxframe 1.2.1__cp39-cp39-win_amd64.whl → 1.3.0__cp39-cp39-win_amd64.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.
Potentially problematic release.
This version of maxframe might be problematic. Click here for more details.
- maxframe/_utils.cp39-win_amd64.pyd +0 -0
- maxframe/codegen.py +70 -21
- maxframe/config/config.py +6 -0
- maxframe/core/accessor.py +1 -0
- maxframe/core/graph/core.cp39-win_amd64.pyd +0 -0
- maxframe/dataframe/accessors/__init__.py +1 -1
- maxframe/dataframe/accessors/dict_/accessor.py +1 -0
- maxframe/dataframe/accessors/dict_/length.py +1 -0
- maxframe/dataframe/accessors/dict_/setitem.py +1 -0
- maxframe/dataframe/accessors/dict_/tests/test_dict_accessor.py +5 -7
- maxframe/dataframe/accessors/list_/__init__.py +37 -0
- maxframe/dataframe/accessors/list_/accessor.py +39 -0
- maxframe/dataframe/accessors/list_/getitem.py +135 -0
- maxframe/dataframe/accessors/list_/length.py +73 -0
- maxframe/dataframe/accessors/list_/tests/__init__.py +13 -0
- maxframe/dataframe/accessors/list_/tests/test_list_accessor.py +79 -0
- maxframe/dataframe/accessors/plotting/__init__.py +2 -0
- maxframe/dataframe/accessors/string_/__init__.py +1 -0
- maxframe/dataframe/datastore/to_odps.py +6 -0
- maxframe/dataframe/extensions/accessor.py +1 -0
- maxframe/dataframe/extensions/apply_chunk.py +34 -21
- maxframe/dataframe/extensions/flatmap.py +8 -1
- maxframe/dataframe/extensions/tests/test_apply_chunk.py +2 -1
- maxframe/dataframe/extensions/tests/test_extensions.py +1 -0
- maxframe/dataframe/merge/concat.py +7 -4
- maxframe/dataframe/merge/merge.py +1 -0
- maxframe/dataframe/merge/tests/test_merge.py +97 -47
- maxframe/dataframe/missing/tests/test_missing.py +1 -0
- maxframe/dataframe/tests/test_utils.py +7 -0
- maxframe/dataframe/ufunc/ufunc.py +1 -0
- maxframe/dataframe/utils.py +3 -0
- maxframe/io/odpsio/schema.py +1 -0
- maxframe/learn/contrib/__init__.py +2 -4
- maxframe/learn/contrib/llm/__init__.py +1 -0
- maxframe/learn/contrib/llm/core.py +31 -10
- maxframe/learn/contrib/llm/models/__init__.py +1 -0
- maxframe/learn/contrib/llm/models/dashscope.py +4 -3
- maxframe/learn/contrib/llm/models/managed.py +39 -0
- maxframe/learn/contrib/llm/multi_modal.py +1 -0
- maxframe/learn/contrib/llm/text.py +252 -8
- maxframe/learn/contrib/models.py +77 -0
- maxframe/learn/contrib/utils.py +1 -0
- maxframe/learn/contrib/xgboost/__init__.py +8 -1
- maxframe/learn/contrib/xgboost/classifier.py +15 -4
- maxframe/learn/contrib/xgboost/core.py +108 -1
- maxframe/learn/contrib/xgboost/dmatrix.py +1 -1
- maxframe/learn/contrib/xgboost/predict.py +8 -3
- maxframe/learn/contrib/xgboost/regressor.py +15 -1
- maxframe/learn/contrib/xgboost/train.py +5 -4
- maxframe/lib/dtypes_extension/__init__.py +2 -1
- maxframe/lib/dtypes_extension/dtypes.py +21 -0
- maxframe/lib/dtypes_extension/tests/test_dtypes.py +13 -3
- maxframe/lib/mmh3.cp39-win_amd64.pyd +0 -0
- maxframe/opcodes.py +19 -0
- maxframe/serialization/__init__.py +1 -0
- maxframe/serialization/core.cp39-win_amd64.pyd +0 -0
- maxframe/serialization/core.pyx +12 -1
- maxframe/serialization/numpy.py +12 -4
- maxframe/serialization/serializables/tests/test_serializable.py +13 -2
- maxframe/serialization/tests/test_serial.py +2 -0
- maxframe/tensor/merge/concatenate.py +1 -0
- maxframe/tensor/misc/unique.py +11 -10
- maxframe/tensor/reshape/reshape.py +4 -1
- maxframe/utils.py +4 -0
- {maxframe-1.2.1.dist-info → maxframe-1.3.0.dist-info}/METADATA +2 -2
- {maxframe-1.2.1.dist-info → maxframe-1.3.0.dist-info}/RECORD +70 -62
- {maxframe-1.2.1.dist-info → maxframe-1.3.0.dist-info}/WHEEL +1 -1
- maxframe_client/session/odps.py +3 -0
- maxframe_client/session/tests/test_task.py +1 -0
- {maxframe-1.2.1.dist-info → maxframe-1.3.0.dist-info}/top_level.txt +0 -0
|
@@ -1,27 +1,27 @@
|
|
|
1
1
|
maxframe/__init__.py,sha256=6Y3yW67GtpKOGqMC1prt4yxqUTc0twHA3yjMEH-5WTw,1036
|
|
2
|
-
maxframe/_utils.cp39-win_amd64.pyd,sha256=
|
|
2
|
+
maxframe/_utils.cp39-win_amd64.pyd,sha256=h-fVb0XEg5wiBgFmrDSNy_u_oxEqogGMycQB5JzyCj8,305664
|
|
3
3
|
maxframe/_utils.pxd,sha256=ckEN1J8rXAtNYW7CictnSVYamH-sQx-uIuWrQts_OT4,1187
|
|
4
4
|
maxframe/_utils.pyx,sha256=oOBAUIaOM0mkKY_dzymY75Vit8bW64vbFrtwzqQpUA8,17564
|
|
5
|
-
maxframe/codegen.py,sha256=
|
|
5
|
+
maxframe/codegen.py,sha256=ua7cT4RntpGndSqgY_kIActdk3bqkcayFUWl1T4sBTs,20560
|
|
6
6
|
maxframe/conftest.py,sha256=i1XQkRdAVI-qRFdGyN9d4dcCeLLAk5XRBoc7tkLPJhI,6489
|
|
7
7
|
maxframe/env.py,sha256=w0xRzOgA3Vwjr5eK_AcTrySLC6HtnNcG-MoPnG-0Ce0,1435
|
|
8
8
|
maxframe/errors.py,sha256=H0aocmLGvM9waIarKKIu4gnKxbpPsO2H9QK76c_CVCA,1066
|
|
9
9
|
maxframe/extension.py,sha256=ob4Gysl3pioh2bHKxP72gru8S_EZumxmxPZBxySAhZ4,2816
|
|
10
10
|
maxframe/mixin.py,sha256=O1gKFupmJpA6L8zXnVfY9MpZTVkbuy4n017YmHsfxb4,3624
|
|
11
|
-
maxframe/opcodes.py,sha256=
|
|
11
|
+
maxframe/opcodes.py,sha256=QZiRjRvreDhAsCPucETOxq3kVzH6YMTpg4T4UXQpjsA,11602
|
|
12
12
|
maxframe/protocol.py,sha256=WRqzHPDR1Xy0gLMz2PtsAFTpdkCUj7lWJ84VtMxd8n8,19526
|
|
13
13
|
maxframe/session.py,sha256=exh8VZweXcA3lPkp_ao_gJkkd5euq9pFBJ_9cR2t-9k,37710
|
|
14
14
|
maxframe/typing_.py,sha256=ncVNpaqtO4zEzDA5yHa-OazpzTG8D8ZLule6wXIgPW0,1220
|
|
15
15
|
maxframe/udf.py,sha256=85UyYudOtcQKHEFZQ6wptUHYJnUidm_8U9JZ5c-qPow,5516
|
|
16
|
-
maxframe/utils.py,sha256=
|
|
16
|
+
maxframe/utils.py,sha256=_VB_sQwA2qjzTJLhVA_EMFAhNKPDFtk1beuvFhtY_eU,36078
|
|
17
17
|
maxframe/config/__init__.py,sha256=yypfQ24UqN_KoRI6SYFggZc8q2gck82RPkKkTdaxkRY,698
|
|
18
|
-
maxframe/config/config.py,sha256=
|
|
18
|
+
maxframe/config/config.py,sha256=JUkWscpjFxIX3lbj3rVNru9uEusoEVeRiyBCWc6Tahs,17171
|
|
19
19
|
maxframe/config/validators.py,sha256=4sE2Qj9f5sBBUbqbtxgwPztA1NZiI33Coz08wRkZ7Zg,2599
|
|
20
20
|
maxframe/config/tests/__init__.py,sha256=4LpNXO11JAdLjSut3p036oEEXlDEB-6AURW9oci5W5Y,609
|
|
21
21
|
maxframe/config/tests/test_config.py,sha256=9O25KSKUe4RrOPmnpGCHNURtpISbTZOvUkHTLLgawmo,3405
|
|
22
22
|
maxframe/config/tests/test_validators.py,sha256=3V4zWHbgLmOF0dOsP91z_S6qmUcRFpuWy-nCieNiyDI,1274
|
|
23
23
|
maxframe/core/__init__.py,sha256=MUmhPWYsoxf2lne8rJITP1oR6_y75e3hzJDxS2VoDaw,1568
|
|
24
|
-
maxframe/core/accessor.py,sha256=
|
|
24
|
+
maxframe/core/accessor.py,sha256=ghmMSiH_PK4JJ63BlCu5xb85FU94nGhNYCqTc4zMTMQ,1527
|
|
25
25
|
maxframe/core/base.py,sha256=LNHcoT5T02MhYAgPXPTVz5HdVHpKFDPD_Z-7NednVjc,4691
|
|
26
26
|
maxframe/core/mode.py,sha256=fpvJAQ6if77EiM0SlNq0JEnBwkzFQTgzX3d8wOrlus0,3107
|
|
27
27
|
maxframe/core/entity/__init__.py,sha256=drvoJz02A-NDrV6oWTWk2eBN5f9MOJQF-oACiS9sYHY,1108
|
|
@@ -34,7 +34,7 @@ maxframe/core/entity/utils.py,sha256=Cx7bfNQTbYZjAxNP-1AXjBozZ1mGqJ1KCz7rwDlxn6w
|
|
|
34
34
|
maxframe/core/entity/tests/__init__.py,sha256=4LpNXO11JAdLjSut3p036oEEXlDEB-6AURW9oci5W5Y,609
|
|
35
35
|
maxframe/core/entity/tests/test_objects.py,sha256=UwJTYFSUr61E255tPrGwnJlhHDGlkpSugFk0kRsJG8Q,1392
|
|
36
36
|
maxframe/core/graph/__init__.py,sha256=h7zLVFfnmRPrzaiO7zbuOTMZ0iSNZN5TaD5fB7vuxxA,782
|
|
37
|
-
maxframe/core/graph/core.cp39-win_amd64.pyd,sha256=
|
|
37
|
+
maxframe/core/graph/core.cp39-win_amd64.pyd,sha256=TJBSTtRTNhpVS3orUnKw4Kr6eP5CI1_JL6XSEpqt7e8,251904
|
|
38
38
|
maxframe/core/graph/core.pyx,sha256=DJ3RV_5W1lNDRj113ewpSLosiiHCqXYQNuPVR5mBaVU,16390
|
|
39
39
|
maxframe/core/graph/entity.py,sha256=zfijVHeCTOJynagcPSEBEIi194mjMwXcW9p4jopwoZ8,5010
|
|
40
40
|
maxframe/core/graph/builder/__init__.py,sha256=NjIcWQ1ZtEbRJalz8XH1UKaQLpsvOqouRPeRBaul5cA,655
|
|
@@ -59,27 +59,33 @@ maxframe/dataframe/arrays.py,sha256=ZHt3mIEA4plITmP-NyLAe7MGSxBOCSI8fw_gcTKU1SM,
|
|
|
59
59
|
maxframe/dataframe/core.py,sha256=749CXzFxL_4e-t3IovL2nZAJQI8pguU2ReIqHuyLeNE,77441
|
|
60
60
|
maxframe/dataframe/initializer.py,sha256=SiTh1ibIILZf-E3cSZ8bfgNuFd-YpckdWDphUGpMPJE,11150
|
|
61
61
|
maxframe/dataframe/operators.py,sha256=mTvT1Er6jgOb-llfkbDfN1FBy4oEuGLDjb6lrWBTs48,7834
|
|
62
|
-
maxframe/dataframe/utils.py,sha256=
|
|
63
|
-
maxframe/dataframe/accessors/__init__.py,sha256=
|
|
62
|
+
maxframe/dataframe/utils.py,sha256=8u5cGv7yuxagv-DfQLnriA2EmnI93rg9VJD8wMS1csY,49381
|
|
63
|
+
maxframe/dataframe/accessors/__init__.py,sha256=3WuzauK-nPHEpLyICK0tY-F6OdWZ7EaQdORBAoaHD3o,669
|
|
64
64
|
maxframe/dataframe/accessors/datetime_/__init__.py,sha256=WlnK71KZrVpXqwDWJ9-cRE18ZnAOGKPlmO2jnL8uytw,1116
|
|
65
65
|
maxframe/dataframe/accessors/datetime_/accessor.py,sha256=OEfGjmItzC-AlgFpaQUrfgVncwqdJ6QiH_OKIAj2xis,2289
|
|
66
66
|
maxframe/dataframe/accessors/datetime_/core.py,sha256=CeQnkmCP_cumHdxzB48km20u839iV4hO8018O-N9nEU,2584
|
|
67
67
|
maxframe/dataframe/accessors/datetime_/tests/__init__.py,sha256=4LpNXO11JAdLjSut3p036oEEXlDEB-6AURW9oci5W5Y,609
|
|
68
68
|
maxframe/dataframe/accessors/datetime_/tests/test_datetime_accessor.py,sha256=P6oBRAdTlrFtSee7tApVeNlrUEP5Otdq6UC-Su5NWG0,1436
|
|
69
69
|
maxframe/dataframe/accessors/dict_/__init__.py,sha256=RtTuqfKlvo-644LWf3OsdyJ-pVFs1vvv1vQQdoYKrgs,1546
|
|
70
|
-
maxframe/dataframe/accessors/dict_/accessor.py,sha256=
|
|
70
|
+
maxframe/dataframe/accessors/dict_/accessor.py,sha256=FdyYWhYuzbCXSkwmhv89fzmo0wS72xCAFddkNmJg6dc,1347
|
|
71
71
|
maxframe/dataframe/accessors/dict_/contains.py,sha256=-QYue1nRqFDEK7L6PtnqcJcrGzH8Lrki49ySNjZShYE,2608
|
|
72
72
|
maxframe/dataframe/accessors/dict_/getitem.py,sha256=5xC9YhxuAOIOPOfqUyrx3D4rvnisa7gAKAu19EKsnFo,4539
|
|
73
|
-
maxframe/dataframe/accessors/dict_/length.py,sha256=
|
|
73
|
+
maxframe/dataframe/accessors/dict_/length.py,sha256=HBFa-GcBUauNnDrvhAwivhXDlOZTXNbm8pwKtXjdnlE,2280
|
|
74
74
|
maxframe/dataframe/accessors/dict_/remove.py,sha256=RHZ_2P8qyqUiZkXSTzWKn1orv8qKL-RKux8HHYIsGKA,3073
|
|
75
|
-
maxframe/dataframe/accessors/dict_/setitem.py,sha256=
|
|
75
|
+
maxframe/dataframe/accessors/dict_/setitem.py,sha256=zHfUXH4qZCRjYCNazSSpsNjWiA7MfLVoSZ-DZ3WJa9E,3042
|
|
76
76
|
maxframe/dataframe/accessors/dict_/tests/__init__.py,sha256=4LpNXO11JAdLjSut3p036oEEXlDEB-6AURW9oci5W5Y,609
|
|
77
|
-
maxframe/dataframe/accessors/dict_/tests/test_dict_accessor.py,sha256=
|
|
78
|
-
maxframe/dataframe/accessors/
|
|
77
|
+
maxframe/dataframe/accessors/dict_/tests/test_dict_accessor.py,sha256=FXKY_egcj7OP4M5bQr1v_sqn5GLxockA3dV0QXHmIJk,4043
|
|
78
|
+
maxframe/dataframe/accessors/list_/__init__.py,sha256=DU9NWAtG5km6fuu9OPOCYtxjyYqQjJe62K4Wdw0strA,1285
|
|
79
|
+
maxframe/dataframe/accessors/list_/accessor.py,sha256=JhxueXfQhFM-hSWFZZ9KVpoP5imiylSze_k8S-ajf2M,1348
|
|
80
|
+
maxframe/dataframe/accessors/list_/getitem.py,sha256=wgMJ38gtwInlsiio2z6Po69YI1-GsC51oHQkYfMaa7Q,3879
|
|
81
|
+
maxframe/dataframe/accessors/list_/length.py,sha256=LRw4FImg7iEGrWbH4IyOIoesm18pJ-g2K3QAYg3mRxc,2207
|
|
82
|
+
maxframe/dataframe/accessors/list_/tests/__init__.py,sha256=4LpNXO11JAdLjSut3p036oEEXlDEB-6AURW9oci5W5Y,609
|
|
83
|
+
maxframe/dataframe/accessors/list_/tests/test_list_accessor.py,sha256=Yzop_LU3bWoguD9EXM7dpV-3du4hXnpRavQ8vxR6IPM,2460
|
|
84
|
+
maxframe/dataframe/accessors/plotting/__init__.py,sha256=l5Q-Q7IaStM4sM9lcHP2B0EF8FajwZahvbBDiw6rY2w,1428
|
|
79
85
|
maxframe/dataframe/accessors/plotting/core.py,sha256=rGzHc_MXEdTTJMQXO8cspf9eY4Otccj5unjNooCRbAo,2313
|
|
80
86
|
maxframe/dataframe/accessors/plotting/tests/__init__.py,sha256=4LpNXO11JAdLjSut3p036oEEXlDEB-6AURW9oci5W5Y,609
|
|
81
87
|
maxframe/dataframe/accessors/plotting/tests/test_plotting_accessor.py,sha256=UGCrKUU4ax2GQvXGxPnHD7gqePXHWz9t5JAierTw_IY,4259
|
|
82
|
-
maxframe/dataframe/accessors/string_/__init__.py,sha256=
|
|
88
|
+
maxframe/dataframe/accessors/string_/__init__.py,sha256=9aDca_a61YUSAZ2MwT2bByDSD-UTgNbO7Y2oylKwhoQ,1106
|
|
83
89
|
maxframe/dataframe/accessors/string_/accessor.py,sha256=2vsY1MBoxILuWr1hlqSZaps6029h_aYTFzNC3qUhOek,8269
|
|
84
90
|
maxframe/dataframe/accessors/string_/core.py,sha256=z_DffsA0m5sMSklX7lfkjp_cJKsFQPwPYzFeZUJQeF4,8323
|
|
85
91
|
maxframe/dataframe/accessors/string_/tests/__init__.py,sha256=4LpNXO11JAdLjSut3p036oEEXlDEB-6AURW9oci5W5Y,609
|
|
@@ -152,18 +158,18 @@ maxframe/dataframe/datasource/tests/test_datasource.py,sha256=8Dq5EJOmyfH9YqErP-
|
|
|
152
158
|
maxframe/dataframe/datastore/__init__.py,sha256=KbGUgDoSvqGe_6Jm89Mh3KxU2N4mmMrn4prA4Jk933g,810
|
|
153
159
|
maxframe/dataframe/datastore/core.py,sha256=uNAcFyUgjn_LxUHk7IjqRlAWNeru77Ub-dZ15M5WDjA,762
|
|
154
160
|
maxframe/dataframe/datastore/to_csv.py,sha256=gWPz0fcKmJA-2cyDJDhbL9C_CSOq79GTNHq9-qAkkek,7974
|
|
155
|
-
maxframe/dataframe/datastore/to_odps.py,sha256=
|
|
161
|
+
maxframe/dataframe/datastore/to_odps.py,sha256=49WeN_Z7sDz4X51OMC5-i7ZABQSrF21Z23SceM87AQc,7173
|
|
156
162
|
maxframe/dataframe/datastore/tests/__init__.py,sha256=4LpNXO11JAdLjSut3p036oEEXlDEB-6AURW9oci5W5Y,609
|
|
157
163
|
maxframe/dataframe/datastore/tests/test_to_odps.py,sha256=1hBiWu2504ZSl-Hzxjq-u6aHzJu6ZyhNBqKXz7FxWaU,1344
|
|
158
164
|
maxframe/dataframe/extensions/__init__.py,sha256=zDiwRmObv9fD72c0YMy3DFtlM8k0m2xuEGqM2vKeQuM,1921
|
|
159
|
-
maxframe/dataframe/extensions/accessor.py,sha256=
|
|
160
|
-
maxframe/dataframe/extensions/apply_chunk.py,sha256=
|
|
165
|
+
maxframe/dataframe/extensions/accessor.py,sha256=9OkIrawtEl-_kKG_j6_3EKsuXForPseXAVMDlFZBRqA,1066
|
|
166
|
+
maxframe/dataframe/extensions/apply_chunk.py,sha256=8lYDkjFgQcGgCSPbw2xWIwVsDhnRfURQ5eviJwooylc,26391
|
|
161
167
|
maxframe/dataframe/extensions/flatjson.py,sha256=EdDLdwL9mIEEN2wb2qBWfEqS_XLA7SsK6AAhqyGiRw0,4499
|
|
162
|
-
maxframe/dataframe/extensions/flatmap.py,sha256=
|
|
168
|
+
maxframe/dataframe/extensions/flatmap.py,sha256=KhcUJLMLKwliAWS2UUo-1nD1x52PLkiCYe4RMZIFkt4,10386
|
|
163
169
|
maxframe/dataframe/extensions/reshuffle.py,sha256=ICsXOCTCS_dmusMatU_o6_mOown3qFdnBoqq3d4D1n8,2718
|
|
164
170
|
maxframe/dataframe/extensions/tests/__init__.py,sha256=4LpNXO11JAdLjSut3p036oEEXlDEB-6AURW9oci5W5Y,609
|
|
165
|
-
maxframe/dataframe/extensions/tests/test_apply_chunk.py,sha256=
|
|
166
|
-
maxframe/dataframe/extensions/tests/test_extensions.py,sha256=
|
|
171
|
+
maxframe/dataframe/extensions/tests/test_apply_chunk.py,sha256=XzZ2wqgzxrM-6sPGU2zLDiNRKtFZXCQyOLqN16vQIVs,6035
|
|
172
|
+
maxframe/dataframe/extensions/tests/test_extensions.py,sha256=0A8zL_uyZ805eVe3BazJNAnBxWYvcsZvnT4pV-pyp5U,4923
|
|
167
173
|
maxframe/dataframe/fetch/__init__.py,sha256=q9Eu7odmT29Xp2iPsNdOp46T-w2_4LxT4pb26sXhTKc,668
|
|
168
174
|
maxframe/dataframe/fetch/core.py,sha256=pLAVnbE8mZsiBL21CVlxww55qsDG-OBYwWHKgw9j4c0,3424
|
|
169
175
|
maxframe/dataframe/groupby/__init__.py,sha256=vmW6do5w7lY2wnYYSGJzn90-rOcae3dSuYFQXZv-iis,3527
|
|
@@ -200,10 +206,10 @@ maxframe/dataframe/indexing/tests/__init__.py,sha256=4LpNXO11JAdLjSut3p036oEEXlD
|
|
|
200
206
|
maxframe/dataframe/indexing/tests/test_indexing.py,sha256=9vjCrHEW3yJxVLMUZ2aKnHgb-9pY7ILQz27ZQwWKDfA,16099
|
|
201
207
|
maxframe/dataframe/merge/__init__.py,sha256=FyFDUW3SFX-ZPfp54E79u7DBWn5VAb8lwEd3NJ7eoN0,1161
|
|
202
208
|
maxframe/dataframe/merge/append.py,sha256=GahlHZYsn2mtKMhOgcGbpofxzhfzjh_hTUG7kRuuqhw,4973
|
|
203
|
-
maxframe/dataframe/merge/concat.py,sha256=
|
|
204
|
-
maxframe/dataframe/merge/merge.py,sha256=
|
|
209
|
+
maxframe/dataframe/merge/concat.py,sha256=ADDuooWUofYOPWIcVT7T4RepY7VKJiLHV1ymuC8d_GU,12231
|
|
210
|
+
maxframe/dataframe/merge/merge.py,sha256=3fpR8d8Y_gHcVa_XpnZj3S9VUSj42Hz07F7tJL4R23o,31270
|
|
205
211
|
maxframe/dataframe/merge/tests/__init__.py,sha256=4LpNXO11JAdLjSut3p036oEEXlDEB-6AURW9oci5W5Y,609
|
|
206
|
-
maxframe/dataframe/merge/tests/test_merge.py,sha256=
|
|
212
|
+
maxframe/dataframe/merge/tests/test_merge.py,sha256=RSSYcqSB5aqjPHyk7slUpxLvGoN2Q_LkkfmESmwSbEo,13355
|
|
207
213
|
maxframe/dataframe/misc/__init__.py,sha256=CcGTK4dKzU5DfYYBDyoJV4XKWUtXH-EY2tc822uyzuk,4767
|
|
208
214
|
maxframe/dataframe/misc/_duplicate.py,sha256=Y0LN40N7145diw9ZDxlbtTUDgAwjTqBWwNh7wBHpUGY,1516
|
|
209
215
|
maxframe/dataframe/misc/apply.py,sha256=_dFE892h2Q-XYnH9LmO65ii9VKr0hpbv1GFeLV3RsFE,26712
|
|
@@ -241,7 +247,7 @@ maxframe/dataframe/missing/dropna.py,sha256=zH2HO41JHRe3tAuYXQx0rpEI-ZjMKg6y66t6
|
|
|
241
247
|
maxframe/dataframe/missing/fillna.py,sha256=8KqsEUn8O2pPpG8GqHSfhWtca-hm2aiUbx-9UYymo8c,9180
|
|
242
248
|
maxframe/dataframe/missing/replace.py,sha256=jDjFGsuU9jnX8X4HZO5rPBEpcIe-Nc5RSZ4PZ1yvE-A,13779
|
|
243
249
|
maxframe/dataframe/missing/tests/__init__.py,sha256=4LpNXO11JAdLjSut3p036oEEXlDEB-6AURW9oci5W5Y,609
|
|
244
|
-
maxframe/dataframe/missing/tests/test_missing.py,sha256=
|
|
250
|
+
maxframe/dataframe/missing/tests/test_missing.py,sha256=HdQAgc7pCG9jBve-91n2c_gapsCNerIVdrL7L--UQKM,3225
|
|
245
251
|
maxframe/dataframe/reduction/__init__.py,sha256=vWzViXiIiaOx0Yu2kWYkelVwYGGsv4OfUPLrFHKmXKI,4445
|
|
246
252
|
maxframe/dataframe/reduction/aggregation.py,sha256=lNyAomtRYTsemqbfq1d3gg3JMGbq8QZoDh5NMpRK0H4,13011
|
|
247
253
|
maxframe/dataframe/reduction/all.py,sha256=_g8SKDcjwjLOZJmlBXy6jAGexJvG-A-jNwg9G3fKJk4,2044
|
|
@@ -283,14 +289,14 @@ maxframe/dataframe/statistics/tests/__init__.py,sha256=4LpNXO11JAdLjSut3p036oEEX
|
|
|
283
289
|
maxframe/dataframe/statistics/tests/test_statistics.py,sha256=EgObO0EeNbw-H_Y6CAGWYswyQBHh7nEOPf8T26aBafE,2888
|
|
284
290
|
maxframe/dataframe/tests/__init__.py,sha256=4LpNXO11JAdLjSut3p036oEEXlDEB-6AURW9oci5W5Y,609
|
|
285
291
|
maxframe/dataframe/tests/test_initializer.py,sha256=OyC8odxqZlOIMvz2dzhne-0-82wchp4Ti0-drGm9Kd0,2060
|
|
286
|
-
maxframe/dataframe/tests/test_utils.py,sha256=
|
|
292
|
+
maxframe/dataframe/tests/test_utils.py,sha256=TPse4YJdfWPUgDucXKHpEqlT3qIixLTI1nlI1I5SC_4,3113
|
|
287
293
|
maxframe/dataframe/tseries/__init__.py,sha256=4LpNXO11JAdLjSut3p036oEEXlDEB-6AURW9oci5W5Y,609
|
|
288
294
|
maxframe/dataframe/tseries/to_datetime.py,sha256=jkpneE70AZsCPXSp60Entg803lTXwnHRiTBjk6uAANw,11625
|
|
289
295
|
maxframe/dataframe/tseries/tests/__init__.py,sha256=4LpNXO11JAdLjSut3p036oEEXlDEB-6AURW9oci5W5Y,609
|
|
290
296
|
maxframe/dataframe/tseries/tests/test_tseries.py,sha256=jxK8Qz-lgfHliRc-axttpW1VWRNse2PS-yXOQYv9Wpk,1019
|
|
291
297
|
maxframe/dataframe/ufunc/__init__.py,sha256=kEWEf887PkENrw2Ua3Rrl0U2HIxPmxe4gZJybY07IUI,916
|
|
292
298
|
maxframe/dataframe/ufunc/tensor.py,sha256=FN151gfgAYE6XjnIlzVik3wYGe3jWtvwwhfta4DeGgk,1672
|
|
293
|
-
maxframe/dataframe/ufunc/ufunc.py,sha256=
|
|
299
|
+
maxframe/dataframe/ufunc/ufunc.py,sha256=uyw2zb9Qtt8-y2kWffoElmyN232UQ9ZRql2afuj2MWk,1705
|
|
294
300
|
maxframe/dataframe/window/__init__.py,sha256=Y1EmErhxp5aSWnLFadSNEpvE7pAQgggjvP_1kXnwgME,939
|
|
295
301
|
maxframe/dataframe/window/aggregation.py,sha256=rm89zzL-x3sGUJYeVK-vV_OvFLq9lBQHhm_JmVf-ujo,3890
|
|
296
302
|
maxframe/dataframe/window/core.py,sha256=P9R-NicSgb32LhpLBHSe3PZc5rBV3g6QK5flIytSGzI,2274
|
|
@@ -309,7 +315,7 @@ maxframe/io/objects/tests/__init__.py,sha256=4LpNXO11JAdLjSut3p036oEEXlDEB-6AURW
|
|
|
309
315
|
maxframe/io/objects/tests/test_object_io.py,sha256=cbfl12mMAFbJgQoPb782rbeYXQTmKNuCXUTZQn2iBcI,3899
|
|
310
316
|
maxframe/io/odpsio/__init__.py,sha256=mGMCS99Gsdl5_pYBQYpXekRrY_4eM2waP9OG0wTQSb4,940
|
|
311
317
|
maxframe/io/odpsio/arrow.py,sha256=JNY15kQSveKz9o4UB4DWP9fmCajFTakVaLMIvERlIcQ,6182
|
|
312
|
-
maxframe/io/odpsio/schema.py,sha256=
|
|
318
|
+
maxframe/io/odpsio/schema.py,sha256=h_cYZ9b3F1V-OiGiG-nM8nBsbmsZ819jOeJ2OGvjhvk,16046
|
|
313
319
|
maxframe/io/odpsio/tableio.py,sha256=d4Jbhk2p8fqNvn2q3TFBTR7g6AE9O10a2rg0jolvwqI,23310
|
|
314
320
|
maxframe/io/odpsio/volumeio.py,sha256=aIGjSDdAIh8TM3RfqpZFSfUTjgHCBGWnqDMIpt0-ax4,3035
|
|
315
321
|
maxframe/io/odpsio/tests/__init__.py,sha256=4LpNXO11JAdLjSut3p036oEEXlDEB-6AURW9oci5W5Y,609
|
|
@@ -319,30 +325,32 @@ maxframe/io/odpsio/tests/test_tableio.py,sha256=XRjZFK5Tk0mghT-haQkuoYsyspP_g8nT
|
|
|
319
325
|
maxframe/io/odpsio/tests/test_volumeio.py,sha256=QgSpyERPxbJ4x1J4z0e1sjeOulq0eZKAUC2puUda5QQ,3684
|
|
320
326
|
maxframe/learn/__init__.py,sha256=XT2fd5PR96wjXgg9QYGOo9uoRmaK61D4et6N8DKaNnQ,649
|
|
321
327
|
maxframe/learn/core.py,sha256=JIxp1Pzfhb2AHtRoSG6c7sr1i3ctYqC49MaiOP4Xr80,782
|
|
322
|
-
maxframe/learn/contrib/__init__.py,sha256=
|
|
323
|
-
maxframe/learn/contrib/
|
|
328
|
+
maxframe/learn/contrib/__init__.py,sha256=3KycsKe1DZhNKvlTp6_-JDqtqKNxTUnMztcFkewALnY,689
|
|
329
|
+
maxframe/learn/contrib/models.py,sha256=ewN_pKh1uZvlR757y9zHBPEQMqXt0XlXHdsHB65I4Zc,2630
|
|
330
|
+
maxframe/learn/contrib/utils.py,sha256=dTNW1SV1MgqPmF55VxvBCZ49QAxoweMYu9xliqU9J6k,1716
|
|
324
331
|
maxframe/learn/contrib/graph/__init__.py,sha256=fJSzTCpcrJB0Y89M5IIiZ5uRX3l_yludjUyW9keIte4,667
|
|
325
332
|
maxframe/learn/contrib/graph/connected_components.py,sha256=rdAmToi05NlKUZuUbNi-DPizSUB8mP9fRLh7uebJbeE,7367
|
|
326
333
|
maxframe/learn/contrib/graph/tests/__init__.py,sha256=4LpNXO11JAdLjSut3p036oEEXlDEB-6AURW9oci5W5Y,609
|
|
327
334
|
maxframe/learn/contrib/graph/tests/test_connected_components.py,sha256=6o157hNhSkn7zM0OD2PlhtJ9XFq39Mc7_XWSSEcPYpk,1662
|
|
328
|
-
maxframe/learn/contrib/llm/__init__.py,sha256=
|
|
329
|
-
maxframe/learn/contrib/llm/core.py,sha256=
|
|
330
|
-
maxframe/learn/contrib/llm/multi_modal.py,sha256=
|
|
331
|
-
maxframe/learn/contrib/llm/text.py,sha256=
|
|
332
|
-
maxframe/learn/contrib/llm/models/__init__.py,sha256=
|
|
333
|
-
maxframe/learn/contrib/llm/models/dashscope.py,sha256=
|
|
335
|
+
maxframe/learn/contrib/llm/__init__.py,sha256=Ikv8Bw62gQNCaVVu8VfaTmZQEvCCqNO2SBeJXXaEYpk,666
|
|
336
|
+
maxframe/learn/contrib/llm/core.py,sha256=HdHJOTt5ONZIqOJd6o-269BGMjtRNCvMTgEbriBWCfc,2798
|
|
337
|
+
maxframe/learn/contrib/llm/multi_modal.py,sha256=bUpX9-OkutAKjthlX5jpu8KRe6W0jBj1ip8n8jtvFjQ,1490
|
|
338
|
+
maxframe/learn/contrib/llm/text.py,sha256=PdDfGK3ZV_zvp9LG2T9xqJED2qa5NSkycdULOJlz1_0,9182
|
|
339
|
+
maxframe/learn/contrib/llm/models/__init__.py,sha256=xdT-QE7V6VbAciHW7ubViTMTG0XCuIbCVY7SIIYzFlc,676
|
|
340
|
+
maxframe/learn/contrib/llm/models/dashscope.py,sha256=0G2cWB60h8pEonTBJSzVhZjUhoAjKzXIgvd4au0POOE,2394
|
|
341
|
+
maxframe/learn/contrib/llm/models/managed.py,sha256=bhz0u_goefV-_-TjXsmGHFG_9iZ0NFCDbjg6GN5o8wg,1330
|
|
334
342
|
maxframe/learn/contrib/pytorch/__init__.py,sha256=OFSs9YoYbKxEmyP8OLxqMPHvaDlgesD02QtOvjpHrv4,703
|
|
335
343
|
maxframe/learn/contrib/pytorch/run_function.py,sha256=c_S2U3VTZ7vFmDlqVDBBiM-r5EFLb-d1JU64t8UZ0Fk,3354
|
|
336
344
|
maxframe/learn/contrib/pytorch/run_script.py,sha256=XBed8ypahK9KIOs-mQ-SsQZCtsUkV6RdXiyagSPySmE,3213
|
|
337
345
|
maxframe/learn/contrib/pytorch/tests/__init__.py,sha256=4LpNXO11JAdLjSut3p036oEEXlDEB-6AURW9oci5W5Y,609
|
|
338
346
|
maxframe/learn/contrib/pytorch/tests/test_pytorch.py,sha256=WgA-VI-XlpwaSdD-zpMVeSCPnjqXMzisyUCQ8FGlZdI,1444
|
|
339
|
-
maxframe/learn/contrib/xgboost/__init__.py,sha256=
|
|
340
|
-
maxframe/learn/contrib/xgboost/classifier.py,sha256=
|
|
341
|
-
maxframe/learn/contrib/xgboost/core.py,sha256=
|
|
342
|
-
maxframe/learn/contrib/xgboost/dmatrix.py,sha256
|
|
343
|
-
maxframe/learn/contrib/xgboost/predict.py,sha256=
|
|
344
|
-
maxframe/learn/contrib/xgboost/regressor.py,sha256=
|
|
345
|
-
maxframe/learn/contrib/xgboost/train.py,sha256=
|
|
347
|
+
maxframe/learn/contrib/xgboost/__init__.py,sha256=ChqbAiGx91jbI4H0MQloiXx2hWGmSte_IO34t2YRLT8,1084
|
|
348
|
+
maxframe/learn/contrib/xgboost/classifier.py,sha256=iOsaWrLyIo9Lh-a14lsCyFX6hHykrIcIOZEuXIJK4Zs,4310
|
|
349
|
+
maxframe/learn/contrib/xgboost/core.py,sha256=u8Lqy2H8Yg6khuRc_53dSrQL66uzKGgH-Cku3nyo3Gs,12462
|
|
350
|
+
maxframe/learn/contrib/xgboost/dmatrix.py,sha256=t2b8my2azo29y6Fvek-hVJoiNjfAcyZ_wYEnzE6-zRE,5050
|
|
351
|
+
maxframe/learn/contrib/xgboost/predict.py,sha256=4REyIKqOwnCSNkV-bqn4fdlM0UmH5Lygpja__mITW8I,4177
|
|
352
|
+
maxframe/learn/contrib/xgboost/regressor.py,sha256=K1IhxEVoss5GqI9RKzgbCy9jcI7ArmBnFSf8ZH45Wm8,2766
|
|
353
|
+
maxframe/learn/contrib/xgboost/train.py,sha256=nAWNGGGqd6n4HT1Qs-Rb3wLdAlbaKjgcTaJhnFlYxdo,4680
|
|
346
354
|
maxframe/learn/contrib/xgboost/tests/__init__.py,sha256=4LpNXO11JAdLjSut3p036oEEXlDEB-6AURW9oci5W5Y,609
|
|
347
355
|
maxframe/learn/contrib/xgboost/tests/test_core.py,sha256=0ZI07rGLA_yO_bKO4OXv_0_nwB-l0sI3JCxjQko0Qaw,1449
|
|
348
356
|
maxframe/learn/utils/__init__.py,sha256=qSEzDnZ4wOGVz-FCt7qazBSO0BOgn9FvHL5umEgI1cU,661
|
|
@@ -350,7 +358,7 @@ maxframe/learn/utils/core.py,sha256=JmuEV8O_tEXI-nBwRK2j1CPYSFlJJyrFhYh83df29L4,
|
|
|
350
358
|
maxframe/lib/__init__.py,sha256=ZxIRETECrnrJcfRmGQTTNwrCxwqTVLNaM9nCzBNPo1k,657
|
|
351
359
|
maxframe/lib/compression.py,sha256=8F0QEOlrgrFz8Yzeyap4ud3PYe1I5LUWUHWvQg1YKq0,1497
|
|
352
360
|
maxframe/lib/functools_compat.py,sha256=1a-R_fcKQo7gUZnyk6L-qt_Ozhm3Gb0y86Fd3ROeTcw,2697
|
|
353
|
-
maxframe/lib/mmh3.cp39-win_amd64.pyd,sha256=
|
|
361
|
+
maxframe/lib/mmh3.cp39-win_amd64.pyd,sha256=BNeIuWNBTEawKF24_3MBkw1lUrSfkjfTOD7Gj1WgjHQ,17920
|
|
354
362
|
maxframe/lib/mmh3.pyi,sha256=ad6KZrDA7dznE5Qv0lnGB32rw1Zl2DBwNIH0BI_bFQU,1537
|
|
355
363
|
maxframe/lib/version.py,sha256=NqxzCX2pLHIMTj-7HTA6xU3iyd_DVeqyyW1n-Rk8MCQ,18941
|
|
356
364
|
maxframe/lib/wrapped_pickle.py,sha256=Yazeydh6vOAd4ibsv_tn_8LgAC7kVkoResQYFW8RXNw,3976
|
|
@@ -366,10 +374,10 @@ maxframe/lib/aio/tests/__init__.py,sha256=4LpNXO11JAdLjSut3p036oEEXlDEB-6AURW9oc
|
|
|
366
374
|
maxframe/lib/aio/tests/test_aio_file.py,sha256=WnU2jQMZ1jVPT8l9m3h4lytLUDhAHTIa9_mTMHpo224,1713
|
|
367
375
|
maxframe/lib/cython/__init__.py,sha256=4LpNXO11JAdLjSut3p036oEEXlDEB-6AURW9oci5W5Y,609
|
|
368
376
|
maxframe/lib/cython/libcpp.pxd,sha256=lNA9YvEGLS0xMarsmvllh2qMdPxu-_Tl2ymT2EQw14c,1130
|
|
369
|
-
maxframe/lib/dtypes_extension/__init__.py,sha256=
|
|
370
|
-
maxframe/lib/dtypes_extension/dtypes.py,sha256=
|
|
377
|
+
maxframe/lib/dtypes_extension/__init__.py,sha256=sO6wef7yir_E-En40NTcd-dHl4dP9QWmWv0Ya4NYXHI,686
|
|
378
|
+
maxframe/lib/dtypes_extension/dtypes.py,sha256=q5V6tvS7cC-N-e2gtfRiuh1TKXdcm0eCbjJbS6FQrJE,2219
|
|
371
379
|
maxframe/lib/dtypes_extension/tests/__init__.py,sha256=4LpNXO11JAdLjSut3p036oEEXlDEB-6AURW9oci5W5Y,609
|
|
372
|
-
maxframe/lib/dtypes_extension/tests/test_dtypes.py,sha256=
|
|
380
|
+
maxframe/lib/dtypes_extension/tests/test_dtypes.py,sha256=dpqCS6qfyXb8w5paTjx52pQgaWZ5xbb4FcDShV5gbU4,1426
|
|
373
381
|
maxframe/lib/filesystem/__init__.py,sha256=1LjZ5ZPdXZHKaJ5TZY34dnoLgYMy1qiB3DcE5k9YjaU,855
|
|
374
382
|
maxframe/lib/filesystem/_glob.py,sha256=H1wRnnhFAK6PqshJf6ALo0jxVZ9em1zhi3d9Q5rXpLk,6708
|
|
375
383
|
maxframe/lib/filesystem/arrow.py,sha256=QKH1gtjx-0jUyBNMKBF0nLJZCKuOwDIGko8biBBgQkQ,8647
|
|
@@ -406,15 +414,15 @@ maxframe/lib/tests/test_wrapped_pickle.py,sha256=euQ4u_YU-TYvSExtqeQ9fnCiUQiGaFx
|
|
|
406
414
|
maxframe/remote/__init__.py,sha256=m9h2lTNEayNKWsmJeAjitnG00atQROYRitjE9R1h4B8,747
|
|
407
415
|
maxframe/remote/core.py,sha256=4K33fOPX6f1v_c1yZ7Z9MRICHtmwkqbiuujfwplZicw,6733
|
|
408
416
|
maxframe/remote/run_script.py,sha256=mibruTktWFh62ye9AtjKG7UG7g3_ZLxmXWLWCWY0le8,3677
|
|
409
|
-
maxframe/serialization/__init__.py,sha256=
|
|
417
|
+
maxframe/serialization/__init__.py,sha256=n3CYAvESmVbO9cg-KURNacOlGINSugbQ5Z2Ok8Ez_2k,986
|
|
410
418
|
maxframe/serialization/arrow.py,sha256=DUq7e9V8kJrpj_Z67F767jo_wxgkkXygSPByzMqfB4M,3513
|
|
411
|
-
maxframe/serialization/core.cp39-win_amd64.pyd,sha256=
|
|
419
|
+
maxframe/serialization/core.cp39-win_amd64.pyd,sha256=t9oEA4f4BB1-4t369j8JVbJ0QKXnk2SeJerdpQJ-A2c,415744
|
|
412
420
|
maxframe/serialization/core.pxd,sha256=tFsBg4SxvMgaKHNr6Pqxcw4uRes1NmoITq2igPtozDM,1548
|
|
413
421
|
maxframe/serialization/core.pyi,sha256=oYh_n-2-cV8BaacM9kFev1rSC_OfEgWOUHjwdXBeY78,2206
|
|
414
|
-
maxframe/serialization/core.pyx,sha256=
|
|
422
|
+
maxframe/serialization/core.pyx,sha256=TLOPhutnELLuVOjA4MjfElHhHsAmtoWJJMAPUlxVHkU,37387
|
|
415
423
|
maxframe/serialization/exception.py,sha256=JmkTT7maDzIuDYWhDQYqfLXp3P00i2ATMvACA0sPsck,3079
|
|
416
424
|
maxframe/serialization/maxframe_objects.py,sha256=QXJyxTpLhU3oB7gUwV5JWAvW4tm3jJOskvhJA0_4fDo,1404
|
|
417
|
-
maxframe/serialization/numpy.py,sha256=
|
|
425
|
+
maxframe/serialization/numpy.py,sha256=blU5A21RVz7x7RA_65fSB02REFYwqluBJm50akHng1s,3639
|
|
418
426
|
maxframe/serialization/pandas.py,sha256=WN17_CWm3stQn_C7nZfc3sOHwn4ihVZQiANwJhd2y38,8725
|
|
419
427
|
maxframe/serialization/scipy.py,sha256=eeFCcNp6Vgv8ftRIotOTazP-I3ln1xHnfWSMgHOJtMQ,2498
|
|
420
428
|
maxframe/serialization/serializables/__init__.py,sha256=9SEXt3nT_Ii8EuMKCPKOGmV4p9a7NrKRuZkpXq3195g,1406
|
|
@@ -423,9 +431,9 @@ maxframe/serialization/serializables/field.py,sha256=Yd0mJ4bMBl7BoVJm-6fXQfkDhYi
|
|
|
423
431
|
maxframe/serialization/serializables/field_type.py,sha256=AMq_nn_RCOIU9ClvoF4UWEFmvP-044MD6NJ0d8MQ3YM,15525
|
|
424
432
|
maxframe/serialization/serializables/tests/__init__.py,sha256=4LpNXO11JAdLjSut3p036oEEXlDEB-6AURW9oci5W5Y,609
|
|
425
433
|
maxframe/serialization/serializables/tests/test_field_type.py,sha256=Fp_s8QMfA0bJQFWlXHz6dKkuXSAy439yGBsGP14Pbu4,4502
|
|
426
|
-
maxframe/serialization/serializables/tests/test_serializable.py,sha256=
|
|
434
|
+
maxframe/serialization/serializables/tests/test_serializable.py,sha256=rdxPNvxqaq8vNkrtMHHvlNJJvSXJ2GnHseDWupAGj68,11007
|
|
427
435
|
maxframe/serialization/tests/__init__.py,sha256=4LpNXO11JAdLjSut3p036oEEXlDEB-6AURW9oci5W5Y,609
|
|
428
|
-
maxframe/serialization/tests/test_serial.py,sha256=
|
|
436
|
+
maxframe/serialization/tests/test_serial.py,sha256=xvTZjkvwIFz7DSfXp5sPcMJ68vyCOj1T1Zhupa0dR7I,13660
|
|
429
437
|
maxframe/tensor/__init__.py,sha256=07KA0yWuMoXgFr1ddfnJiwan8vxtcIpOhPhIAYihXmk,4910
|
|
430
438
|
maxframe/tensor/array_utils.py,sha256=cYsdlaSxLeRBK63gQRDwQjllFDvYI5orujGgilMpK5M,5129
|
|
431
439
|
maxframe/tensor/core.py,sha256=Ea9taiVlH1QZGDJjSjY037kWy01VmrRlZhQ5C8oGl3c,18538
|
|
@@ -564,7 +572,7 @@ maxframe/tensor/indexing/unravel_index.py,sha256=P0GX12aQvhlJxykkusUUpKQPtZ9wDKk
|
|
|
564
572
|
maxframe/tensor/indexing/tests/__init__.py,sha256=ZxIRETECrnrJcfRmGQTTNwrCxwqTVLNaM9nCzBNPo1k,657
|
|
565
573
|
maxframe/tensor/indexing/tests/test_indexing.py,sha256=cc57bBof1FRKbPhE0N3CHRfFVl8Ckta6SWxQcc5P6BY,6886
|
|
566
574
|
maxframe/tensor/merge/__init__.py,sha256=m81Ouif6GAXEHe0uKPiMpPlxZwSeI76EYVkgASnd5nA,703
|
|
567
|
-
maxframe/tensor/merge/concatenate.py,sha256=
|
|
575
|
+
maxframe/tensor/merge/concatenate.py,sha256=aiuXKveKErriY9PQmWSiV-xm06X2-ufEm8AfHEH_5X4,3316
|
|
568
576
|
maxframe/tensor/merge/stack.py,sha256=dOFQrcfPV117eQHl1IRy8oF9u6PoNthl90kH3mEPVXE,4277
|
|
569
577
|
maxframe/tensor/merge/vstack.py,sha256=OWetsKXO3DpznVsBvEe-HcwSD5ZTh8BZTWBWiaCqW14,2342
|
|
570
578
|
maxframe/tensor/merge/tests/__init__.py,sha256=4LpNXO11JAdLjSut3p036oEEXlDEB-6AURW9oci5W5Y,609
|
|
@@ -577,7 +585,7 @@ maxframe/tensor/misc/atleast_3d.py,sha256=nQQr-ARc1AJ3T0PtWtgeZfdjOPJVYUQn4qxxF-
|
|
|
577
585
|
maxframe/tensor/misc/broadcast_to.py,sha256=hQRGTa4YDbA7nWYyEzi3mwwBZpJOKmTPxuyCAR-6rwk,2775
|
|
578
586
|
maxframe/tensor/misc/ravel.py,sha256=gU0EsnTTBitz4MKa4CSW3JR0QrkfOZoKnsarelBo7mY,3265
|
|
579
587
|
maxframe/tensor/misc/transpose.py,sha256=h3IbuHNt5hmi8gwYH7q6uyzdiEil2XdliLydQq2sjSs,4149
|
|
580
|
-
maxframe/tensor/misc/unique.py,sha256=
|
|
588
|
+
maxframe/tensor/misc/unique.py,sha256=T8DCmet525wivTPfti1vdPM6_oOMNHncrkdw_Oslvic,7011
|
|
581
589
|
maxframe/tensor/misc/where.py,sha256=6LnsLajy1PWx447n1xJAGhKAXlCn3Mk94QORZO8lWHA,4127
|
|
582
590
|
maxframe/tensor/misc/tests/__init__.py,sha256=4LpNXO11JAdLjSut3p036oEEXlDEB-6AURW9oci5W5Y,609
|
|
583
591
|
maxframe/tensor/misc/tests/test_misc.py,sha256=aTXEzYurjXS6lsviP_SlVOTy2Vlu-6eINXGcu36h46c,2957
|
|
@@ -663,7 +671,7 @@ maxframe/tensor/reduction/var.py,sha256=IeOiW6GJvnDQArfisCI7GX10tX2YpEM0VMDSEnlu
|
|
|
663
671
|
maxframe/tensor/reduction/tests/__init__.py,sha256=4LpNXO11JAdLjSut3p036oEEXlDEB-6AURW9oci5W5Y,609
|
|
664
672
|
maxframe/tensor/reduction/tests/test_reduction.py,sha256=e9h7aZ5cLpLGWuM5ojPEZvwx64XUbDaTv7ei-aYuMpc,6370
|
|
665
673
|
maxframe/tensor/reshape/__init__.py,sha256=A0aWn4ggH9P6kSrqiXakoM5-fvns5lFM59ZFpaZH5QU,689
|
|
666
|
-
maxframe/tensor/reshape/reshape.py,sha256=
|
|
674
|
+
maxframe/tensor/reshape/reshape.py,sha256=rmSsI7I_yKdJBL4wm6NQKA0s6sLyONiFiq3R2ArPaSg,6684
|
|
667
675
|
maxframe/tensor/reshape/tests/__init__.py,sha256=ZxIRETECrnrJcfRmGQTTNwrCxwqTVLNaM9nCzBNPo1k,657
|
|
668
676
|
maxframe/tensor/reshape/tests/test_reshape.py,sha256=QnIMRaiu3TO4UhmcmTvSu2RkH3Jr2Otza__pzJxGYVY,1140
|
|
669
677
|
maxframe/tensor/statistics/__init__.py,sha256=4LpNXO11JAdLjSut3p036oEEXlDEB-6AURW9oci5W5Y,609
|
|
@@ -684,14 +692,14 @@ maxframe_client/clients/framedriver.py,sha256=mwHJmplywWOyTvyRkbr562PtlE_a3ojISa
|
|
|
684
692
|
maxframe_client/session/__init__.py,sha256=d6y_gZ3JEWmVi55pwnHjVcU4JmdynVxZcu9QY7B0dAE,854
|
|
685
693
|
maxframe_client/session/consts.py,sha256=GvAxFLM_LUUgCpKkykCsWmKt00mbb6mAELfVTXob4w0,1430
|
|
686
694
|
maxframe_client/session/graph.py,sha256=4Nuyt5Ui9t4AWVG9VGq_TFgDQCnyZ2gOVGGuwUaEn1Q,4501
|
|
687
|
-
maxframe_client/session/odps.py,sha256=
|
|
695
|
+
maxframe_client/session/odps.py,sha256=Ekech3hqMnGi5oN9a5rUXlnTm8e_S289XKZRJz7rz9Y,25770
|
|
688
696
|
maxframe_client/session/task.py,sha256=VIksMHcLra7I7DFStFxLLwieG4-buOM56E6pdPXh4Js,12347
|
|
689
697
|
maxframe_client/session/tests/__init__.py,sha256=4LpNXO11JAdLjSut3p036oEEXlDEB-6AURW9oci5W5Y,609
|
|
690
|
-
maxframe_client/session/tests/test_task.py,sha256=
|
|
698
|
+
maxframe_client/session/tests/test_task.py,sha256=qtKtseHpc13xQCe4SsDaM7UToVOTkPIAb0yMw12Js8M,4817
|
|
691
699
|
maxframe_client/tests/__init__.py,sha256=4LpNXO11JAdLjSut3p036oEEXlDEB-6AURW9oci5W5Y,609
|
|
692
700
|
maxframe_client/tests/test_fetcher.py,sha256=-KG_OshShJEa66Hg_RKuT745AxadH2LMWasHo5hhIow,4265
|
|
693
701
|
maxframe_client/tests/test_session.py,sha256=7-oNldT5YAnzWxSixWJH3VuBMwzFO7C38fNODINMi-M,11542
|
|
694
|
-
maxframe-1.
|
|
695
|
-
maxframe-1.
|
|
696
|
-
maxframe-1.
|
|
697
|
-
maxframe-1.
|
|
702
|
+
maxframe-1.3.0.dist-info/METADATA,sha256=5HYNOlaGNR_vBqt8nIgN0EVr3EBBJ5aj82_XI6pMDF0,3148
|
|
703
|
+
maxframe-1.3.0.dist-info/WHEEL,sha256=3JRrBaG_r4GKEsQxd6dVT34joOu5By0wlyszd6u_ofs,99
|
|
704
|
+
maxframe-1.3.0.dist-info/top_level.txt,sha256=64x-fc2q59c_vXwNUkehyjF1vb8JWqFSdYmUqIFqoTM,31
|
|
705
|
+
maxframe-1.3.0.dist-info/RECORD,,
|
maxframe_client/session/odps.py
CHANGED
|
@@ -68,6 +68,7 @@ from maxframe.utils import (
|
|
|
68
68
|
ToThreadMixin,
|
|
69
69
|
build_session_volume_name,
|
|
70
70
|
build_temp_table_name,
|
|
71
|
+
get_default_table_properties,
|
|
71
72
|
str_to_bool,
|
|
72
73
|
sync_pyodps_options,
|
|
73
74
|
)
|
|
@@ -229,6 +230,8 @@ class MaxFrameSession(ToThreadMixin, IsolatedAsyncSession):
|
|
|
229
230
|
lifecycle=options.session.temp_table_lifecycle,
|
|
230
231
|
hints=options.sql.settings,
|
|
231
232
|
if_not_exists=True,
|
|
233
|
+
table_properties=options.session.temp_table_properties
|
|
234
|
+
or get_default_table_properties(),
|
|
232
235
|
)
|
|
233
236
|
|
|
234
237
|
data = t.op.get_data()
|
|
File without changes
|