maxframe 2.2.0__cp310-cp310-macosx_10_9_universal2.whl → 2.3.0rc1__cp310-cp310-macosx_10_9_universal2.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.cpython-310-darwin.so +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.cpython-310-darwin.so +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.cpython-310-darwin.so +0 -0
- maxframe/opcodes.py +9 -1
- maxframe/remote/core.py +4 -0
- maxframe/serialization/core.cpython-310-darwin.so +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,16 +1,16 @@
|
|
|
1
|
-
maxframe-2.
|
|
2
|
-
maxframe-2.
|
|
3
|
-
maxframe-2.
|
|
4
|
-
maxframe-2.
|
|
1
|
+
maxframe-2.3.0rc1.dist-info/RECORD,,
|
|
2
|
+
maxframe-2.3.0rc1.dist-info/WHEEL,sha256=8XuoKPbF6WmVUSfmuDPFsRwMXLxyxuWi93Fa-BVABOs,114
|
|
3
|
+
maxframe-2.3.0rc1.dist-info/top_level.txt,sha256=64x-fc2q59c_vXwNUkehyjF1vb8JWqFSdYmUqIFqoTM,31
|
|
4
|
+
maxframe-2.3.0rc1.dist-info/METADATA,sha256=j4aTfQoxvlZPW25mZL-M59v31tYrgS2nIIADjawyp7M,3264
|
|
5
5
|
maxframe_client/conftest.py,sha256=JkQKlLZqd9uJekiO8HvMvEegidF-6KlCVFcg-KmQLLY,643
|
|
6
6
|
maxframe_client/__init__.py,sha256=z4QT02esANpxtSVZPO_96693bqSvhG82e4suaD6Ll1E,689
|
|
7
7
|
maxframe_client/fetcher.py,sha256=kvvh59I3nu7jLSZnyEkrrY_uUnEHg9BivXMbdQJAFnE,13357
|
|
8
8
|
maxframe_client/clients/__init__.py,sha256=YsJxv7HbG4YYJmqAJZPYb8iHFRQX5JGpGn2PInDXvY8,596
|
|
9
9
|
maxframe_client/clients/framedriver.py,sha256=OFMN1EDsF34kAXbPAKukl9gAS8W24Zpk9OeAKXl7X6Y,4975
|
|
10
|
-
maxframe_client/tests/test_session.py,sha256=
|
|
10
|
+
maxframe_client/tests/test_session.py,sha256=F1bVKfowLUpdKkm34t0r2gx1L6QkDbt8i81RXHmgH6U,13539
|
|
11
11
|
maxframe_client/tests/__init__.py,sha256=YsJxv7HbG4YYJmqAJZPYb8iHFRQX5JGpGn2PInDXvY8,596
|
|
12
12
|
maxframe_client/tests/test_fetcher.py,sha256=k8Dca6v26AxJ3FoPs1c1trU1eWl85Dvm0uj8VDRRjAo,6707
|
|
13
|
-
maxframe_client/session/task.py,sha256=
|
|
13
|
+
maxframe_client/session/task.py,sha256=gAhaNR81sQZhctP2zhhKmxg8xEWzq54rHFji4etJv6U,12317
|
|
14
14
|
maxframe_client/session/graph.py,sha256=GUq6gNpi4m5PAdnERBE8zJRcYXLLoBueEEmmel4x5qE,4376
|
|
15
15
|
maxframe_client/session/__init__.py,sha256=NgquxV2h6TAb_0xLh0mQip-2i-Glxy3fjWiWXfRTLRE,832
|
|
16
16
|
maxframe_client/session/consts.py,sha256=E6PnPNyn2Bt9MHuGXATnb40m1AN0QfLG1Pl0KvsYFvk,1391
|
|
@@ -18,27 +18,26 @@ maxframe_client/session/odps.py,sha256=QBqZzEO9cCBfTQOY2sml_ufUrTFrbadBXmQ4jK6TB
|
|
|
18
18
|
maxframe_client/session/tests/test_task.py,sha256=Q5srH-w58vYS3NVeuY_59hLn2d-ANJh8nu2dbI7rRFA,4702
|
|
19
19
|
maxframe_client/session/tests/__init__.py,sha256=YsJxv7HbG4YYJmqAJZPYb8iHFRQX5JGpGn2PInDXvY8,596
|
|
20
20
|
maxframe/_utils.pyx,sha256=ZN-XnGr2Pn8gdo8hu8_s-SQerSMjPwbi58rrQNAkc5s,17326
|
|
21
|
-
maxframe/conftest.py,sha256=
|
|
22
|
-
maxframe/opcodes.py,sha256=
|
|
21
|
+
maxframe/conftest.py,sha256=oqtiM0dcnf8R7loRWp7OUlHJ4KtFHerOWDig5RDDG3c,8212
|
|
22
|
+
maxframe/opcodes.py,sha256=u_eooE-C79UxnHuCybqSnFE0bShRIRXudqaO9AbDQmg,11677
|
|
23
23
|
maxframe/env.py,sha256=mR1C6G4VX6Qm_gVLqq92BGgHpNDYuu_L-MwlNzqVPD0,1599
|
|
24
24
|
maxframe/mixin.py,sha256=4raAFPQ59wGdHlgeEw0TZgDT4_ZECLmK23JtMYzAmUM,5645
|
|
25
25
|
maxframe/protocol.py,sha256=LyhZqwtlJi7k2Gn9fmIpqWiP4YBWLZuG9t15_Edk7HI,20891
|
|
26
|
-
maxframe/_utils.cpython-310-darwin.so,sha256=
|
|
26
|
+
maxframe/_utils.cpython-310-darwin.so,sha256=q7bU49bwHOgKKtPMzvnjMwzrtwnu0DozmX6xa85DDKg,846496
|
|
27
27
|
maxframe/session.py,sha256=6EE_lJebgJYbHRMrw4-1rdOFYsKH-m5dX8EkJQ4OqEA,34784
|
|
28
28
|
maxframe/__init__.py,sha256=y8wQxypXuDpwgi2bRSKEYjkCyq4efN3C_7KpaFMJvKY,1056
|
|
29
29
|
maxframe/_utils.pyi,sha256=-Rd4BZ7kF1695nNtjivOS3Zavpq99NYWO4tBMOL7Tac,916
|
|
30
|
-
maxframe/utils.py,sha256=
|
|
30
|
+
maxframe/utils.py,sha256=SpW43FJ5g-U1Ua0L_z-Hugoe8AMA13d4jULRK6NC238,53981
|
|
31
31
|
maxframe/extension.py,sha256=4u9K2lerFnwziWv2Aibm7S7nD_2nSPR4MKuegYpK8fM,2939
|
|
32
32
|
maxframe/sperunner.py,sha256=H-cHHPt-SBbqonKRfInSseGdOCi67xbR6jUoD25ML00,5572
|
|
33
33
|
maxframe/errors.py,sha256=NoC6esSSYdjb2XVlPXw5BWNkMIvIMI4OHEe5JWQT2uY,1208
|
|
34
|
-
maxframe/udf.py,sha256=
|
|
34
|
+
maxframe/udf.py,sha256=ECPopur6Pc6tw_XNWgBtEgKKlk4zgNEZJ9TBcuWho8s,11843
|
|
35
35
|
maxframe/typing_.py,sha256=_n0RSj7AawZedcihU_PPm6XghIA5sQSxQZIC2N87JPs,1263
|
|
36
36
|
maxframe/_utils.pxd,sha256=ShrQD7uWMFVLT7j-zAMV6yWjQIlCbty_e7MHO6dzKv8,1154
|
|
37
|
-
maxframe/dataframe/
|
|
38
|
-
maxframe/dataframe/
|
|
39
|
-
maxframe/dataframe/core.py,sha256=NVIaYgoGu1r07CEnvOCmdkm2AD_eJKXw9NU3az_q8o4,73383
|
|
37
|
+
maxframe/dataframe/__init__.py,sha256=eJI37PtruQmTDeuPMMu0ZKaU-nQWcuGYLiQG8FFf6l8,2449
|
|
38
|
+
maxframe/dataframe/core.py,sha256=e67PptkH39AlhzdUtJenZG3CvqT80fFJ432umXSyxMA,72733
|
|
40
39
|
maxframe/dataframe/initializer.py,sha256=lnsLYJHcWQ9Kkqh7MrLTuOL4iZBOpB798YLs4G5Qzik,10852
|
|
41
|
-
maxframe/dataframe/utils.py,sha256=
|
|
40
|
+
maxframe/dataframe/utils.py,sha256=DLMsFCFTjlJaEQO34tgpQRXT1-TpKlT2lI9JiOr8fBw,56734
|
|
42
41
|
maxframe/dataframe/typing_.py,sha256=usBJmxsSjPtGcS2py2t5y9ZyG15coRi18dAcWDdKVdI,5776
|
|
43
42
|
maxframe/dataframe/operators.py,sha256=OReFOB5F5H-AAYA-oE-_PPiVKK7QVVyOyj0VewqBmwM,6590
|
|
44
43
|
maxframe/dataframe/statistics/corr.py,sha256=cXDdBa9sgoejm79mnLqE0cMPrKol2gRhHWohPhAYkhA,9614
|
|
@@ -57,20 +56,22 @@ maxframe/dataframe/misc/astype.py,sha256=QKo19cVwJkHbGieiSYoWDeRxajxz5RtUnqCTXlJ
|
|
|
57
56
|
maxframe/dataframe/misc/to_numeric.py,sha256=GiTdFwNzzT1qV27EIMMAG9a0y3MesbPHUgtyMrjbwXs,6322
|
|
58
57
|
maxframe/dataframe/misc/case_when.py,sha256=7eAYl4ruKnIR-N04zYiBPt44sLnHj3capN4A7RJu4fg,4983
|
|
59
58
|
maxframe/dataframe/misc/check_monotonic.py,sha256=Vak5n_YBYQE3WBvKz0s0WqGlX8t79ehfsQVJdEEi4_I,2422
|
|
60
|
-
maxframe/dataframe/misc/check_unique.py,sha256
|
|
59
|
+
maxframe/dataframe/misc/check_unique.py,sha256=-1bbzI1s2iAt4fWd4NOCAepMGNlwjSsKMTjC0pOXzzM,1949
|
|
61
60
|
maxframe/dataframe/misc/valid_index.py,sha256=5O9LAvp92nDEkdxhcMpkxr-q4U8VVdMhkaj62tE9duk,2619
|
|
62
61
|
maxframe/dataframe/misc/cut.py,sha256=O09PhsPHWPuMZq4Qvay0Jfpstk2yZETn2d6wt4xbyzY,14050
|
|
63
62
|
maxframe/dataframe/misc/get_dummies.py,sha256=NZUpI6l7sOftwSPMdntEqg4Z9fYr4F6f5E0cmA5I2iU,7802
|
|
64
|
-
maxframe/dataframe/misc/__init__.py,sha256=
|
|
63
|
+
maxframe/dataframe/misc/__init__.py,sha256=gvv00GPOGlVb6I1s0WCP3dw-IGB8p-SqPH1qe5BwbFc,5883
|
|
65
64
|
maxframe/dataframe/misc/qcut.py,sha256=LbItYs5OkMhEWMepTkVDLkt6tN683PybQbjmuHlM9n4,3737
|
|
66
65
|
maxframe/dataframe/misc/pct_change.py,sha256=WgzbMOMLhc6iEvE6cT8_11lclLL5klkvokNjq7UKi94,2516
|
|
67
66
|
maxframe/dataframe/misc/duplicated.py,sha256=IY2hUFF9I3moBEb12RQJxq-UX2d_Pms56GIwZ1lxHnE,8532
|
|
68
|
-
maxframe/dataframe/misc/map.py,sha256=
|
|
67
|
+
maxframe/dataframe/misc/map.py,sha256=vHh1PVKv7H5QYodjnFq-wmQSDNVS_o0x9bS_uMzM5sw,12000
|
|
69
68
|
maxframe/dataframe/misc/memory_usage.py,sha256=-5HJK6WVEQd9mtML7cY2MpGbZ_MOsLTwmqGzlOBsLj4,7889
|
|
70
69
|
maxframe/dataframe/misc/isin.py,sha256=yvy2OP2EyBVVWJ7ScFVOXVZ7Re_7ptHk8C87ytwok-A,7066
|
|
70
|
+
maxframe/dataframe/misc/repeat.py,sha256=vrbz5jfjYdE_1O6QHmC8Nv5qhKEvrkQzX_ZRWJLwDqE,4553
|
|
71
71
|
maxframe/dataframe/misc/rechunk.py,sha256=Z4QC2C1_xwtrbG6Km0KWQ5_7kZ35_dKIWtS8ooN6uxE,1956
|
|
72
72
|
maxframe/dataframe/misc/shift.py,sha256=pHfLjNJToO81UGM72t9jStKLfx7CXLeEPjzRRrqxe2A,9028
|
|
73
73
|
maxframe/dataframe/misc/transpose.py,sha256=AfGdFHjrotTNmqLhAbQ9rj1x6rYdq6tEmFOykcOAtyI,3987
|
|
74
|
+
maxframe/dataframe/misc/infer_dtypes.py,sha256=mhL3rowYuWDS4i8CyEGzgYvjTuRNuAAFdhFaQb8LyaE,8067
|
|
74
75
|
maxframe/dataframe/misc/transform.py,sha256=qD6IfjiXYKFgPkFi3BT99QBQGs46fSANQhnXrjzwJPU,11133
|
|
75
76
|
maxframe/dataframe/misc/explode.py,sha256=zpEnxb3-g47MoMevKQ98ewv33rBxRMkTW6DyNdU7KZQ,5011
|
|
76
77
|
maxframe/dataframe/misc/diff.py,sha256=xKG4cPOTvjEeu6zXsb5nGPIXvfya17Zi1sb_zz76EuI,5491
|
|
@@ -80,40 +81,43 @@ maxframe/dataframe/misc/eval.py,sha256=-7MMIJvkyBvOLkiG4up5mRi1OzWiPIKl26a8Tl7qV
|
|
|
80
81
|
maxframe/dataframe/misc/value_counts.py,sha256=mXh-I2rLyxTVr5bLCd-RizqRAEHVf70zSWB63YSNSHA,6169
|
|
81
82
|
maxframe/dataframe/misc/clip.py,sha256=o4fzLXe9M10RhweVmsQ70NkExjs3cjtfTVPITWdyx4c,4643
|
|
82
83
|
maxframe/dataframe/misc/select_dtypes.py,sha256=ktsfTu9cBf76XUGqYxBtCTZLnZTCyN7L6Iw8zRYvR5k,3144
|
|
83
|
-
maxframe/dataframe/misc/drop.py,sha256=
|
|
84
|
+
maxframe/dataframe/misc/drop.py,sha256=RBweEPVDb3vxz3mLmpC6qNlQXCNKs3f3b-OatWfVFNg,13623
|
|
84
85
|
maxframe/dataframe/misc/apply.py,sha256=MxNqmTiZECeUYVz0Dp1p-g1DAqJlSK8Rkvt_NsMrwJU,24153
|
|
85
|
-
maxframe/dataframe/misc/tests/test_misc.py,sha256=
|
|
86
|
+
maxframe/dataframe/misc/tests/test_misc.py,sha256=T4mXKMB66uCMREYn4ZOLWAFINfwAivz-y1fNL4_nhck,21123
|
|
86
87
|
maxframe/dataframe/misc/tests/__init__.py,sha256=YsJxv7HbG4YYJmqAJZPYb8iHFRQX5JGpGn2PInDXvY8,596
|
|
87
88
|
maxframe/dataframe/datasource/index.py,sha256=09h_YKyTIhpy8aUb2dsRJJDciiIloLNFyTDGTg2ESgg,4401
|
|
88
|
-
maxframe/dataframe/datasource/read_csv.py,sha256=
|
|
89
|
+
maxframe/dataframe/datasource/read_csv.py,sha256=lrPdSfv7rK_s9339-LZfwTBno-EoCbydl1XmVCNrmRo,24555
|
|
89
90
|
maxframe/dataframe/datasource/from_index.py,sha256=Ouwbr1tVjJiVr_xP5dydijE2gPaN_phWxDi8ed0PHHw,1959
|
|
90
91
|
maxframe/dataframe/datasource/dataframe.py,sha256=-V8qjEhRwaFeOYeFzjf8h5A1gqpgH_-GbNCf4Au7VRM,2023
|
|
91
92
|
maxframe/dataframe/datasource/series.py,sha256=Sou6J9hg3JJdSxuTcJjsD5EWPmvVB1J5I_ys24IkBe4,1909
|
|
92
93
|
maxframe/dataframe/datasource/__init__.py,sha256=7dFeygB7sWCEpSyA5G4UGjlSqz6UQ-zzHQz0yuMHIrM,1165
|
|
93
|
-
maxframe/dataframe/datasource/read_odps_query.py,sha256=
|
|
94
|
-
maxframe/dataframe/datasource/core.py,sha256=
|
|
94
|
+
maxframe/dataframe/datasource/read_odps_query.py,sha256=QTVBPVj3T_zmH4Kt_ehaxx8u4DMZ2hE9cCKZhJFW1oY,18430
|
|
95
|
+
maxframe/dataframe/datasource/core.py,sha256=C1yuFCsD3hQn3Vdp39uFjX4X75TkFS6nwn5RZw1_Bts,3144
|
|
95
96
|
maxframe/dataframe/datasource/date_range.py,sha256=tYKZPn8eAU_gxpEDNgNX-SCQneYwXCOPuGk5b19HkLM,17527
|
|
96
|
-
maxframe/dataframe/datasource/read_odps_table.py,sha256=
|
|
97
|
+
maxframe/dataframe/datasource/read_odps_table.py,sha256=r2HWLtuV_7M0ExEYGRtuLJGCnEwO_UbPAmw1aFIQXq8,10717
|
|
97
98
|
maxframe/dataframe/datasource/from_dict.py,sha256=SOzAHfOLfxhTeqORSQWhmqFaNrHFzrtuKynDmh6-4IM,4238
|
|
98
|
-
maxframe/dataframe/datasource/read_parquet.py,sha256=
|
|
99
|
+
maxframe/dataframe/datasource/read_parquet.py,sha256=He56eI5yWMJYZ0Q2QGycGyp08vQeQoQFGbD91V9YIKw,15016
|
|
100
|
+
maxframe/dataframe/datasource/direct.py,sha256=3g9UTdDR-aNMz6R1jLrnC_EMuIjgFxw4iXxiHh3C4g8,1815
|
|
99
101
|
maxframe/dataframe/datasource/from_tensor.py,sha256=lGDjzvVaLo3pCuQ1iP9W7rJx0BLt_uhDx-AMGJxmQx8,17938
|
|
100
102
|
maxframe/dataframe/datasource/from_records.py,sha256=pVHZyTtA76OZGLQ_tPp0oECx-AEmucEXbNbDtfyy5oE,6221
|
|
101
103
|
maxframe/dataframe/datasource/tests/test_datasource.py,sha256=HEanLHDx_vGDpj6qwOC3tDGljPRWEuTV6LiW4YLrD6I,22831
|
|
102
104
|
maxframe/dataframe/datasource/tests/__init__.py,sha256=YsJxv7HbG4YYJmqAJZPYb8iHFRQX5JGpGn2PInDXvY8,596
|
|
103
|
-
maxframe/dataframe/sort/argsort.py,sha256
|
|
105
|
+
maxframe/dataframe/sort/argsort.py,sha256=BGAfrezIxuTDr0wFu7P4PIveVH0rob8YwuwtYS2x6ag,2270
|
|
104
106
|
maxframe/dataframe/sort/sort_index.py,sha256=gmv55CmKkAsWrA9bWf45JfX8IvMc0FuFloqb6D3cziI,5412
|
|
105
|
-
maxframe/dataframe/sort/__init__.py,sha256
|
|
107
|
+
maxframe/dataframe/sort/__init__.py,sha256=DCzqnPUH2MtEkJQEIaEnQ5eHK6PdFUbuB7cHRDAJtxc,1788
|
|
106
108
|
maxframe/dataframe/sort/sort_values.py,sha256=GXoghiR8K750Wh6now-wSwYGpcPYsXgi0rA3C95dyzQ,8702
|
|
107
|
-
maxframe/dataframe/sort/core.py,sha256=
|
|
109
|
+
maxframe/dataframe/sort/core.py,sha256=q3H50DA8onVUX_TA2I_O9F8l-zPYOh_QaHaKic7Awho,1295
|
|
108
110
|
maxframe/dataframe/sort/nlargest.py,sha256=Ho1VuqEcxbndViwj0WzaPu3rGOGBIM-Y4z-Tg3jjs-w,7954
|
|
109
111
|
maxframe/dataframe/sort/nsmallest.py,sha256=7pUFgGWjA1etnsT2KnGZ81bIcQkQB6r98A93SvZtqvs,7561
|
|
112
|
+
maxframe/dataframe/sort/rank.py,sha256=3r0V5oKWw-RrOof-CgnA0ReG_-dwJPQXMf1PotoJBY8,5316
|
|
110
113
|
maxframe/dataframe/sort/tests/__init__.py,sha256=YsJxv7HbG4YYJmqAJZPYb8iHFRQX5JGpGn2PInDXvY8,596
|
|
111
114
|
maxframe/dataframe/sort/tests/test_sort.py,sha256=wgKIfOb9VY200i7I3suSru7ZNhA5zg_vQuKcprOQUD4,2604
|
|
112
115
|
maxframe/dataframe/merge/update.py,sha256=PbBSCknc5_JoE_DrfXBpe7UH7BP4NrYUfkow5taJpno,7875
|
|
113
116
|
maxframe/dataframe/merge/combine_first.py,sha256=9qYF9hEagAdjuVwy1eX1kTfDZHxOLUFri-cSES9lo9s,3689
|
|
114
117
|
maxframe/dataframe/merge/merge.py,sha256=F7Gjfv4bDLiwgotRoVFYTWUp4mcden53DChuQwso4W4,29864
|
|
118
|
+
maxframe/dataframe/merge/combine.py,sha256=sBHgm84sqT25ZNfgfTMwe-TFRnHVpIU9Ihv4OYTOC6I,7796
|
|
115
119
|
maxframe/dataframe/merge/concat.py,sha256=CqdM8wXZxP1RtzcmrSx1IG7Z8l2-pdIKgq5S9IsE6hs,17569
|
|
116
|
-
maxframe/dataframe/merge/__init__.py,sha256=
|
|
120
|
+
maxframe/dataframe/merge/__init__.py,sha256=1RUTDuFogvPX22cw6VDozCsGGIazSkgp-ePpFrW5_H0,1756
|
|
117
121
|
maxframe/dataframe/merge/append.py,sha256=RhKc6Js3H_vhDAzGCMpyNGOxaAQzHLOK11C8WexKnCg,3478
|
|
118
122
|
maxframe/dataframe/merge/compare.py,sha256=Ps-mtkhoqSH9yjx7-brqma4VRpTM6gQQhKldwiTGtKc,11530
|
|
119
123
|
maxframe/dataframe/merge/tests/__init__.py,sha256=YsJxv7HbG4YYJmqAJZPYb8iHFRQX5JGpGn2PInDXvY8,596
|
|
@@ -158,7 +162,9 @@ maxframe/dataframe/accessors/datetime_/__init__.py,sha256=MqUNHuuULHtJqfZT-f7O0m
|
|
|
158
162
|
maxframe/dataframe/accessors/datetime_/core.py,sha256=nTdwF4B4Nkh7mNmOAd36jR4qCesTyTyhFNaheqnqUB8,2604
|
|
159
163
|
maxframe/dataframe/accessors/datetime_/tests/test_datetime_accessor.py,sha256=E5qo7BfyUqWVzLBNx3a7fA119QMTQKBhyh-J-Cm5Eo0,1395
|
|
160
164
|
maxframe/dataframe/accessors/datetime_/tests/__init__.py,sha256=YsJxv7HbG4YYJmqAJZPYb8iHFRQX5JGpGn2PInDXvY8,596
|
|
161
|
-
maxframe/dataframe/tseries/__init__.py,sha256=
|
|
165
|
+
maxframe/dataframe/tseries/__init__.py,sha256=murH7kL5Oqbn8F8jKEvlv5o40wmB_JJJ34jMPGnswbo,1005
|
|
166
|
+
maxframe/dataframe/tseries/at_time.py,sha256=90smCRmj6vvyBHQdCBHL_bJBJ0K28JvHJJQKkl5lw3I,1963
|
|
167
|
+
maxframe/dataframe/tseries/between_time.py,sha256=IXMIn9rV6JZ7AgQr-XFyYElyrdjyxtczEic5BZjGRJA,4195
|
|
162
168
|
maxframe/dataframe/tseries/to_datetime.py,sha256=rvVcXBqbc7Xf7TlTUEhTNIqw9k3J-BQhvVVt5MVK8I0,11426
|
|
163
169
|
maxframe/dataframe/tseries/tests/__init__.py,sha256=YsJxv7HbG4YYJmqAJZPYb8iHFRQX5JGpGn2PInDXvY8,596
|
|
164
170
|
maxframe/dataframe/tseries/tests/test_tseries.py,sha256=ECx22AkI-TFT-293amPHdR6vydTgSOM7wNFa0_f5G0o,989
|
|
@@ -171,13 +177,13 @@ maxframe/dataframe/ufunc/__init__.py,sha256=GM5LuPDJD8WHK_-sPPBC6cMyEuTyuDWY2JUn
|
|
|
171
177
|
maxframe/dataframe/ufunc/tensor.py,sha256=iBUpqvpgYuooh_Iv8iUN9haQ_bxo6sD5LVdrHuaNv0A,1618
|
|
172
178
|
maxframe/dataframe/missing/dropna.py,sha256=3Wk48ik3iK4dQjvwoaa-zKkBZc7WhTJZplOb4t60xhA,8720
|
|
173
179
|
maxframe/dataframe/missing/fillna.py,sha256=si4fq6nZISfvX9IRLASgnI0clrAJSfSc_qqpcJItjaI,9174
|
|
174
|
-
maxframe/dataframe/missing/checkna.py,sha256=
|
|
180
|
+
maxframe/dataframe/missing/checkna.py,sha256=IKsZtNZuWvdRHlEDpYrAfKDdeIh7dC-LKAqe72hE5f4,7288
|
|
175
181
|
maxframe/dataframe/missing/__init__.py,sha256=wETXRj4oWTruI67Vq_EKlUjGrOo7bvFFBM2Qxf2dIG4,1813
|
|
176
182
|
maxframe/dataframe/missing/replace.py,sha256=RbqYR1ZWi5nzGMR5E2BUcRVO3QXBC2rO8sWUX6be-Uk,13602
|
|
177
183
|
maxframe/dataframe/missing/tests/test_missing.py,sha256=8pIE9U6TeeWjPYarouMhpMwKNTsM0O1SLnglr-WfFDM,3127
|
|
178
184
|
maxframe/dataframe/missing/tests/__init__.py,sha256=YsJxv7HbG4YYJmqAJZPYb8iHFRQX5JGpGn2PInDXvY8,596
|
|
179
185
|
maxframe/dataframe/extensions/accessor.py,sha256=QkHJq6n_qayJDM5qZalLVFVZgwCcdjMBJt-V5a6UtJs,1031
|
|
180
|
-
maxframe/dataframe/extensions/flatjson.py,sha256=
|
|
186
|
+
maxframe/dataframe/extensions/flatjson.py,sha256=nliV9yvEThbPUMLRO1fX4oUrW6nLCa5Xh-cuKQYc5iU,4436
|
|
181
187
|
maxframe/dataframe/extensions/apply_chunk.py,sha256=PO9-XyvmecpEONO8nFTPbV_kiNkXEHU8TjV9ppJAfEE,24355
|
|
182
188
|
maxframe/dataframe/extensions/__init__.py,sha256=JllDw5KJAlgg-v2FHdTfeSpjJRcpRy0hA1RhxipA5NY,2743
|
|
183
189
|
maxframe/dataframe/extensions/collect_kv.py,sha256=ogM4H1znh2fXYGN7VSzQVy6cLUajf2rnK3JXg9RxnRw,4234
|
|
@@ -191,13 +197,13 @@ maxframe/dataframe/extensions/tests/test_apply_chunk.py,sha256=p46wXHF3MWk58ZHH4
|
|
|
191
197
|
maxframe/dataframe/extensions/tests/test_map_reduce.py,sha256=oiXzxqo8YS9Y8yRXeJAMhJhILX_Jm8E5KwpYHR0LQxI,4362
|
|
192
198
|
maxframe/dataframe/extensions/tests/test_extensions.py,sha256=mTZKTQzMz6i5w_wqZ8R3G2zAuMOdhf9Rh9G6hKyW3LQ,6435
|
|
193
199
|
maxframe/dataframe/extensions/tests/__init__.py,sha256=YsJxv7HbG4YYJmqAJZPYb8iHFRQX5JGpGn2PInDXvY8,596
|
|
194
|
-
maxframe/dataframe/groupby/aggregation.py,sha256=
|
|
200
|
+
maxframe/dataframe/groupby/aggregation.py,sha256=lB1atq1a7OCTjlximmmYVIhc-H7Ka2y0334YZjlnCgI,14920
|
|
195
201
|
maxframe/dataframe/groupby/fill.py,sha256=gcGRF00aCeALmDowE5RsJ1o1o_Qhd2fgvcCVmr-xi4g,4901
|
|
196
|
-
maxframe/dataframe/groupby/apply_chunk.py,sha256=
|
|
202
|
+
maxframe/dataframe/groupby/apply_chunk.py,sha256=DiLMKLRsbD0WkgpQida4HrMe2X1-r97keyM7tXg40XE,14436
|
|
197
203
|
maxframe/dataframe/groupby/cum.py,sha256=jJ5_iGRxGi5XaY_gYLZrCZ9tQt6ai6dVYDhf7ANv6PI,3309
|
|
198
|
-
maxframe/dataframe/groupby/__init__.py,sha256=
|
|
204
|
+
maxframe/dataframe/groupby/__init__.py,sha256=SI1w40zZPfBC-ZLCQYbUCH4ANy-YqNm4r9-cq2lRe5g,4237
|
|
199
205
|
maxframe/dataframe/groupby/getitem.py,sha256=4wEMWIPUt2mlFhja13txdRe_oBZqPnNLpj8dh0mN5ps,3643
|
|
200
|
-
maxframe/dataframe/groupby/core.py,sha256=
|
|
206
|
+
maxframe/dataframe/groupby/core.py,sha256=WVrInzzJs5TpOPcAsWRGlFC2QAmvMLdDVx2YJKv3av4,12019
|
|
201
207
|
maxframe/dataframe/groupby/rolling.py,sha256=sRh07osepstKLxgUlr27likPGsl8wAmjR6dpQRSuFwk,6727
|
|
202
208
|
maxframe/dataframe/groupby/extensions.py,sha256=c9pfAtHuEDFm5in6QTt5fQIdlqXw5ihfl65GeanKyZU,915
|
|
203
209
|
maxframe/dataframe/groupby/shift.py,sha256=qIW_p1_Lp-qTqROKfkQM908H1sGy6t1nff9ltrr72Ks,3115
|
|
@@ -209,30 +215,32 @@ maxframe/dataframe/groupby/expanding.py,sha256=n_5xOFnQRK7ehmpNHikCFGMmjQRTAo70R
|
|
|
209
215
|
maxframe/dataframe/groupby/apply.py,sha256=0LjJSdZ3sAzomu4zmcQIKF2JCkjP0gyhDbuwibbI1k8,8461
|
|
210
216
|
maxframe/dataframe/groupby/tests/__init__.py,sha256=YsJxv7HbG4YYJmqAJZPYb8iHFRQX5JGpGn2PInDXvY8,596
|
|
211
217
|
maxframe/dataframe/groupby/tests/test_groupby.py,sha256=OuaLNMIb1dlKgC2EMfv62z9-NTUxAKpkF4l1S2INd2M,12150
|
|
212
|
-
maxframe/dataframe/datastore/__init__.py,sha256=
|
|
218
|
+
maxframe/dataframe/datastore/__init__.py,sha256=EiZOmvCd7iq7oIJnyDbgcWQcYfj2YlgVM0ewKi8g740,1156
|
|
213
219
|
maxframe/dataframe/datastore/core.py,sha256=USIY-JV6gmGI7DFl5F_YptytNxnHFPErsDctzAN2Ivw,743
|
|
214
220
|
maxframe/dataframe/datastore/to_csv.py,sha256=8lSXyjqlUxjWCX5iD3Y163N9kyRLjSi6-d2AhA-6YYE,7910
|
|
215
|
-
maxframe/dataframe/datastore/to_odps.py,sha256=
|
|
221
|
+
maxframe/dataframe/datastore/to_odps.py,sha256=BkhHyJiVlDSle4mKOxsNmZUwN6EdQIoyXU8-PBDxNxc,9830
|
|
222
|
+
maxframe/dataframe/datastore/direct.py,sha256=0pSA0mehiUVCtSLj6s8s8AGBlfr60StvKyk0PJE_A5s,8453
|
|
216
223
|
maxframe/dataframe/datastore/tests/__init__.py,sha256=YsJxv7HbG4YYJmqAJZPYb8iHFRQX5JGpGn2PInDXvY8,596
|
|
217
224
|
maxframe/dataframe/datastore/tests/test_to_odps.py,sha256=ftaUeXpGr_daZOn9dtWq0QEFiLg9i3kGfEo7F2Z3ss4,2989
|
|
218
225
|
maxframe/dataframe/fetch/__init__.py,sha256=Mlwm89_WXweFj-zQNbIEnnIZD8vHh7z5A2WPXxN7KE4,653
|
|
219
226
|
maxframe/dataframe/fetch/core.py,sha256=GP5E5tCodXgyPOj1CNX4TcaVJUG7VwtI3-TE8S84Qu4,3744
|
|
220
227
|
maxframe/dataframe/reduction/max.py,sha256=QSatmRu5cjCDxKR0ZChFrETUQSF6e_fOlN-Z172YpxQ,1644
|
|
221
|
-
maxframe/dataframe/reduction/nunique.py,sha256=
|
|
228
|
+
maxframe/dataframe/reduction/nunique.py,sha256=OF1Tm02o8lXmmF-uI5F05zBM-fIE_kvNyse_sZG65aU,3928
|
|
222
229
|
maxframe/dataframe/reduction/cummax.py,sha256=OYY6BZeNOcdNq68A9ZpD4zAdmuPhvs8iMs1kdsQTctA,997
|
|
223
|
-
maxframe/dataframe/reduction/aggregation.py,sha256=
|
|
230
|
+
maxframe/dataframe/reduction/aggregation.py,sha256=f7_bQq7emCpLTLjfJbgR7NOUMSpeK55HqUY54d2T-PY,17831
|
|
224
231
|
maxframe/dataframe/reduction/skew.py,sha256=HWdZe6GRUYaAwKH0pUomx68N5NYKdfwTt8IVe-8UFT4,2705
|
|
225
232
|
maxframe/dataframe/reduction/custom_reduction.py,sha256=tZ-go3T-NgWMGTNg3bx60sU9R2lRd8iZTyl2Mv5LoTA,1419
|
|
226
233
|
maxframe/dataframe/reduction/idxmax.py,sha256=fEZbsp3i_jdFimtIm5mzYBts2KCwggMWcIo5j35vp0Q,5318
|
|
227
234
|
maxframe/dataframe/reduction/unique.py,sha256=fgVKAqMawXVs6-xjbpsXk9bGyXrYKPp5Zg1SCHHj3cM,4901
|
|
228
235
|
maxframe/dataframe/reduction/std.py,sha256=GmIp-lXVxZGFO2jZVcTmWwHz7rZfhhm2ONKTqZfU8LA,1355
|
|
229
236
|
maxframe/dataframe/reduction/str_concat.py,sha256=5r-VkCN-48BmVARG2BBlYfEG4JR0b3w0u_JMrvvopg0,1797
|
|
230
|
-
maxframe/dataframe/reduction/__init__.py,sha256=
|
|
231
|
-
maxframe/dataframe/reduction/argmax.py,sha256=
|
|
232
|
-
maxframe/dataframe/reduction/core.py,sha256=
|
|
237
|
+
maxframe/dataframe/reduction/__init__.py,sha256=nRKoHSJNeOCOrTdoIw0i5SDADUKVMnvyRuviG5hMcUA,5209
|
|
238
|
+
maxframe/dataframe/reduction/argmax.py,sha256=R2OnzfQ_FY_b-A2bGq5F4BtFqw4tHOJ_YLFcZKNWtMk,3297
|
|
239
|
+
maxframe/dataframe/reduction/core.py,sha256=dF630p0-Uz8Jran2_5XhJAooBKbSzNPHyw8FiAVc-XA,33085
|
|
233
240
|
maxframe/dataframe/reduction/all.py,sha256=1HCk4rVHk02npNnGHiXRPqfr-0DbB_vLpdvoKOAXdN0,1950
|
|
234
241
|
maxframe/dataframe/reduction/cov.py,sha256=e5O_1rmWo-rDoY95pw4KhD2v1P2lBwJL3Olb0fysjao,6210
|
|
235
242
|
maxframe/dataframe/reduction/cummin.py,sha256=clx698Urwo6iVOl3vEGwnyXtPlKghHUgk85BLt2BFpE,997
|
|
243
|
+
maxframe/dataframe/reduction/mode.py,sha256=bEqGWAae_6bsW3xDKtpJVZzRXo9tP4R-gf7p3iVW-a4,5114
|
|
236
244
|
maxframe/dataframe/reduction/min.py,sha256=KKdOU5OW0v19M26jZB1wTeEqDf9eDeC-OMdHEHjrvHU,1644
|
|
237
245
|
maxframe/dataframe/reduction/mean.py,sha256=YUb3zpA8mP73GuVJBI7Jn7jeYL7dGWmbSUTcvmnqFLc,1779
|
|
238
246
|
maxframe/dataframe/reduction/var.py,sha256=tqwO1qqlQrgcsGOlGW1NpQI4phTBVUh6OxJbzy2Zi8c,2228
|
|
@@ -247,9 +255,9 @@ maxframe/dataframe/reduction/sem.py,sha256=URGLYsGcPfske81WxK3_Yp6rAKw4Oux9QWKn6
|
|
|
247
255
|
maxframe/dataframe/reduction/cumprod.py,sha256=mDi8lGFg_jcb1xMJZ-SSdrWFTVLJqGgd95jx8AXvgFQ,1002
|
|
248
256
|
maxframe/dataframe/reduction/count.py,sha256=8prfu-Er6a1I5OzHGW5aflU-LVPmQJRClHdAbUOLXlw,1983
|
|
249
257
|
maxframe/dataframe/reduction/reduction_size.py,sha256=w07CSrdkmbE8J3h5l_HEiwoKmML90EKlAyQTAopr_yY,1104
|
|
250
|
-
maxframe/dataframe/reduction/argmin.py,sha256=
|
|
258
|
+
maxframe/dataframe/reduction/argmin.py,sha256=7Vn8E4zpwa-VXV_e4npPZmEeQGkPb5i9-isCmY5wYKA,3297
|
|
251
259
|
maxframe/dataframe/reduction/tests/__init__.py,sha256=YsJxv7HbG4YYJmqAJZPYb8iHFRQX5JGpGn2PInDXvY8,596
|
|
252
|
-
maxframe/dataframe/reduction/tests/test_reduction.py,sha256=
|
|
260
|
+
maxframe/dataframe/reduction/tests/test_reduction.py,sha256=G0LHKDuczC4JtyIeZinmaN263lXF-jDGlsBOhjmo7X4,19235
|
|
253
261
|
maxframe/dataframe/window/aggregation.py,sha256=qBN9jQ40bdvQSuqICohv1wVZ1br0y-o4WpIKjUiEqu4,3894
|
|
254
262
|
maxframe/dataframe/window/ewm.py,sha256=vrWPW_MNdDgl2BONzy5LubwyVxylIiAm0UWJkdzflJE,7752
|
|
255
263
|
maxframe/dataframe/window/__init__.py,sha256=kRKsdMgSYsFZeDQV_sXy2yyVdALKsYLK5NM3zjnx0uM,910
|
|
@@ -277,17 +285,19 @@ maxframe/dataframe/arithmetic/degrees.py,sha256=caKuVKu1ukyWOW5pR4ifZweKxAYi71KT
|
|
|
277
285
|
maxframe/dataframe/arithmetic/cos.py,sha256=O4P-XDbyADP_E2Dz7flNaPLJs6HmyK6NKH1hVVFVnz0,915
|
|
278
286
|
maxframe/dataframe/arithmetic/tan.py,sha256=YYcDjP4NqXvUGYafUsVH4bByg6rBk7wNtKlW_ZXzd30,915
|
|
279
287
|
maxframe/dataframe/arithmetic/abs.py,sha256=IK6Zxy1w9C4KOCgPl2Zx2MHsaUTTkpVublbK263bWZc,983
|
|
280
|
-
maxframe/dataframe/arithmetic/__init__.py,sha256=
|
|
288
|
+
maxframe/dataframe/arithmetic/__init__.py,sha256=vja4CkHTLEq5yZRspX1yqiLZPU5fqiZJPEQf8E58mh8,12948
|
|
281
289
|
maxframe/dataframe/arithmetic/core.py,sha256=OVt7T5UtcZpKUAjSLj6t9La4gdA-Po6SLdSoI4IInSA,14497
|
|
282
290
|
maxframe/dataframe/arithmetic/floor.py,sha256=aomnYTbh4Fs8CtY82b6OgfGXj0xCg2j6kiAK-rlie48,925
|
|
283
291
|
maxframe/dataframe/arithmetic/is_ufuncs.py,sha256=7DO49HO9Ha347Pay7DHIgLDx96gn6h5rjuULiOSVwtY,1736
|
|
284
292
|
maxframe/dataframe/arithmetic/ceil.py,sha256=2baxYINaqkKgbb6UhJ4-XEz-O0H02liJ2I_PyGxohDY,920
|
|
285
293
|
maxframe/dataframe/arithmetic/bitwise_or.py,sha256=FvGNn64GtiOhQbn3fACkoiLIlhSTvnVWeWaqMtRzE2U,1546
|
|
294
|
+
maxframe/dataframe/arithmetic/maximum.py,sha256=doS39H_CI_Gx08nMwGYqG0HNjCiKyCerYf9OZeyygGg,999
|
|
286
295
|
maxframe/dataframe/arithmetic/bitwise_and.py,sha256=7gJstDeVKIrw-oyGerrXz_VbL3t4yBrQd85Vm9azuuc,1427
|
|
287
296
|
maxframe/dataframe/arithmetic/log10.py,sha256=1S65Ux7RorVduQbViKYA37hixWam5Y2CJ6zt6OIF4fY,925
|
|
288
297
|
maxframe/dataframe/arithmetic/docstring.py,sha256=maE6SmYaTCLmp3BWCOg70hkS3x3GSYa3V3P-7ZxzAhY,11691
|
|
289
298
|
maxframe/dataframe/arithmetic/truediv.py,sha256=ovrp5MI3jAsdbWuynU6ZrlRL9_HVbf4r9vWjvSbHSro,1808
|
|
290
299
|
maxframe/dataframe/arithmetic/round.py,sha256=gtLxSOVFu8EqdC4_eO8AtABTUq1AilTKfqih28WXMBo,3886
|
|
300
|
+
maxframe/dataframe/arithmetic/minimum.py,sha256=SSvEPvnx_Aa9jz9N1pkp8F5PFo4W5ahT4e1IRjikE1Q,999
|
|
291
301
|
maxframe/dataframe/arithmetic/exp2.py,sha256=QVzw4bJgh24tXm6q-PaNJm22CWZdAkXl19rBHXTCgRI,920
|
|
292
302
|
maxframe/dataframe/arithmetic/expm1.py,sha256=UlN5R1uk2aL65vMOK_9sh_HljmgnVyUs-RdslRhl3RI,925
|
|
293
303
|
maxframe/dataframe/arithmetic/between.py,sha256=SX1kvNkHzplKnpzczTqYtGdB6bXsI5Zm8oOuEcokYjk,3004
|
|
@@ -323,7 +333,7 @@ maxframe/dataframe/indexing/droplevel.py,sha256=qVsFjz6IVZL17N-euluOkSTyzRMCdNiH
|
|
|
323
333
|
maxframe/dataframe/indexing/where.py,sha256=adlCOVeCL1yIdKHc1mu7mz6tsZIZbuM3NftsHBG8YIg,8203
|
|
324
334
|
maxframe/dataframe/indexing/iloc.py,sha256=EB12L6vqJvYZmkdS8ErlDxxhXnl80FWfislu0Ki-QHs,21639
|
|
325
335
|
maxframe/dataframe/indexing/xs.py,sha256=YpBofFJPyIotvan0PBLEZIfAY3-bIZXpgPOJF3Nfjtw,4806
|
|
326
|
-
maxframe/dataframe/indexing/__init__.py,sha256=
|
|
336
|
+
maxframe/dataframe/indexing/__init__.py,sha256=dYXHkvAQcWC-VHykB2uXCld7KgACdsmcu9vip3LRchQ,4187
|
|
327
337
|
maxframe/dataframe/indexing/getitem.py,sha256=6LRc68w1GML1-K93TinLLwvA7QsujJuQtRunnLOEDMQ,7837
|
|
328
338
|
maxframe/dataframe/indexing/set_index.py,sha256=omR_cfnV47LFwTev-MyfyC10CmmteU5nzjwxD_PuVy0,4195
|
|
329
339
|
maxframe/dataframe/indexing/at.py,sha256=m1Zl8H4Fit4IaIU5v3gtho2_0jvLog3jn9iNooAP_m0,2217
|
|
@@ -332,7 +342,7 @@ maxframe/dataframe/indexing/rename_axis.py,sha256=V92L8Za2j9uGeiVvhKcVW4WGVd8JOV
|
|
|
332
342
|
maxframe/dataframe/indexing/add_prefix_suffix.py,sha256=XtYVxHDmJmI1XsAxvdD5BgItRMUXfAJjPFJHliVWINU,2966
|
|
333
343
|
maxframe/dataframe/indexing/take.py,sha256=5Pu2P-ejjjm9IqQOC4N4iTj3fcYOT1LkVFOaVf3A770,3512
|
|
334
344
|
maxframe/dataframe/indexing/reorder_levels.py,sha256=zBVjvyvnd0MkPVr85bsoA2GraivAcZrSVk7rx5nIf50,4479
|
|
335
|
-
maxframe/dataframe/indexing/insert.py,sha256=
|
|
345
|
+
maxframe/dataframe/indexing/insert.py,sha256=tueoDdDrFgB-DG5M0k8zxsZfVJxCU6-CokuJnjgj6Z4,3799
|
|
336
346
|
maxframe/dataframe/indexing/sample.py,sha256=FbU3tVq4HF6un1VrCdJfdQN4teWMD2EHg5fYkbg2MgY,8569
|
|
337
347
|
maxframe/dataframe/indexing/filter.py,sha256=46HYAYH_2zMoS-gNX58Mp9HyHTOpNRg0i2Ia3a84A6o,6057
|
|
338
348
|
maxframe/dataframe/indexing/set_axis.py,sha256=EhVI8rS6yfxQYELsgto__qaTOpOV7gYZ9_vl2t03b4Q,5623
|
|
@@ -368,32 +378,44 @@ maxframe/learn/linear_model/_lin_reg.py,sha256=fHWtC7_9W4XPaiu9-lE1tZyf6dXbX4aX4
|
|
|
368
378
|
maxframe/learn/linear_model/__init__.py,sha256=Wv6xpF5f7Nt3Qm410Xz-xC-940RoFna4Oun3jlsMBAA,636
|
|
369
379
|
maxframe/learn/utils/multiclass.py,sha256=NDo3D6cvsoibyoODfD8R38w9pqB7ShUkVgixzOkURms,9042
|
|
370
380
|
maxframe/learn/utils/checks.py,sha256=sERFEMRadqY3fyremCPWjl1vbof9vmcbHUqmfx7hmAc,5059
|
|
371
|
-
maxframe/learn/utils/__init__.py,sha256=
|
|
381
|
+
maxframe/learn/utils/__init__.py,sha256=rodKX_T8B7s4ZwqiKiqpCl2mRxupfkGAEg-PX9XOoM4,864
|
|
372
382
|
maxframe/learn/utils/core.py,sha256=ObLqy2db9BKzyu6qk4Jkk74OGXai2f1sQPWJ6ma9wRY,3507
|
|
373
383
|
maxframe/learn/utils/shuffle.py,sha256=HbHv17gd4OdUXy8FQa-KnInRAOjKFnFdeQxZTm9AwyQ,4321
|
|
374
|
-
maxframe/learn/utils/extmath.py,sha256=
|
|
384
|
+
maxframe/learn/utils/extmath.py,sha256=NaVOOXVq_YV-uGgf8Jdzl_aIZlh0MiF0JGurj7ba2zI,8319
|
|
375
385
|
maxframe/learn/utils/_encode.py,sha256=9uX8gP9kVP6pOdootrNfaVBNTJz1Cbr_Jh_23nk1O4s,9704
|
|
376
386
|
maxframe/learn/utils/sparsefuncs.py,sha256=KjVClmdDaPzXXprAHpsDsEBmGJdaXmmjvsPnBCxTrqQ,2744
|
|
377
|
-
maxframe/learn/utils/odpsio.py,sha256=
|
|
387
|
+
maxframe/learn/utils/odpsio.py,sha256=8EaP1KKeH0ytPcP3KOWoHE5XxMgJeS16wWL-DumOLMk,9771
|
|
378
388
|
maxframe/learn/utils/validation.py,sha256=H0kPa0q0KfsP5r0qb2wnpc0l5ziQDsIQSKFMBROrROg,27075
|
|
379
|
-
maxframe/learn/contrib/models.py,sha256=
|
|
389
|
+
maxframe/learn/contrib/models.py,sha256=dqZ9DbKiIToRmUzwWky2UUtuSki1KWUC0lqscBdTd1U,3573
|
|
380
390
|
maxframe/learn/contrib/__init__.py,sha256=7ayYHlGHqy5fkl89n3ceoAR1ZHi57sb9FF85PS9Hwpg,676
|
|
381
391
|
maxframe/learn/contrib/utils.py,sha256=Mqm5peCV45D2Q6qF4wZS57GdD2aGlVe03YFBqJ4fAIY,3383
|
|
382
392
|
maxframe/learn/contrib/llm/multi_modal.py,sha256=C6Vq-U8JRUSZMUDsrWt9m1GBPyp9f9V8ZaTzBNhsA9U,5406
|
|
383
393
|
maxframe/learn/contrib/llm/__init__.py,sha256=MBEWoYEQtBpZL070GOh721OYMvH3D2Y5BzyB4_DXZjY,649
|
|
384
|
-
maxframe/learn/contrib/llm/core.py,sha256=
|
|
385
|
-
maxframe/learn/contrib/llm/text.py,sha256=
|
|
386
|
-
maxframe/learn/contrib/llm/
|
|
387
|
-
maxframe/learn/contrib/llm/
|
|
388
|
-
maxframe/learn/contrib/llm/
|
|
394
|
+
maxframe/learn/contrib/llm/core.py,sha256=ZIpqvHvmyldE1NUqkpQBdHwUslwMaiTrakNupphyD4E,3076
|
|
395
|
+
maxframe/learn/contrib/llm/text.py,sha256=IOoiS4TXYzA9DJck6ksCnYv5G6A1U-KJnbvgj1zFkC8,20479
|
|
396
|
+
maxframe/learn/contrib/llm/deploy/config.py,sha256=Ld5xjea1thtmkDQ57gFYdT3XM9BVB-goUHnTGLf3E_c,8661
|
|
397
|
+
maxframe/learn/contrib/llm/deploy/framework.py,sha256=B0TWwdB4wPhkDL2UpmrdKf_L6IhgNAKj0MAEl_PRv5g,1146
|
|
398
|
+
maxframe/learn/contrib/llm/deploy/__init__.py,sha256=YsJxv7HbG4YYJmqAJZPYb8iHFRQX5JGpGn2PInDXvY8,596
|
|
399
|
+
maxframe/learn/contrib/llm/deploy/core.py,sha256=bXYGG6WEeD_rFBAata9UQQZUD3B1TVy0NK92hqMQQAc,8520
|
|
400
|
+
maxframe/learn/contrib/llm/deploy/loader.py,sha256=l8mRRPG-STqB3sDfOSjIBYndo5CkvLkp5TJ-126AkyU,12716
|
|
401
|
+
maxframe/learn/contrib/llm/deploy/tests/__init__.py,sha256=YsJxv7HbG4YYJmqAJZPYb8iHFRQX5JGpGn2PInDXvY8,596
|
|
402
|
+
maxframe/learn/contrib/llm/deploy/tests/test_register_models.py,sha256=MZUNDyb6R79aVCz6zvxAPvMvaUyTmVRFtEGR256lwBo,11718
|
|
403
|
+
maxframe/learn/contrib/llm/tests/test_openai.py,sha256=VAllxIc1nvjqBUB2wdxiKyOSttDAmkIin-ku3eiQmxI,6566
|
|
404
|
+
maxframe/learn/contrib/llm/tests/test_text_gen.py,sha256=L6zDCizegH5Om2t1QCpEDyJlX2D2nrSROsCJhYc4_0k,5506
|
|
405
|
+
maxframe/learn/contrib/llm/tests/test_core.py,sha256=R1Rl7yuengNj5zzBVNtNh5x4M6YKaAKM_QHMm9KJgDI,1210
|
|
406
|
+
maxframe/learn/contrib/llm/tests/__init__.py,sha256=YsJxv7HbG4YYJmqAJZPYb8iHFRQX5JGpGn2PInDXvY8,596
|
|
407
|
+
maxframe/learn/contrib/llm/models/__init__.py,sha256=aq34PFerYXERbREiFeLkM-F1I9pbGRUifl63ZMsS6l4,705
|
|
408
|
+
maxframe/learn/contrib/llm/models/dashscope.py,sha256=IQ0_-hvtQLCLxCZG6ZHq56NzXX3e50uepU_K2X0yyFM,3650
|
|
409
|
+
maxframe/learn/contrib/llm/models/openai.py,sha256=0bhu27sRQEV-yoUv2R4mjgGyi4O5hh2LHNDkZmQLqpg,2263
|
|
410
|
+
maxframe/learn/contrib/llm/models/managed.py,sha256=8gDSN-ZPCn63kJKNMHoTOqjx8P1rM4Rb_Uy8Y97XcGY,3615
|
|
389
411
|
maxframe/learn/contrib/xgboost/callback.py,sha256=k66jfODZLxtwKQOfHYiV9N0bf_Fm8OSUAp2YO_oGZ5A,2690
|
|
390
|
-
maxframe/learn/contrib/xgboost/classifier.py,sha256=
|
|
412
|
+
maxframe/learn/contrib/xgboost/classifier.py,sha256=ZfDfb6QaRLGpXPIfffYUljw-vYeaWR27JT0zq8r7IGw,4084
|
|
391
413
|
maxframe/learn/contrib/xgboost/dmatrix.py,sha256=SYrcXqpr91PG1ZNMFvCBE5Y_NO8sztS0-O3CBWhVEhY,5206
|
|
392
|
-
maxframe/learn/contrib/xgboost/predict.py,sha256=
|
|
414
|
+
maxframe/learn/contrib/xgboost/predict.py,sha256=glLGpaC3GEtYWaA-KOZLy7HLx3Rob2B5IpONP-CSDtk,4321
|
|
393
415
|
maxframe/learn/contrib/xgboost/__init__.py,sha256=HsVMBBNXBQs2GaHMjuJrMdJRhpTDxQ37Amjc1GH7ESw,1051
|
|
394
|
-
maxframe/learn/contrib/xgboost/core.py,sha256=
|
|
395
|
-
maxframe/learn/contrib/xgboost/train.py,sha256=
|
|
396
|
-
maxframe/learn/contrib/xgboost/regressor.py,sha256=
|
|
416
|
+
maxframe/learn/contrib/xgboost/core.py,sha256=3Mz11Xx4QYcJsSnaatwQdpSufIrG6P1Y2wSsS7Kc0wY,15961
|
|
417
|
+
maxframe/learn/contrib/xgboost/train.py,sha256=GUQzkwg34l921qNOCN0qbOzJsEBxzbkR8tclVyH3Oes,6010
|
|
418
|
+
maxframe/learn/contrib/xgboost/regressor.py,sha256=iVCZtNhTQ7zBWTzKflXbquhtEat2UL4Y_kpQA61oS5U,3070
|
|
397
419
|
maxframe/learn/contrib/xgboost/tests/test_callback.py,sha256=W4NZDAIrTZ6aJliPWXlsYgoAMOFpHafPERDGz-hPtfY,1542
|
|
398
420
|
maxframe/learn/contrib/xgboost/tests/test_core.py,sha256=VrWhBeUCXzofVr-QAbtmK4wVeQqV1Erd1Rwj32lNceQ,1406
|
|
399
421
|
maxframe/learn/contrib/xgboost/tests/__init__.py,sha256=YsJxv7HbG4YYJmqAJZPYb8iHFRQX5JGpGn2PInDXvY8,596
|
|
@@ -420,10 +442,10 @@ maxframe/learn/preprocessing/__init__.py,sha256=ilbU8tlFxhs_5gtD119mnyuuAu-ZIJr_
|
|
|
420
442
|
maxframe/learn/preprocessing/_label/_label_encoder.py,sha256=9_bK6nzKkH7IvtQtXtqQmko5UhHWWikNK_x71Bgd0Io,5498
|
|
421
443
|
maxframe/learn/preprocessing/_label/__init__.py,sha256=_G7GALgaKvimDYN2coWX0LuAMxe9YrLC4-xQnepyOkY,716
|
|
422
444
|
maxframe/learn/preprocessing/_label/_label_binarizer.py,sha256=2e1_tyLHgpIywMki8xtErtJTYWnNrXbE7mtCuIzfiWI,19389
|
|
423
|
-
maxframe/learn/preprocessing/_data/standard_scaler.py,sha256=
|
|
445
|
+
maxframe/learn/preprocessing/_data/standard_scaler.py,sha256=3pqnuB-fS1Hz_rzBQALOMaVT0Ys62xbfe9rH3LptUTg,18628
|
|
424
446
|
maxframe/learn/preprocessing/_data/normalize.py,sha256=U0IodvGbGviSPrWVsXFwXRUk9udiDRcBOUkiZYJjnKo,4436
|
|
425
447
|
maxframe/learn/preprocessing/_data/__init__.py,sha256=E1IFflOcEfqa_pMinbygf26HDTrLpAxrvg9qIslVXnA,736
|
|
426
|
-
maxframe/learn/preprocessing/_data/min_max_scaler.py,sha256=
|
|
448
|
+
maxframe/learn/preprocessing/_data/min_max_scaler.py,sha256=qKrbW2zqYaFo6AIKr7aKSpUl157xWvlawlYvwwBRDn0,12974
|
|
427
449
|
maxframe/learn/preprocessing/_data/utils.py,sha256=dzAM2UmZSHpigf1W2XMg2t-HAsZksNTMFIRW6f5sxYs,2871
|
|
428
450
|
maxframe/learn/model_selection/__init__.py,sha256=hr1hzAL5c-1FA8kSocJbzfaPWCdFWbDt3JfoinPCNI8,641
|
|
429
451
|
maxframe/learn/model_selection/_split.py,sha256=p_hmHKEg46_-jpEjvaAGdFmE71leiU7Bx50KPbaP-Kk,16136
|
|
@@ -431,10 +453,10 @@ maxframe/learn/model_selection/tests/test_split.py,sha256=fbA0pYK1sB1ajDFaNXC9aK
|
|
|
431
453
|
maxframe/learn/model_selection/tests/__init__.py,sha256=YsJxv7HbG4YYJmqAJZPYb8iHFRQX5JGpGn2PInDXvY8,596
|
|
432
454
|
maxframe/core/accessor.py,sha256=ZSRHozzfcevWgOgQQLnaL0zvEpDE-IxOmRXvX3sqXRc,1543
|
|
433
455
|
maxframe/core/__init__.py,sha256=LAezPKNkPMrREcttR3e9_xkP37tm2SQxT1AHYYRYuKk,1537
|
|
434
|
-
maxframe/core/mode.py,sha256=
|
|
456
|
+
maxframe/core/mode.py,sha256=kR5XOR47DgtP_UlMOq_J8K7GbODlhkf_QKny79Ajl3M,3122
|
|
435
457
|
maxframe/core/context.py,sha256=eYHFQ-chSQs3M-D7jOnVgrqmD8hm2ynUFdjHAvDVkss,2556
|
|
436
|
-
maxframe/core/base.py,sha256=
|
|
437
|
-
maxframe/core/entity/tileables.py,sha256=
|
|
458
|
+
maxframe/core/base.py,sha256=4UVLMlj-ISeMTopwjhUzr1O2s-VPbXleXTP3L0UVxE8,4588
|
|
459
|
+
maxframe/core/entity/tileables.py,sha256=_ylsAG2tpMPYc9NLwdq4XW_FHKp4dTxLNp9i2NDenxY,11539
|
|
438
460
|
maxframe/core/entity/__init__.py,sha256=mKIcm8ffxA4LUwTzwniBPdOSMNIag0XVYPav5J89Kz0,1096
|
|
439
461
|
maxframe/core/entity/core.py,sha256=OnLODBF4Q9lVWrGPJqT0RlDdW8ueuF21f65hLIhzfHU,3951
|
|
440
462
|
maxframe/core/entity/utils.py,sha256=9tj2tU9c1hZEjw-0Eui3gyzR6E4I8s8MR4jF7rGsmBo,1445
|
|
@@ -444,9 +466,9 @@ maxframe/core/entity/objects.py,sha256=7oBbZ3mYeEgn3TJFCAdQffPChRk8DK47Yj-wvqyYY
|
|
|
444
466
|
maxframe/core/entity/tests/__init__.py,sha256=YsJxv7HbG4YYJmqAJZPYb8iHFRQX5JGpGn2PInDXvY8,596
|
|
445
467
|
maxframe/core/entity/tests/test_objects.py,sha256=KiUM7EKwN48OvC8jaizpFJ3TVLZWIolQZIgzunpIuMA,1423
|
|
446
468
|
maxframe/core/graph/__init__.py,sha256=1jzaIyQZosmCj7Hw70fNOLcmuaLq6DbKSqi1YSF3aEA,873
|
|
447
|
-
maxframe/core/graph/entity.py,sha256=
|
|
469
|
+
maxframe/core/graph/entity.py,sha256=i_ZVjy6sLG2s5f_WwCbvnp2uvJ92HitJJRLoR0tbuxc,5418
|
|
448
470
|
maxframe/core/graph/core.pyx,sha256=2P9KckxokoUwSOWIeyxB6VJOjdcBdi__KorxLG5YUQU,16104
|
|
449
|
-
maxframe/core/graph/core.cpython-310-darwin.so,sha256=
|
|
471
|
+
maxframe/core/graph/core.cpython-310-darwin.so,sha256=3a6q2GRQ5X2aC527-fiwhscFCeUTKOk4bDQQarc2N90,685760
|
|
450
472
|
maxframe/core/graph/tests/__init__.py,sha256=YsJxv7HbG4YYJmqAJZPYb8iHFRQX5JGpGn2PInDXvY8,596
|
|
451
473
|
maxframe/core/graph/tests/test_graph.py,sha256=bLHOAiPQ_eMfnlpRgY1VRQnSvjoiCe1NamILiQcneFc,7462
|
|
452
474
|
maxframe/core/graph/builder/__init__.py,sha256=dKs7S7e1GH-fy4LKfR6yAJHKLDkOhewCn9a1jZ7wTkY,640
|
|
@@ -464,7 +486,7 @@ maxframe/core/operator/objects.py,sha256=ieJW2EsXm6hCyETbzYPE5ZKtkaMsZRWOEDvL3ir
|
|
|
464
486
|
maxframe/core/operator/base.py,sha256=odW0iipL2toMwKgck4lO_n7oikW14gUzx9sdStIqu6Y,16460
|
|
465
487
|
maxframe/core/operator/tests/test_core.py,sha256=wBUmt-if0yOTPX22bvMYOVH0ltxj7Jac3mAyOG2Oslk,1691
|
|
466
488
|
maxframe/core/operator/tests/__init__.py,sha256=YsJxv7HbG4YYJmqAJZPYb8iHFRQX5JGpGn2PInDXvY8,596
|
|
467
|
-
maxframe/config/config.py,sha256=
|
|
489
|
+
maxframe/config/config.py,sha256=CmtPI8-pV7ndPSF5kWj1c55fgqhNyWqZpNf1PGhZ0Zw,19130
|
|
468
490
|
maxframe/config/validators.py,sha256=JmETg86Yiff-0AQJNZplCIyraLf8Fnqwv46vgH-pf-8,3988
|
|
469
491
|
maxframe/config/__init__.py,sha256=wxR1LzWT15vQDv12MFazycX2fwdMLGZLrqcpuEFqFck,656
|
|
470
492
|
maxframe/config/tests/__init__.py,sha256=YsJxv7HbG4YYJmqAJZPYb8iHFRQX5JGpGn2PInDXvY8,596
|
|
@@ -480,9 +502,9 @@ maxframe/serialization/maxframe_objects.py,sha256=Ha2pFpBivutH_YES1EQN-zpWu3TbKt
|
|
|
480
502
|
maxframe/serialization/numpy.py,sha256=eIAKj4DocCptBCHL6qmWCR3_rhIZ-rOxPCMHrnzDvS0,3895
|
|
481
503
|
maxframe/serialization/scipy.py,sha256=W4P_r-4tAGGfVAFhwqcaHBxdW-dpZ6rIMLuppQzMXjo,2427
|
|
482
504
|
maxframe/serialization/core.pyx,sha256=6AunkzSFgwpbGaOql2Gk2uxoVMiWN48EDCBbCqpUc_k,39700
|
|
483
|
-
maxframe/serialization/core.cpython-310-darwin.so,sha256=
|
|
505
|
+
maxframe/serialization/core.cpython-310-darwin.so,sha256=SrAXpa8pF97KLJH64uqJPHQzM_PGoXAJ614f1L9LbG4,1269952
|
|
484
506
|
maxframe/serialization/blob.py,sha256=GpIZVSeAhIRiLUgBRkq_VSYLsyyH25BKW-WKmuTbYso,1138
|
|
485
|
-
maxframe/serialization/tests/test_serial.py,sha256=
|
|
507
|
+
maxframe/serialization/tests/test_serial.py,sha256=LmOjYS7lYwZyrTyvDWejcT00koUQhtniVHrvOVDiG9I,14875
|
|
486
508
|
maxframe/serialization/tests/__init__.py,sha256=YsJxv7HbG4YYJmqAJZPYb8iHFRQX5JGpGn2PInDXvY8,596
|
|
487
509
|
maxframe/serialization/serializables/field.py,sha256=MRZHAqtDwt8iutTV8lH4bWMH4AjE1ilFSbUpj4ZLliM,16013
|
|
488
510
|
maxframe/serialization/serializables/__init__.py,sha256=nPvrC735pSrvV2kKSb7SQ_GMlVEfZiQb0svsla1_mpk,1351
|
|
@@ -507,12 +529,13 @@ maxframe/io/objects/core.py,sha256=bWlnncGLSa9f3_YIDhEA-7XTMjpSBX0oXeAhvsqTgUw,5
|
|
|
507
529
|
maxframe/io/objects/tensor.py,sha256=GC19xpremk8awz530OcAplGpyrnWf5HoyapGfZdR0hw,4654
|
|
508
530
|
maxframe/io/objects/tests/test_object_io.py,sha256=a5kFyYMveAoMaPn-QbfUzgIJgMgW2gZR_DEEFsT1fAk,2591
|
|
509
531
|
maxframe/io/objects/tests/__init__.py,sha256=YsJxv7HbG4YYJmqAJZPYb8iHFRQX5JGpGn2PInDXvY8,596
|
|
510
|
-
maxframe/tests/test_utils.py,sha256=
|
|
532
|
+
maxframe/tests/test_utils.py,sha256=r3070JSjF4fjZ6xg1HQBwbTIte3P87rKuwy_NCUgyus,20544
|
|
511
533
|
maxframe/tests/test_protocol.py,sha256=bKfuDfN0B0DatPpDs2na6t9CNoh0N6UdhZpchjnln4o,6121
|
|
512
534
|
maxframe/tests/__init__.py,sha256=YsJxv7HbG4YYJmqAJZPYb8iHFRQX5JGpGn2PInDXvY8,596
|
|
535
|
+
maxframe/tests/test_udf.py,sha256=pHeipwq-Z7tDPN3YK699i8IA9OQUAu5vtKuqOqeQGh0,1962
|
|
513
536
|
maxframe/tests/utils.py,sha256=BYrBJhJWNnoXy7n-mRVk2E-FtOJofDuw5aQvPpLv91I,6923
|
|
514
537
|
maxframe/codegen/__init__.py,sha256=xHY0SUB8nLeqnwaw42RBw08AWrp86R_ubsQzkwlG8-I,865
|
|
515
|
-
maxframe/codegen/core.py,sha256=
|
|
538
|
+
maxframe/codegen/core.py,sha256=iO2XnTStGWfsUZF-qdjdMY6WTrc8MhCtL1KxtrAr2xs,20255
|
|
516
539
|
maxframe/codegen/spe/remote.py,sha256=W3EwT5uwsbf6nRtCdanAD4RTDdbI8Of-POCC9UD23eQ,1254
|
|
517
540
|
maxframe/codegen/spe/__init__.py,sha256=okS1N8ei8xvlLLNVToDiMNWcOuqSEXr4xoxAg4FqBls,688
|
|
518
541
|
maxframe/codegen/spe/core.py,sha256=MRwZk9MrPEaqsQZLy7WjkGUqltg2NZ4Smxpp1Kwbi9g,10547
|
|
@@ -520,18 +543,18 @@ maxframe/codegen/spe/utils.py,sha256=Ne3a3yrNY-M9bfEGvqqtOmaQvA-YkTwj5lrUfDckzEc
|
|
|
520
543
|
maxframe/codegen/spe/objects.py,sha256=6D0qIQdOlk4RnB8RIA0Z8w65tn4rLBj8ETykccL8SPY,1043
|
|
521
544
|
maxframe/codegen/spe/dataframe/fetch.py,sha256=QERcNnGxiLSgdhAYpZeecP_1t9dhsIgFpQXK24tmlDU,1051
|
|
522
545
|
maxframe/codegen/spe/dataframe/arithmetic.py,sha256=uo7790kzw97rzhlavpt-k2OrIlRcTMftNKFVjR6FN88,3543
|
|
523
|
-
maxframe/codegen/spe/dataframe/misc.py,sha256
|
|
546
|
+
maxframe/codegen/spe/dataframe/misc.py,sha256=cr0qH5Y8x-RtSJa5mMu0XK60C_ZS8B5dbPL2EZ_SWdo,10671
|
|
524
547
|
maxframe/codegen/spe/dataframe/missing.py,sha256=_e8R5nYRwCg8Oawcxq7rPcmuSNlfcFf0dcQVR7ldkYU,2812
|
|
525
|
-
maxframe/codegen/spe/dataframe/merge.py,sha256=
|
|
548
|
+
maxframe/codegen/spe/dataframe/merge.py,sha256=LSYgHu2JrcVy-BZyG0GYDPKGlGtXw_y4SYGncywhwPU,4104
|
|
526
549
|
maxframe/codegen/spe/dataframe/window.py,sha256=IidMfs1m3TjHdQ0fgCmfTfcgufYZ9PLrEi3yAPQlNX0,2947
|
|
527
|
-
maxframe/codegen/spe/dataframe/reduction.py,sha256=
|
|
528
|
-
maxframe/codegen/spe/dataframe/sort.py,sha256=
|
|
550
|
+
maxframe/codegen/spe/dataframe/reduction.py,sha256=DHyGG48SCBv0iG6uRjDfAYPjIiDLEbUKg6Ybrtldgl4,6146
|
|
551
|
+
maxframe/codegen/spe/dataframe/sort.py,sha256=xKe5ZLN4BX8F1rcHco7q56pJkIo-I0Z_q9cdLxjnCCI,3692
|
|
529
552
|
maxframe/codegen/spe/dataframe/reshape.py,sha256=GuGcp6L_gQnfoYVdG1-apUWpWnsNsh9hiI1b2NtFFpk,1560
|
|
530
553
|
maxframe/codegen/spe/dataframe/__init__.py,sha256=ZOlG3XUC8kzZD9FMqsStRsBd9Y13B7pQJGSH1O9-agA,909
|
|
531
554
|
maxframe/codegen/spe/dataframe/datasource.py,sha256=altNY_hoxSxzQ8Z0QYLU7Utn_iOdvbWnpQMjecuw-DQ,6759
|
|
532
555
|
maxframe/codegen/spe/dataframe/extensions.py,sha256=gj0i65bUS3LCTVWXDZABgZRy4jmw6wXTyZqeHy56Oz4,2779
|
|
533
556
|
maxframe/codegen/spe/dataframe/statistics.py,sha256=WBMNkQqx84IyHCzKqlD80-CUgR6i3AcSpPU4Y7AwbY4,1787
|
|
534
|
-
maxframe/codegen/spe/dataframe/tseries.py,sha256=
|
|
557
|
+
maxframe/codegen/spe/dataframe/tseries.py,sha256=TikH2jy3b4lva3n7d7nQ7OOJBNEpX8vNep6c9CvfMIo,2117
|
|
535
558
|
maxframe/codegen/spe/dataframe/udf.py,sha256=q7b6kEvHMkLd3-RuOhpX5AdQtDYIMOO2j1cDjXEULBs,2127
|
|
536
559
|
maxframe/codegen/spe/dataframe/indexing.py,sha256=-LVJM1ic9RXKB_xBhy22PF2Y-xhCfG8PYBm1vS71s_s,13050
|
|
537
560
|
maxframe/codegen/spe/dataframe/value_counts.py,sha256=XyyJRcrT_5DshId-st_Bh2qnNrto8m6tqiB6-WFgn8c,1354
|
|
@@ -550,7 +573,7 @@ maxframe/codegen/spe/dataframe/tests/test_datasource.py,sha256=4bMzo_0pwWZGRKz_k
|
|
|
550
573
|
maxframe/codegen/spe/dataframe/tests/__init__.py,sha256=YsJxv7HbG4YYJmqAJZPYb8iHFRQX5JGpGn2PInDXvY8,596
|
|
551
574
|
maxframe/codegen/spe/dataframe/tests/test_reshape.py,sha256=buFp3QdnLy4fTyZrqRRPND8UKbwTrUxy_OI4cg5KllY,2279
|
|
552
575
|
maxframe/codegen/spe/dataframe/tests/test_sort.py,sha256=yCiw_Z3DtTHXEellXgKzUnUAoLAffLV-V8qSRFdj-5U,6025
|
|
553
|
-
maxframe/codegen/spe/dataframe/tests/test_reduction.py,sha256=
|
|
576
|
+
maxframe/codegen/spe/dataframe/tests/test_reduction.py,sha256=gwzuCT2QbWxFZpmxmuXy8cy4yuSjx7tdnwHT86lBv4k,3904
|
|
554
577
|
maxframe/codegen/spe/dataframe/tests/test_merge.py,sha256=Mc52MIRiMMNlywfUUFUEzrBmvB4scOVDnpPW-BA0Qg0,13681
|
|
555
578
|
maxframe/codegen/spe/dataframe/tests/test_window.py,sha256=3q6lWsxCrvDd24mZHHS6_Ddb88FBu8ZVFHrZAPTQAN4,2275
|
|
556
579
|
maxframe/codegen/spe/dataframe/tests/test_groupby.py,sha256=icf5G61XDawNHArISQ-7VPtjBJnz6W_zsLWW6kY4Mo0,10491
|
|
@@ -603,7 +626,7 @@ maxframe/codegen/spe/learn/utils/tests/test_multiclass.py,sha256=9E4XT1FDKk0lkHH
|
|
|
603
626
|
maxframe/codegen/spe/learn/utils/tests/test_shuffle.py,sha256=H48bEgLqXo-_Iej8zQQqN42qo9TiI_iY6nFgike-y-8,1937
|
|
604
627
|
maxframe/codegen/spe/learn/utils/tests/test_sparsefuncs.py,sha256=OJYc4vQMQGl6Mbvb8kFwctZtLrwFVdyHrsQzVOyVbNc,1167
|
|
605
628
|
maxframe/codegen/spe/learn/utils/tests/test_checks.py,sha256=RM-r6uti_95mS5ECmRsPJ01IGDoHil2wzPykNgEyA2I,1653
|
|
606
|
-
maxframe/codegen/spe/learn/contrib/lightgbm.py,sha256=
|
|
629
|
+
maxframe/codegen/spe/learn/contrib/lightgbm.py,sha256=DBuNuru9ZdFhCAwyltBYFvgnmi4gdJnLSZMzKbZIHmA,5679
|
|
607
630
|
maxframe/codegen/spe/learn/contrib/models.py,sha256=I6X5vGEJvJZwZVqgMnXeBPqzQ6JF3BFJa1QYDxViF30,1779
|
|
608
631
|
maxframe/codegen/spe/learn/contrib/__init__.py,sha256=l_GYxlFugI5Wm9DzBRlAdrXQX-d3sfuc_lxiFj9S8iM,646
|
|
609
632
|
maxframe/codegen/spe/learn/contrib/pytorch.py,sha256=6TI3kgsA4OLdkTHhkHMtBw1UY_QBovhnARr7ibA379o,1898
|
|
@@ -636,7 +659,7 @@ maxframe/codegen/spe/tensor/__init__.py,sha256=JohxD-8dHm2d7S7s4ApDtGugHGY7eEQB5
|
|
|
636
659
|
maxframe/codegen/spe/tensor/core.py,sha256=VAktRFtN3Neap2PYFkDDOAca74LNAw_PSalsy9goM4I,1531
|
|
637
660
|
maxframe/codegen/spe/tensor/spatial.py,sha256=dCP8OSYHBnWbGHCiS7hk5SpbfRg64QFB2VfPro8pnK8,1389
|
|
638
661
|
maxframe/codegen/spe/tensor/random.py,sha256=iAKwjv5dtOAcn5nKJZDnRga271vlMLdqJ6mPsR1cosU,1276
|
|
639
|
-
maxframe/codegen/spe/tensor/datasource.py,sha256=
|
|
662
|
+
maxframe/codegen/spe/tensor/datasource.py,sha256=JtLG_g93Bh6TLsSCdYn87WoNjd8DR5zCCV2ulHJgGn8,6279
|
|
640
663
|
maxframe/codegen/spe/tensor/extensions.py,sha256=dvORRucZYf8higMgjZ2ru938XD9d_Fw0Waaj0l0fIm0,1509
|
|
641
664
|
maxframe/codegen/spe/tensor/linalg.py,sha256=Tj0ddEcfnEkBPXsxk0LCB-XfkajBiRdDltS-detd6QM,3329
|
|
642
665
|
maxframe/codegen/spe/tensor/statistics.py,sha256=V9txDv0FWUiEPKCzDWPdnYEhloe0Kx7LqW3pYKd_HQ4,2399
|
|
@@ -668,7 +691,7 @@ maxframe/lib/compression.py,sha256=QPxWRp0Q2q33EQzY-Jfx_iz7SELax6fu3GTmyIVyjGY,1
|
|
|
668
691
|
maxframe/lib/__init__.py,sha256=YsJxv7HbG4YYJmqAJZPYb8iHFRQX5JGpGn2PInDXvY8,596
|
|
669
692
|
maxframe/lib/mmh3.pyi,sha256=R_MzTIyUSTn8TF4Gs2hRP7NSWfWi0SeuUauh4eZJc-g,1494
|
|
670
693
|
maxframe/lib/functools_compat.py,sha256=c3gOw--FLvQNbamt0V8oqsTNRhPlASPEOzhMrzA2was,2616
|
|
671
|
-
maxframe/lib/mmh3.cpython-310-darwin.so,sha256=
|
|
694
|
+
maxframe/lib/mmh3.cpython-310-darwin.so,sha256=2nrbKrTULBczq0Xuf8mQjRua24ev_hDBZMqUDjRUmGo,119784
|
|
672
695
|
maxframe/lib/mmh3_src/mmh3module.cpp,sha256=9J9eA42eKWTl546fvfQPNuIM3B2jpWSADpgIw3tr2jg,11604
|
|
673
696
|
maxframe/lib/mmh3_src/MurmurHash3.h,sha256=lg5uXUFyMBge2BWRn0FgrqaCFCMfDWoTXD4PQtjHrMA,1263
|
|
674
697
|
maxframe/lib/mmh3_src/MurmurHash3.cpp,sha256=kgrteG44VSftwp5hhD7pyTENDRU9wI_DqLD1493-bP0,8096
|
|
@@ -701,7 +724,7 @@ maxframe/lib/filesystem/tests/test_oss.py,sha256=P7hIZN4k-Qx4_HeXZaf3477OvvAWV4u
|
|
|
701
724
|
maxframe/lib/filesystem/_oss_lib/handle.py,sha256=CU_BaFsP73pJ_LQ0-OQzX9HwTeeSxeP7Cy4xNP3ifU0,4901
|
|
702
725
|
maxframe/lib/filesystem/_oss_lib/__init__.py,sha256=YsJxv7HbG4YYJmqAJZPYb8iHFRQX5JGpGn2PInDXvY8,596
|
|
703
726
|
maxframe/lib/filesystem/_oss_lib/glob.py,sha256=_7zX11xgVmX4dNnDk-XZ8nd91smqEqwM5GOcSuTou8Y,4834
|
|
704
|
-
maxframe/lib/filesystem/_oss_lib/common.py,sha256=
|
|
727
|
+
maxframe/lib/filesystem/_oss_lib/common.py,sha256=VbKMDpM8XXSvRwxy7QsuHCEFbr9wVQFMMM40I8XvP1U,8450
|
|
705
728
|
maxframe/lib/dtypes_extension/_fake_arrow_dtype.py,sha256=rzcydHCRZ4socbZNj8vq5rzeqXIQM3YzxiqpO7kgi-8,21559
|
|
706
729
|
maxframe/lib/dtypes_extension/__init__.py,sha256=EXlYo0fSTxxx26rloLctf4mOj0ioJgALAzMShApqIOY,855
|
|
707
730
|
maxframe/lib/dtypes_extension/dtypes.py,sha256=-5K26O3kyI0R7pdNTv5V_yc1K4ivQ2ibcQO3LTdkbMI,3161
|
|
@@ -725,7 +748,7 @@ maxframe/lib/tblib/cpython.py,sha256=FQ0f6WTQyQHoMRhgPqrA0y0Ygxlbj5IC53guxA4h9Cw
|
|
|
725
748
|
maxframe/lib/tblib/decorators.py,sha256=bcllK3kVuPnj6SNZGmlJGxTK0ovdt7TJDXrhA4UE5sQ,1063
|
|
726
749
|
maxframe/tensor/array_utils.py,sha256=VsWQR84ifDV26-IfrgLRAXyt9FLZ2YAuKjQ6NKUqYv4,4373
|
|
727
750
|
maxframe/tensor/__init__.py,sha256=HJT_9pbckWsejXTAxWGgZKAZsSe0YRsL32qP70ZOXwc,5736
|
|
728
|
-
maxframe/tensor/core.py,sha256=
|
|
751
|
+
maxframe/tensor/core.py,sha256=IKv1q0c3JRKVuR4Vc4og_DucArjjIrRI7AR0hYF1c1A,18129
|
|
729
752
|
maxframe/tensor/utils.py,sha256=v34SwG6pOgNH5kStDp5xI3sDlFDaDB6upFGmSuhy74I,22923
|
|
730
753
|
maxframe/tensor/operators.py,sha256=EGWyiohMZXMgSOtFTVCvZ6IdQXwssxmoS1UVTI0wBKg,2257
|
|
731
754
|
maxframe/tensor/statistics/ptp.py,sha256=nOYV2g6RqAV4D2oM4rq66xNsceolz8rmBeLqv3lO5Sw,2776
|
|
@@ -751,7 +774,7 @@ maxframe/tensor/misc/vsplit.py,sha256=6ZP9udHZ2Md20QUNZ4ZafoaGOo00HnI6GzZX9v-bIg
|
|
|
751
774
|
maxframe/tensor/misc/argwhere.py,sha256=NZGXoJ_gms7WtPumTMWdXrZyM26r3Yc81JfHE1tVcCE,1905
|
|
752
775
|
maxframe/tensor/misc/flatten.py,sha256=gnVtVp6nOt4xmors2jQVk_2doRUsI_SsTk8YfpewbFA,1939
|
|
753
776
|
maxframe/tensor/misc/array_split.py,sha256=iHk0R0YjB6DWP5cCNxkyHiIndwfGTAnzki29Jnn4pKI,1589
|
|
754
|
-
maxframe/tensor/misc/copyto.py,sha256=
|
|
777
|
+
maxframe/tensor/misc/copyto.py,sha256=gWdMaPpUD2oVKV-blL3ZwAalcLW3DS7EFKvVejdg7-o,4393
|
|
755
778
|
maxframe/tensor/misc/where.py,sha256=cODatKKVSVHLejJxS5iR6JFFtNVOrg7kqNKo3vrMvnQ,4084
|
|
756
779
|
maxframe/tensor/misc/unique.py,sha256=oS4H4ftm9NuxdFP_pmWNstMr3vOArvNIUXAp0U4Yhv0,6804
|
|
757
780
|
maxframe/tensor/misc/__init__.py,sha256=gr1SMUBJpamru-i6w-qu_PfNqr_9wVW_-FPaawG4d84,2449
|
|
@@ -936,11 +959,11 @@ maxframe/tensor/arithmetic/logaddexp.py,sha256=GbgL9xONddcbWsrSoYgg9EiD8h72-Wi2y
|
|
|
936
959
|
maxframe/tensor/arithmetic/modf.py,sha256=bB0uK8S9o2skU18odW5c-LhiDEudoG5EQcuxp8vUMaw,2680
|
|
937
960
|
maxframe/tensor/arithmetic/abs.py,sha256=FUsZSFXWLcjtG8-oOX5gziCfFyD8nWeRjuxqJD-HI1c,2134
|
|
938
961
|
maxframe/tensor/arithmetic/ldexp.py,sha256=HTf8DdLzwipB7mRWgdVAuiPI7k--27oNPpPUpsW3uPM,3119
|
|
939
|
-
maxframe/tensor/arithmetic/__init__.py,sha256=
|
|
962
|
+
maxframe/tensor/arithmetic/__init__.py,sha256=1oPhzpbRxXmIYvN1ty1kMMfrElaMKbwzirDZaLPfRl8,9730
|
|
940
963
|
maxframe/tensor/arithmetic/divide.py,sha256=LWPQDOUP3SwqVDTVbbVEvLdntc6PkSRLRuVNw23GDh8,3664
|
|
941
964
|
maxframe/tensor/arithmetic/float_power.py,sha256=gT-tz2mYU9XXwYtKoZg9Qrt4K-lXdMRAWcLGFu1dx3o,3318
|
|
942
965
|
maxframe/tensor/arithmetic/logical_xor.py,sha256=yzSEB2nqOgpCbCUwQcsG-NdBwpgzuiCtbldUGKPyiP0,2844
|
|
943
|
-
maxframe/tensor/arithmetic/core.py,sha256=
|
|
966
|
+
maxframe/tensor/arithmetic/core.py,sha256=EYm0P8UaEBXEdE88_zx2GR8YEOPTKII1QjawpyUj3fQ,17616
|
|
944
967
|
maxframe/tensor/arithmetic/floor.py,sha256=51M0Xo8Wn75-jUdLC1ViHDYhuDraCXaIVs4LrSeZJnQ,2396
|
|
945
968
|
maxframe/tensor/arithmetic/real.py,sha256=z8dbQjaKdzzfbR01HOAxdwatEl2ZPk6jTDCdZGJEIew,1785
|
|
946
969
|
maxframe/tensor/arithmetic/around.py,sha256=42tL30_etreKQaPpi6alEAo7M8vcborusyPFcbU4U_0,3780
|
|
@@ -998,7 +1021,7 @@ maxframe/tensor/arithmetic/sin.py,sha256=zAI8inhDFTjS2i1PXbE2P3F-djXDP8TEJX1qLFq
|
|
|
998
1021
|
maxframe/tensor/arithmetic/reciprocal.py,sha256=XQpGtYw7LjpS6q6d6a4evmBqbT-FjvvcGh4jJqMkTCQ,2403
|
|
999
1022
|
maxframe/tensor/arithmetic/bitxor.py,sha256=TX1zzXoiEdjlDJKMu4m9kA0_a2ucCNIFTnGncbyOWwo,2863
|
|
1000
1023
|
maxframe/tensor/arithmetic/tests/__init__.py,sha256=YsJxv7HbG4YYJmqAJZPYb8iHFRQX5JGpGn2PInDXvY8,596
|
|
1001
|
-
maxframe/tensor/arithmetic/tests/test_arithmetic.py,sha256=
|
|
1024
|
+
maxframe/tensor/arithmetic/tests/test_arithmetic.py,sha256=1yMD7r0_YISEAUaidDxHQt6WbZnof_R3DJCKCMmNdNI,12523
|
|
1002
1025
|
maxframe/tensor/lib/__init__.py,sha256=zna2_lR6uuQAuS0wBqg1EkC3V0eeHuJdCv4VEI-MFQw,658
|
|
1003
1026
|
maxframe/tensor/lib/index_tricks.py,sha256=BRRnjvaRAqJe95FTUDjYsmYM50ibvFzYcvnHEA_WB9E,14142
|
|
1004
1027
|
maxframe/tensor/fft/fftshift.py,sha256=2Wng8VIPtyJZM9o1Pn7KXoZAllHslJlDufLQoXyeF6I,2389
|
|
@@ -1091,4 +1114,4 @@ maxframe/tensor/spatial/distance/__init__.py,sha256=VmcPC8eNOPLics8_w25yJBa11o5V
|
|
|
1091
1114
|
maxframe/tensor/spatial/distance/pdist.py,sha256=JkaKUplXBBgyzf3n7h4QwRvNlaz1eUj4ECrBm2NGAbE,12751
|
|
1092
1115
|
maxframe/remote/run_script.py,sha256=M7g1ZorfEdzH_8fPA4Rcv821UJZ5dD9vgtYA7JAMf_g,3651
|
|
1093
1116
|
maxframe/remote/__init__.py,sha256=EBfizOWJqWnsbhR6nOom9-TUSuGF7t6C6Hfrt9eP3V4,729
|
|
1094
|
-
maxframe/remote/core.py,sha256=
|
|
1117
|
+
maxframe/remote/core.py,sha256=cqMSInki7v1rbBMmm7x_ufdPVwm1uRbPuppsXT8ghgI,6658
|
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
|
|