maxframe 1.0.0rc3__cp310-cp310-macosx_10_9_universal2.whl → 1.1.0__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.py +1 -0
- maxframe/config/config.py +16 -1
- maxframe/conftest.py +52 -14
- maxframe/core/entity/executable.py +1 -1
- maxframe/core/graph/core.cpython-310-darwin.so +0 -0
- maxframe/core/operator/base.py +2 -0
- maxframe/dataframe/arithmetic/docstring.py +26 -2
- maxframe/dataframe/arithmetic/equal.py +4 -2
- maxframe/dataframe/arithmetic/greater.py +4 -2
- maxframe/dataframe/arithmetic/greater_equal.py +4 -2
- maxframe/dataframe/arithmetic/less.py +2 -2
- maxframe/dataframe/arithmetic/less_equal.py +4 -2
- maxframe/dataframe/arithmetic/not_equal.py +4 -2
- maxframe/dataframe/arithmetic/tests/test_arithmetic.py +17 -16
- maxframe/dataframe/core.py +26 -2
- maxframe/dataframe/datasource/read_odps_query.py +116 -28
- maxframe/dataframe/datasource/read_odps_table.py +3 -1
- maxframe/dataframe/datasource/tests/test_datasource.py +93 -12
- maxframe/dataframe/datastore/to_odps.py +7 -0
- maxframe/dataframe/extensions/__init__.py +8 -0
- maxframe/dataframe/extensions/apply_chunk.py +649 -0
- maxframe/dataframe/extensions/flatjson.py +131 -0
- maxframe/dataframe/extensions/flatmap.py +314 -0
- maxframe/dataframe/extensions/reshuffle.py +1 -1
- maxframe/dataframe/extensions/tests/test_apply_chunk.py +186 -0
- maxframe/dataframe/extensions/tests/test_extensions.py +108 -3
- maxframe/dataframe/groupby/__init__.py +1 -0
- maxframe/dataframe/groupby/aggregation.py +1 -0
- maxframe/dataframe/groupby/apply.py +9 -1
- maxframe/dataframe/groupby/core.py +1 -1
- maxframe/dataframe/groupby/fill.py +4 -1
- maxframe/dataframe/groupby/getitem.py +6 -0
- maxframe/dataframe/groupby/tests/test_groupby.py +1 -1
- maxframe/dataframe/groupby/transform.py +8 -2
- maxframe/dataframe/indexing/add_prefix_suffix.py +1 -1
- maxframe/dataframe/indexing/loc.py +6 -4
- maxframe/dataframe/indexing/rename.py +11 -0
- maxframe/dataframe/initializer.py +11 -1
- maxframe/dataframe/merge/__init__.py +9 -1
- maxframe/dataframe/merge/concat.py +41 -31
- maxframe/dataframe/merge/merge.py +1 -1
- maxframe/dataframe/merge/tests/test_merge.py +3 -1
- maxframe/dataframe/misc/apply.py +3 -0
- maxframe/dataframe/misc/drop_duplicates.py +23 -2
- maxframe/dataframe/misc/map.py +3 -1
- maxframe/dataframe/misc/tests/test_misc.py +24 -2
- maxframe/dataframe/misc/transform.py +22 -13
- maxframe/dataframe/reduction/__init__.py +3 -0
- maxframe/dataframe/reduction/aggregation.py +1 -0
- maxframe/dataframe/reduction/median.py +56 -0
- maxframe/dataframe/reduction/tests/test_reduction.py +17 -7
- maxframe/dataframe/statistics/quantile.py +8 -2
- maxframe/dataframe/statistics/tests/test_statistics.py +4 -4
- maxframe/dataframe/tests/test_initializer.py +33 -2
- maxframe/dataframe/tests/test_utils.py +60 -0
- maxframe/dataframe/utils.py +110 -7
- maxframe/dataframe/window/expanding.py +5 -3
- maxframe/dataframe/window/tests/test_expanding.py +2 -2
- maxframe/io/objects/tests/test_object_io.py +39 -12
- maxframe/io/odpsio/arrow.py +30 -2
- maxframe/io/odpsio/schema.py +28 -8
- maxframe/io/odpsio/tableio.py +55 -133
- maxframe/io/odpsio/tests/test_schema.py +40 -4
- maxframe/io/odpsio/tests/test_tableio.py +5 -5
- maxframe/io/odpsio/tests/test_volumeio.py +35 -11
- maxframe/io/odpsio/volumeio.py +36 -6
- maxframe/learn/contrib/__init__.py +3 -1
- maxframe/learn/contrib/graph/__init__.py +15 -0
- maxframe/learn/contrib/graph/connected_components.py +215 -0
- maxframe/learn/contrib/graph/tests/__init__.py +13 -0
- maxframe/learn/contrib/graph/tests/test_connected_components.py +53 -0
- maxframe/learn/contrib/llm/__init__.py +16 -0
- maxframe/learn/contrib/llm/core.py +54 -0
- maxframe/learn/contrib/llm/models/__init__.py +14 -0
- maxframe/learn/contrib/llm/models/dashscope.py +73 -0
- maxframe/learn/contrib/llm/multi_modal.py +42 -0
- maxframe/learn/contrib/llm/text.py +42 -0
- maxframe/learn/contrib/xgboost/classifier.py +3 -3
- maxframe/learn/contrib/xgboost/predict.py +8 -39
- maxframe/learn/contrib/xgboost/train.py +4 -3
- maxframe/lib/mmh3.cpython-310-darwin.so +0 -0
- maxframe/lib/sparse/tests/test_sparse.py +15 -15
- maxframe/opcodes.py +10 -1
- maxframe/protocol.py +6 -1
- maxframe/serialization/core.cpython-310-darwin.so +0 -0
- maxframe/serialization/core.pyx +13 -1
- maxframe/serialization/pandas.py +50 -20
- maxframe/serialization/serializables/core.py +24 -5
- maxframe/serialization/serializables/field_type.py +4 -1
- maxframe/serialization/serializables/tests/test_serializable.py +8 -1
- maxframe/serialization/tests/test_serial.py +2 -1
- maxframe/session.py +9 -2
- maxframe/tensor/__init__.py +19 -7
- maxframe/tensor/indexing/getitem.py +2 -0
- maxframe/tensor/merge/concatenate.py +23 -20
- maxframe/tensor/merge/vstack.py +5 -1
- maxframe/tensor/misc/transpose.py +1 -1
- maxframe/tests/utils.py +16 -0
- maxframe/udf.py +27 -0
- maxframe/utils.py +64 -14
- {maxframe-1.0.0rc3.dist-info → maxframe-1.1.0.dist-info}/METADATA +2 -2
- {maxframe-1.0.0rc3.dist-info → maxframe-1.1.0.dist-info}/RECORD +112 -96
- {maxframe-1.0.0rc3.dist-info → maxframe-1.1.0.dist-info}/WHEEL +1 -1
- maxframe_client/clients/framedriver.py +4 -1
- maxframe_client/fetcher.py +28 -10
- maxframe_client/session/consts.py +3 -0
- maxframe_client/session/odps.py +104 -20
- maxframe_client/session/task.py +42 -26
- maxframe_client/session/tests/test_task.py +0 -4
- maxframe_client/tests/test_session.py +44 -12
- {maxframe-1.0.0rc3.dist-info → maxframe-1.1.0.dist-info}/top_level.txt +0 -0
|
@@ -1,48 +1,48 @@
|
|
|
1
|
-
maxframe-1.0.
|
|
2
|
-
maxframe-1.0.
|
|
3
|
-
maxframe-1.0.
|
|
4
|
-
maxframe-1.0.
|
|
1
|
+
maxframe-1.1.0.dist-info/RECORD,,
|
|
2
|
+
maxframe-1.1.0.dist-info/WHEEL,sha256=G1RrFIhQS_bkqBCm1bvxmeQ04JxXbdaVEbwBEYdNX3o,115
|
|
3
|
+
maxframe-1.1.0.dist-info/top_level.txt,sha256=64x-fc2q59c_vXwNUkehyjF1vb8JWqFSdYmUqIFqoTM,31
|
|
4
|
+
maxframe-1.1.0.dist-info/METADATA,sha256=n6x3IidqbCnXPjnT-Q0Mtso0YWC4O5ndKVdbt_n-wEg,3022
|
|
5
5
|
maxframe_client/conftest.py,sha256=7cwy2sFy5snEaxvtMvxfYFUnG6WtYC_9XxVrwJxOpcU,643
|
|
6
6
|
maxframe_client/__init__.py,sha256=0_6MYIqksNc-B0hORLb0yqNQUhtqdFD7TGg39bQ-_NI,689
|
|
7
|
-
maxframe_client/fetcher.py,sha256=
|
|
7
|
+
maxframe_client/fetcher.py,sha256=HTp7U2bv9jj-lc67jH2R0QG7MD1LygvfZi1Tg9nlefs,9203
|
|
8
8
|
maxframe_client/clients/__init__.py,sha256=FEFOVLi3o2GpZoedTtLYvbie0eQBehJIjtCrWca2ZHw,596
|
|
9
|
-
maxframe_client/clients/framedriver.py,sha256
|
|
10
|
-
maxframe_client/tests/test_session.py,sha256=
|
|
9
|
+
maxframe_client/clients/framedriver.py,sha256=-Ux7Q_bWuUSG8r14u84-1UVT9V08q_z4jGxV8kvPQaI,4557
|
|
10
|
+
maxframe_client/tests/test_session.py,sha256=XdbWE3jzmzphsPmbAk5L8xYVUnAXarDDzVhVYIWwnjE,11196
|
|
11
11
|
maxframe_client/tests/__init__.py,sha256=FEFOVLi3o2GpZoedTtLYvbie0eQBehJIjtCrWca2ZHw,596
|
|
12
12
|
maxframe_client/tests/test_fetcher.py,sha256=7mVDO456wcUMajguTJ4FWkSpuonLfinFfiz31ZYnHNs,4158
|
|
13
|
-
maxframe_client/session/task.py,sha256=
|
|
13
|
+
maxframe_client/session/task.py,sha256=qjCy-2jsLSDdy1_9T23RgYLD-JLEmu36eV-9FWEaPkM,11858
|
|
14
14
|
maxframe_client/session/graph.py,sha256=rRilIWsiVfj_N160s8uv2s7mi_nhx7JxSa9BkhyLRnE,4376
|
|
15
15
|
maxframe_client/session/__init__.py,sha256=KPqhSlAJiuUz8TC-z5o7mHDVXzLSqWwrZ33zNni7piY,832
|
|
16
|
-
maxframe_client/session/consts.py,sha256=
|
|
17
|
-
maxframe_client/session/odps.py,sha256=
|
|
18
|
-
maxframe_client/session/tests/test_task.py,sha256=
|
|
16
|
+
maxframe_client/session/consts.py,sha256=kQv67i4wyhV2ZQXwJf_5k4PRXhN811LmYoo2C3NB7tk,1391
|
|
17
|
+
maxframe_client/session/odps.py,sha256=QbOvlQ57xog-EGZM9nXpzdZjNUUKsYOSto54Edgfv2A,24161
|
|
18
|
+
maxframe_client/session/tests/test_task.py,sha256=jtUBLyZYDedpe_ZSUGWs4_WFIdWBwYvP9ywmvd3N1jw,3142
|
|
19
19
|
maxframe_client/session/tests/__init__.py,sha256=FEFOVLi3o2GpZoedTtLYvbie0eQBehJIjtCrWca2ZHw,596
|
|
20
20
|
maxframe/_utils.pyx,sha256=I4kmfhNr-xXK2ak22dr4Vwahzn-JmTaYctbL3y9_UBQ,17017
|
|
21
|
-
maxframe/conftest.py,sha256=
|
|
22
|
-
maxframe/opcodes.py,sha256=
|
|
21
|
+
maxframe/conftest.py,sha256=H6KND9MzHGR7WKlP35SeFE9BNafXxK7XtUUpQPN28BE,6057
|
|
22
|
+
maxframe/opcodes.py,sha256=Ef_CJvPvMi_JO4CYQfWRc_eZnMKtoiJWnO7eC-xNAOg,10348
|
|
23
23
|
maxframe/env.py,sha256=_K499f7giN7Iu9f39iI9p_naaEDoJ0rx8dInbzqFOVI,1402
|
|
24
24
|
maxframe/mixin.py,sha256=HBAeWYGb7N6ZIgkA-YpkKiSY1GetcEVNTuMb0ieznBs,3524
|
|
25
|
-
maxframe/protocol.py,sha256=
|
|
26
|
-
maxframe/_utils.cpython-310-darwin.so,sha256=
|
|
27
|
-
maxframe/session.py,sha256=
|
|
25
|
+
maxframe/protocol.py,sha256=kP8dnBhQEI6BcVFn2uuZZTmvr4xJA-R-SZi9ZJ_iqtY,18984
|
|
26
|
+
maxframe/_utils.cpython-310-darwin.so,sha256=vejZslWgE8gSKpCaeTVk6qKfjUMdbPBfPJb1lPBAEyw,846464
|
|
27
|
+
maxframe/session.py,sha256=FFciufr4jyKKWBDfbd_OwHGGT8zpRz_8rkZHrGhJMNM,36393
|
|
28
28
|
maxframe/__init__.py,sha256=SqTFS_1o2HDuVY1mhS0ELlqDuM-biwM_MN0EYGkJLf0,1004
|
|
29
|
-
maxframe/utils.py,sha256=
|
|
29
|
+
maxframe/utils.py,sha256=f4iDtyZG7Wamm7jPU5Tse2RwguXJz5KOIiDAgycyW0o,34550
|
|
30
30
|
maxframe/extension.py,sha256=F5XTYzW5hNw0AIQz3d6u6Yk7adDdiV4c-HD7bF0X1FI,2659
|
|
31
31
|
maxframe/errors.py,sha256=vHcpVrKRHmoZPa6IwsdDT-jOZUTlhCp8c0e8F2C-5uU,966
|
|
32
|
-
maxframe/udf.py,sha256=
|
|
32
|
+
maxframe/udf.py,sha256=HrZzDSNHmv63lCt4bMoPPPVV0HdzIKPL89khmj5yAAc,5157
|
|
33
33
|
maxframe/typing_.py,sha256=iYzgThxTu38yLRtyH5xFhMrurfFj7awMGytfObhvvcs,1180
|
|
34
|
-
maxframe/codegen.py,sha256=
|
|
34
|
+
maxframe/codegen.py,sha256=yxrKeRynJiQ3fN88BPFn5oHPKemEpESz20GI8ghDgv8,17733
|
|
35
35
|
maxframe/_utils.pxd,sha256=AhJ4vA_UqZqPshi5nvIZq1xgr80fhIVQ9dm5-UdkYJ8,1154
|
|
36
36
|
maxframe/dataframe/arrays.py,sha256=RWzimUcrds5CsIlPausfJAkLUjcktBSSXwdXyUNKEtU,28752
|
|
37
37
|
maxframe/dataframe/__init__.py,sha256=ojcTejC6A-txmh1fPhaZxIiXNQejd1Qf_nH0nRr6TbM,2242
|
|
38
|
-
maxframe/dataframe/core.py,sha256=
|
|
39
|
-
maxframe/dataframe/initializer.py,sha256=
|
|
40
|
-
maxframe/dataframe/utils.py,sha256=
|
|
38
|
+
maxframe/dataframe/core.py,sha256=GSzIoRs67fFzbTqNVspd7ILxeB-5jlnXF7G_XyjcRjc,75000
|
|
39
|
+
maxframe/dataframe/initializer.py,sha256=ppdPVRoXmg5ryZIfWbJ6nQ6okEOevOSJowvk1AJXFH4,10852
|
|
40
|
+
maxframe/dataframe/utils.py,sha256=hcYmGVO6ty3RHGyd8cNkCNtml7PHRDfVyXtUa7WWzDI,47307
|
|
41
41
|
maxframe/dataframe/operators.py,sha256=sXgnopzsCjr5qTL8wn9J-avzqSzGdds3MsyHgQCB4No,7577
|
|
42
42
|
maxframe/dataframe/statistics/corr.py,sha256=3dExebs9QC8GBaZZUSKXrN2eYt-hWMayJ2MHHzTn-8s,9483
|
|
43
|
-
maxframe/dataframe/statistics/quantile.py,sha256=
|
|
43
|
+
maxframe/dataframe/statistics/quantile.py,sha256=nEhRwSdnMAyP75RkiwpYgNXCsibK2k0Uf3d5axOC-ZQ,11520
|
|
44
44
|
maxframe/dataframe/statistics/__init__.py,sha256=Ate3HERUCrjhRoGhpR9SNZA5JHlvuIVSrHgYPEcJd6Q,1084
|
|
45
|
-
maxframe/dataframe/statistics/tests/test_statistics.py,sha256=
|
|
45
|
+
maxframe/dataframe/statistics/tests/test_statistics.py,sha256=oTYoLIghp0DAtzzUbGCunpQe0XFr75-mRrb_KeSMJWA,2806
|
|
46
46
|
maxframe/dataframe/statistics/tests/__init__.py,sha256=FEFOVLi3o2GpZoedTtLYvbie0eQBehJIjtCrWca2ZHw,596
|
|
47
47
|
maxframe/dataframe/misc/accessor.py,sha256=QXjV5Q6LW0KNs67X5h2bCBhwHV8R7riP6TmTY_ECpmA,10027
|
|
48
48
|
maxframe/dataframe/misc/describe.py,sha256=Ym9DrZVBSOK0EcsiqKzjMSIK5LNPA12GPoLkFjACyZM,4370
|
|
@@ -59,24 +59,24 @@ maxframe/dataframe/misc/qcut.py,sha256=De8kM1FfOWMEDvRNWRaupSHBRGLaOVrtGbLmtHAZv
|
|
|
59
59
|
maxframe/dataframe/misc/pct_change.py,sha256=-WBq5VD3cPMv3EsqoAEvN9MXbBWfh4qHydwtWbMutZY,2516
|
|
60
60
|
maxframe/dataframe/misc/duplicated.py,sha256=JPtBDLaxlVUqFBU3U3bqGnKQNaOcKwS5sdVfBFJt-Uo,8534
|
|
61
61
|
maxframe/dataframe/misc/pivot_table.py,sha256=YoKjjtOw2Z6KU3q3opAFag1gICz5Kc_VIcKNs3ur62A,9520
|
|
62
|
-
maxframe/dataframe/misc/map.py,sha256=
|
|
62
|
+
maxframe/dataframe/misc/map.py,sha256=0lkziY2iM6GhmtaWf9G9Bf8tHngBXP9i0HHG8yJHx5c,8265
|
|
63
63
|
maxframe/dataframe/misc/memory_usage.py,sha256=BPBSYNFvxTYG5kXdX-ogLn1_c_u__G9UeWkEIKrnfyA,7889
|
|
64
64
|
maxframe/dataframe/misc/isin.py,sha256=POBR3Gvwlu2TH1AWWvKW12XOlu8HF2dJuBCBbOHgq74,6931
|
|
65
65
|
maxframe/dataframe/misc/shift.py,sha256=feTqtnIRm0YGha5Ps_feQOqHLxSbicnOMbthmZc6pEM,8935
|
|
66
66
|
maxframe/dataframe/misc/transpose.py,sha256=-Q7iFtafKKibpZKWYxf0bUg4zIZPTupvY4hkdAlB3Gw,3636
|
|
67
67
|
maxframe/dataframe/misc/melt.py,sha256=wZnxUWZfOxU9xoDp5asfi7UCXUyUNwqupZiPBibbA7c,5120
|
|
68
68
|
maxframe/dataframe/misc/stack.py,sha256=ybopZCNzARqrtFYhvjs85j-g6mXL6X2XTdSTAudtmVI,7962
|
|
69
|
-
maxframe/dataframe/misc/transform.py,sha256=
|
|
69
|
+
maxframe/dataframe/misc/transform.py,sha256=BRLOqGYFKMuLgcjf5-VeAOIkOUS18Gyae9mywiTN_nU,11208
|
|
70
70
|
maxframe/dataframe/misc/explode.py,sha256=Z26L0iYmyHE1mffyAC19Fk5rGDfw7oxOnaBHzeZ4QbU,5011
|
|
71
71
|
maxframe/dataframe/misc/diff.py,sha256=bhorH5BuKmnMJSXKC-_ZANNAR8LFDIy6p7m4kpZV_R8,5491
|
|
72
|
-
maxframe/dataframe/misc/drop_duplicates.py,sha256=
|
|
72
|
+
maxframe/dataframe/misc/drop_duplicates.py,sha256=KAE6eJhTrKKyP21p1aN1V14o05L2YJDxVeTmULJRqRw,8468
|
|
73
73
|
maxframe/dataframe/misc/_duplicate.py,sha256=lCryaC64c46YA6R3UjTBfh77L4yyB8ub3EPzBMe_HPg,1470
|
|
74
74
|
maxframe/dataframe/misc/eval.py,sha256=jXIQyGK4d1c8A-n3BBdisKK3dIjLbZO07hh-qtslBdE,24359
|
|
75
75
|
maxframe/dataframe/misc/value_counts.py,sha256=yWpGLLdx--QobAFNJHb51wuA_fePMqKMeWXA6GjIgbo,5215
|
|
76
76
|
maxframe/dataframe/misc/select_dtypes.py,sha256=xEdLNun58kvp-Vbl3u2cr8kaXFG8GsIU2BMfo7tFCM8,3144
|
|
77
77
|
maxframe/dataframe/misc/drop.py,sha256=-RHIQWek2LUTK8lOILNpCWYftCY3-I3DHSP0XT4uHBc,13029
|
|
78
|
-
maxframe/dataframe/misc/apply.py,sha256=
|
|
79
|
-
maxframe/dataframe/misc/tests/test_misc.py,sha256=
|
|
78
|
+
maxframe/dataframe/misc/apply.py,sha256=0lD5OjFIwGrKJgg7gwUr__QO5mh4Z9o6RpCLHFpicd4,23492
|
|
79
|
+
maxframe/dataframe/misc/tests/test_misc.py,sha256=gsURWRlIIaIvCh4k7NX_qSY8TgRs_meGVK_mltw49fQ,16466
|
|
80
80
|
maxframe/dataframe/misc/tests/__init__.py,sha256=FEFOVLi3o2GpZoedTtLYvbie0eQBehJIjtCrWca2ZHw,596
|
|
81
81
|
maxframe/dataframe/datasource/index.py,sha256=D7PcfIWS-6Hv1-8o6adNesditOAa9kb4JOQK1WlqNDQ,4401
|
|
82
82
|
maxframe/dataframe/datasource/read_csv.py,sha256=cpp6kX0DVrqY0KticL1h11tckobSzz1gyK4Sf2puUjo,24140
|
|
@@ -84,14 +84,14 @@ maxframe/dataframe/datasource/from_index.py,sha256=2061zsQn-BhyHTT0X9tE0JK8vLxQU
|
|
|
84
84
|
maxframe/dataframe/datasource/dataframe.py,sha256=LxAKF4gBIHhnJQPuaAUdIEyMAq7HTfiEeNVls5n4I4A,2023
|
|
85
85
|
maxframe/dataframe/datasource/series.py,sha256=QcYiBNcR8jjH6vdO6l6H9F46KHmlBqVCTI2tv9eyZ9w,1909
|
|
86
86
|
maxframe/dataframe/datasource/__init__.py,sha256=C8EKsHTJi-1jvJUKIpZtMtsK-ZID3dtxL1voXnaltTs,640
|
|
87
|
-
maxframe/dataframe/datasource/read_odps_query.py,sha256=
|
|
87
|
+
maxframe/dataframe/datasource/read_odps_query.py,sha256=vA95FxGZHAKE7KmEespmOEF6wFP9fWeXxle2zQ77PF0,13468
|
|
88
88
|
maxframe/dataframe/datasource/core.py,sha256=ozFmDgw1og7nK9_jU-u3tLEq9pNbitN-8w8XWdbKkJ0,2687
|
|
89
89
|
maxframe/dataframe/datasource/date_range.py,sha256=8JMr_Ife5pKCS_ca7W50Fyoc1JigOJirVzdVaPDzeFo,17227
|
|
90
|
-
maxframe/dataframe/datasource/read_odps_table.py,sha256=
|
|
90
|
+
maxframe/dataframe/datasource/read_odps_table.py,sha256=T44rPm2-2plSCghTGX0U9mnTrQgpjczHt0DPt2H5HM8,9338
|
|
91
91
|
maxframe/dataframe/datasource/read_parquet.py,sha256=9auOcy8snTxCOohgXZCUXfT_O39irdkBngZH5svgx0E,14531
|
|
92
92
|
maxframe/dataframe/datasource/from_tensor.py,sha256=4viuN5SLLye7Xeb8kouOpm-osoQ2yEovWTDNPQuW8gE,14727
|
|
93
93
|
maxframe/dataframe/datasource/from_records.py,sha256=WBYouYyg7m_8NJdN-yUWSfJlIpm6DVP3IMfLXZFugyI,3442
|
|
94
|
-
maxframe/dataframe/datasource/tests/test_datasource.py,sha256=
|
|
94
|
+
maxframe/dataframe/datasource/tests/test_datasource.py,sha256=xVCuDOeEmGxh39adcUf9933oXJf9cM6Mlh-02d6UA0U,17163
|
|
95
95
|
maxframe/dataframe/datasource/tests/__init__.py,sha256=FEFOVLi3o2GpZoedTtLYvbie0eQBehJIjtCrWca2ZHw,596
|
|
96
96
|
maxframe/dataframe/sort/sort_index.py,sha256=Hwbkm9x8kqGgXh4gMcAtYMDjYtt-S3CJXfYR9pN5Iqk,5412
|
|
97
97
|
maxframe/dataframe/sort/__init__.py,sha256=Vt2Ynr7uAX51hLbQu93QeHiFH4D9_WJMO99KljpbO2U,1160
|
|
@@ -99,18 +99,19 @@ maxframe/dataframe/sort/sort_values.py,sha256=-B0C2MXo9U33rW36xUFWqR8igPTdYwxAbI
|
|
|
99
99
|
maxframe/dataframe/sort/core.py,sha256=yWVlULMI91lSgW7-F-nwBQ7Sc71sCLAYvLeM0GR49w0,1224
|
|
100
100
|
maxframe/dataframe/sort/tests/__init__.py,sha256=FEFOVLi3o2GpZoedTtLYvbie0eQBehJIjtCrWca2ZHw,596
|
|
101
101
|
maxframe/dataframe/sort/tests/test_sort.py,sha256=BE03oQ8lJTQUZhMW0vzwv9jjcLToLmc68vfj3hO_sp8,2604
|
|
102
|
-
maxframe/dataframe/merge/merge.py,sha256=
|
|
103
|
-
maxframe/dataframe/merge/concat.py,sha256=
|
|
104
|
-
maxframe/dataframe/merge/__init__.py,sha256=
|
|
102
|
+
maxframe/dataframe/merge/merge.py,sha256=jIqUmcUc7Ye6Xj0dPy7HYB356lspowowHszI2Dn1qr0,30441
|
|
103
|
+
maxframe/dataframe/merge/concat.py,sha256=d-yLwxkhCVqw--nHa49R2f-SGtSR2YIfKGe0IxNKkz8,11792
|
|
104
|
+
maxframe/dataframe/merge/__init__.py,sha256=q7iqrvhzgsycMBJ78BOyyWwSEGzgXGasRIuZjmFQxnU,1121
|
|
105
105
|
maxframe/dataframe/merge/append.py,sha256=-Y1LXO3mOn_8nYOlb1-8644bYcafInBen0G7f4OKKiA,4852
|
|
106
106
|
maxframe/dataframe/merge/tests/__init__.py,sha256=FEFOVLi3o2GpZoedTtLYvbie0eQBehJIjtCrWca2ZHw,596
|
|
107
|
-
maxframe/dataframe/merge/tests/test_merge.py,sha256=
|
|
107
|
+
maxframe/dataframe/merge/tests/test_merge.py,sha256=aWia-4T-4OBL3PZ4Ffh0dsaEAFlU_6KqW_l6sMX8gv8,11259
|
|
108
108
|
maxframe/dataframe/tseries/__init__.py,sha256=FEFOVLi3o2GpZoedTtLYvbie0eQBehJIjtCrWca2ZHw,596
|
|
109
109
|
maxframe/dataframe/tseries/to_datetime.py,sha256=ctRUuRPPyBIC0yLY0rOIIxEdK67e5o9c63KRFsuKZB8,11328
|
|
110
110
|
maxframe/dataframe/tseries/tests/__init__.py,sha256=FEFOVLi3o2GpZoedTtLYvbie0eQBehJIjtCrWca2ZHw,596
|
|
111
111
|
maxframe/dataframe/tseries/tests/test_tseries.py,sha256=PCikuMQlqUaN-_kM3M2HOHjnIPrBpWlaY2ivzQfgx5Y,989
|
|
112
|
+
maxframe/dataframe/tests/test_utils.py,sha256=uuOAkElYHS9TifEBt8qCwOL21FO6FMHKxdiBZcqnaOw,1818
|
|
112
113
|
maxframe/dataframe/tests/__init__.py,sha256=FEFOVLi3o2GpZoedTtLYvbie0eQBehJIjtCrWca2ZHw,596
|
|
113
|
-
maxframe/dataframe/tests/test_initializer.py,sha256=
|
|
114
|
+
maxframe/dataframe/tests/test_initializer.py,sha256=9VFQ1MtCWkTE-QHI_3C7HHtXFxdWH6IbgYkOmjL1vPg,2000
|
|
114
115
|
maxframe/dataframe/ufunc/ufunc.py,sha256=P8mh9CwKnxoN624IaoZ010kwH1n4RiUUGMuU5IgHTOM,1651
|
|
115
116
|
maxframe/dataframe/ufunc/__init__.py,sha256=-_obmEV3B4Az5V0x-P-T8cfdeSoYHrLBOgj_-gqv1c4,889
|
|
116
117
|
maxframe/dataframe/ufunc/tensor.py,sha256=SeWQbDflxL5fipzPJdhVKFk9ntM4VXtGazb8lD2JwSM,1618
|
|
@@ -122,26 +123,30 @@ maxframe/dataframe/missing/replace.py,sha256=sYFzkyChrev8Vl0NocDGTCdWTdHjXvzBzHb
|
|
|
122
123
|
maxframe/dataframe/missing/tests/test_missing.py,sha256=L53Fm8w7r1uRghOhslWd0fKa7HJmn1Dk52ZTdG7FCi8,3134
|
|
123
124
|
maxframe/dataframe/missing/tests/__init__.py,sha256=FEFOVLi3o2GpZoedTtLYvbie0eQBehJIjtCrWca2ZHw,596
|
|
124
125
|
maxframe/dataframe/extensions/accessor.py,sha256=j7AYpmfPQwMS3ep52yY5ETtXyaO1cO4K9aPdELk2lR0,1447
|
|
125
|
-
maxframe/dataframe/extensions/
|
|
126
|
-
maxframe/dataframe/extensions/
|
|
127
|
-
maxframe/dataframe/extensions/
|
|
126
|
+
maxframe/dataframe/extensions/flatjson.py,sha256=z6aRuquuHJcKlgw4wlt4fMMVmnY957TJPqZX_dq0nWc,4368
|
|
127
|
+
maxframe/dataframe/extensions/apply_chunk.py,sha256=LhRmmxdDdrDZCNjnXx2kZu3VVoEMpTUptnrufhqLETc,22492
|
|
128
|
+
maxframe/dataframe/extensions/__init__.py,sha256=MsKgGKlLkRJi6BAFyRfqlOrCqrgrrWe6GVoCUZ9t0aA,1880
|
|
129
|
+
maxframe/dataframe/extensions/reshuffle.py,sha256=Ubn4_-g9Rj9NPKyPmNb85aWg-VvotOdZhuivsu4ob0E,2635
|
|
130
|
+
maxframe/dataframe/extensions/flatmap.py,sha256=PaksumMD6NTXjnAk_1R_l1FOAveJFzCaRl039lO3Y9U,9926
|
|
131
|
+
maxframe/dataframe/extensions/tests/test_apply_chunk.py,sha256=e9iMl0Y2My0ERz1A3fWz1QppKxKZfbqMH8j9N4uE9vg,5851
|
|
132
|
+
maxframe/dataframe/extensions/tests/test_extensions.py,sha256=3RcdS9aD9Me13qE6lXLB0WpD-b3X6ZZQTIgZloBrlhY,4778
|
|
128
133
|
maxframe/dataframe/extensions/tests/__init__.py,sha256=FEFOVLi3o2GpZoedTtLYvbie0eQBehJIjtCrWca2ZHw,596
|
|
129
|
-
maxframe/dataframe/groupby/aggregation.py,sha256=
|
|
130
|
-
maxframe/dataframe/groupby/fill.py,sha256=
|
|
134
|
+
maxframe/dataframe/groupby/aggregation.py,sha256=sMQbCMq4XeHPMGnQauOryvzL8EH-X4l990MxSzwVX0U,11989
|
|
135
|
+
maxframe/dataframe/groupby/fill.py,sha256=YJ6q548v4n56vO3ObSSIBBjBJBHTYCf49HrHL3c7Rxw,4808
|
|
131
136
|
maxframe/dataframe/groupby/cum.py,sha256=F5uX97hR1rMQG9YtvoR7MFFvP3zMDDv1GD9b2NqLcOI,3683
|
|
132
|
-
maxframe/dataframe/groupby/__init__.py,sha256=
|
|
133
|
-
maxframe/dataframe/groupby/getitem.py,sha256=
|
|
134
|
-
maxframe/dataframe/groupby/core.py,sha256=
|
|
135
|
-
maxframe/dataframe/groupby/transform.py,sha256=
|
|
137
|
+
maxframe/dataframe/groupby/__init__.py,sha256=Vj7H1S7WBKygv6pu1L44djnfKWMxRSyfZ3Kh_cGUfLQ,3444
|
|
138
|
+
maxframe/dataframe/groupby/getitem.py,sha256=Nas7cZRlCmM8Xq9EIOPNib33gmXwYbQDHkSy_4NJcjQ,3415
|
|
139
|
+
maxframe/dataframe/groupby/core.py,sha256=SwVisn8IJpdEXbJlZ29AOhoaE4Si4h4bv5mx2hvwiy4,6076
|
|
140
|
+
maxframe/dataframe/groupby/transform.py,sha256=xGhBT06N-ml1OmlTAb5i-WSeQ-wHyBIevF_ngETnLYU,8824
|
|
136
141
|
maxframe/dataframe/groupby/head.py,sha256=ZDkbSn3HuUR4GGkZJqo_fL-6KFJfs55aKXQkAh_0wvA,3266
|
|
137
142
|
maxframe/dataframe/groupby/sample.py,sha256=IdoyzT-V5309txYvM_iaYKupsULfozMGwm1K3oihTf4,6935
|
|
138
|
-
maxframe/dataframe/groupby/apply.py,sha256=
|
|
143
|
+
maxframe/dataframe/groupby/apply.py,sha256=25AVvqHuOKnYL7gjEHrgafu91_wnoqTL25LMHqJDfTw,9627
|
|
139
144
|
maxframe/dataframe/groupby/tests/__init__.py,sha256=FEFOVLi3o2GpZoedTtLYvbie0eQBehJIjtCrWca2ZHw,596
|
|
140
|
-
maxframe/dataframe/groupby/tests/test_groupby.py,sha256=
|
|
145
|
+
maxframe/dataframe/groupby/tests/test_groupby.py,sha256=wwKPCFVT4ktVxKTEIlt5DIFgPHoEJKJO-gtM7b_YdWk,12376
|
|
141
146
|
maxframe/dataframe/datastore/__init__.py,sha256=Ujd4ix4UJ7Zq-sV2pXTRDvZkKUvtt8sr-FfiUoi6Kh4,784
|
|
142
147
|
maxframe/dataframe/datastore/core.py,sha256=hLGhqYxX73tq9sOFxMyYBRMawTnsVQqluW5FcE3YHfE,743
|
|
143
148
|
maxframe/dataframe/datastore/to_csv.py,sha256=xVfpEsicD5A5uXLSdCN08K8uGyWB4QxnRcAbgBVUzbs,7747
|
|
144
|
-
maxframe/dataframe/datastore/to_odps.py,sha256
|
|
149
|
+
maxframe/dataframe/datastore/to_odps.py,sha256=TP3dWCdb4lNGVnKuQ86lOpl5U4CYZlFhwkQ9f6096_M,6722
|
|
145
150
|
maxframe/dataframe/datastore/tests/__init__.py,sha256=FEFOVLi3o2GpZoedTtLYvbie0eQBehJIjtCrWca2ZHw,596
|
|
146
151
|
maxframe/dataframe/datastore/tests/test_to_odps.py,sha256=EaFprN1mErrqqy54Rzbw6PQxPbBCgxDP0E055RIIH0g,1296
|
|
147
152
|
maxframe/dataframe/fetch/__init__.py,sha256=E3VjxLRKjtr-D__K-c0aRETvBG7CQRG1iEtH0Qghq0s,653
|
|
@@ -149,19 +154,20 @@ maxframe/dataframe/fetch/core.py,sha256=z61_orBtOIrKFpFdJTNqyPhOw5ZCGe6QkXnDrGdM
|
|
|
149
154
|
maxframe/dataframe/reduction/max.py,sha256=CqaueIN3cuF7vlE2rt2MAcXAD3Syd_R8W2dzcFhTmV0,1660
|
|
150
155
|
maxframe/dataframe/reduction/nunique.py,sha256=BMg5FxTYzDWRL9kQlB1_18ecrQPXr8kLOp-u4zdDUbE,3467
|
|
151
156
|
maxframe/dataframe/reduction/cummax.py,sha256=TyZ3Fd6bAES2SX3WdQK9Fi0gX_7Dqk3F907OKU6035s,1013
|
|
152
|
-
maxframe/dataframe/reduction/aggregation.py,sha256=
|
|
157
|
+
maxframe/dataframe/reduction/aggregation.py,sha256=OpNsMUTRuccPulOiBNO8mE2FkYDFY6FEaY_q0FhhEak,12666
|
|
153
158
|
maxframe/dataframe/reduction/skew.py,sha256=42bEutP4Ftj28RbLbLgIKiUQpG9tHPP0u9VVmBVFApw,2538
|
|
154
159
|
maxframe/dataframe/reduction/custom_reduction.py,sha256=uu-NePAC8O2zmcxSfc_CabkIxqiBgAWbdRoUKnG9jfM,1435
|
|
155
160
|
maxframe/dataframe/reduction/unique.py,sha256=Dhghnf9mvgS8p-ETJUlhfJajBEyVZPBp1I6NN7oO7iw,2955
|
|
156
161
|
maxframe/dataframe/reduction/std.py,sha256=PYeh6-yton9vUI8D-dTlnXsWKCi-uDpop4UExmay7Ec,1355
|
|
157
162
|
maxframe/dataframe/reduction/str_concat.py,sha256=wbb4Y4ZDyou_ixR6ukJ8wQw74nzI05tToNWaWSirbSA,1657
|
|
158
|
-
maxframe/dataframe/reduction/__init__.py,sha256=
|
|
163
|
+
maxframe/dataframe/reduction/__init__.py,sha256=WdA7sHtilWu8EBxhSYonT0X3tqlRK6MCjFn8ZmMjvpw,4335
|
|
159
164
|
maxframe/dataframe/reduction/core.py,sha256=xoEiVQQtl1eLtJ4AY6xqy3tCkyi6WZwSLbcv-f8-B14,30395
|
|
160
165
|
maxframe/dataframe/reduction/all.py,sha256=h3Y04RJ-mTxAggX1-BIpuiyhNofQEkBzsAxKOX--kv0,1966
|
|
161
166
|
maxframe/dataframe/reduction/cummin.py,sha256=CA9wjhx_ZFfk6b3KbbDykWZiyXsfwLBUODKn36WuGug,1013
|
|
162
167
|
maxframe/dataframe/reduction/min.py,sha256=8Kh07yoTRWaCWGKxZ4a64_tlIljR8GsjlbwdsjNmPTw,1660
|
|
163
168
|
maxframe/dataframe/reduction/mean.py,sha256=t1lVlt7FQI2St4c0arH8nPZLI1ihIOh8IDrU8gGmKyE,1612
|
|
164
169
|
maxframe/dataframe/reduction/var.py,sha256=LFu2zXi0GD1e8_qUDV7Ea6NtejRCQkYshPEEtQ5VTBA,2008
|
|
170
|
+
maxframe/dataframe/reduction/median.py,sha256=mIlhA_s-83f80wau1tQSdx84dlz5rjxlLQN857uXJq8,1593
|
|
165
171
|
maxframe/dataframe/reduction/kurtosis.py,sha256=3z3FKtPqhEi2PH66i57k23Obazj_Tb9RdjCOk-G9Rr8,2840
|
|
166
172
|
maxframe/dataframe/reduction/sum.py,sha256=cu6M462w_kRUyGPrrZaxLBES0tq5gCVVdZ93wfm7dJs,2049
|
|
167
173
|
maxframe/dataframe/reduction/prod.py,sha256=DHTAr4xZN4hFq9zLz5cnKiUZQcH7jR3Gqvwtr-PydaQ,2049
|
|
@@ -172,7 +178,7 @@ maxframe/dataframe/reduction/cumprod.py,sha256=e2W6RGXIqeHjlm07XJ0KwSfp3f0mrQ4F4
|
|
|
172
178
|
maxframe/dataframe/reduction/count.py,sha256=ifvpEZuMamlvsTuPjmrh_xLbBMwoqylQ9j74VG_9Q4w,1741
|
|
173
179
|
maxframe/dataframe/reduction/reduction_size.py,sha256=5wGc5cyuUllewvKPeJargbEjuzCakhir3NXZ0sgeqWc,1120
|
|
174
180
|
maxframe/dataframe/reduction/tests/__init__.py,sha256=FEFOVLi3o2GpZoedTtLYvbie0eQBehJIjtCrWca2ZHw,596
|
|
175
|
-
maxframe/dataframe/reduction/tests/test_reduction.py,sha256=
|
|
181
|
+
maxframe/dataframe/reduction/tests/test_reduction.py,sha256=zCR5xRrNF1drecRUdS7xaA0cRHq43XqYf1ESK8gtgtA,17623
|
|
176
182
|
maxframe/dataframe/plotting/__init__.py,sha256=JShRu5lSUAfwgTFUMxQoIqiH1gg9H5cieoRyg4ybieA,1393
|
|
177
183
|
maxframe/dataframe/plotting/core.py,sha256=kvAM1ikU4SsFhvhmpOTQVTs2EX4ypAgNnjD9Jqy3xyA,2233
|
|
178
184
|
maxframe/dataframe/plotting/tests/test_plotting.py,sha256=IKAOcG0LotMGZCrvDzWiHmoFXqtyrVDn87eIOdyg6Ho,4118
|
|
@@ -182,8 +188,8 @@ maxframe/dataframe/window/ewm.py,sha256=xqRiw4_KYpPTzhdKnN9wIknWdKsFls-uEzYO1T18
|
|
|
182
188
|
maxframe/dataframe/window/__init__.py,sha256=D8DOhmH-PabNAFPNwzwsw-mH0iELIwyU7tyiiaZGJhw,910
|
|
183
189
|
maxframe/dataframe/window/core.py,sha256=T15k5OqC1y1ewlT2ddDf0oFP9LeOdneZ3po1mxLdOgc,2205
|
|
184
190
|
maxframe/dataframe/window/rolling.py,sha256=btt0uOtsK3z2gR96tVXrXJUrvLFus5FUunRaooizpIw,12042
|
|
185
|
-
maxframe/dataframe/window/expanding.py,sha256=
|
|
186
|
-
maxframe/dataframe/window/tests/test_expanding.py,sha256=
|
|
191
|
+
maxframe/dataframe/window/expanding.py,sha256=cZl0cnlS-P09uc0gSINOeTrzW57rz-g2-j7YcvbDB6g,3918
|
|
192
|
+
maxframe/dataframe/window/tests/test_expanding.py,sha256=OxCuZ7MTeO-KbbaEHaa00JF6ZvgnaSSMqn8-De2LttY,1916
|
|
187
193
|
maxframe/dataframe/window/tests/test_rolling.py,sha256=JWnXGUCz3li5B10rvnzzcTXbQq1lL6Svo3NL7BeBGGU,1714
|
|
188
194
|
maxframe/dataframe/window/tests/__init__.py,sha256=FEFOVLi3o2GpZoedTtLYvbie0eQBehJIjtCrWca2ZHw,596
|
|
189
195
|
maxframe/dataframe/window/tests/test_ewm.py,sha256=R6I2smeLhpS9cczCAuZdP5nKj0s4ssKB5VJ6hRW-9b0,2060
|
|
@@ -192,11 +198,11 @@ maxframe/dataframe/arithmetic/arccos.py,sha256=WF3SE975VbwCOsrSPNck4swIejDFI-tVm
|
|
|
192
198
|
maxframe/dataframe/arithmetic/arctanh.py,sha256=7H32t46reUr0k_4pEj2Dx_dAkH59OIUinedqoOPd0Hg,935
|
|
193
199
|
maxframe/dataframe/arithmetic/trunc.py,sha256=WZSfPRti63DtH_JzsnqPlknwfvIdQogZGmC9uu17n64,925
|
|
194
200
|
maxframe/dataframe/arithmetic/tanh.py,sha256=EG2Fbb7lZPgdNKvIZQCkn0DWCp88pp6g7hyDFTQQZUY,920
|
|
195
|
-
maxframe/dataframe/arithmetic/equal.py,sha256=
|
|
201
|
+
maxframe/dataframe/arithmetic/equal.py,sha256=XUEHuLa3VdPs1ODWeIJjIOPq6l3lnMcQMfAyoMlokIg,1517
|
|
196
202
|
maxframe/dataframe/arithmetic/add.py,sha256=VMxJbbZf5Unl-0XH3QIAKtzcyJqKF103s8Rx_0kQQI0,1706
|
|
197
203
|
maxframe/dataframe/arithmetic/subtract.py,sha256=jus58lUI8MT3iYSoO5V2Z6veelPEYp8R3n8Kz_FOpFg,1780
|
|
198
204
|
maxframe/dataframe/arithmetic/sqrt.py,sha256=1-fOixLXtprGMyTEwMbMp7J2ZKONgMhjwcu2uXmPmL8,920
|
|
199
|
-
maxframe/dataframe/arithmetic/less_equal.py,sha256=
|
|
205
|
+
maxframe/dataframe/arithmetic/less_equal.py,sha256=Aw1sXCVjS7eZ6ZXvCnppyt3zFnNdH_XrmQ39RFq573A,1557
|
|
200
206
|
maxframe/dataframe/arithmetic/log.py,sha256=eQkt1Hj0KG7jlxEOR_WjyRO0ldMwvXfE0R59jEBOjCs,915
|
|
201
207
|
maxframe/dataframe/arithmetic/negative.py,sha256=tr4ihgbj2Kws6mhZrkQDqDcP3gCnswgTyW3TGODKl24,1007
|
|
202
208
|
maxframe/dataframe/arithmetic/multiply.py,sha256=IYRtGCnu9LtykcnLThRh4odOluXq2MkoVHQa_zwhpQU,1733
|
|
@@ -213,7 +219,7 @@ maxframe/dataframe/arithmetic/ceil.py,sha256=2Kg7DhGutwqRpH88pvbY0mXz0n6fI0KB_Eu
|
|
|
213
219
|
maxframe/dataframe/arithmetic/bitwise_or.py,sha256=BNYyKUshOkyQ1pnEPr4YV77ANRvV5VfY6QXuHs1oARk,1546
|
|
214
220
|
maxframe/dataframe/arithmetic/bitwise_and.py,sha256=G3IMIAmFz9HTcuNnVdSiWCKcSUdNKniR_f7wLhJ4ubM,1427
|
|
215
221
|
maxframe/dataframe/arithmetic/log10.py,sha256=yT9ziTGU0QogZLdwHiZA8VHqes2tKzHfKRsrrhEbEtg,925
|
|
216
|
-
maxframe/dataframe/arithmetic/docstring.py,sha256=
|
|
222
|
+
maxframe/dataframe/arithmetic/docstring.py,sha256=WsDeqeRbyTbfFGZJLCWLSRMcazLXkmK3wpDAcXA70e4,11691
|
|
217
223
|
maxframe/dataframe/arithmetic/truediv.py,sha256=KNMlFa7D8ui89ILKKg5QG1TmTYA3C3Gttv9UAq3UGK4,1808
|
|
218
224
|
maxframe/dataframe/arithmetic/exp2.py,sha256=cwyEZ7uyjbiqD-7Y9PqEDOI80hf6ReabtbGq6DLjwCg,920
|
|
219
225
|
maxframe/dataframe/arithmetic/expm1.py,sha256=XfDd6LQ1YzBq8mnTVFTWf3lBtIOMzaO4yc9b5ZRuIQU,925
|
|
@@ -221,27 +227,27 @@ maxframe/dataframe/arithmetic/arcsin.py,sha256=NuVj2ve_KVtT0BnDL0NP0W8OLbXxKljLA
|
|
|
221
227
|
maxframe/dataframe/arithmetic/floordiv.py,sha256=CySJxJb7DZqbe_CqC4Q0IyEm_4vXEgPpKyWMEEb10ag,1827
|
|
222
228
|
maxframe/dataframe/arithmetic/bitwise_xor.py,sha256=W0MDaBV4rEh6MtCk7eCsZkW6abvk_8JetzXKs1h9eiM,1426
|
|
223
229
|
maxframe/dataframe/arithmetic/invert.py,sha256=OvRZ3DtDpWQBr2fNIMjUeraT1zOhh5Hqn3VLhhhs-oo,985
|
|
224
|
-
maxframe/dataframe/arithmetic/greater.py,sha256=
|
|
230
|
+
maxframe/dataframe/arithmetic/greater.py,sha256=YE5dkcyoENXR6uxSOhWfD8isq8MtqFmiRu6AoXndObk,1547
|
|
225
231
|
maxframe/dataframe/arithmetic/log2.py,sha256=rqmgkwgqwvnyFLW554eHBCBDwP8Y8bXgx3vT2HJTzRo,920
|
|
226
|
-
maxframe/dataframe/arithmetic/less.py,sha256=
|
|
232
|
+
maxframe/dataframe/arithmetic/less.py,sha256=Q6hOp1IYybChzVCY0_ccTnD4pcCLw6CIVnzhMS_KK68,1518
|
|
227
233
|
maxframe/dataframe/arithmetic/cosh.py,sha256=OLmJdzc0B1v61-cu2ohXUflJwxkXfUy50YqS1X8h0Ho,920
|
|
228
234
|
maxframe/dataframe/arithmetic/sinh.py,sha256=-Cm7wHcywVAuLnt-AA3WggxfOjiPXfii5nx14dT_MYg,920
|
|
229
235
|
maxframe/dataframe/arithmetic/mod.py,sha256=hHYLPMbNLjuig9Tud3FqEYRxQeDMrFgvDm5LEjn1Xu4,1702
|
|
230
|
-
maxframe/dataframe/arithmetic/greater_equal.py,sha256=
|
|
236
|
+
maxframe/dataframe/arithmetic/greater_equal.py,sha256=lkP_0fM048BKLu7p5EX-VDkhmJpHzZB0DeKc18GGqhs,1572
|
|
231
237
|
maxframe/dataframe/arithmetic/exp.py,sha256=QE7i88tJrFYx2Qs7Hmcf8Zb2oBJDKghBjxSnf4Y9b7k,915
|
|
232
238
|
maxframe/dataframe/arithmetic/arcsinh.py,sha256=KreWLwP5wwQqna95iPlc2aiXPzuqCFq8chCMytk5qhY,935
|
|
233
239
|
maxframe/dataframe/arithmetic/arccosh.py,sha256=_LTrS_JOy1CTvCXT9iw9TQkBbO3wv-hKrYiYRzTwcnU,935
|
|
234
240
|
maxframe/dataframe/arithmetic/power.py,sha256=ZxssD1aoz8abrv1tE_LFhGF0jr_j5nXQ8nhY9lcZrF0,1811
|
|
235
|
-
maxframe/dataframe/arithmetic/not_equal.py,sha256=
|
|
241
|
+
maxframe/dataframe/arithmetic/not_equal.py,sha256=jwfWfLHbRmVEMVdAmHlFUU4Kd6hhyevIGO2Fl2nuyJM,1533
|
|
236
242
|
maxframe/dataframe/arithmetic/radians.py,sha256=pSq9S0KlV0Xx0vGSdxdol3348dSyYuxG4jMFbGFdQ6E,935
|
|
237
243
|
maxframe/dataframe/arithmetic/sin.py,sha256=zgWoijVpASlkZ7cnZZxKSSHUiLqQ0pKUAIOHEfCBubc,915
|
|
238
244
|
maxframe/dataframe/arithmetic/tests/__init__.py,sha256=FEFOVLi3o2GpZoedTtLYvbie0eQBehJIjtCrWca2ZHw,596
|
|
239
|
-
maxframe/dataframe/arithmetic/tests/test_arithmetic.py,sha256
|
|
245
|
+
maxframe/dataframe/arithmetic/tests/test_arithmetic.py,sha256=xAAxpq0Ic6KaMTDJu9I5_p0U3TVMiI21I35NOsv-inI,25163
|
|
240
246
|
maxframe/dataframe/indexing/reset_index.py,sha256=uzGszHfkhwZgZtEaygy5UPrvHPNPXgWZaTOXdNxGBT8,13122
|
|
241
247
|
maxframe/dataframe/indexing/iat.py,sha256=ANURJ8qn_UitgM01gDPeaQOlSBxbk0pmN4Yr-iPRXM8,1127
|
|
242
|
-
maxframe/dataframe/indexing/loc.py,sha256=
|
|
248
|
+
maxframe/dataframe/indexing/loc.py,sha256=nKKwY8jsjmIU-Ap9AtYbzCxbXcvLzvc8gOMdbo0hzcg,14975
|
|
243
249
|
maxframe/dataframe/indexing/align.py,sha256=hEuoaNX4bI9LBWp_1kGG7GSs3PDF95tDXo7GX5nypGI,12085
|
|
244
|
-
maxframe/dataframe/indexing/rename.py,sha256=
|
|
250
|
+
maxframe/dataframe/indexing/rename.py,sha256=jYstF7CKilLjAlIGKs2wVhYtijJDCz8AWg2VF-1KROU,12892
|
|
245
251
|
maxframe/dataframe/indexing/setitem.py,sha256=PgVZr2A_joTHz9GUbnGfuSI28qSnwe-n84yKFJagLUc,5004
|
|
246
252
|
maxframe/dataframe/indexing/where.py,sha256=3h64jI_tXmWAu1ZvfeS58h8nUfBN7K7OZ0C22_5-_uk,8567
|
|
247
253
|
maxframe/dataframe/indexing/iloc.py,sha256=sP4hV9Wo3S4Iimxak5Q-EB_Vph2dCbbDsVS003jEeFI,17421
|
|
@@ -250,7 +256,7 @@ maxframe/dataframe/indexing/getitem.py,sha256=3LHjTcvU0PSTf_VI6x1MwirIiK_ynLcGb_
|
|
|
250
256
|
maxframe/dataframe/indexing/set_index.py,sha256=Sa49Z0n3bwAM1OTJJPdTSCZb4qMZjyfhiEpi4mALviU,4195
|
|
251
257
|
maxframe/dataframe/indexing/at.py,sha256=cGzJ3eM_kVIYDPf24JQxbhrRNtb2urscMtV0XUKzWkw,2217
|
|
252
258
|
maxframe/dataframe/indexing/rename_axis.py,sha256=w5B67qlcsdjNhN6OZnov5L5ovJXpu_Oqpux0AP0elzk,6302
|
|
253
|
-
maxframe/dataframe/indexing/add_prefix_suffix.py,sha256
|
|
259
|
+
maxframe/dataframe/indexing/add_prefix_suffix.py,sha256=tSNslK43yx9tOieXcEuWamW7HWysxSoqqEM4p5NN55k,2966
|
|
254
260
|
maxframe/dataframe/indexing/insert.py,sha256=GG9VGNozKDdeREdtsQJ6WztFUwuYuBP-LW1Lv4RftN0,2911
|
|
255
261
|
maxframe/dataframe/indexing/sample.py,sha256=Dm3qqFa2nL0A24rSrqDs_4U1m9a-noWQMp_CNE-Suak,8171
|
|
256
262
|
maxframe/dataframe/indexing/set_axis.py,sha256=n5obYjkg-YKSOGHA0gfM25qUPGcGHBeeo-uyvhYCI34,5530
|
|
@@ -261,17 +267,27 @@ maxframe/learn/__init__.py,sha256=ii-8fJO-ubA3wRej1S1jXsb62zrS5MaAWc2gqQAAHFw,63
|
|
|
261
267
|
maxframe/learn/core.py,sha256=JeKLITsz1WrKOTR6Air2lG28MtjamWtFnal4ynvprNw,756
|
|
262
268
|
maxframe/learn/utils/__init__.py,sha256=zpkZ-HBwv91vyMeBVs59J_u0uVQCXUkEzo_pW2h9q00,646
|
|
263
269
|
maxframe/learn/utils/core.py,sha256=_tskQMfdvr5VAV68fDzM0DSVF2S7SMDnNXA8j_gHmGI,1029
|
|
264
|
-
maxframe/learn/contrib/__init__.py,sha256=
|
|
270
|
+
maxframe/learn/contrib/__init__.py,sha256=huq1EWKFZZxmnUKxc8-gn2KPh_mrNTiaRxMtPNvlv7Y,662
|
|
265
271
|
maxframe/learn/contrib/utils.py,sha256=k5jlwY8pru_PD8olOBOsMcBLeo31NMx53TjJmSvbvy8,1662
|
|
266
|
-
maxframe/learn/contrib/
|
|
272
|
+
maxframe/learn/contrib/llm/multi_modal.py,sha256=c37w0yhEDK95zCVXtRVdHFaJ9Lq8wmmwDi9f_dp0kSk,1446
|
|
273
|
+
maxframe/learn/contrib/llm/__init__.py,sha256=n9xvRXQEDWt5DFl1rAkDDBoyybAe7qExGR5M_-yDTzg,648
|
|
274
|
+
maxframe/learn/contrib/llm/core.py,sha256=b-STLC2PsjDAnn1KP5KpGKrpgVUXqscuOSf40xttDuo,2006
|
|
275
|
+
maxframe/learn/contrib/llm/text.py,sha256=l-I2U6lrGPEgplpnvoP2YPfD566xSnYXfMzE2nJlTiI,1422
|
|
276
|
+
maxframe/learn/contrib/llm/models/__init__.py,sha256=L3-nQSRCfmJLlMPdn3cZrUiLm2llVz1qnae-ehElyGY,660
|
|
277
|
+
maxframe/learn/contrib/llm/models/dashscope.py,sha256=BE6Dj8rEocLGSm9UD-Usofdzs0QbWrQ4-iOuFaOKjjE,2298
|
|
278
|
+
maxframe/learn/contrib/xgboost/classifier.py,sha256=BgDRqInNhe6YvC4026vRq4DU9lL6vVDiCWJFFON9If4,3886
|
|
267
279
|
maxframe/learn/contrib/xgboost/dmatrix.py,sha256=r-3JfQNwv8Qgi6zxwSVlxolv8K82paofCBaR1u860rs,4742
|
|
268
|
-
maxframe/learn/contrib/xgboost/predict.py,sha256=
|
|
280
|
+
maxframe/learn/contrib/xgboost/predict.py,sha256=BlFKaM0Fdw2BeUtxVyNtNTjwiXqjJNZjP0lbs5SNtjI,3756
|
|
269
281
|
maxframe/learn/contrib/xgboost/__init__.py,sha256=kbYrokjDXjMBqRka5NTkUjU5zrNUoT_TkTyuW9G5s-0,899
|
|
270
282
|
maxframe/learn/contrib/xgboost/core.py,sha256=KHPi--bAbWcd4bX_Nfuh3k9Sl-e6BW9Ck7PyIS9veUU,8035
|
|
271
|
-
maxframe/learn/contrib/xgboost/train.py,sha256=
|
|
283
|
+
maxframe/learn/contrib/xgboost/train.py,sha256=kgxNkmkgoH7P4w-eO0oLOVYNe-s3_kYnkPOS0UmWfv0,4528
|
|
272
284
|
maxframe/learn/contrib/xgboost/regressor.py,sha256=0Wuyt2nxyVqp3AHl4aro0WdXe0YhtXIcbJPTdboy_AI,2313
|
|
273
285
|
maxframe/learn/contrib/xgboost/tests/test_core.py,sha256=0Q3A1EFW30vsQLl7bSTTuw-ldlLEO43ljVSJBb8j1LM,1406
|
|
274
286
|
maxframe/learn/contrib/xgboost/tests/__init__.py,sha256=FEFOVLi3o2GpZoedTtLYvbie0eQBehJIjtCrWca2ZHw,596
|
|
287
|
+
maxframe/learn/contrib/graph/connected_components.py,sha256=JRLdmyryWas1W3mE_sIn5eX1rU4N_ycYtLrEInkbxlw,7152
|
|
288
|
+
maxframe/learn/contrib/graph/__init__.py,sha256=oJZ8FJcGcbaRwzY4O8BKLZkXBqhhYgPC615oJGFqJpY,652
|
|
289
|
+
maxframe/learn/contrib/graph/tests/__init__.py,sha256=FEFOVLi3o2GpZoedTtLYvbie0eQBehJIjtCrWca2ZHw,596
|
|
290
|
+
maxframe/learn/contrib/graph/tests/test_connected_components.py,sha256=13z_AulY1rhI2owu5rorcj4CwxxzKlJGuQWF6n2VC90,1609
|
|
275
291
|
maxframe/learn/contrib/pytorch/run_script.py,sha256=Joh0gwukGf3kqfBYRxL34hQjbULT6s3vNnmBdJ6NZP0,3111
|
|
276
292
|
maxframe/learn/contrib/pytorch/__init__.py,sha256=koagbwLwH1VNLTWYx29ckatBChZ_f9wFcflB4tGYYwg,687
|
|
277
293
|
maxframe/learn/contrib/pytorch/run_function.py,sha256=oMDMVqDFQJ5d8DllZrqqRmBT2lx1cTmAv0hdQlO2GrY,3244
|
|
@@ -284,7 +300,7 @@ maxframe/core/entity/tileables.py,sha256=nPBdaJz66t_UWqO0utp7P9DPs5WAlx3lM4TXbgG
|
|
|
284
300
|
maxframe/core/entity/__init__.py,sha256=9erZEQzE07BfJrQJDcEyHPo_XCIi5bJkKW3NvKhJhRo,1075
|
|
285
301
|
maxframe/core/entity/core.py,sha256=t7Ex9Yb7A1h_XwyRG88Fx4ZOai-NQKi2luRVS_jFPEo,4018
|
|
286
302
|
maxframe/core/entity/utils.py,sha256=IuNgFmBQFRioAA1hgZe6nTEggOmDY-iooZqncQQrV28,942
|
|
287
|
-
maxframe/core/entity/executable.py,sha256=
|
|
303
|
+
maxframe/core/entity/executable.py,sha256=0lc5113ASliBAAb59hT8n1qpyajdSa5p2lK3u79iblE,10956
|
|
288
304
|
maxframe/core/entity/output_types.py,sha256=Jrro-S4iI7BfaSe9hTq3zIAxG-hBENMU-hlN-kL5d8o,2536
|
|
289
305
|
maxframe/core/entity/objects.py,sha256=EnS0F2ageFTEvNfylqp21LTfTv3Q3p0X0Ur6HgWr2co,3781
|
|
290
306
|
maxframe/core/entity/tests/__init__.py,sha256=FEFOVLi3o2GpZoedTtLYvbie0eQBehJIjtCrWca2ZHw,596
|
|
@@ -292,7 +308,7 @@ maxframe/core/entity/tests/test_objects.py,sha256=-HS2dux6OdmwtMY6GRxwASq2gPSRY5
|
|
|
292
308
|
maxframe/core/graph/__init__.py,sha256=tqUUWDOXp2KFjO7zv1dN_-ttE-ef09-S1GNt8EQ35Bk,765
|
|
293
309
|
maxframe/core/graph/entity.py,sha256=3ifzsEDIxzDjeM9MhlSwgz92GuaEEoCVWxEkEu2xIgE,4863
|
|
294
310
|
maxframe/core/graph/core.pyx,sha256=kyqE5-X9Tc82wU4N_zsf8jNthAHWHTVRNFQWNNbzgpM,15923
|
|
295
|
-
maxframe/core/graph/core.cpython-310-darwin.so,sha256=
|
|
311
|
+
maxframe/core/graph/core.cpython-310-darwin.so,sha256=pXci_BaNr0Z6m3FKF4Xlcz9mfdC6IWTK20hl8CX3Q38,685616
|
|
296
312
|
maxframe/core/graph/tests/__init__.py,sha256=FEFOVLi3o2GpZoedTtLYvbie0eQBehJIjtCrWca2ZHw,596
|
|
297
313
|
maxframe/core/graph/tests/test_graph.py,sha256=kZfe_SfMOoHjEfXvtVtn0RjK4lOd-tFasxSpfL4G1WE,7462
|
|
298
314
|
maxframe/core/graph/builder/__init__.py,sha256=TYHKq5Y8iTRWprw6CZosdtq-NGV7Sa1u1CI6adR9hgk,640
|
|
@@ -307,10 +323,10 @@ maxframe/core/operator/core.py,sha256=T2YYIleKiFxmufpHF7ELOztlJsYO-Kn4KYhQhY4jRU
|
|
|
307
323
|
maxframe/core/operator/shuffle.py,sha256=A_w62UxXRKyDNESo4Q0UGmCpuFfPlQXWmPyQGHdpz3A,4746
|
|
308
324
|
maxframe/core/operator/utils.py,sha256=CVVamZJwbnequxDZmYcPLt4rcfAn8s77xk5hlr8eXh4,1706
|
|
309
325
|
maxframe/core/operator/objects.py,sha256=lEicZmIsR2sgWsH3oAeeYMde8C0TYeu2vkAyGj8WUVM,1965
|
|
310
|
-
maxframe/core/operator/base.py,sha256=
|
|
326
|
+
maxframe/core/operator/base.py,sha256=IXBJ0Nd8JAcnwN8FQ1H-QXiMRKAz2_LUZstku7Msv1E,15336
|
|
311
327
|
maxframe/core/operator/tests/test_core.py,sha256=57aICnc5VLqdVK7icAORTWC81bSjBxeeVWIJcha9J_0,1691
|
|
312
328
|
maxframe/core/operator/tests/__init__.py,sha256=FEFOVLi3o2GpZoedTtLYvbie0eQBehJIjtCrWca2ZHw,596
|
|
313
|
-
maxframe/config/config.py,sha256=
|
|
329
|
+
maxframe/config/config.py,sha256=xFJWljdDYZpTGixRn58NWKXKzaXvm-OPF2QONYPHns0,15510
|
|
314
330
|
maxframe/config/validators.py,sha256=UjbxMKZcDG98-9uCQESm_V56d-VUD7kQGV0KJghVbj8,2511
|
|
315
331
|
maxframe/config/__init__.py,sha256=g5lN3nP2HTAXa6ExGxU1NwU1M9ulYPmAcsV-gU7nIW8,656
|
|
316
332
|
maxframe/config/tests/__init__.py,sha256=FEFOVLi3o2GpZoedTtLYvbie0eQBehJIjtCrWca2ZHw,596
|
|
@@ -318,44 +334,44 @@ maxframe/config/tests/test_validators.py,sha256=U_7yKSl0FdVdDwKU1EsnCzNWaOXi8xrI
|
|
|
318
334
|
maxframe/config/tests/test_config.py,sha256=Cx3buKli4F77zwJaB-vnUSlE9LUbt3ObHW38cIE2dDs,2736
|
|
319
335
|
maxframe/serialization/exception.py,sha256=2Ubi2ld5XpduqAln26q0T67XLj-OpdwW1Z-nyC_wtCI,2993
|
|
320
336
|
maxframe/serialization/core.pxd,sha256=eBrSXiAPlX83Kbwml5IKJvqsIT03lPCeS6is9HplLiU,1501
|
|
321
|
-
maxframe/serialization/pandas.py,sha256=
|
|
337
|
+
maxframe/serialization/pandas.py,sha256=56qngiE78mwHw7srbDE_rnN1XxgX34B7wdAhDJQRfaE,8488
|
|
322
338
|
maxframe/serialization/core.pyi,sha256=a3CQxlJv5aYyy__VNKEq5XsaHE-n0MPKE_9CcWu8Q34,2142
|
|
323
339
|
maxframe/serialization/arrow.py,sha256=VnGxNLU9UV_cUPTze43bEFCIbYLAOZnp2pAwVJbAIzQ,3418
|
|
324
340
|
maxframe/serialization/__init__.py,sha256=LrwesIKJ6MR_mhxW7qRXJXohH9waubZMR9-YicGDMUs,936
|
|
325
341
|
maxframe/serialization/maxframe_objects.py,sha256=R9WEjbHL0Kr56OGkYDU9fcGi7gII6fGlXhi6IyihTsM,1365
|
|
326
342
|
maxframe/serialization/numpy.py,sha256=8_GSo45l_eNoMn4NAGEb9NLXY_9i4tf9KK4EzG0mKpA,3213
|
|
327
343
|
maxframe/serialization/scipy.py,sha256=hP0fAW0di9UgJrGtANB2S8hLDbFBtR8p5NDqAMt5rDI,2427
|
|
328
|
-
maxframe/serialization/core.pyx,sha256=
|
|
329
|
-
maxframe/serialization/core.cpython-310-darwin.so,sha256=
|
|
330
|
-
maxframe/serialization/tests/test_serial.py,sha256=
|
|
344
|
+
maxframe/serialization/core.pyx,sha256=mqfb7YUd-Vop8wmGJTjziDP59YX2tr1iN6puRmFI7dg,35551
|
|
345
|
+
maxframe/serialization/core.cpython-310-darwin.so,sha256=Axgnp8_0XMOFKUY3EAw72mRc3gJNMnf4IlFJiJuipMk,1178256
|
|
346
|
+
maxframe/serialization/tests/test_serial.py,sha256=fL1ufMU7Lf1fgQ4fwJ0QrKWGQIsw_zHtAQ9zkRfFrOI,12543
|
|
331
347
|
maxframe/serialization/tests/__init__.py,sha256=FEFOVLi3o2GpZoedTtLYvbie0eQBehJIjtCrWca2ZHw,596
|
|
332
348
|
maxframe/serialization/serializables/field.py,sha256=atVgX-9rsVG1fTev7vjQArVwIEaCRjXoSEjpQ3mh6bA,16015
|
|
333
349
|
maxframe/serialization/serializables/__init__.py,sha256=_wyFZF5QzSP32wSXlXHEPl98DN658I66WamP8XPJy0c,1351
|
|
334
|
-
maxframe/serialization/serializables/core.py,sha256=
|
|
335
|
-
maxframe/serialization/serializables/field_type.py,sha256=
|
|
350
|
+
maxframe/serialization/serializables/core.py,sha256=gP83bHStfjJf9zuBVBCl40k6wAGAyQ4rLuFdUiLvbxA,16156
|
|
351
|
+
maxframe/serialization/serializables/field_type.py,sha256=tgaLzbJ9RmzPOkL_iOfl9E8njZ5J7MtRkGLDnY0lRz8,14933
|
|
336
352
|
maxframe/serialization/serializables/tests/test_field_type.py,sha256=T3ebXbUkKveC9Pq1nIl85e4eYascFeJ52d0REHbz5jo,4381
|
|
337
353
|
maxframe/serialization/serializables/tests/__init__.py,sha256=FEFOVLi3o2GpZoedTtLYvbie0eQBehJIjtCrWca2ZHw,596
|
|
338
|
-
maxframe/serialization/serializables/tests/test_serializable.py,sha256=
|
|
354
|
+
maxframe/serialization/serializables/tests/test_serializable.py,sha256=Yu_38DYeGlm7AH8BnkJzddFtmBfTt7OV8DcFMEfFrI8,10148
|
|
339
355
|
maxframe/io/__init__.py,sha256=FEFOVLi3o2GpZoedTtLYvbie0eQBehJIjtCrWca2ZHw,596
|
|
340
|
-
maxframe/io/odpsio/tableio.py,sha256=
|
|
341
|
-
maxframe/io/odpsio/arrow.py,sha256=
|
|
356
|
+
maxframe/io/odpsio/tableio.py,sha256=zgk7v_Dcq66u0mtBnF7J9ZoeGurEajsXaxgkRF4u9-o,21055
|
|
357
|
+
maxframe/io/odpsio/arrow.py,sha256=L7b6opJok-tM2t9KQS3iQX-WRnbCJZUNnSUQkHR7KkQ,5108
|
|
342
358
|
maxframe/io/odpsio/__init__.py,sha256=VD_mvxljDKDfJHYuN3OpjJWzHqFT5DKykIvECahGu0w,902
|
|
343
|
-
maxframe/io/odpsio/volumeio.py,sha256=
|
|
344
|
-
maxframe/io/odpsio/schema.py,sha256=
|
|
345
|
-
maxframe/io/odpsio/tests/test_tableio.py,sha256=
|
|
359
|
+
maxframe/io/odpsio/volumeio.py,sha256=y3JwUgBryoBFrkPppT7hCf6VGyJDADM0MUlBXmcia5w,2948
|
|
360
|
+
maxframe/io/odpsio/schema.py,sha256=U6kHDkRnp3uluMN36ojPQ1SzfiErfdcphJvxUYejQZQ,12980
|
|
361
|
+
maxframe/io/odpsio/tests/test_tableio.py,sha256=2yuQnzmgDZpDlhSrLjOcOWnnnRZrTfYcCMhvCQOoa7Q,5746
|
|
346
362
|
maxframe/io/odpsio/tests/__init__.py,sha256=FEFOVLi3o2GpZoedTtLYvbie0eQBehJIjtCrWca2ZHw,596
|
|
347
|
-
maxframe/io/odpsio/tests/test_schema.py,sha256=
|
|
363
|
+
maxframe/io/odpsio/tests/test_schema.py,sha256=7aQE7DytWatDxZxWKDU7TMGrDmSWbVW6k06rJvxxksU,13288
|
|
348
364
|
maxframe/io/odpsio/tests/test_arrow.py,sha256=SQ9EmI9_VOOC8u6Rg6nh3IPC2fPbLvJ9HwtpMNDRhL8,3106
|
|
349
|
-
maxframe/io/odpsio/tests/test_volumeio.py,sha256=
|
|
365
|
+
maxframe/io/odpsio/tests/test_volumeio.py,sha256=1nsYzEbRAwHJitaOPmCEd5k5vmTPEM_UMRY32VTEH-Y,3572
|
|
350
366
|
maxframe/io/objects/__init__.py,sha256=PtpSp5t1rGJ1DD0IjQs6oSHkOxT2JDMLfCaDz8VUCZ8,754
|
|
351
367
|
maxframe/io/objects/core.py,sha256=r9X1Cu9FNUdarMFiTPWX_MPcE8AW5e_d_AsFWjdZDP8,4577
|
|
352
368
|
maxframe/io/objects/tensor.py,sha256=F0aObDLIi_2ND5x-uVogi2A29kIuyhKtZLyZqxI13iM,2673
|
|
353
|
-
maxframe/io/objects/tests/test_object_io.py,sha256=
|
|
369
|
+
maxframe/io/objects/tests/test_object_io.py,sha256=LXPwKX7XYDKPy6AZeLdnfGuW-wfNb5rJunY4MPU8aiY,3775
|
|
354
370
|
maxframe/io/objects/tests/__init__.py,sha256=FEFOVLi3o2GpZoedTtLYvbie0eQBehJIjtCrWca2ZHw,596
|
|
355
371
|
maxframe/tests/test_utils.py,sha256=imfe7sN1_4EjWuT4qMYMwjOjgL0t5oewyhebBGPDBhY,11504
|
|
356
372
|
maxframe/tests/test_protocol.py,sha256=9DWr3z1AI2DUMnLyak91PKSfV_ILkOtwAZPCmM42kcg,6103
|
|
357
373
|
maxframe/tests/__init__.py,sha256=FEFOVLi3o2GpZoedTtLYvbie0eQBehJIjtCrWca2ZHw,596
|
|
358
|
-
maxframe/tests/utils.py,sha256=
|
|
374
|
+
maxframe/tests/utils.py,sha256=KQu_NR6EQ0dCDlJuaeMFTIzmZjovNS2KrBVED5UVVZo,5343
|
|
359
375
|
maxframe/tests/test_codegen.py,sha256=GMrnpSb2eyB_nmuv8-_p47Kw877ElKS3BP52SpqZNIQ,2208
|
|
360
376
|
maxframe/lib/wrapped_pickle.py,sha256=HJCb8ERK6clUVgPe529vduMmbMVqBlrQ3W8mH3tYcaE,3836
|
|
361
377
|
maxframe/lib/version.py,sha256=yQ6HkDOvU9X1rpI49auh-qku2g7gIiztgEH6v1urOrk,18321
|
|
@@ -363,7 +379,7 @@ maxframe/lib/compression.py,sha256=k9DSrl_dNBsn5azLjBdL5B4WZ6eNvmCrdMbcF1G7JSc,1
|
|
|
363
379
|
maxframe/lib/__init__.py,sha256=CzfbLNqqm1yR1i6fDwCd4h1ptuKVDbURFVCb0ra7QNc,642
|
|
364
380
|
maxframe/lib/mmh3.pyi,sha256=AOp_XqbA5-NwepeeBeG0OFJj5tjEAFLzcViyRNZ0eVI,1494
|
|
365
381
|
maxframe/lib/functools_compat.py,sha256=PMSkct9GIbzq-aBwTnggrOLNfLh4xQnYTIFMPblzCUA,2616
|
|
366
|
-
maxframe/lib/mmh3.cpython-310-darwin.so,sha256=
|
|
382
|
+
maxframe/lib/mmh3.cpython-310-darwin.so,sha256=EnoB8hDowzemJb2HgzADmqs9p9H52su6B7Yuq1Xef98,119784
|
|
367
383
|
maxframe/lib/mmh3_src/mmh3module.cpp,sha256=9J9eA42eKWTl546fvfQPNuIM3B2jpWSADpgIw3tr2jg,11604
|
|
368
384
|
maxframe/lib/mmh3_src/MurmurHash3.h,sha256=lg5uXUFyMBge2BWRn0FgrqaCFCMfDWoTXD4PQtjHrMA,1263
|
|
369
385
|
maxframe/lib/mmh3_src/MurmurHash3.cpp,sha256=kgrteG44VSftwp5hhD7pyTENDRU9wI_DqLD1493-bP0,8096
|
|
@@ -402,7 +418,7 @@ maxframe/lib/sparse/vector.py,sha256=oejy4n1j_x4posNkB6EVlC-9WoAeOWvvm2CrKCxCk2w
|
|
|
402
418
|
maxframe/lib/sparse/__init__.py,sha256=XIEKI59-nnD9Gxu5Rr6LiSzhy42EfKfSGNkOd9CBQ1o,18058
|
|
403
419
|
maxframe/lib/sparse/core.py,sha256=ihlxpVlXoJCnOnEmf74bUwuEaQA4LLOi1EU1wK1mdGA,2156
|
|
404
420
|
maxframe/lib/sparse/array.py,sha256=3bFocbqgE46D9NWpOU-lFp8tDgOegIu78mojVpjx2Mw,52861
|
|
405
|
-
maxframe/lib/sparse/tests/test_sparse.py,sha256
|
|
421
|
+
maxframe/lib/sparse/tests/test_sparse.py,sha256=OU_Aq2n28rqTDbMRPLcq7Rf1sLgjRJDJ3bCYLszmeOs,15309
|
|
406
422
|
maxframe/lib/sparse/tests/__init__.py,sha256=CzfbLNqqm1yR1i6fDwCd4h1ptuKVDbURFVCb0ra7QNc,642
|
|
407
423
|
maxframe/lib/tblib/pickling_support.py,sha256=w72oyWoA7LLtFYwU2wgw2J-ckM7BrFXn6W0MzTpss84,2935
|
|
408
424
|
maxframe/lib/tblib/LICENSE,sha256=GFqWP6gjbSgxqNcmj0rE1Cj9-7bOaEEqbOHlMPYXwtQ,1330
|
|
@@ -410,7 +426,7 @@ maxframe/lib/tblib/__init__.py,sha256=c4aVldbxJdS-bFsSDcmDQy_mW0qAcMrb4pHS2tjYhY
|
|
|
410
426
|
maxframe/lib/tblib/cpython.py,sha256=FQ0f6WTQyQHoMRhgPqrA0y0Ygxlbj5IC53guxA4h9Cw,2418
|
|
411
427
|
maxframe/lib/tblib/decorators.py,sha256=bcllK3kVuPnj6SNZGmlJGxTK0ovdt7TJDXrhA4UE5sQ,1063
|
|
412
428
|
maxframe/tensor/array_utils.py,sha256=259vG4SjyhiheARCZeEnfJdZjoojyrELn41oRcyAELs,4943
|
|
413
|
-
maxframe/tensor/__init__.py,sha256=
|
|
429
|
+
maxframe/tensor/__init__.py,sha256=_vc53_zRm_vauMkZiFVEPRSwcMkU2TpGpEn_4vB3RJo,4648
|
|
414
430
|
maxframe/tensor/core.py,sha256=ouSU9TbFFShyvdJkyh9h6AUio97SXphs4-lz_w-7_fk,17945
|
|
415
431
|
maxframe/tensor/utils.py,sha256=wCx2ZBk_zmS2lJgtuUUGdqRSkhhnLAyeB0DTlIGZUyg,22411
|
|
416
432
|
maxframe/tensor/operators.py,sha256=XiYTFYLuKDMjEy-DZs5HKmcwvNgfJX3sGzIttAqNG8c,3338
|
|
@@ -425,7 +441,7 @@ maxframe/tensor/misc/astype.py,sha256=zeLfyWkuc1LxMIiIO6ghZ_enR7IPgq0Hy4O18h8JQP
|
|
|
425
441
|
maxframe/tensor/misc/where.py,sha256=fMGBfppo4QToHX-B3rtTorstz83m8uWWhOQj6Qbu34U,4000
|
|
426
442
|
maxframe/tensor/misc/unique.py,sha256=EO7EYn0mHr9aZ7hVZxwiKNSPwbXvrpDWRWP5PksfgxY,6721
|
|
427
443
|
maxframe/tensor/misc/__init__.py,sha256=I4dwtIkgdnOkFLGp9chMZwDCteiKAAikygYz_b4RY2c,1149
|
|
428
|
-
maxframe/tensor/misc/transpose.py,sha256=
|
|
444
|
+
maxframe/tensor/misc/transpose.py,sha256=a67BbXWt4rc0yh6yzljLQkdX0EyLxTcdWuB2n99Fnpc,4020
|
|
429
445
|
maxframe/tensor/misc/atleast_3d.py,sha256=ONXluuYTLyaPwii8PF6IG_o5f6QRQRue6uxsPeou9mk,2392
|
|
430
446
|
maxframe/tensor/misc/ravel.py,sha256=pJkez1NHoLqVMBPm5aA8uMNFeWURTAJV_iU98Vqr-50,3173
|
|
431
447
|
maxframe/tensor/misc/atleast_2d.py,sha256=wunxdRTd_2ZfAZiMt7QhOEII_f_Z8lwSgy0ncMT85eI,1958
|
|
@@ -449,8 +465,8 @@ maxframe/tensor/datasource/tests/test_datasource.py,sha256=6NWN9OgA-MioLjqhzTNIe
|
|
|
449
465
|
maxframe/tensor/datasource/tests/__init__.py,sha256=FEFOVLi3o2GpZoedTtLYvbie0eQBehJIjtCrWca2ZHw,596
|
|
450
466
|
maxframe/tensor/rechunk/__init__.py,sha256=pQ4vh6rNzxjIkxrWTxXjAcTDmUw3961-H1f__-lJl6A,797
|
|
451
467
|
maxframe/tensor/rechunk/rechunk.py,sha256=ltvGlUQxzoHSE7bC6J6uQ8sO-YhuFpxmj8-ArJJXIoY,1392
|
|
452
|
-
maxframe/tensor/merge/concatenate.py,sha256=
|
|
453
|
-
maxframe/tensor/merge/vstack.py,sha256=
|
|
468
|
+
maxframe/tensor/merge/concatenate.py,sha256=q0qVpizcU7E6op6D54bF4bl2eMLIJOOwb8AkG1jrDCE,3213
|
|
469
|
+
maxframe/tensor/merge/vstack.py,sha256=FzuynVGKkNiOXbzp4Jkde0VMxzs_FfxkxO7J0UU9nhs,2264
|
|
454
470
|
maxframe/tensor/merge/__init__.py,sha256=NCuoHVwBtVUQnl8-0ph9cT5ARRn3pTdqZt76-XSvpvs,686
|
|
455
471
|
maxframe/tensor/merge/stack.py,sha256=4ZMVqtJQ0nQtbtnJKTX0Z_fSUn8slLLSO56mFT-b0gE,4145
|
|
456
472
|
maxframe/tensor/merge/tests/__init__.py,sha256=FEFOVLi3o2GpZoedTtLYvbie0eQBehJIjtCrWca2ZHw,596
|
|
@@ -596,7 +612,7 @@ maxframe/tensor/indexing/nonzero.py,sha256=JN5TyPzS1LIIjIaieXsDkffCjuq-CPBUDG3qM
|
|
|
596
612
|
maxframe/tensor/indexing/slice.py,sha256=VbalHoaXUGulPjskcQ4PoiZQhB2q3P1R8MrGKY2MqGw,1022
|
|
597
613
|
maxframe/tensor/indexing/setitem.py,sha256=ieJ1IiwT5GFNvBBEEivt_jD6bQiMSK_ZbvEAtSaUTJQ,4352
|
|
598
614
|
maxframe/tensor/indexing/__init__.py,sha256=v2uUjRm0rSDyxG9IVayCDo0gKY9OQnk1Z-4PX8XQuqs,1611
|
|
599
|
-
maxframe/tensor/indexing/getitem.py,sha256=
|
|
615
|
+
maxframe/tensor/indexing/getitem.py,sha256=EWlP6xmVxfGn-mPDDHANEO7NiHhrnBrjXeuTg8gcfRU,5623
|
|
600
616
|
maxframe/tensor/indexing/core.py,sha256=8iNHn9nObBoXyB6uhI3NHEFHMcmOn1WSPp5cC4utv2w,7022
|
|
601
617
|
maxframe/tensor/indexing/unravel_index.py,sha256=jQ3KnJ8UFg5K8uLsTzIUABQXPiTiG2Kkp5VO2yVy1H4,3223
|
|
602
618
|
maxframe/tensor/indexing/flatnonzero.py,sha256=T32TDhjmaMCw90RdUZA33QsIlXrL3BrclEBcRBKw4KQ,1706
|
|
@@ -63,9 +63,12 @@ class FrameDriverClient:
|
|
|
63
63
|
session_id: str,
|
|
64
64
|
dag: TileableGraph,
|
|
65
65
|
managed_input_infos: Dict[str, ResultInfo] = None,
|
|
66
|
+
new_settings: Dict[str, Any] = None,
|
|
66
67
|
) -> DagInfo:
|
|
67
68
|
req_url = f"{self._endpoint}/api/sessions/{session_id}/dags"
|
|
68
|
-
req_body = ExecuteDagRequest(
|
|
69
|
+
req_body = ExecuteDagRequest(
|
|
70
|
+
session_id, dag, managed_input_infos, new_settings=new_settings
|
|
71
|
+
)
|
|
69
72
|
resp = await httpclient.AsyncHTTPClient().fetch(
|
|
70
73
|
req_url,
|
|
71
74
|
method="POST",
|
maxframe_client/fetcher.py
CHANGED
|
@@ -30,6 +30,7 @@ from maxframe.io.odpsio import (
|
|
|
30
30
|
ODPSVolumeReader,
|
|
31
31
|
arrow_to_pandas,
|
|
32
32
|
build_dataframe_table_meta,
|
|
33
|
+
odps_schema_to_pandas_dtypes,
|
|
33
34
|
)
|
|
34
35
|
from maxframe.protocol import (
|
|
35
36
|
DataFrameTableMeta,
|
|
@@ -40,7 +41,7 @@ from maxframe.protocol import (
|
|
|
40
41
|
)
|
|
41
42
|
from maxframe.tensor.core import TENSOR_TYPE
|
|
42
43
|
from maxframe.typing_ import PandasObjectTypes, TileableType
|
|
43
|
-
from maxframe.utils import ToThreadMixin
|
|
44
|
+
from maxframe.utils import ToThreadMixin, sync_pyodps_options
|
|
44
45
|
|
|
45
46
|
_result_fetchers: Dict[ResultType, Type["ResultFetcher"]] = dict()
|
|
46
47
|
|
|
@@ -116,17 +117,31 @@ class ODPSTableFetcher(ToThreadMixin, ResultFetcher):
|
|
|
116
117
|
and tileable.dtypes is None
|
|
117
118
|
and info.table_meta is not None
|
|
118
119
|
):
|
|
119
|
-
|
|
120
|
+
if info.table_meta.pd_column_dtypes is not None:
|
|
121
|
+
tileable.refresh_from_table_meta(info.table_meta)
|
|
122
|
+
else:
|
|
123
|
+
# need to get meta directly from table
|
|
124
|
+
table = self._odps_entry.get_table(info.full_table_name)
|
|
125
|
+
pd_dtypes = odps_schema_to_pandas_dtypes(table.table_schema).drop(
|
|
126
|
+
info.table_meta.table_index_column_names
|
|
127
|
+
)
|
|
128
|
+
tileable.refresh_from_dtypes(pd_dtypes)
|
|
120
129
|
|
|
121
130
|
if tileable.shape and any(pd.isna(x) for x in tileable.shape):
|
|
122
131
|
part_specs = [None] if not info.partition_specs else info.partition_specs
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
132
|
+
|
|
133
|
+
with sync_pyodps_options():
|
|
134
|
+
table = self._odps_entry.get_table(info.full_table_name)
|
|
135
|
+
if isinstance(tileable, DATAFRAME_TYPE) and tileable.dtypes is None:
|
|
136
|
+
dtypes = odps_schema_to_pandas_dtypes(table.table_schema)
|
|
137
|
+
tileable.refresh_from_dtypes(dtypes)
|
|
138
|
+
|
|
139
|
+
tunnel = TableTunnel(self._odps_entry)
|
|
140
|
+
total_records = 0
|
|
141
|
+
for part_spec in part_specs:
|
|
142
|
+
session = tunnel.create_download_session(table, part_spec)
|
|
143
|
+
total_records += session.count
|
|
144
|
+
|
|
130
145
|
new_shape_list = list(tileable.shape)
|
|
131
146
|
new_shape_list[0] = total_records
|
|
132
147
|
tileable.params = {"shape": tuple(new_shape_list)}
|
|
@@ -234,7 +249,10 @@ class ODPSVolumeFetcher(ToThreadMixin, ResultFetcher):
|
|
|
234
249
|
) -> Any:
|
|
235
250
|
def volume_fetch_func():
|
|
236
251
|
reader = ODPSVolumeReader(
|
|
237
|
-
self._odps_entry,
|
|
252
|
+
self._odps_entry,
|
|
253
|
+
info.volume_name,
|
|
254
|
+
info.volume_path,
|
|
255
|
+
replace_internal_host=True,
|
|
238
256
|
)
|
|
239
257
|
io_handler = get_object_io_handler(tileable)()
|
|
240
258
|
return io_handler.read_object(reader, tileable, indexes)
|
|
@@ -12,6 +12,9 @@
|
|
|
12
12
|
# See the License for the specific language governing permissions and
|
|
13
13
|
# limitations under the License.
|
|
14
14
|
|
|
15
|
+
# retry consts
|
|
16
|
+
EMPTY_RESPONSE_RETRY_COUNT = 5
|
|
17
|
+
|
|
15
18
|
# Restful Service
|
|
16
19
|
RESTFUL_SESSION_INSECURE_SCHEME = "mf"
|
|
17
20
|
RESTFUL_SESSION_SECURE_SCHEME = "mfs"
|