maxframe 2.2.0__cp38-cp38-win32.whl → 2.3.0rc1__cp38-cp38-win32.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.cp38-win32.pyd +0 -0
- maxframe/codegen/core.py +3 -2
- maxframe/codegen/spe/dataframe/merge.py +4 -0
- maxframe/codegen/spe/dataframe/misc.py +2 -0
- maxframe/codegen/spe/dataframe/reduction.py +18 -0
- maxframe/codegen/spe/dataframe/sort.py +9 -1
- maxframe/codegen/spe/dataframe/tests/test_reduction.py +13 -0
- maxframe/codegen/spe/dataframe/tseries.py +9 -0
- maxframe/codegen/spe/learn/contrib/lightgbm.py +4 -3
- maxframe/codegen/spe/tensor/datasource.py +1 -0
- maxframe/config/config.py +3 -0
- maxframe/conftest.py +10 -0
- maxframe/core/base.py +2 -1
- maxframe/core/entity/tileables.py +2 -0
- maxframe/core/graph/core.cp38-win32.pyd +0 -0
- maxframe/core/graph/entity.py +7 -1
- maxframe/core/mode.py +6 -1
- maxframe/dataframe/__init__.py +2 -2
- maxframe/dataframe/arithmetic/__init__.py +4 -0
- maxframe/dataframe/arithmetic/maximum.py +33 -0
- maxframe/dataframe/arithmetic/minimum.py +33 -0
- maxframe/dataframe/core.py +98 -106
- maxframe/dataframe/datasource/core.py +6 -0
- maxframe/dataframe/datasource/direct.py +57 -0
- maxframe/dataframe/datasource/read_csv.py +19 -11
- maxframe/dataframe/datasource/read_odps_query.py +29 -6
- maxframe/dataframe/datasource/read_odps_table.py +32 -10
- maxframe/dataframe/datasource/read_parquet.py +38 -39
- maxframe/dataframe/datastore/__init__.py +6 -0
- maxframe/dataframe/datastore/direct.py +268 -0
- maxframe/dataframe/datastore/to_odps.py +6 -0
- maxframe/dataframe/extensions/flatjson.py +2 -1
- maxframe/dataframe/groupby/__init__.py +5 -1
- maxframe/dataframe/groupby/aggregation.py +10 -6
- maxframe/dataframe/groupby/apply_chunk.py +1 -3
- maxframe/dataframe/groupby/core.py +20 -4
- maxframe/dataframe/indexing/__init__.py +2 -1
- maxframe/dataframe/indexing/insert.py +45 -17
- maxframe/dataframe/merge/__init__.py +3 -0
- maxframe/dataframe/merge/combine.py +244 -0
- maxframe/dataframe/misc/__init__.py +14 -3
- maxframe/dataframe/misc/check_unique.py +41 -10
- maxframe/dataframe/misc/drop.py +31 -0
- maxframe/dataframe/misc/infer_dtypes.py +251 -0
- maxframe/dataframe/misc/map.py +31 -18
- maxframe/dataframe/misc/repeat.py +159 -0
- maxframe/dataframe/misc/tests/test_misc.py +35 -1
- maxframe/dataframe/missing/checkna.py +3 -2
- maxframe/dataframe/reduction/__init__.py +10 -5
- maxframe/dataframe/reduction/aggregation.py +6 -6
- maxframe/dataframe/reduction/argmax.py +7 -4
- maxframe/dataframe/reduction/argmin.py +7 -4
- maxframe/dataframe/reduction/core.py +18 -9
- maxframe/dataframe/reduction/mode.py +144 -0
- maxframe/dataframe/reduction/nunique.py +10 -3
- maxframe/dataframe/reduction/tests/test_reduction.py +12 -0
- maxframe/dataframe/sort/__init__.py +9 -2
- maxframe/dataframe/sort/argsort.py +7 -1
- maxframe/dataframe/sort/core.py +1 -1
- maxframe/dataframe/sort/rank.py +147 -0
- maxframe/dataframe/tseries/__init__.py +19 -0
- maxframe/dataframe/tseries/at_time.py +61 -0
- maxframe/dataframe/tseries/between_time.py +122 -0
- maxframe/dataframe/utils.py +30 -26
- maxframe/learn/contrib/llm/core.py +16 -7
- maxframe/learn/contrib/llm/deploy/__init__.py +13 -0
- maxframe/learn/contrib/llm/deploy/config.py +221 -0
- maxframe/learn/contrib/llm/deploy/core.py +247 -0
- maxframe/learn/contrib/llm/deploy/framework.py +35 -0
- maxframe/learn/contrib/llm/deploy/loader.py +360 -0
- maxframe/learn/contrib/llm/deploy/tests/__init__.py +13 -0
- maxframe/learn/contrib/llm/deploy/tests/test_register_models.py +359 -0
- maxframe/learn/contrib/llm/models/__init__.py +1 -0
- maxframe/learn/contrib/llm/models/dashscope.py +12 -6
- maxframe/learn/contrib/llm/models/managed.py +76 -11
- maxframe/learn/contrib/llm/models/openai.py +72 -0
- maxframe/learn/contrib/llm/tests/__init__.py +13 -0
- maxframe/learn/contrib/llm/tests/test_core.py +34 -0
- maxframe/learn/contrib/llm/tests/test_openai.py +187 -0
- maxframe/learn/contrib/llm/tests/test_text_gen.py +155 -0
- maxframe/learn/contrib/llm/text.py +348 -42
- maxframe/learn/contrib/models.py +4 -1
- maxframe/learn/contrib/xgboost/classifier.py +2 -0
- maxframe/learn/contrib/xgboost/core.py +31 -7
- maxframe/learn/contrib/xgboost/predict.py +4 -2
- maxframe/learn/contrib/xgboost/regressor.py +5 -0
- maxframe/learn/contrib/xgboost/train.py +2 -0
- maxframe/learn/preprocessing/_data/min_max_scaler.py +34 -23
- maxframe/learn/preprocessing/_data/standard_scaler.py +34 -25
- maxframe/learn/utils/__init__.py +1 -0
- maxframe/learn/utils/extmath.py +42 -9
- maxframe/learn/utils/odpsio.py +80 -11
- maxframe/lib/filesystem/_oss_lib/common.py +2 -0
- maxframe/lib/mmh3.cp38-win32.pyd +0 -0
- maxframe/opcodes.py +9 -1
- maxframe/remote/core.py +4 -0
- maxframe/serialization/core.cp38-win32.pyd +0 -0
- maxframe/serialization/tests/test_serial.py +2 -2
- maxframe/tensor/arithmetic/__init__.py +1 -1
- maxframe/tensor/arithmetic/core.py +2 -2
- maxframe/tensor/arithmetic/tests/test_arithmetic.py +0 -9
- maxframe/tensor/core.py +3 -0
- maxframe/tensor/misc/copyto.py +1 -1
- maxframe/tests/test_udf.py +61 -0
- maxframe/tests/test_utils.py +8 -5
- maxframe/udf.py +103 -7
- maxframe/utils.py +61 -8
- {maxframe-2.2.0.dist-info → maxframe-2.3.0rc1.dist-info}/METADATA +1 -2
- {maxframe-2.2.0.dist-info → maxframe-2.3.0rc1.dist-info}/RECORD +113 -90
- maxframe_client/session/task.py +8 -1
- maxframe_client/tests/test_session.py +24 -0
- maxframe/dataframe/arrays.py +0 -864
- {maxframe-2.2.0.dist-info → maxframe-2.3.0rc1.dist-info}/WHEEL +0 -0
- {maxframe-2.2.0.dist-info → maxframe-2.3.0rc1.dist-info}/top_level.txt +0 -0
|
@@ -1,22 +1,22 @@
|
|
|
1
1
|
maxframe/__init__.py,sha256=EbxQluyN0it4t6o-EFyY8OxEiJ65aj-u9DLEmzi-50w,1089
|
|
2
|
-
maxframe/_utils.cp38-win32.pyd,sha256=
|
|
2
|
+
maxframe/_utils.cp38-win32.pyd,sha256=3d8bJdpn0CBJ6BY7YoGIDhFSh4sqs7CdDq8Gkt2O60Y,275968
|
|
3
3
|
maxframe/_utils.pxd,sha256=ckEN1J8rXAtNYW7CictnSVYamH-sQx-uIuWrQts_OT4,1187
|
|
4
4
|
maxframe/_utils.pyi,sha256=qwxGcqDyM19BufUweKHcupBlW767nUz7oxQQEiHc39k,937
|
|
5
5
|
maxframe/_utils.pyx,sha256=gHcEQZJau7EeJO4vGbYnTz2jjYZnl2OfRtMfpy2cPdw,17887
|
|
6
|
-
maxframe/conftest.py,sha256=
|
|
6
|
+
maxframe/conftest.py,sha256=cHEgjD0wYud5u4lkfgKvaeLpwboMdykFmHVvyrGdPRM,8473
|
|
7
7
|
maxframe/env.py,sha256=D7z8odY4533G8xSqSIOqHIOE3LfwUa0-eDxT3hzHvLA,1636
|
|
8
8
|
maxframe/errors.py,sha256=pE0QE9brAZ_zlcjRXSLP6PPdCwD3c_w23I8tyS3kZXE,1255
|
|
9
9
|
maxframe/extension.py,sha256=Azk5sfD9491axgBTvgSd2G-WIe0Fpu-x4e_V4SwCvLY,3046
|
|
10
10
|
maxframe/mixin.py,sha256=OiKXnTmY10icHNJwNxBwIfrjbTvjg82gLB4GUOe721E,5802
|
|
11
|
-
maxframe/opcodes.py,sha256=
|
|
11
|
+
maxframe/opcodes.py,sha256=rhczfj-w7IwJCss45PKYfGoJgE0s08knwQSxwShg8E8,12334
|
|
12
12
|
maxframe/protocol.py,sha256=cvWNP9xRQU7P1G9zmKBFrDEIze8aCRVtZarRQyIozOs,21498
|
|
13
13
|
maxframe/session.py,sha256=d0adlfeAZ9VloRSCp-SQj9q6qNEKyrV7_Z5XpeNzkAY,36034
|
|
14
14
|
maxframe/sperunner.py,sha256=BJmUE1aJcWIAQGeuWieWc_3NUx-IOgY8ObAxpLE2CO4,5737
|
|
15
15
|
maxframe/typing_.py,sha256=Psiq3OtG6gBng_p3nKFD78FYQsZOP2pcNA7u93doLoA,1305
|
|
16
|
-
maxframe/udf.py,sha256=
|
|
17
|
-
maxframe/utils.py,sha256=
|
|
16
|
+
maxframe/udf.py,sha256=UlCsPu5quUebgcZNSUIQHBlORZj__SZuryVDf7n410g,12199
|
|
17
|
+
maxframe/utils.py,sha256=pXo1whoyDbayFlKhYM5wBZiPwRLmIOQdDUmQJ83cZ9U,55755
|
|
18
18
|
maxframe/codegen/__init__.py,sha256=lVXVYKiVKkMKugTcwg5zDzClQkxaKbCY719X8gD3lPA,892
|
|
19
|
-
maxframe/codegen/core.py,sha256=
|
|
19
|
+
maxframe/codegen/core.py,sha256=ELJQwmxrk69OK9jmSI8lnjKEa1hMTojc7Y_yTqMsfqU,20852
|
|
20
20
|
maxframe/codegen/spe/__init__.py,sha256=_Y9BcvEg3wSdwTAATA2Tnh2HmvMY1haEJV7_z0PehK8,704
|
|
21
21
|
maxframe/codegen/spe/core.py,sha256=Ga7dKgXm_Ynnu9gn_tf0jRjuiftGFDDxrLld4Y-ukkI,10854
|
|
22
22
|
maxframe/codegen/spe/objects.py,sha256=Oq1A8RilasBGNR9A4wHFNFDD9HGPrL1nuwPNA9Z7CKw,1069
|
|
@@ -30,14 +30,14 @@ maxframe/codegen/spe/dataframe/extensions.py,sha256=DDt3NfADH71rU1FktjGy7I9G5tYE
|
|
|
30
30
|
maxframe/codegen/spe/dataframe/fetch.py,sha256=tgukXQ3L6qGUqV9n308pEUH3DFrXQUJHR8WYzl6hrZQ,1077
|
|
31
31
|
maxframe/codegen/spe/dataframe/groupby.py,sha256=WG5CorH6k3ST0ZQke-w0h4mknB3hKakJKkSaa2laHmU,13815
|
|
32
32
|
maxframe/codegen/spe/dataframe/indexing.py,sha256=22u2RwG_ZmKq9-7tGpSk3fAPzLBkUdKuj7LieAPZaRc,13383
|
|
33
|
-
maxframe/codegen/spe/dataframe/merge.py,sha256=
|
|
34
|
-
maxframe/codegen/spe/dataframe/misc.py,sha256=
|
|
33
|
+
maxframe/codegen/spe/dataframe/merge.py,sha256=ZED2So7ybdNmVCLhCwllcH5D2tZ19MEkEZZHJ7DPl78,4214
|
|
34
|
+
maxframe/codegen/spe/dataframe/misc.py,sha256=beL6BelTmxZ-_6VNoRaWo1hP2FfYJtwg3gkIT6TOgXU,10935
|
|
35
35
|
maxframe/codegen/spe/dataframe/missing.py,sha256=-LmaTgMJcZq0_eB8FRYJp_QFJaVEgeQL7xhVrF-MSrw,2876
|
|
36
|
-
maxframe/codegen/spe/dataframe/reduction.py,sha256=
|
|
36
|
+
maxframe/codegen/spe/dataframe/reduction.py,sha256=Sw1v46Whj9unWPYPLKVO-cREUeRI6N-aQer8bhdZu3g,6329
|
|
37
37
|
maxframe/codegen/spe/dataframe/reshape.py,sha256=NeAGhqKeqjt4OQbuFsDPyNde7GUjiLmiC6QU2M6XM7s,1606
|
|
38
|
-
maxframe/codegen/spe/dataframe/sort.py,sha256=
|
|
38
|
+
maxframe/codegen/spe/dataframe/sort.py,sha256=_5hDHGDcYj6sS8amj4K0riIlw3cEx6LNttPlqorbOvA,3796
|
|
39
39
|
maxframe/codegen/spe/dataframe/statistics.py,sha256=Bi0yqyYqSjjhWiTOK_oOtWIfQdg71sD5jiOcPhFWYFU,1833
|
|
40
|
-
maxframe/codegen/spe/dataframe/tseries.py,sha256=
|
|
40
|
+
maxframe/codegen/spe/dataframe/tseries.py,sha256=TrsOwShOsNxwIJhfwNxWwaYDhUODz_Cm29SPMrFL2E4,2172
|
|
41
41
|
maxframe/codegen/spe/dataframe/udf.py,sha256=JVmc-jNH3qOp8f19wGe97m2tJAnYWHrQLgSXyUAhmbU,2189
|
|
42
42
|
maxframe/codegen/spe/dataframe/value_counts.py,sha256=ciDxQaYAQCq1F_6jWJCqaD_ooCfK-CdFR6fo4NcaTn8,1385
|
|
43
43
|
maxframe/codegen/spe/dataframe/window.py,sha256=-WJRFmPbnd7CXxseTtRyd5aXU9QmjPn5LTDup1OvfXA,3012
|
|
@@ -53,7 +53,7 @@ maxframe/codegen/spe/dataframe/tests/test_datastore.py,sha256=h2vXGT0hTxXc1Pm6kD
|
|
|
53
53
|
maxframe/codegen/spe/dataframe/tests/test_extensions.py,sha256=973u9nYIS83Z5s-JgN82ZZjflUrO7LHKO-HOI4chyLk,3170
|
|
54
54
|
maxframe/codegen/spe/dataframe/tests/test_groupby.py,sha256=L_l4XoqOr9fRkbW06_2lU1JpXlM9XHSFGX8jmHQY6sg,10779
|
|
55
55
|
maxframe/codegen/spe/dataframe/tests/test_merge.py,sha256=SYomowjwdmIcgip1-Ht-CMsnOORLTFLQ0QS_T0GxEBI,14107
|
|
56
|
-
maxframe/codegen/spe/dataframe/tests/test_reduction.py,sha256=
|
|
56
|
+
maxframe/codegen/spe/dataframe/tests/test_reduction.py,sha256=jQCqch4QMPYaFw8IyA9X1TZ3XDB4iqlh5c8lfCt4-8s,4021
|
|
57
57
|
maxframe/codegen/spe/dataframe/tests/test_reshape.py,sha256=qXvIoCzhPV622eW_G21nzPyX1mP9tdPyRBii6L0HPDs,2358
|
|
58
58
|
maxframe/codegen/spe/dataframe/tests/test_sort.py,sha256=9O9uRPJ0SuKAN3Dpm1VFAL1-kNRBKwD3Ek7aoZtO9qw,6204
|
|
59
59
|
maxframe/codegen/spe/dataframe/tests/test_statistics.py,sha256=c-niNErZQYeJKBZoFhf9-uP8PtTICZFQNcJt-cuUtvw,2341
|
|
@@ -88,7 +88,7 @@ maxframe/codegen/spe/dataframe/tests/missing/test_fillna.py,sha256=VHi-8y5rP_wA1
|
|
|
88
88
|
maxframe/codegen/spe/dataframe/tests/missing/test_replace.py,sha256=D4V3zcvbmsQiqYaMSlPAnUVVhdFjNl_u2_2PH0-HRoE,1602
|
|
89
89
|
maxframe/codegen/spe/learn/__init__.py,sha256=RwNVRG6u3bruWK5p4-lZed6XzlJXdo2Tf11qHXTZ2lc,665
|
|
90
90
|
maxframe/codegen/spe/learn/contrib/__init__.py,sha256=OXcLuPLXGC2XguuBkaU1EjZzWKGkx2BB5G-tqscbPQY,661
|
|
91
|
-
maxframe/codegen/spe/learn/contrib/lightgbm.py,sha256=
|
|
91
|
+
maxframe/codegen/spe/learn/contrib/lightgbm.py,sha256=8RvuwdZ7sb9apelx3GkVzcIw_ikuwGObmb2qD1KnBkI,5840
|
|
92
92
|
maxframe/codegen/spe/learn/contrib/models.py,sha256=S4iV8ZHaYKeN4lqYiLy9dlvgXOc9Ys3h0mSsWbnlvx4,1820
|
|
93
93
|
maxframe/codegen/spe/learn/contrib/pytorch.py,sha256=85oycqtDXiGiHYwVewY4LjIVMtE4bDiOiRNOgHMaEuc,1947
|
|
94
94
|
maxframe/codegen/spe/learn/contrib/xgboost.py,sha256=z7w-s-9xvi1CKcbWSFnjIkR4IGrA0-ww6yUrL53xxGE,5395
|
|
@@ -129,7 +129,7 @@ maxframe/codegen/spe/learn/utils/tests/test_validation.py,sha256=nbWmQaS-HF2NqlJ
|
|
|
129
129
|
maxframe/codegen/spe/tensor/__init__.py,sha256=Gy3mkRfGm9V_qhlRmfTMeqdZP0e9131EMawCGCZGhmA,843
|
|
130
130
|
maxframe/codegen/spe/tensor/arithmetic.py,sha256=T4QurE14_yfcUL1fW3ImwXX99UfG9emXhyzknmxao6I,3757
|
|
131
131
|
maxframe/codegen/spe/tensor/core.py,sha256=PdH-2OmfkUS5gN5cVA6JH49nJcJZEsHMvuWkuOfx2fk,1572
|
|
132
|
-
maxframe/codegen/spe/tensor/datasource.py,sha256=
|
|
132
|
+
maxframe/codegen/spe/tensor/datasource.py,sha256=qFSLI3bdt1mbvNSeqFcLBjvL2iqDQrcyx0qdYARmEOI,6445
|
|
133
133
|
maxframe/codegen/spe/tensor/extensions.py,sha256=qNQgtzfnZdaR8dSq6bT7kKlryS7mHiQPPrI0ec5xTQk,1544
|
|
134
134
|
maxframe/codegen/spe/tensor/fetch.py,sha256=gJPvVEC9ZACjAOByH7SZop7WzSsZUDcf5Mga-lknf10,1062
|
|
135
135
|
maxframe/codegen/spe/tensor/fft.py,sha256=aAVx4QKSsZ5jt8i9b2W00BBZ9LKRGdwudNdRLY-sfrg,3440
|
|
@@ -166,29 +166,29 @@ maxframe/codegen/spe/tests/test_spe_codegen.py,sha256=N8hGdrgijdap6lmLvgqmMh7UyX
|
|
|
166
166
|
maxframe/codegen/tests/__init__.py,sha256=4LpNXO11JAdLjSut3p036oEEXlDEB-6AURW9oci5W5Y,609
|
|
167
167
|
maxframe/codegen/tests/test_codegen.py,sha256=byLlIGVFEHkQo1kYTXzhZKrgzfvmVnjOVC8uAirTO7o,2196
|
|
168
168
|
maxframe/config/__init__.py,sha256=16nesh8iIn5JthkjUlRR2SRB0R5MU6FHdN71mpRzEMw,671
|
|
169
|
-
maxframe/config/config.py,sha256=
|
|
169
|
+
maxframe/config/config.py,sha256=HuewjUw4NCBMsjpSB2ayOSIbPJ4x6PRLTJ1hF8o8cgA,19760
|
|
170
170
|
maxframe/config/validators.py,sha256=4dJw3LwafqaXUk6huHQhiJfld1OF1CpguclGyUhM2ik,4130
|
|
171
171
|
maxframe/config/tests/__init__.py,sha256=4LpNXO11JAdLjSut3p036oEEXlDEB-6AURW9oci5W5Y,609
|
|
172
172
|
maxframe/config/tests/test_config.py,sha256=k-ARyl0DiBP_ecNWgzQbOsziGQNTGfmITcZljFf6T0I,3333
|
|
173
173
|
maxframe/config/tests/test_validators.py,sha256=JlU8_b6V64QxNdnqPX_lQTzlyNq3C7kZHPEMQbV9-gY,1615
|
|
174
174
|
maxframe/core/__init__.py,sha256=Zu1qm30BTGoI5erjljAViucy6HNqLPO1ghvs6FE2EDw,1590
|
|
175
175
|
maxframe/core/accessor.py,sha256=e7qkQ8oXK-_dKRZYs2pce5y-V0tWyEQquZdKbJ5Wrdc,1588
|
|
176
|
-
maxframe/core/base.py,sha256=
|
|
176
|
+
maxframe/core/base.py,sha256=43rKu-Y34X8dRrgf-tfU9ddkclHQ7aWrIB-2VK2V1yg,4745
|
|
177
177
|
maxframe/core/context.py,sha256=Y5NntQoHbFdwE5MCbHoGExkHRQBeXc6wUNoUY-gyoWw,2666
|
|
178
|
-
maxframe/core/mode.py,sha256=
|
|
178
|
+
maxframe/core/mode.py,sha256=bXVts9D-ykEIo1MhKtMmqAwZLEQ0eQyiv9r-GPJNZZk,3223
|
|
179
179
|
maxframe/core/entity/__init__.py,sha256=EHuteCnoOq7HsM4vTBENcThUFYOZjbZgk2y-z9lMOek,1130
|
|
180
180
|
maxframe/core/entity/core.py,sha256=QkT6os09sIa4sA09ygZ2kMTp5Zoea6TzP1eiHq-wObE,4101
|
|
181
181
|
maxframe/core/entity/executable.py,sha256=xojyy3u8MTQHX7WFPieoquMvlFenHLcZvDlLMuhlu04,11293
|
|
182
182
|
maxframe/core/entity/objects.py,sha256=IteCK82VH7Ob6kyemyJt5NmUt7czFCfnaClE4VgHCu0,4240
|
|
183
183
|
maxframe/core/entity/output_types.py,sha256=S1p3gegOdAfAOWS8W_FDAYcTnmLWh3_QrtzQYdQKakU,2851
|
|
184
|
-
maxframe/core/entity/tileables.py,sha256=
|
|
184
|
+
maxframe/core/entity/tileables.py,sha256=D_dj9Kx6kl9QicTIcRMhXJnezz_YCtJKfPVrln6MmQI,11908
|
|
185
185
|
maxframe/core/entity/utils.py,sha256=9SFooWpBjBnIwiLid3XzeUymZnQjYZSG-vghULFQUQI,1484
|
|
186
186
|
maxframe/core/entity/tests/__init__.py,sha256=4LpNXO11JAdLjSut3p036oEEXlDEB-6AURW9oci5W5Y,609
|
|
187
187
|
maxframe/core/entity/tests/test_objects.py,sha256=ER3qvVndy5q-tlF6Qc0Z0AF_ylvTITIDvD4Qest3y2w,1465
|
|
188
188
|
maxframe/core/graph/__init__.py,sha256=AwNyGKu1kwXx0Tl8xGJ_pQkpOW6EvKMCCO0PIU_6MIg,895
|
|
189
|
-
maxframe/core/graph/core.cp38-win32.pyd,sha256=
|
|
189
|
+
maxframe/core/graph/core.cp38-win32.pyd,sha256=k0Ean-_MMpb1hh-5hivtUj9d_vX0u7pamtedDB9mdpY,219136
|
|
190
190
|
maxframe/core/graph/core.pyx,sha256=yv-P9NAqwXPdq_bvWOT137pdMEdLzoNpS42rx7o6wjI,16582
|
|
191
|
-
maxframe/core/graph/entity.py,sha256=
|
|
191
|
+
maxframe/core/graph/entity.py,sha256=ZhskLJD2zTWFip8ae-8_J3vEyTSMrfst6g3M_kUaPVA,5582
|
|
192
192
|
maxframe/core/graph/builder/__init__.py,sha256=NjIcWQ1ZtEbRJalz8XH1UKaQLpsvOqouRPeRBaul5cA,655
|
|
193
193
|
maxframe/core/graph/builder/base.py,sha256=dSceBH6ra5t_khrlHBpYSO1R9Goe0pdqvNzKWzNoDEI,2712
|
|
194
194
|
maxframe/core/graph/builder/tileable.py,sha256=OA-ljojBSA-t8VTkxAqmq_33Bb2qVAWsQcK8nwLcW48,1207
|
|
@@ -206,13 +206,12 @@ maxframe/core/operator/tests/__init__.py,sha256=4LpNXO11JAdLjSut3p036oEEXlDEB-6A
|
|
|
206
206
|
maxframe/core/operator/tests/test_core.py,sha256=lM-SyMKNkwqBWdYmBIIULs9eE7qs8-_BqytyRamucWY,1755
|
|
207
207
|
maxframe/core/tests/__init__.py,sha256=4LpNXO11JAdLjSut3p036oEEXlDEB-6AURW9oci5W5Y,609
|
|
208
208
|
maxframe/core/tests/test_mode.py,sha256=8MN3zXFAkiaxSKhEc_ToY1C91dKBHJIYNvW7nVmqSJ0,2507
|
|
209
|
-
maxframe/dataframe/__init__.py,sha256=
|
|
210
|
-
maxframe/dataframe/
|
|
211
|
-
maxframe/dataframe/core.py,sha256=awUeoq6KqFGs6nU659qMidsDPJu5VbAR7RsUveqfnrw,75776
|
|
209
|
+
maxframe/dataframe/__init__.py,sha256=EHFFExRlZErPbi9blv5ZCRqOgpg_6HpbM2jeARw758c,2538
|
|
210
|
+
maxframe/dataframe/core.py,sha256=x0OdedW6zq-5SJFp4M3ITnHnBUxADQMGSX2chaz2By0,75118
|
|
212
211
|
maxframe/dataframe/initializer.py,sha256=SiTh1ibIILZf-E3cSZ8bfgNuFd-YpckdWDphUGpMPJE,11150
|
|
213
212
|
maxframe/dataframe/operators.py,sha256=qONH6TL7DNHkGxhKMU2LP4kQz6tTiuzoIYVcryYwp3Y,6821
|
|
214
213
|
maxframe/dataframe/typing_.py,sha256=dAS2vxd5VPf8yFORBV4lrb3GqRnVFcLtHI3KtxrB0DI,5961
|
|
215
|
-
maxframe/dataframe/utils.py,sha256
|
|
214
|
+
maxframe/dataframe/utils.py,sha256=-u3aQMtRPncKBTnsnJ-MVkXfWphBXpkOvedXvzdu4aU,58385
|
|
216
215
|
maxframe/dataframe/accessors/__init__.py,sha256=vARWvA6GASCM-rQPBhwdMYcHt12tK_fNVCAIvx_q8l0,678
|
|
217
216
|
maxframe/dataframe/accessors/compat.py,sha256=tHCtBGAAr5RyEpRX5SwxmrzcBeNrxDSV3eyCalnRCKs,1535
|
|
218
217
|
maxframe/dataframe/accessors/datetime_/__init__.py,sha256=zXfqOCYzLc2pEaVtIiYyJJ8_6dP_irodagKRxsOnJcE,1231
|
|
@@ -253,7 +252,7 @@ maxframe/dataframe/accessors/struct_/dtypes.py,sha256=9qNSQQm4zg6jcOVH3JUks68dTt
|
|
|
253
252
|
maxframe/dataframe/accessors/struct_/field.py,sha256=TFSREs0Ac5qGD5VztgkZJLJ8_-AbKHNFuMkGbJu145k,3880
|
|
254
253
|
maxframe/dataframe/accessors/struct_/tests/__init__.py,sha256=4LpNXO11JAdLjSut3p036oEEXlDEB-6AURW9oci5W5Y,609
|
|
255
254
|
maxframe/dataframe/accessors/struct_/tests/test_struct_accessor.py,sha256=q-B7vCin1c_VMh1XwR5q0A4tPRWB2hJOfJt2WVsxwX8,2828
|
|
256
|
-
maxframe/dataframe/arithmetic/__init__.py,sha256=
|
|
255
|
+
maxframe/dataframe/arithmetic/__init__.py,sha256=1BHHtZRDzPQV2Qp1nXQlCxYcauAPFPxg4xEfAnpbU7s,13321
|
|
257
256
|
maxframe/dataframe/arithmetic/abs.py,sha256=gu1hUmtP5h2ps-X7cB_e2Iyq2xYpj1jT_UzG8S0TvxA,1016
|
|
258
257
|
maxframe/dataframe/arithmetic/add.py,sha256=b_nSJ19j5qGrHeWN0yjBNbWOncF3Qmr1EGmRwHQQKao,1766
|
|
259
258
|
maxframe/dataframe/arithmetic/arccos.py,sha256=wupyUmd6-A5tH1wdunMg1kMO447Tqn1RW0ZyFwfE90A,958
|
|
@@ -288,6 +287,8 @@ maxframe/dataframe/arithmetic/less_equal.py,sha256=YvF7XZyY1F2m-yTaqcDJ9UFrQGVq7
|
|
|
288
287
|
maxframe/dataframe/arithmetic/log.py,sha256=1iXJR5Lr3KW4opfZuI0t11es2MB96hYEm0s3l8LMRyc,943
|
|
289
288
|
maxframe/dataframe/arithmetic/log10.py,sha256=gZg8HE0RIz0tp9ss2mjAXRRkVhlN1lH2sFs9ZStCby8,953
|
|
290
289
|
maxframe/dataframe/arithmetic/log2.py,sha256=I2mvhdZZ62P_E-6O5okYmQD9WbbIzTPVbAjrgEDuMf8,948
|
|
290
|
+
maxframe/dataframe/arithmetic/maximum.py,sha256=k6YVAaI0QqmpcKtU_E1qiDIu1liCmyckHQOsas_82NI,1032
|
|
291
|
+
maxframe/dataframe/arithmetic/minimum.py,sha256=ZvciICsWOMiWHO1QeSSMCLs3CT7ULnAEspHqrtQltaU,1032
|
|
291
292
|
maxframe/dataframe/arithmetic/mod.py,sha256=n2yzITZfnPg4PhpDmD-0qMusNzatyS9MVXa993xKZAo,1762
|
|
292
293
|
maxframe/dataframe/arithmetic/multiply.py,sha256=Jb4lrR9QDrvivFqhBrySFB8PfIF4l2Rw_byLi_gVdbo,1793
|
|
293
294
|
maxframe/dataframe/arithmetic/negative.py,sha256=B4KcbnUj49PyCIil9x23QKLAR9ONAiQ96tRxKEEss4Q,1040
|
|
@@ -306,25 +307,27 @@ maxframe/dataframe/arithmetic/trunc.py,sha256=D_d4GYsEPBdrdfRL1XLFvMrZ6bL1OIGL-u
|
|
|
306
307
|
maxframe/dataframe/arithmetic/tests/__init__.py,sha256=4LpNXO11JAdLjSut3p036oEEXlDEB-6AURW9oci5W5Y,609
|
|
307
308
|
maxframe/dataframe/arithmetic/tests/test_arithmetic.py,sha256=iRi8KxX1Ib22GooXrZ8ekNXcito1bQ8Ib0KuTSUYPoM,26120
|
|
308
309
|
maxframe/dataframe/datasource/__init__.py,sha256=elYqORyXXmb_08ZPxEBYT-qvdUqHdLTM4zVLhZsEqGU,1198
|
|
309
|
-
maxframe/dataframe/datasource/core.py,sha256=
|
|
310
|
+
maxframe/dataframe/datasource/core.py,sha256=BGYHKIuJVUbfPY7NQAZe9zy94U8CN5zQAHmV9H9hb54,3238
|
|
310
311
|
maxframe/dataframe/datasource/dataframe.py,sha256=_EJaT_b1i6XIZpyqSudAPdOS4n3l_S5aRcKOMov26NQ,2082
|
|
311
312
|
maxframe/dataframe/datasource/date_range.py,sha256=_4pPmk8bcvwkR0UBkM9X7e2re3JGvpH6PvgjfKwtGT0,18039
|
|
313
|
+
maxframe/dataframe/datasource/direct.py,sha256=YvRjWBjRTeb8VoyDFsWDuk2Nk1krf2gVFMI8xPH48g4,1872
|
|
312
314
|
maxframe/dataframe/datasource/from_dict.py,sha256=EfyiHopZfg60BvMgNqb9VnY4BHmVrVZKnL9XKCON4bA,4362
|
|
313
315
|
maxframe/dataframe/datasource/from_index.py,sha256=FYUZvQBSawnZFmY3aCV7_H2CM20U_W-D1A62DoWy9GQ,2017
|
|
314
316
|
maxframe/dataframe/datasource/from_records.py,sha256=R19uYkmFASDDGYgt82LnnkVbMqrE5v7W1FyKXkVsj78,6412
|
|
315
317
|
maxframe/dataframe/datasource/from_tensor.py,sha256=5syh18LYy-NXXBhmbtxhxH5HUOcK0fJ3jjfyigKwdNw,18436
|
|
316
318
|
maxframe/dataframe/datasource/index.py,sha256=LUOaSY3jScY65h4TSryXMfQJGdUWWXmnoS1IP9ah5aw,4518
|
|
317
|
-
maxframe/dataframe/datasource/read_csv.py,sha256=
|
|
318
|
-
maxframe/dataframe/datasource/read_odps_query.py,sha256=
|
|
319
|
-
maxframe/dataframe/datasource/read_odps_table.py,sha256=
|
|
320
|
-
maxframe/dataframe/datasource/read_parquet.py,sha256=
|
|
319
|
+
maxframe/dataframe/datasource/read_csv.py,sha256=dbI4SYBsIvtJUZ4PJZAwopCRd0G1x8xC3OCoY5GfHN0,25096
|
|
320
|
+
maxframe/dataframe/datasource/read_odps_query.py,sha256=YVRgC-hnDW9JKvAx_N_SbhOvkZeCbzY78ZPbUD8ljPc,18966
|
|
321
|
+
maxframe/dataframe/datasource/read_odps_table.py,sha256=LVOQquZHunl3yk6hS0fmxYr5mQ88eYWmFemavE_d7ZQ,11012
|
|
322
|
+
maxframe/dataframe/datasource/read_parquet.py,sha256=k6sEiTIxJYxmN1MPciFENwDJZo48IUfPZoAUznY5AtA,15441
|
|
321
323
|
maxframe/dataframe/datasource/series.py,sha256=9GmE-UVQ_eeFI53UuWiF6rQSqQ1mp4RkBVRWIhKNw2k,1964
|
|
322
324
|
maxframe/dataframe/datasource/tests/__init__.py,sha256=4LpNXO11JAdLjSut3p036oEEXlDEB-6AURW9oci5W5Y,609
|
|
323
325
|
maxframe/dataframe/datasource/tests/test_datasource.py,sha256=uYiU3iVM36XDrLReUWuzJkxEKElIxOP7dg_Rv2Ucm6M,23494
|
|
324
|
-
maxframe/dataframe/datastore/__init__.py,sha256=
|
|
326
|
+
maxframe/dataframe/datastore/__init__.py,sha256=zxeg-v2bOshT4IKoYjIonp6cWOCckifOSkbnvdOl--U,1192
|
|
325
327
|
maxframe/dataframe/datastore/core.py,sha256=uNAcFyUgjn_LxUHk7IjqRlAWNeru77Ub-dZ15M5WDjA,762
|
|
328
|
+
maxframe/dataframe/datastore/direct.py,sha256=PzwDrirHGaIbzsQcBRrF_Cw7CA8cBLmdhYNPiq45MWU,8721
|
|
326
329
|
maxframe/dataframe/datastore/to_csv.py,sha256=bfiLkkO-PVbo1OLeDAIgOJE_HZhVYp4umGioZnhpQnU,8129
|
|
327
|
-
maxframe/dataframe/datastore/to_odps.py,sha256=
|
|
330
|
+
maxframe/dataframe/datastore/to_odps.py,sha256=OmSlgl6aY-lgvGCNtkkQNLM3AKbkYmFpXfCV365twck,10094
|
|
328
331
|
maxframe/dataframe/datastore/tests/__init__.py,sha256=4LpNXO11JAdLjSut3p036oEEXlDEB-6AURW9oci5W5Y,609
|
|
329
332
|
maxframe/dataframe/datastore/tests/test_to_odps.py,sha256=biPyEnfSF8IeoUuI2T7dLYoY4C-l3iU-McghOL6vIIA,3088
|
|
330
333
|
maxframe/dataframe/extensions/__init__.py,sha256=eEJP1SY7V217C688w5vzkvZ4vbCWvqA9v3eh9NoalLo,2813
|
|
@@ -333,7 +336,7 @@ maxframe/dataframe/extensions/apply_chunk.py,sha256=kTNjL-pOnvCWvJqiwYdmz86BoUrK
|
|
|
333
336
|
maxframe/dataframe/extensions/cartesian_chunk.py,sha256=HcMPRmP39Ll7xKoOYHPaSXK-fNjLY-kpqCSpbYRF4R4,5441
|
|
334
337
|
maxframe/dataframe/extensions/collect_kv.py,sha256=cwyWkLhK6R3RokMZxKE3-iPlwTyuNLYe2MKeZ3A_xUw,4360
|
|
335
338
|
maxframe/dataframe/extensions/extract_kv.py,sha256=8FvTTB7vybEnxWCY8FjrWb6_AMqjP4bK_ZG3YBW0p_k,6440
|
|
336
|
-
maxframe/dataframe/extensions/flatjson.py,sha256=
|
|
339
|
+
maxframe/dataframe/extensions/flatjson.py,sha256=lLfQLrx32oHBnp-EjTVV6Klk_BfXBfle-PaGUJ4qGYI,4569
|
|
337
340
|
maxframe/dataframe/extensions/flatmap.py,sha256=mAVAREjA2fmjqAO9ZWNg9UyLE10x2LI-8SXYn3-fsMM,10847
|
|
338
341
|
maxframe/dataframe/extensions/map_reduce.py,sha256=aW7XCNvLFH9vjYcCjyvUUbYrufJ_6quELvLqFBJGmSQ,9206
|
|
339
342
|
maxframe/dataframe/extensions/rebalance.py,sha256=a1BWVdJKYbhsyvl1g60H3Isx8xQ64W7xN9u-j2uyw8k,2270
|
|
@@ -344,11 +347,11 @@ maxframe/dataframe/extensions/tests/test_extensions.py,sha256=tad4Okv4F0O6MCs-tD
|
|
|
344
347
|
maxframe/dataframe/extensions/tests/test_map_reduce.py,sha256=WyoLxmytj_fafxLJ-XdD-UPXdHid2bLmaKaESkKL3uk,4497
|
|
345
348
|
maxframe/dataframe/fetch/__init__.py,sha256=q9Eu7odmT29Xp2iPsNdOp46T-w2_4LxT4pb26sXhTKc,668
|
|
346
349
|
maxframe/dataframe/fetch/core.py,sha256=_g0LTJr-p5Z5AIHbgB3ibLcdP7NPlhs5KDd5s43RLf8,3841
|
|
347
|
-
maxframe/dataframe/groupby/__init__.py,sha256=
|
|
348
|
-
maxframe/dataframe/groupby/aggregation.py,sha256=
|
|
350
|
+
maxframe/dataframe/groupby/__init__.py,sha256=WDx1KC3x5cWRL3XYTftse2__IK811jT1bQ1JlpCtXns,4342
|
|
351
|
+
maxframe/dataframe/groupby/aggregation.py,sha256=2tnc2-2nm3tnhbIII8kK58PnxdkX8XqlaefliWs5KSY,15361
|
|
349
352
|
maxframe/dataframe/groupby/apply.py,sha256=gIjelt61SJcItNbw2xgXwwl_jbW3fn1BX38uN9sQNXQ,8696
|
|
350
|
-
maxframe/dataframe/groupby/apply_chunk.py,sha256=
|
|
351
|
-
maxframe/dataframe/groupby/core.py,sha256=
|
|
353
|
+
maxframe/dataframe/groupby/apply_chunk.py,sha256=NdOR6vLB2_QA-Uj8rJlWbANE-lJoMr7smjoUVrRHVTw,14843
|
|
354
|
+
maxframe/dataframe/groupby/core.py,sha256=ZBMZVcdjLzylp7lFPzsZHCouiysqgfUoKuJbP1TDe_o,12361
|
|
352
355
|
maxframe/dataframe/groupby/cum.py,sha256=RDc-Rlqkr6wUEvdQS0N756RCODfghPKt__MvqxruOQE,3411
|
|
353
356
|
maxframe/dataframe/groupby/expanding.py,sha256=jMvoAzACKzDmf7eBJ8bb376ya4ezuBtiOqspTdAcuKs,7156
|
|
354
357
|
maxframe/dataframe/groupby/extensions.py,sha256=IPjoLxFGTDzpdRAqiif9Y-qDytAu0JpSYbHKXfJBnks,941
|
|
@@ -362,7 +365,7 @@ maxframe/dataframe/groupby/shift.py,sha256=q-bfMqxlz3bYc7Jfo1tPBEBLJiRgks-7Ip-AQ
|
|
|
362
365
|
maxframe/dataframe/groupby/transform.py,sha256=ClJ5zMD1cWjTgWroB0LebNiqIYOXr62pGF0PzbRXeVk,8837
|
|
363
366
|
maxframe/dataframe/groupby/tests/__init__.py,sha256=4LpNXO11JAdLjSut3p036oEEXlDEB-6AURW9oci5W5Y,609
|
|
364
367
|
maxframe/dataframe/groupby/tests/test_groupby.py,sha256=QSuDezIZ21TcloISt9ctpU84EaeYYe7pZH-q1ukUgxM,12523
|
|
365
|
-
maxframe/dataframe/indexing/__init__.py,sha256=
|
|
368
|
+
maxframe/dataframe/indexing/__init__.py,sha256=JqmnmqlDeNdtzzk8Dxr_zb7f_nLwLiy_lKXRACI0f7A,4291
|
|
366
369
|
maxframe/dataframe/indexing/add_prefix_suffix.py,sha256=BktGLizrnQ6Ccq_PHJ-Ga4dAiaBQuYXBNMhEfFwrv5k,3076
|
|
367
370
|
maxframe/dataframe/indexing/align.py,sha256=Pq68HmHdpJXgNkhaz2WVgylcUdl_9RG6gjwWv3owZSk,12509
|
|
368
371
|
maxframe/dataframe/indexing/at.py,sha256=96TI3VkkKBh9RKvWjd3aYHAWLvXkOHcUL0dvlsSzLC0,2300
|
|
@@ -372,7 +375,7 @@ maxframe/dataframe/indexing/get_level_values.py,sha256=9tZmbytS1YVAkfI9L7EzNT_o-
|
|
|
372
375
|
maxframe/dataframe/indexing/getitem.py,sha256=ZhQesfrUtpIFDRMaq2lnY5RSd2jsKxmA5u-ydrMdSW4,8042
|
|
373
376
|
maxframe/dataframe/indexing/iat.py,sha256=S_Msxj-oC4-2yf7U_rFs_iXrgn5SJtsgkza7z-VqJgE,2326
|
|
374
377
|
maxframe/dataframe/indexing/iloc.py,sha256=OvhfT8q2KW9Gsc0OhipYLbtYWA5q9OXx7TuPlsrXQU0,22350
|
|
375
|
-
maxframe/dataframe/indexing/insert.py,sha256=
|
|
378
|
+
maxframe/dataframe/indexing/insert.py,sha256=ilDg_2o_5Rj5_dipj31bBbgkL_ZyVJMQow7bPjYbD5Q,3917
|
|
376
379
|
maxframe/dataframe/indexing/loc.py,sha256=quRzOdXxR2Vx5Gl1BeKLxYiZIVM7bGRoSu0j8533o9c,24629
|
|
377
380
|
maxframe/dataframe/indexing/reindex.py,sha256=1IGOVGy9WtwB3ZUuuJb85p0IzJhA3j4DntsRJ8Yw4JI,19890
|
|
378
381
|
maxframe/dataframe/indexing/rename.py,sha256=WOHOyU_iaMR-PHkDSUPa8RYBI4N5DGaNnZQNbPhBjE8,13558
|
|
@@ -390,8 +393,9 @@ maxframe/dataframe/indexing/where.py,sha256=JYWVHwzI52z47qWpP6H1G1cpQvxBaMs6Ho_g
|
|
|
390
393
|
maxframe/dataframe/indexing/xs.py,sha256=nP6_gkOOzXOuLrEmcpvpVQigDhFf65-NeDXOQIIXNQY,4954
|
|
391
394
|
maxframe/dataframe/indexing/tests/__init__.py,sha256=4LpNXO11JAdLjSut3p036oEEXlDEB-6AURW9oci5W5Y,609
|
|
392
395
|
maxframe/dataframe/indexing/tests/test_indexing.py,sha256=9vjCrHEW3yJxVLMUZ2aKnHgb-9pY7ILQz27ZQwWKDfA,16099
|
|
393
|
-
maxframe/dataframe/merge/__init__.py,sha256=
|
|
396
|
+
maxframe/dataframe/merge/__init__.py,sha256=4J-Rv1mZiHkIlJ7GNaQS9JoGAb3AMKgjxjCY7tg78cM,1809
|
|
394
397
|
maxframe/dataframe/merge/append.py,sha256=jpWjMPsNi2A6sccglUzTv1BcegjFPRVeVMkVhnCaCxs,3598
|
|
398
|
+
maxframe/dataframe/merge/combine.py,sha256=EIxdUD59k6KNGQ8edIGyoprdD4G2vQBuFaWVbmKweu8,8040
|
|
395
399
|
maxframe/dataframe/merge/combine_first.py,sha256=-5o_7EJRAo2q7wZfZ6HxnQAwyBUwBHoFn1h-6So77Is,3809
|
|
396
400
|
maxframe/dataframe/merge/compare.py,sha256=6QDT21PTDqvntDuvD9QuSI5EardaDmNUZddcOTyE0EA,11917
|
|
397
401
|
maxframe/dataframe/merge/concat.py,sha256=6LWhqeT9Mabc8aTOJwEQXSHSRx6TvJ9Rgk4AvN8HA00,18069
|
|
@@ -399,29 +403,31 @@ maxframe/dataframe/merge/merge.py,sha256=DZr3JtN_SgPqi7kuvQLZJozYCOUtix3n6U1rB7P
|
|
|
399
403
|
maxframe/dataframe/merge/update.py,sha256=JDGWYkxIPhDgXlrJi1aZA7XpXlukkr4lCRHFi_qJOvs,8146
|
|
400
404
|
maxframe/dataframe/merge/tests/__init__.py,sha256=4LpNXO11JAdLjSut3p036oEEXlDEB-6AURW9oci5W5Y,609
|
|
401
405
|
maxframe/dataframe/merge/tests/test_merge.py,sha256=RSSYcqSB5aqjPHyk7slUpxLvGoN2Q_LkkfmESmwSbEo,13355
|
|
402
|
-
maxframe/dataframe/misc/__init__.py,sha256=
|
|
406
|
+
maxframe/dataframe/misc/__init__.py,sha256=mJSZcN1aUONc8inmJvvmhQk0PlYX2snXXLsPPTaz-v4,6025
|
|
403
407
|
maxframe/dataframe/misc/_duplicate.py,sha256=PkK-5Hbe8gZazfKq_wqdajZyxVRWTsRJ0hcOCNK9x5I,1809
|
|
404
408
|
maxframe/dataframe/misc/apply.py,sha256=93bMAaiIKwpLF0fCXix08C7XEf7frLtal0TXEojQuWg,24883
|
|
405
409
|
maxframe/dataframe/misc/astype.py,sha256=fxgBonaj5ybTZ2Grgy94X3n9ftK50OR7H8ImZRqhnTc,8110
|
|
406
410
|
maxframe/dataframe/misc/case_when.py,sha256=m3KQNZhdPD2q-80CcSIKhFyuYKD4JtS2-H_kuiuaEiA,5128
|
|
407
411
|
maxframe/dataframe/misc/check_monotonic.py,sha256=v8UA6vci4LkFNoVTK8pDb7IPKXtaHKEMGmgl7mMqEjo,2506
|
|
408
|
-
maxframe/dataframe/misc/check_unique.py,sha256=
|
|
412
|
+
maxframe/dataframe/misc/check_unique.py,sha256=tdix3g6sM7sj6nlpUupf4moMrF0XciGQUfHxuc97iAc,2031
|
|
409
413
|
maxframe/dataframe/misc/clip.py,sha256=BSZ4MPYhAVxvfl-rRzIWA9Z79nhDMa0zDhrHsQGJhHY,4788
|
|
410
414
|
maxframe/dataframe/misc/cut.py,sha256=6-tNY7WheRZ2kBX28exyNaq-uLZCZTtTNDfBfMXbKXo,14436
|
|
411
415
|
maxframe/dataframe/misc/describe.py,sha256=D5O2hb3hhZiVoFhxaYB6qGRLeXfRjwuvNgfOdTGZrPw,10321
|
|
412
416
|
maxframe/dataframe/misc/diff.py,sha256=iUHG2GZ8lyCmgSF5TKOyiWNaMQuTUKJE3Z_TdjHypx0,5701
|
|
413
|
-
maxframe/dataframe/misc/drop.py,sha256=
|
|
417
|
+
maxframe/dataframe/misc/drop.py,sha256=3XgfvwcOWaezLxNI5no1hFUYhxaALMeHWiPK-oNyURU,14096
|
|
414
418
|
maxframe/dataframe/misc/drop_duplicates.py,sha256=0XnnIcMxgijOCBsHU08fek6B0u_7d8USkLSy70eoFLk,8938
|
|
415
419
|
maxframe/dataframe/misc/duplicated.py,sha256=4RTrTSrpRpTu-PcwgMOLjODTmeRshHc6c7TWShxc1CY,8824
|
|
416
420
|
maxframe/dataframe/misc/eval.py,sha256=QLrm2IoB4ihVQNtWPb6XYoRHy2Kxv-sL118za_GCEyQ,25043
|
|
417
421
|
maxframe/dataframe/misc/explode.py,sha256=_Z1DVOmQ3-kytbUaUOXBUtd9nqCtxu__X7AUHPrr8rc,5182
|
|
418
422
|
maxframe/dataframe/misc/get_dummies.py,sha256=WO9md7gfBah6j-4_RGda5afxDyTkog7OOnVf7JZyiVs,8043
|
|
423
|
+
maxframe/dataframe/misc/infer_dtypes.py,sha256=5m8zQmHXYpdug8RMqwV9qD95e9o4LIQZxMzZYmiOH8I,8318
|
|
419
424
|
maxframe/dataframe/misc/isin.py,sha256=xeiLZeexq--3lredxQ2JrixYndhQLbpRknQkdltCQiQ,7286
|
|
420
|
-
maxframe/dataframe/misc/map.py,sha256=
|
|
425
|
+
maxframe/dataframe/misc/map.py,sha256=lrkQpSWo1HgH-8WceCSzZ2Br546Q59reSqbFIDHqqVg,12360
|
|
421
426
|
maxframe/dataframe/misc/memory_usage.py,sha256=Y3aXu020mGVt02LDOHQndC38WEz3h4P6ICBRTRWv6BU,8137
|
|
422
427
|
maxframe/dataframe/misc/pct_change.py,sha256=QqnfdWFCMX5JJzzbBDPhllruhKHRmMyX5zG_83rB-zg,2584
|
|
423
428
|
maxframe/dataframe/misc/qcut.py,sha256=1Br0gy9aEX7WJVH-WrnghNrofrUVrQftavwLvAN_9Hc,3841
|
|
424
429
|
maxframe/dataframe/misc/rechunk.py,sha256=t_kC4OoRcRG4-nvBiBzbGx9RWqejjmbKKg6Mp2QUH5I,2015
|
|
430
|
+
maxframe/dataframe/misc/repeat.py,sha256=n9c_N-NpWi8NhKC8vr_SZ3ouY-sWKWzCAKcHXrYpK-4,4712
|
|
425
431
|
maxframe/dataframe/misc/select_dtypes.py,sha256=427Uisn1SGCHUSs_mXvZHVv7QcTIGUuQy3IGVBcQGmU,3248
|
|
426
432
|
maxframe/dataframe/misc/shift.py,sha256=ZmZRSSSo-xYwz44biGTRlIe_uGGqCa0Y3V40atS6wF0,9287
|
|
427
433
|
maxframe/dataframe/misc/to_numeric.py,sha256=3l3Kz7RqHW2DHFIVl69ibIvL6ArXLGd4EiEKhZ5Bx8U,6503
|
|
@@ -430,21 +436,21 @@ maxframe/dataframe/misc/transpose.py,sha256=glmrZP6ojLvHZqszcT76KQAanskmuafLwNAe
|
|
|
430
436
|
maxframe/dataframe/misc/valid_index.py,sha256=x_YOiDC1d-hg224GBk3m6n6dn9e91C23Z3AMbCZWPVs,2734
|
|
431
437
|
maxframe/dataframe/misc/value_counts.py,sha256=64gALSoBIMC8i03m18oG6hIx_Ot8hpHilI4yg6h-yLA,6375
|
|
432
438
|
maxframe/dataframe/misc/tests/__init__.py,sha256=4LpNXO11JAdLjSut3p036oEEXlDEB-6AURW9oci5W5Y,609
|
|
433
|
-
maxframe/dataframe/misc/tests/test_misc.py,sha256=
|
|
439
|
+
maxframe/dataframe/misc/tests/test_misc.py,sha256=yRqAC8N35OGfW3IOsZUZa4XTd6W2V6EWNQzpcK3A_SI,21772
|
|
434
440
|
maxframe/dataframe/missing/__init__.py,sha256=6MeY8HvRUJEQu_a15Cmt2Q8_a3G6kg6ti9LA3olZr7Q,1866
|
|
435
|
-
maxframe/dataframe/missing/checkna.py,sha256=
|
|
441
|
+
maxframe/dataframe/missing/checkna.py,sha256=m2ojm_ONo838u69QruZR8nfdgW8Kttq7HzYi1cArt6g,7519
|
|
436
442
|
maxframe/dataframe/missing/dropna.py,sha256=qjLVIlIYWZaWM3nHFbD7MJ4JG9CNRF7-f8N1rPwpQ-Y,9014
|
|
437
443
|
maxframe/dataframe/missing/fillna.py,sha256=ggYj3KI2k-EG5ZTdm2C5mMjkWKCsna2C02QCJXfefUY,9457
|
|
438
444
|
maxframe/dataframe/missing/replace.py,sha256=sU7TxBkOiis5urFT_T9ixYGktr5gmWe8rX-i6lP3ayc,14048
|
|
439
445
|
maxframe/dataframe/missing/tests/__init__.py,sha256=4LpNXO11JAdLjSut3p036oEEXlDEB-6AURW9oci5W5Y,609
|
|
440
446
|
maxframe/dataframe/missing/tests/test_missing.py,sha256=LUSuQmhAtGceWGRWBbv9kxYRHqS4cPr6G-J8cwR8RLs,3217
|
|
441
|
-
maxframe/dataframe/reduction/__init__.py,sha256=
|
|
442
|
-
maxframe/dataframe/reduction/aggregation.py,sha256=
|
|
447
|
+
maxframe/dataframe/reduction/__init__.py,sha256=GZX-Zq4aMC7ZE0427nOV_i7z7HAjR7dThc_3h-aPxAI,5338
|
|
448
|
+
maxframe/dataframe/reduction/aggregation.py,sha256=13oea6lp8r8HPB67Iwg6jTI21A2AxRpQ0JK0bokPYb4,18330
|
|
443
449
|
maxframe/dataframe/reduction/all.py,sha256=kivgJrnomBJ3udq16DHVvyhbqYVxO4s3y_xOG0jaJMQ,2028
|
|
444
450
|
maxframe/dataframe/reduction/any.py,sha256=hop1p9vtjRJQ_m8GGsln2UV6Ob-Y9HDHHY0NOGVX90g,2032
|
|
445
|
-
maxframe/dataframe/reduction/argmax.py,sha256=
|
|
446
|
-
maxframe/dataframe/reduction/argmin.py,sha256=
|
|
447
|
-
maxframe/dataframe/reduction/core.py,sha256=
|
|
451
|
+
maxframe/dataframe/reduction/argmax.py,sha256=j_i2-7-giqQ0RcBn5kyKsCzTZbEktODn7H69-xShOog,3400
|
|
452
|
+
maxframe/dataframe/reduction/argmin.py,sha256=eVM2JksqIzO7wJGOOAvTwBgQSrzkNQ8gkc4TzbLuEY0,3400
|
|
453
|
+
maxframe/dataframe/reduction/core.py,sha256=Md-grZnyxrFNul3fq1700444mu6ge5fiZxaN5VHMRQE,33992
|
|
448
454
|
maxframe/dataframe/reduction/count.py,sha256=bJQLtsXuxKSr7GW9oP5RjlFbMOqJYWmpl1ZKlnrXUzI,2046
|
|
449
455
|
maxframe/dataframe/reduction/cov.py,sha256=90UGZO6rbyKESJbsCiytkHULW0EuhqYB_SE7Gy71Fqc,6376
|
|
450
456
|
maxframe/dataframe/reduction/cummax.py,sha256=vzOFasCORPSWRGgycq_qPzSliCItjOaRArCGqDvnKYA,1027
|
|
@@ -459,7 +465,8 @@ maxframe/dataframe/reduction/max.py,sha256=Owjr2TBEY8BhYH2eHbk8CMELkOSp-pJleU7NS
|
|
|
459
465
|
maxframe/dataframe/reduction/mean.py,sha256=2sFUolpZJlkiAtIzuuPxesXBSD1kxOZQR6O8S9V_APQ,1842
|
|
460
466
|
maxframe/dataframe/reduction/median.py,sha256=5xCAGdii1eNFgQfzAgiIqhRUcLu80QCzaV-8ge4x-_M,1633
|
|
461
467
|
maxframe/dataframe/reduction/min.py,sha256=WW2MLCX6xNF1CymhNNRU-H_Y7IvNFzTQkKchmT_8IUU,1709
|
|
462
|
-
maxframe/dataframe/reduction/
|
|
468
|
+
maxframe/dataframe/reduction/mode.py,sha256=_LfCnvHPxO-sRa4iyrOf1F84U5mlTT5rZqmOPznpGHA,5258
|
|
469
|
+
maxframe/dataframe/reduction/nunique.py,sha256=pebY3bIoXhfwrAerofqmTCawsepAD8mjA-QlhW9uqMs,4077
|
|
463
470
|
maxframe/dataframe/reduction/prod.py,sha256=vt9XcqqJSbb5hlpEQpJP87eZD43ClQ1CNgdgUGDlB4U,2354
|
|
464
471
|
maxframe/dataframe/reduction/reduction_size.py,sha256=HzXinySqYpusFYnp9agdSx18A4rsrbSaYczhxgd0mn4,1140
|
|
465
472
|
maxframe/dataframe/reduction/sem.py,sha256=H9zDjkbygQ6daQ6cuaJSv09PXxrhcvk_knZ4_VO5MZU,2156
|
|
@@ -470,18 +477,19 @@ maxframe/dataframe/reduction/sum.py,sha256=pWgNro8qZRRDyhpnojtecaW25kWxubA7_Gpgn
|
|
|
470
477
|
maxframe/dataframe/reduction/unique.py,sha256=Pv-MhxlWCrCbBsEejczkfEpG-KDYTUVfVHHScX7cZz8,5054
|
|
471
478
|
maxframe/dataframe/reduction/var.py,sha256=5iQ0xcWIksADtgf71-F1JWelBF0iqWWlKN2n86ObX5Q,2304
|
|
472
479
|
maxframe/dataframe/reduction/tests/__init__.py,sha256=4LpNXO11JAdLjSut3p036oEEXlDEB-6AURW9oci5W5Y,609
|
|
473
|
-
maxframe/dataframe/reduction/tests/test_reduction.py,sha256=
|
|
480
|
+
maxframe/dataframe/reduction/tests/test_reduction.py,sha256=AgcfXljQXWPQOmHB2GWz0xPZEu84bhkFhgkjaVD0-aw,19776
|
|
474
481
|
maxframe/dataframe/reshape/__init__.py,sha256=2zEAjIYzUIHMHBUyGn5eESyQUq57EvQovyMLcoJrYHk,1155
|
|
475
482
|
maxframe/dataframe/reshape/melt.py,sha256=IFFVwxtQ_VkrfCmJkjeDWsZQDeEcho_qZN4g0DMyBTk,5639
|
|
476
483
|
maxframe/dataframe/reshape/pivot.py,sha256=YLglgSzIE-nVG0uvUm_1qScqHVf1-FGQmQgPZV6SCdg,8031
|
|
477
484
|
maxframe/dataframe/reshape/pivot_table.py,sha256=KyfNPXoTLlaSqTG7Ukbk7vF9edBrCOl0mVGkzLzirwQ,10410
|
|
478
485
|
maxframe/dataframe/reshape/stack.py,sha256=DIkfGxsLiN1CnMSm_x1a1o0aDZLGYoOb96X5E5FAnrY,8289
|
|
479
486
|
maxframe/dataframe/reshape/unstack.py,sha256=bqloID1uQnjC7HwwevKFznn9zcv-TDqSKkjR6YMEcNM,3951
|
|
480
|
-
maxframe/dataframe/sort/__init__.py,sha256=
|
|
481
|
-
maxframe/dataframe/sort/argsort.py,sha256=
|
|
482
|
-
maxframe/dataframe/sort/core.py,sha256=
|
|
487
|
+
maxframe/dataframe/sort/__init__.py,sha256=sv7JHZcv329qhuiPuKtqEYkiOmqt0sxiUuapwFZfIUw,1837
|
|
488
|
+
maxframe/dataframe/sort/argsort.py,sha256=fenz-5Fl4d2_l3B4ggSA3a-3Hk8BHg41BTS-m00i40s,2338
|
|
489
|
+
maxframe/dataframe/sort/core.py,sha256=GeEmQJryUK5N-xPZBcqa1FLpdd753DXCnXl0UiLSlNA,1332
|
|
483
490
|
maxframe/dataframe/sort/nlargest.py,sha256=ieoZQKXstmxCfFJdR-EPOEW04i739tKXu9q9U-5GjPE,8192
|
|
484
491
|
maxframe/dataframe/sort/nsmallest.py,sha256=GyrYThfMdfqgrgGMoWWMXVhS4JK8C9vHEM8XMErq-Fk,7789
|
|
492
|
+
maxframe/dataframe/sort/rank.py,sha256=CgElO3m7NgIVUlyHWqZpqPwVjyri8NJdSgVgj0hyM98,5463
|
|
485
493
|
maxframe/dataframe/sort/sort_index.py,sha256=-K5_EGDspBpZrIOpeZPoQuaKpEbOK91sjdgdR3TqxpE,5565
|
|
486
494
|
maxframe/dataframe/sort/sort_values.py,sha256=hvUvy-e8xV-8UIhTaUXeHo5mjaNb009dUT0-WKDXTsc,9003
|
|
487
495
|
maxframe/dataframe/sort/tests/__init__.py,sha256=4LpNXO11JAdLjSut3p036oEEXlDEB-6AURW9oci5W5Y,609
|
|
@@ -495,7 +503,9 @@ maxframe/dataframe/tests/__init__.py,sha256=4LpNXO11JAdLjSut3p036oEEXlDEB-6AURW9
|
|
|
495
503
|
maxframe/dataframe/tests/test_initializer.py,sha256=OyC8odxqZlOIMvz2dzhne-0-82wchp4Ti0-drGm9Kd0,2060
|
|
496
504
|
maxframe/dataframe/tests/test_typing.py,sha256=_pJg3-YqFzs1DnRJ25ER52PApI0FYBz6opOzy2qyJuE,3395
|
|
497
505
|
maxframe/dataframe/tests/test_utils.py,sha256=VzKUtlaqTKNkRxRxavYK9n3yOylWSsoTwuqo224pDe8,5433
|
|
498
|
-
maxframe/dataframe/tseries/__init__.py,sha256=
|
|
506
|
+
maxframe/dataframe/tseries/__init__.py,sha256=hzprUJMNcYMwoshS2E1mPGzF_YLyOVBknVwfoHnfjrY,1037
|
|
507
|
+
maxframe/dataframe/tseries/at_time.py,sha256=kqmZGM1_Cm7YaBnhR9C5V9x-oDpczdZdb2LXxc3lWZ4,2024
|
|
508
|
+
maxframe/dataframe/tseries/between_time.py,sha256=AfUiWX9tdsBHWvfkdLWkJfvNYh4uWW_lDX-aJtP9BzQ,4317
|
|
499
509
|
maxframe/dataframe/tseries/to_datetime.py,sha256=UBx8ayibVzmZb0OAAbkpErfRGbPRd_IGwPlrvNdJsMQ,11725
|
|
500
510
|
maxframe/dataframe/tseries/tests/__init__.py,sha256=4LpNXO11JAdLjSut3p036oEEXlDEB-6AURW9oci5W5Y,609
|
|
501
511
|
maxframe/dataframe/tseries/tests/test_tseries.py,sha256=jxK8Qz-lgfHliRc-axttpW1VWRNse2PS-yXOQYv9Wpk,1019
|
|
@@ -533,7 +543,7 @@ maxframe/learn/core.py,sha256=FPe4WDnIBXMI5A7yqxtnnnWW9tEsrZtNaUB9DtyjXX8,12346
|
|
|
533
543
|
maxframe/learn/cluster/__init__.py,sha256=91BXfrUkoClWUP9cX5uhWtnOmC18jnxpYa5bRzkdCpw,649
|
|
534
544
|
maxframe/learn/cluster/_kmeans.py,sha256=pAXLhB4YCA9qMIdN0vN4SbpvybQdyjQilZ2CdVw087s,27840
|
|
535
545
|
maxframe/learn/contrib/__init__.py,sha256=zMShuxOubDzh94IvRLSwULLHJQGKBWZGyXGqRq2frww,693
|
|
536
|
-
maxframe/learn/contrib/models.py,sha256=
|
|
546
|
+
maxframe/learn/contrib/models.py,sha256=BVj0Vxrb1a5FsoB45FJz8gnvFr6FXDz6hG6WaQ7pVzg,3682
|
|
537
547
|
maxframe/learn/contrib/utils.py,sha256=NkvJsTktz4_7kLHo0viiUihB6Jzh0hxgxmVS_UjtHns,3491
|
|
538
548
|
maxframe/learn/contrib/graph/__init__.py,sha256=fJSzTCpcrJB0Y89M5IIiZ5uRX3l_yludjUyW9keIte4,667
|
|
539
549
|
maxframe/learn/contrib/graph/connected_components.py,sha256=djOm9bVFCw7_sly2Wx3LaFLZFYROVnQFGFpdu73TGGg,7389
|
|
@@ -550,12 +560,24 @@ maxframe/learn/contrib/lightgbm/regressor.py,sha256=DDdgQN81BHna_GD-IfhOAQxr6VrP
|
|
|
550
560
|
maxframe/learn/contrib/lightgbm/tests/__init__.py,sha256=4LpNXO11JAdLjSut3p036oEEXlDEB-6AURW9oci5W5Y,609
|
|
551
561
|
maxframe/learn/contrib/lightgbm/tests/test_callback.py,sha256=chJzk4R97itBKF15LHz2TRPxjJhmTZvgiySiDecbnjQ,2111
|
|
552
562
|
maxframe/learn/contrib/llm/__init__.py,sha256=Ikv8Bw62gQNCaVVu8VfaTmZQEvCCqNO2SBeJXXaEYpk,666
|
|
553
|
-
maxframe/learn/contrib/llm/core.py,sha256=
|
|
563
|
+
maxframe/learn/contrib/llm/core.py,sha256=8i0TKnv_vpfjuMsAoNPL284oR3OVgYmQFoNl1-oVqBQ,3162
|
|
554
564
|
maxframe/learn/contrib/llm/multi_modal.py,sha256=a6fy8K0j9luOMR0JnU6yjlzuzqDNv8mE7_1lezTNmGc,5541
|
|
555
|
-
maxframe/learn/contrib/llm/text.py,sha256=
|
|
556
|
-
maxframe/learn/contrib/llm/
|
|
557
|
-
maxframe/learn/contrib/llm/
|
|
558
|
-
maxframe/learn/contrib/llm/
|
|
565
|
+
maxframe/learn/contrib/llm/text.py,sha256=MB-n9nwDQg0UWoux3Wtj4uelIIDaANi6Mswa-CyFHJ4,21087
|
|
566
|
+
maxframe/learn/contrib/llm/deploy/__init__.py,sha256=4LpNXO11JAdLjSut3p036oEEXlDEB-6AURW9oci5W5Y,609
|
|
567
|
+
maxframe/learn/contrib/llm/deploy/config.py,sha256=bPiWFLq6pbzISYa9RKhhdC82TOBYjrsSIvi8oNNpERI,8882
|
|
568
|
+
maxframe/learn/contrib/llm/deploy/core.py,sha256=CMyS5B6A94xV092XvMV-glSX_fXeO28rI9kQlczYyas,8767
|
|
569
|
+
maxframe/learn/contrib/llm/deploy/framework.py,sha256=qAZifnIEVQGUVAiOv2nGb2-fBgCSy6NZaW_eE0e1vWY,1181
|
|
570
|
+
maxframe/learn/contrib/llm/deploy/loader.py,sha256=_HuPN7xhO5WQB4F02NRKBeCV3Z7AJhOFPPQS8Hprqew,13076
|
|
571
|
+
maxframe/learn/contrib/llm/deploy/tests/__init__.py,sha256=4LpNXO11JAdLjSut3p036oEEXlDEB-6AURW9oci5W5Y,609
|
|
572
|
+
maxframe/learn/contrib/llm/deploy/tests/test_register_models.py,sha256=NX6TVqed6aC1zkzuKycZ91DylgfGZ-Gj4q8suW0hc2w,12077
|
|
573
|
+
maxframe/learn/contrib/llm/models/__init__.py,sha256=l864wlCX4OQlke8N-mhlxlXwh-DdbO2Za1dyvaK1VcU,721
|
|
574
|
+
maxframe/learn/contrib/llm/models/dashscope.py,sha256=Q5sV_4DBlgdqNEXwkiJLWYX1UvrjuqxS7m7JgFXW1HE,3764
|
|
575
|
+
maxframe/learn/contrib/llm/models/managed.py,sha256=ikMl6Apz1p0bHM4YxyxaJIoxAQ639OnPBprHwZWdWBo,3734
|
|
576
|
+
maxframe/learn/contrib/llm/models/openai.py,sha256=h1RfivUa2VOB9XroGRvEh6fiGgSHSCm6NmjY-eg40GY,2335
|
|
577
|
+
maxframe/learn/contrib/llm/tests/__init__.py,sha256=4LpNXO11JAdLjSut3p036oEEXlDEB-6AURW9oci5W5Y,609
|
|
578
|
+
maxframe/learn/contrib/llm/tests/test_core.py,sha256=8f0o15lCkKA9Jqu959U-Zr47P8GLVdAzUEfMF185vPc,1244
|
|
579
|
+
maxframe/learn/contrib/llm/tests/test_openai.py,sha256=k0fQfc1vbQAxjMfX7SVgDYhCHPJS2Pfpc_WKc-wHyl0,6753
|
|
580
|
+
maxframe/learn/contrib/llm/tests/test_text_gen.py,sha256=JXKOwQGukd6V79aLy7S4k9X-fXSaaBzgzH75cqaeZSc,5661
|
|
559
581
|
maxframe/learn/contrib/pytorch/__init__.py,sha256=OFSs9YoYbKxEmyP8OLxqMPHvaDlgesD02QtOvjpHrv4,703
|
|
560
582
|
maxframe/learn/contrib/pytorch/run_function.py,sha256=c_S2U3VTZ7vFmDlqVDBBiM-r5EFLb-d1JU64t8UZ0Fk,3354
|
|
561
583
|
maxframe/learn/contrib/pytorch/run_script.py,sha256=XBed8ypahK9KIOs-mQ-SsQZCtsUkV6RdXiyagSPySmE,3213
|
|
@@ -563,12 +585,12 @@ maxframe/learn/contrib/pytorch/tests/__init__.py,sha256=4LpNXO11JAdLjSut3p036oEE
|
|
|
563
585
|
maxframe/learn/contrib/pytorch/tests/test_pytorch.py,sha256=WgA-VI-XlpwaSdD-zpMVeSCPnjqXMzisyUCQ8FGlZdI,1444
|
|
564
586
|
maxframe/learn/contrib/xgboost/__init__.py,sha256=ChqbAiGx91jbI4H0MQloiXx2hWGmSte_IO34t2YRLT8,1084
|
|
565
587
|
maxframe/learn/contrib/xgboost/callback.py,sha256=MtPt83a_WoJLW6obhBrLAPzv-5uJGOFZ4_rS-klCqBQ,2776
|
|
566
|
-
maxframe/learn/contrib/xgboost/classifier.py,sha256=
|
|
567
|
-
maxframe/learn/contrib/xgboost/core.py,sha256=
|
|
588
|
+
maxframe/learn/contrib/xgboost/classifier.py,sha256=EKwUaShVyIcxcgEzVVt56G0Z_LS9gATobLY89xiyAaU,4203
|
|
589
|
+
maxframe/learn/contrib/xgboost/core.py,sha256=MmJ8D5eEebUbDMqPP0LTWzWEC3a6yVZK9orJMHNDukE,16430
|
|
568
590
|
maxframe/learn/contrib/xgboost/dmatrix.py,sha256=aa4_PUm-ogKQEZxx1vLxFvYGZcey9zgr7704eSBVUfE,5363
|
|
569
|
-
maxframe/learn/contrib/xgboost/predict.py,sha256=
|
|
570
|
-
maxframe/learn/contrib/xgboost/regressor.py,sha256=
|
|
571
|
-
maxframe/learn/contrib/xgboost/train.py,sha256=
|
|
591
|
+
maxframe/learn/contrib/xgboost/predict.py,sha256=Hj5LF-6gdKz2SjXtIMjXk3KKPDYwpYePhHKQIKGLBzQ,4454
|
|
592
|
+
maxframe/learn/contrib/xgboost/regressor.py,sha256=8yuONnOAIQC-fl0HGKDUj_zzhheA57Jb8l6x57l3Aj4,3161
|
|
593
|
+
maxframe/learn/contrib/xgboost/train.py,sha256=raJ2rk7253pumP4Pldv7oQnKHuAFd9V8H0rtRw70r-Y,6191
|
|
572
594
|
maxframe/learn/contrib/xgboost/tests/__init__.py,sha256=4LpNXO11JAdLjSut3p036oEEXlDEB-6AURW9oci5W5Y,609
|
|
573
595
|
maxframe/learn/contrib/xgboost/tests/test_callback.py,sha256=U-_aORr2-jrwpxpcmDkQ9lYHk5pfeMN85172pd7eTTk,1583
|
|
574
596
|
maxframe/learn/contrib/xgboost/tests/test_core.py,sha256=0ZI07rGLA_yO_bKO4OXv_0_nwB-l0sI3JCxjQko0Qaw,1449
|
|
@@ -600,20 +622,20 @@ maxframe/learn/model_selection/tests/__init__.py,sha256=4LpNXO11JAdLjSut3p036oEE
|
|
|
600
622
|
maxframe/learn/model_selection/tests/test_split.py,sha256=GFWgkkIidxOx4Qag6Gyx6x1jvZvpkTyAZB9nzXV0AX4,5139
|
|
601
623
|
maxframe/learn/preprocessing/__init__.py,sha256=KlXv6rnanHq2QtLHtPrqvQKgh0v-gs5xU0v6PQp3O5c,758
|
|
602
624
|
maxframe/learn/preprocessing/_data/__init__.py,sha256=EWSiyiLZ8gYr2Z6Jkj5fdrgXZPCX5KX4gd9iQNN7Yds,753
|
|
603
|
-
maxframe/learn/preprocessing/_data/min_max_scaler.py,sha256=
|
|
625
|
+
maxframe/learn/preprocessing/_data/min_max_scaler.py,sha256=yUtdSp5pODQXdzmRKLENI3Ww_9_5aFQvvw7cwyQczW8,13375
|
|
604
626
|
maxframe/learn/preprocessing/_data/normalize.py,sha256=fHEYISdKjfVlz4BSS2po-88VJQfFwtqneabejyfX6uw,4563
|
|
605
|
-
maxframe/learn/preprocessing/_data/standard_scaler.py,sha256=
|
|
627
|
+
maxframe/learn/preprocessing/_data/standard_scaler.py,sha256=763-Jheb80tM8WVK-Z3Kk-nWb3jlFD9MFYRKJosCxuo,19140
|
|
606
628
|
maxframe/learn/preprocessing/_data/utils.py,sha256=3lYrIyIXBUgWDfARHrqDl53FduolRfhGq9PrGfI9n_E,2950
|
|
607
629
|
maxframe/learn/preprocessing/_label/__init__.py,sha256=yOWCM1whXO7p_191LX0A_1S-4NqPEzJkPszBnlUtX9s,732
|
|
608
630
|
maxframe/learn/preprocessing/_label/_label_binarizer.py,sha256=C6S8Q8psg829nJkVoyvXLQa8PSR9ldTF73Z-F3aRsAQ,19988
|
|
609
631
|
maxframe/learn/preprocessing/_label/_label_encoder.py,sha256=nhJwHmyajfwyARUfwvII08yY-ufz_3hrBEVk0kLRykE,5672
|
|
610
|
-
maxframe/learn/utils/__init__.py,sha256=
|
|
632
|
+
maxframe/learn/utils/__init__.py,sha256=Mqsbx6tteKGoWvL3jrKKqVccS8qb6kgyE85z0qgktNU,884
|
|
611
633
|
maxframe/learn/utils/_encode.py,sha256=iqvRXVapbp3Ut_NWaUtyHw6W8s-0hh6ItJpjpFOlTGI,10018
|
|
612
634
|
maxframe/learn/utils/checks.py,sha256=Jbdrt1UO9K7F2GsitxOqjNCKeBehlQdnUumrVzErV3s,5219
|
|
613
635
|
maxframe/learn/utils/core.py,sha256=t6hLw3dkxKOePlmPhM0X35aXfMJ5eKX1yE7_JiinmN8,3628
|
|
614
|
-
maxframe/learn/utils/extmath.py,sha256=
|
|
636
|
+
maxframe/learn/utils/extmath.py,sha256=06lLTQCzZa6djXDEy-fgtci5SC71Qsj1bVMbEgsSHAo,8565
|
|
615
637
|
maxframe/learn/utils/multiclass.py,sha256=lq9cap8f5hVlRzdFNyQuAfRpiaqEO7is1pWaqpda3zU,9334
|
|
616
|
-
maxframe/learn/utils/odpsio.py,sha256=
|
|
638
|
+
maxframe/learn/utils/odpsio.py,sha256=eOw36Z1odyOVRtTr0bdWALT50RnMvIB5Vbro6cDDeAY,10033
|
|
617
639
|
maxframe/learn/utils/shuffle.py,sha256=x64KVCvrpQrTq9sqDm8-xuh6BbmGw2SwIuUpkCw7ybM,4435
|
|
618
640
|
maxframe/learn/utils/sparsefuncs.py,sha256=6_qzQMarQqRk8N5ay7sZtAViawLv7P76SaLgTW0TYiU,2831
|
|
619
641
|
maxframe/learn/utils/validation.py,sha256=gIQL7QuGzQYeSQa2_P_EfTlbZ-j074jvv9Z5l8y1sxo,27850
|
|
@@ -621,7 +643,7 @@ maxframe/lib/__init__.py,sha256=4LpNXO11JAdLjSut3p036oEEXlDEB-6AURW9oci5W5Y,609
|
|
|
621
643
|
maxframe/lib/compat.py,sha256=AhEBLH36Gz-ljROS2JEf8PfrptKuXwD3N70iQMx5hBw,5996
|
|
622
644
|
maxframe/lib/compression.py,sha256=8F0QEOlrgrFz8Yzeyap4ud3PYe1I5LUWUHWvQg1YKq0,1497
|
|
623
645
|
maxframe/lib/functools_compat.py,sha256=1a-R_fcKQo7gUZnyk6L-qt_Ozhm3Gb0y86Fd3ROeTcw,2697
|
|
624
|
-
maxframe/lib/mmh3.cp38-win32.pyd,sha256=
|
|
646
|
+
maxframe/lib/mmh3.cp38-win32.pyd,sha256=TtaBmR7cGeGg75dG3qylClt9wyd-VO-D5WWC6PorLD4,15360
|
|
625
647
|
maxframe/lib/mmh3.pyi,sha256=ad6KZrDA7dznE5Qv0lnGB32rw1Zl2DBwNIH0BI_bFQU,1537
|
|
626
648
|
maxframe/lib/version.py,sha256=NqxzCX2pLHIMTj-7HTA6xU3iyd_DVeqyyW1n-Rk8MCQ,18941
|
|
627
649
|
maxframe/lib/wrapped_pickle.py,sha256=bgKCRXGul4eleqvqDQi-3Vyn60Emcto6fNXI2aUuBVQ,4381
|
|
@@ -655,7 +677,7 @@ maxframe/lib/filesystem/hdfs.py,sha256=RGEnP-REb1TmkHYqy-qqAd_E22lWoNezgFY_uVrNs
|
|
|
655
677
|
maxframe/lib/filesystem/local.py,sha256=N8CF6yJhW1cj-qlxPxFM5vVEgVoie5oP9evS2fFSvjo,3700
|
|
656
678
|
maxframe/lib/filesystem/oss.py,sha256=Zm3e_ZC0nqLXChWBco3VeqRR6WogNCgYzkPJR4YCFbA,7818
|
|
657
679
|
maxframe/lib/filesystem/_oss_lib/__init__.py,sha256=4LpNXO11JAdLjSut3p036oEEXlDEB-6AURW9oci5W5Y,609
|
|
658
|
-
maxframe/lib/filesystem/_oss_lib/common.py,sha256=
|
|
680
|
+
maxframe/lib/filesystem/_oss_lib/common.py,sha256=RBkyqDAUv5UlJhU4rvr4Lt6goKCjyNb6r0Bz_T79tNo,8722
|
|
659
681
|
maxframe/lib/filesystem/_oss_lib/glob.py,sha256=GCrlY73bj61SKxxxSVOwyFQXz7epfCDdE7vcbDXAuHM,4981
|
|
660
682
|
maxframe/lib/filesystem/_oss_lib/handle.py,sha256=bnJ51oifArGtGmxQM48xPyvTByXziopOKF9GOSCoYAY,5053
|
|
661
683
|
maxframe/lib/filesystem/tests/__init__.py,sha256=4LpNXO11JAdLjSut3p036oEEXlDEB-6AURW9oci5W5Y,609
|
|
@@ -680,12 +702,12 @@ maxframe/lib/tblib/pickling_support.py,sha256=D9A0eX7gJeyqhXWxJJZ1GRwwcc5lj86wBR
|
|
|
680
702
|
maxframe/lib/tests/__init__.py,sha256=4LpNXO11JAdLjSut3p036oEEXlDEB-6AURW9oci5W5Y,609
|
|
681
703
|
maxframe/lib/tests/test_wrapped_pickle.py,sha256=euQ4u_YU-TYvSExtqeQ9fnCiUQiGaFxY08ld5yL0PpY,1575
|
|
682
704
|
maxframe/remote/__init__.py,sha256=m9h2lTNEayNKWsmJeAjitnG00atQROYRitjE9R1h4B8,747
|
|
683
|
-
maxframe/remote/core.py,sha256=
|
|
705
|
+
maxframe/remote/core.py,sha256=OIIXQf3uyw8QF6NFJ6o6MgNlvgcRcR8Smsqg7pSQT7E,6870
|
|
684
706
|
maxframe/remote/run_script.py,sha256=lG1tfysaPu8CX5CHM-jwjs7FOJPj7FQfHrp7hOO64sQ,3775
|
|
685
707
|
maxframe/serialization/__init__.py,sha256=bhyTL4gAm0SUgeM57tIxgmm1XKBzF0ZbqlKe9a2LfNU,1086
|
|
686
708
|
maxframe/serialization/arrow.py,sha256=jvv1h7JDkbZIWwRMazkcr-nuIGKmmCQsbFUXeD3tFw0,4648
|
|
687
709
|
maxframe/serialization/blob.py,sha256=o_Soij144UmYx_y6QAANufsAEIP-T68VmCWCfDoK7GQ,1170
|
|
688
|
-
maxframe/serialization/core.cp38-win32.pyd,sha256=
|
|
710
|
+
maxframe/serialization/core.cp38-win32.pyd,sha256=fhY4Xy8Q5dCfwN1FygFLWCdAG4ZQ6dqRbVj463CTqI8,413696
|
|
689
711
|
maxframe/serialization/core.pxd,sha256=x8_6jYkU0BnV-0KUEjnqvXXn1c9HPvyt660mi7u9fE0,1580
|
|
690
712
|
maxframe/serialization/core.pyi,sha256=jOgVcThRuPekxQVyxWWnF-8Udgzo6kDpZThYVQsYeog,2327
|
|
691
713
|
maxframe/serialization/core.pyx,sha256=_pygbM5HMffaekkYohmaM5A11DkCUo8pWmY582GgOhM,40965
|
|
@@ -702,13 +724,13 @@ maxframe/serialization/serializables/tests/__init__.py,sha256=4LpNXO11JAdLjSut3p
|
|
|
702
724
|
maxframe/serialization/serializables/tests/test_field_type.py,sha256=_vW3SNw8zcYinNx_BGPfja3b7bJbmg3wolsXdzg0qFQ,4452
|
|
703
725
|
maxframe/serialization/serializables/tests/test_serializable.py,sha256=rdxPNvxqaq8vNkrtMHHvlNJJvSXJ2GnHseDWupAGj68,11007
|
|
704
726
|
maxframe/serialization/tests/__init__.py,sha256=4LpNXO11JAdLjSut3p036oEEXlDEB-6AURW9oci5W5Y,609
|
|
705
|
-
maxframe/serialization/tests/test_serial.py,sha256=
|
|
727
|
+
maxframe/serialization/tests/test_serial.py,sha256=KBkO4yZ4I5TQ4iolXournQpHKPW1M8IymILovxcrAdM,15362
|
|
706
728
|
maxframe/tensor/__init__.py,sha256=POcXjT5pNi6O22EX9R1mhj1uCgcpIPN3iNFpr9nRchI,6061
|
|
707
729
|
maxframe/tensor/array_utils.py,sha256=306wjTM_xpUmVOAsrSOqTPGom-aU3FiVaU4T-bFFQjg,4537
|
|
708
|
-
maxframe/tensor/core.py,sha256=
|
|
730
|
+
maxframe/tensor/core.py,sha256=BwiZQ52XGTT7DMqV71dQKcDa0HHlCuECo9maTlc3Or0,18726
|
|
709
731
|
maxframe/tensor/operators.py,sha256=rYnU_DqTdgtdj-jYDipz_ABbYseZJSDm7e0z2vlFXyo,2340
|
|
710
732
|
maxframe/tensor/utils.py,sha256=TiyazQKIFrZfzLz35GErKOo8GTzoJbapSwAEebEvSSs,23639
|
|
711
|
-
maxframe/tensor/arithmetic/__init__.py,sha256=
|
|
733
|
+
maxframe/tensor/arithmetic/__init__.py,sha256=HwwWTp8xCAMawL-e0eDH4Csy61-5p2Cn-MIVxbGzRxY,10052
|
|
712
734
|
maxframe/tensor/arithmetic/abs.py,sha256=o9cEGybgFZbKo9Y4J5afZLodPbFuBIUpnnZiuCo737M,2200
|
|
713
735
|
maxframe/tensor/arithmetic/absolute.py,sha256=FHPhvWBQ-E-3c_ydz3h8Yb2t6Hzeq5hy7IxtNEBJ6N4,2230
|
|
714
736
|
maxframe/tensor/arithmetic/add.py,sha256=CUvQt_oe2DU8ZnIOTmmEO-K7BqC0cWrZq4BmwKlgBk8,3677
|
|
@@ -729,7 +751,7 @@ maxframe/tensor/arithmetic/ceil.py,sha256=cCy79KE1h9RlE60oGWm7DKmA4UQ8bBh6UfyPGj
|
|
|
729
751
|
maxframe/tensor/arithmetic/clip.py,sha256=cwjBwyPRTOqzEmpeDXA61bymTv_AQd2sbaA090rYcPs,5710
|
|
730
752
|
maxframe/tensor/arithmetic/conj.py,sha256=LilBDr2EkQFAkFvyXWgpOVD6RxeHoMHrbN5H7yupYh8,2253
|
|
731
753
|
maxframe/tensor/arithmetic/copysign.py,sha256=I9R0JziZR9ABWuE0bo1eeunX2XxRskjskW1vbV2JY7c,2535
|
|
732
|
-
maxframe/tensor/arithmetic/core.py,sha256=
|
|
754
|
+
maxframe/tensor/arithmetic/core.py,sha256=Wfe-nC_tYV_irPqGmojp9C5NnsADViUcwrGUvt_taXg,18168
|
|
733
755
|
maxframe/tensor/arithmetic/cos.py,sha256=VHvzjOfO6cC9HeAvwg1e2RWKKo5s5zDFEynzW3xvpP4,2774
|
|
734
756
|
maxframe/tensor/arithmetic/cosh.py,sha256=AIpEClqB6IIOGjSxcA6psNzo_NESzIGvI6svixI1YmI,2242
|
|
735
757
|
maxframe/tensor/arithmetic/deg2rad.py,sha256=2esXb3MN4SAT6fCkW-ZF9rTqwFaiDOAcj5lFo1COkzQ,2195
|
|
@@ -809,7 +831,7 @@ maxframe/tensor/arithmetic/truediv.py,sha256=3ei369dOJaFulpXhBPUczmdOQCCqnbeczgQ
|
|
|
809
831
|
maxframe/tensor/arithmetic/trunc.py,sha256=zCEIrvwbnm7lbnNKgg60kGrRy-CKchPakT4LmplC3_A,2327
|
|
810
832
|
maxframe/tensor/arithmetic/utils.py,sha256=KR9kDOJuD-dmKbiXb6XNNvFVsLOz369HJWK14AeQfh8,3278
|
|
811
833
|
maxframe/tensor/arithmetic/tests/__init__.py,sha256=4LpNXO11JAdLjSut3p036oEEXlDEB-6AURW9oci5W5Y,609
|
|
812
|
-
maxframe/tensor/arithmetic/tests/test_arithmetic.py,sha256=
|
|
834
|
+
maxframe/tensor/arithmetic/tests/test_arithmetic.py,sha256=WbE90Nz_DboGKK31pflS2gmFCtW-Yw-fl6tolaLYB1w,12972
|
|
813
835
|
maxframe/tensor/datasource/__init__.py,sha256=RMFXElSi2UvOK7HM3qKOegNEyaNW5DQXISJuR9Au38U,1523
|
|
814
836
|
maxframe/tensor/datasource/arange.py,sha256=BlocdN5GsTozwnBQWsbmJi63I0BsVUswQcSaLk7kxrw,5584
|
|
815
837
|
maxframe/tensor/datasource/array.py,sha256=6I9Qy_2G0bRyKIFFmZEerzoa4IgBHZL4LA7vmU7EdyI,12786
|
|
@@ -914,7 +936,7 @@ maxframe/tensor/misc/atleast_3d.py,sha256=nQQr-ARc1AJ3T0PtWtgeZfdjOPJVYUQn4qxxF-
|
|
|
914
936
|
maxframe/tensor/misc/broadcast_arrays.py,sha256=JbZaEiPyIi8izpHTN8fwIJVBtV-lD_6OfGAnOUOobSI,1716
|
|
915
937
|
maxframe/tensor/misc/broadcast_to.py,sha256=Yi0-LHKbyPK9r6G7wsNXg-FIFAbH1q3qhLPfM5-zUj0,2781
|
|
916
938
|
maxframe/tensor/misc/copy.py,sha256=sOmS5Rz7KN4DjP_TbXeYSZbiIx--QsTkP60wgL-g7VI,1844
|
|
917
|
-
maxframe/tensor/misc/copyto.py,sha256=
|
|
939
|
+
maxframe/tensor/misc/copyto.py,sha256=0cENjnZPSUQ8aMMJfrUsur0rI5Ai9sWK3lxFboXm0vI,4523
|
|
918
940
|
maxframe/tensor/misc/delete.py,sha256=edXnJ9lSRpSvG6YJ2ywtPakIVuKLPAzytUo8K8N2U3k,3677
|
|
919
941
|
maxframe/tensor/misc/diff.py,sha256=K-HKzzEJ3uSsgXZolVe67KsIY1YOKChu6geEBYUzeo8,3718
|
|
920
942
|
maxframe/tensor/misc/dsplit.py,sha256=xLjmjDxJ2Fo5NoIVqX_4F0C1mrkWyIC3ux0XDnnvfc4,2189
|
|
@@ -1071,7 +1093,8 @@ maxframe/tensor/ufunc/__init__.py,sha256=dqEJnXd0eZMRRdRksr-z31CCu2t7Cs5rBJDawdG
|
|
|
1071
1093
|
maxframe/tensor/ufunc/ufunc.py,sha256=OHHRgqfNr5oHXwbC1QJTZtBJwjLc-FxfrX6Gb7TLCps,7335
|
|
1072
1094
|
maxframe/tests/__init__.py,sha256=4LpNXO11JAdLjSut3p036oEEXlDEB-6AURW9oci5W5Y,609
|
|
1073
1095
|
maxframe/tests/test_protocol.py,sha256=tEClIngXq1fSXcAN56hTDSPuK5Y-Tez8G7KTxYVoEBg,6299
|
|
1074
|
-
maxframe/tests/
|
|
1096
|
+
maxframe/tests/test_udf.py,sha256=yTlKCIkFZkF-A9Ho6J7d-fbSNCItlu-ncnJFohMcWhk,2023
|
|
1097
|
+
maxframe/tests/test_utils.py,sha256=wOcx9iG_317lpTiVMLvA_bJDpMhXFg9c_8xppHY8GnM,21162
|
|
1075
1098
|
maxframe/tests/utils.py,sha256=-tlVdXaHd2LPzEoDurWRuQnBl-s5qpPo4KpNOGI7pfU,7168
|
|
1076
1099
|
maxframe_client/__init__.py,sha256=lMXPcrevOU4QUF8NIK1K-piVGPllfmuQ11TQivyuuYo,705
|
|
1077
1100
|
maxframe_client/conftest.py,sha256=gw1eaUzIa4sSlYmeV8yGqCz-R-8sLt46iQ5yzxkbJ2Q,658
|
|
@@ -1082,13 +1105,13 @@ maxframe_client/session/__init__.py,sha256=d6y_gZ3JEWmVi55pwnHjVcU4JmdynVxZcu9QY
|
|
|
1082
1105
|
maxframe_client/session/consts.py,sha256=GvAxFLM_LUUgCpKkykCsWmKt00mbb6mAELfVTXob4w0,1430
|
|
1083
1106
|
maxframe_client/session/graph.py,sha256=4Nuyt5Ui9t4AWVG9VGq_TFgDQCnyZ2gOVGGuwUaEn1Q,4501
|
|
1084
1107
|
maxframe_client/session/odps.py,sha256=p3ZEKEuU7kl5zy2Y7nlZ31RuckryRv4cTvPHh8lrzHo,31467
|
|
1085
|
-
maxframe_client/session/task.py,sha256=
|
|
1108
|
+
maxframe_client/session/task.py,sha256=5AscptkiNb8nQJwIeTeIwEYT54y98CQggNYvvFdhSmI,12646
|
|
1086
1109
|
maxframe_client/session/tests/__init__.py,sha256=4LpNXO11JAdLjSut3p036oEEXlDEB-6AURW9oci5W5Y,609
|
|
1087
1110
|
maxframe_client/session/tests/test_task.py,sha256=qtKtseHpc13xQCe4SsDaM7UToVOTkPIAb0yMw12Js8M,4817
|
|
1088
1111
|
maxframe_client/tests/__init__.py,sha256=4LpNXO11JAdLjSut3p036oEEXlDEB-6AURW9oci5W5Y,609
|
|
1089
1112
|
maxframe_client/tests/test_fetcher.py,sha256=rVIQo93VXjHUXcYW5bKN8ZVxmESi_sPAFnZSv7DPe3A,6887
|
|
1090
|
-
maxframe_client/tests/test_session.py,sha256=
|
|
1091
|
-
maxframe-2.
|
|
1092
|
-
maxframe-2.
|
|
1093
|
-
maxframe-2.
|
|
1094
|
-
maxframe-2.
|
|
1113
|
+
maxframe_client/tests/test_session.py,sha256=6w3Fai3iz0tZkJrBlBJKssfd81W6imGTU7f9eeUCYTc,13948
|
|
1114
|
+
maxframe-2.3.0rc1.dist-info/METADATA,sha256=BHRsNbq4fr96uj-8SGC2wMCAvUVFT9Qfi84OdhIBIjY,3351
|
|
1115
|
+
maxframe-2.3.0rc1.dist-info/WHEEL,sha256=BsoMMMHJGneA25n2FDquZW143lDYOuIAMJ0po_3Su94,95
|
|
1116
|
+
maxframe-2.3.0rc1.dist-info/top_level.txt,sha256=64x-fc2q59c_vXwNUkehyjF1vb8JWqFSdYmUqIFqoTM,31
|
|
1117
|
+
maxframe-2.3.0rc1.dist-info/RECORD,,
|
maxframe_client/session/task.py
CHANGED
|
@@ -112,7 +112,14 @@ class MaxFrameInstanceCaller(MaxFrameServiceCaller):
|
|
|
112
112
|
return None
|
|
113
113
|
else:
|
|
114
114
|
raise SessionAlreadyClosedError(self._instance.id)
|
|
115
|
-
|
|
115
|
+
|
|
116
|
+
try:
|
|
117
|
+
result_data = base64.b64decode(encoded_result)
|
|
118
|
+
except:
|
|
119
|
+
# todo change to a better logic when it is possible
|
|
120
|
+
# to judge if server side returns success or fail
|
|
121
|
+
raise parse_instance_error(encoded_result)
|
|
122
|
+
|
|
116
123
|
if self._output_format == MAXFRAME_OUTPUT_MAXFRAME_FORMAT:
|
|
117
124
|
return deserialize_serializable(result_data)
|
|
118
125
|
elif self._output_format == MAXFRAME_OUTPUT_JSON_FORMAT:
|
|
@@ -20,6 +20,7 @@ import numpy as np
|
|
|
20
20
|
import pandas as pd
|
|
21
21
|
import pytest
|
|
22
22
|
from odps import ODPS
|
|
23
|
+
from odps import options as odps_options
|
|
23
24
|
|
|
24
25
|
import maxframe.dataframe as md
|
|
25
26
|
import maxframe.remote as mr
|
|
@@ -209,6 +210,29 @@ def test_run_empty_table(start_mock_session):
|
|
|
209
210
|
empty_table.drop()
|
|
210
211
|
|
|
211
212
|
|
|
213
|
+
def test_read_table_with_arrow_dtype(start_mock_session):
|
|
214
|
+
if not hasattr(pd, "ArrowDtype"):
|
|
215
|
+
pytest.skip("Need ArrowDtype in pandas to run the test")
|
|
216
|
+
|
|
217
|
+
odps_entry = ODPS.from_environments()
|
|
218
|
+
odps_options.sql.use_odps2_extension = True
|
|
219
|
+
|
|
220
|
+
table_name = tn("test_read_table_with_arrow_dtype")
|
|
221
|
+
odps_entry.delete_table(table_name, if_exists=True)
|
|
222
|
+
test_table = odps_entry.create_table(table_name, "a bigint, b binary", lifecycle=1)
|
|
223
|
+
|
|
224
|
+
with test_table.open_writer() as writer:
|
|
225
|
+
writer.write([123, b"abcd"])
|
|
226
|
+
writer.write([None, b"uvx"])
|
|
227
|
+
writer.write([456, b"asfdl\x11hawl"])
|
|
228
|
+
|
|
229
|
+
df = md.read_odps_table(table_name, dtype_backend="pyarrow")
|
|
230
|
+
executed = df.execute().fetch()
|
|
231
|
+
assert all(isinstance(tp, pd.ArrowDtype) for tp in executed.dtypes)
|
|
232
|
+
assert executed.a.tolist() == [123, pd.NA, 456]
|
|
233
|
+
assert executed.b.tolist() == [b"abcd", b"uvx", b"asfdl\x11hawl"]
|
|
234
|
+
|
|
235
|
+
|
|
212
236
|
def test_run_odps_query_without_schema(start_mock_session):
|
|
213
237
|
odps_entry = ODPS.from_environments()
|
|
214
238
|
|