maxframe 1.0.0rc2__cp310-cp310-macosx_10_9_universal2.whl → 1.0.0rc4__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 +4 -2
- maxframe/config/config.py +28 -9
- maxframe/config/validators.py +42 -12
- maxframe/conftest.py +56 -14
- maxframe/core/__init__.py +2 -13
- maxframe/core/entity/__init__.py +0 -4
- maxframe/core/entity/executable.py +1 -1
- maxframe/core/entity/objects.py +45 -2
- maxframe/core/entity/output_types.py +0 -3
- maxframe/core/entity/tests/test_objects.py +43 -0
- maxframe/core/entity/tileables.py +5 -78
- maxframe/core/graph/__init__.py +2 -2
- maxframe/core/graph/builder/__init__.py +0 -1
- maxframe/core/graph/builder/base.py +5 -4
- maxframe/core/graph/builder/tileable.py +4 -4
- maxframe/core/graph/builder/utils.py +4 -8
- maxframe/core/graph/core.cpython-310-darwin.so +0 -0
- maxframe/core/graph/entity.py +9 -33
- maxframe/core/operator/__init__.py +2 -9
- maxframe/core/operator/base.py +3 -5
- maxframe/core/operator/objects.py +0 -9
- maxframe/core/operator/utils.py +55 -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/core.py +2 -0
- maxframe/dataframe/datasource/read_odps_query.py +67 -8
- maxframe/dataframe/datasource/read_odps_table.py +4 -2
- maxframe/dataframe/datasource/tests/test_datasource.py +35 -6
- maxframe/dataframe/datastore/to_odps.py +8 -1
- maxframe/dataframe/extensions/__init__.py +3 -0
- maxframe/dataframe/extensions/flatmap.py +326 -0
- maxframe/dataframe/extensions/tests/test_extensions.py +62 -1
- maxframe/dataframe/indexing/add_prefix_suffix.py +1 -1
- maxframe/dataframe/indexing/rename.py +11 -0
- maxframe/dataframe/initializer.py +11 -1
- maxframe/dataframe/misc/drop_duplicates.py +18 -1
- maxframe/dataframe/operators.py +1 -17
- maxframe/dataframe/reduction/core.py +2 -2
- maxframe/dataframe/tests/test_initializer.py +33 -2
- maxframe/io/objects/__init__.py +24 -0
- maxframe/io/objects/core.py +140 -0
- maxframe/io/objects/tensor.py +76 -0
- maxframe/io/objects/tests/__init__.py +13 -0
- maxframe/io/objects/tests/test_object_io.py +97 -0
- maxframe/{odpsio → io/odpsio}/__init__.py +2 -0
- maxframe/{odpsio → io/odpsio}/arrow.py +4 -4
- maxframe/{odpsio → io/odpsio}/schema.py +10 -8
- maxframe/{odpsio → io/odpsio}/tableio.py +50 -38
- maxframe/io/odpsio/tests/__init__.py +13 -0
- maxframe/{odpsio → io/odpsio}/tests/test_schema.py +3 -7
- maxframe/{odpsio → io/odpsio}/tests/test_tableio.py +3 -3
- maxframe/{odpsio → io/odpsio}/tests/test_volumeio.py +4 -6
- maxframe/io/odpsio/volumeio.py +63 -0
- maxframe/learn/contrib/__init__.py +2 -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/xgboost/classifier.py +26 -2
- maxframe/learn/contrib/xgboost/core.py +87 -2
- maxframe/learn/contrib/xgboost/dmatrix.py +1 -4
- maxframe/learn/contrib/xgboost/predict.py +27 -44
- maxframe/learn/contrib/xgboost/regressor.py +3 -10
- maxframe/learn/contrib/xgboost/train.py +27 -16
- maxframe/{core/operator/fuse.py → learn/core.py} +7 -10
- maxframe/lib/mmh3.cpython-310-darwin.so +0 -0
- maxframe/opcodes.py +3 -0
- maxframe/protocol.py +7 -16
- maxframe/remote/core.py +4 -8
- maxframe/serialization/__init__.py +1 -0
- maxframe/serialization/core.cpython-310-darwin.so +0 -0
- maxframe/session.py +9 -2
- maxframe/tensor/__init__.py +10 -2
- maxframe/tensor/arithmetic/isclose.py +1 -0
- maxframe/tensor/arithmetic/tests/test_arithmetic.py +21 -17
- maxframe/tensor/core.py +5 -136
- maxframe/tensor/datasource/array.py +3 -0
- maxframe/tensor/datasource/full.py +1 -1
- maxframe/tensor/datasource/tests/test_datasource.py +1 -1
- maxframe/tensor/indexing/flatnonzero.py +1 -1
- maxframe/tensor/indexing/getitem.py +2 -0
- maxframe/tensor/merge/__init__.py +2 -0
- maxframe/tensor/merge/concatenate.py +101 -0
- maxframe/tensor/merge/tests/test_merge.py +30 -1
- maxframe/tensor/merge/vstack.py +74 -0
- maxframe/tensor/{base → misc}/__init__.py +2 -0
- maxframe/tensor/{base → misc}/atleast_1d.py +0 -2
- maxframe/tensor/misc/atleast_2d.py +70 -0
- maxframe/tensor/misc/atleast_3d.py +85 -0
- maxframe/tensor/misc/tests/__init__.py +13 -0
- maxframe/tensor/{base → misc}/transpose.py +22 -18
- maxframe/tensor/operators.py +1 -7
- maxframe/tensor/random/core.py +1 -1
- maxframe/tensor/reduction/count_nonzero.py +1 -0
- maxframe/tensor/reduction/mean.py +1 -0
- maxframe/tensor/reduction/nanmean.py +1 -0
- maxframe/tensor/reduction/nanvar.py +2 -0
- maxframe/tensor/reduction/tests/test_reduction.py +12 -1
- maxframe/tensor/reduction/var.py +2 -0
- maxframe/tensor/utils.py +2 -22
- maxframe/typing_.py +4 -1
- maxframe/udf.py +8 -9
- maxframe/utils.py +49 -73
- maxframe-1.0.0rc4.dist-info/METADATA +104 -0
- {maxframe-1.0.0rc2.dist-info → maxframe-1.0.0rc4.dist-info}/RECORD +129 -114
- {maxframe-1.0.0rc2.dist-info → maxframe-1.0.0rc4.dist-info}/WHEEL +1 -1
- maxframe_client/fetcher.py +33 -50
- maxframe_client/session/consts.py +3 -0
- maxframe_client/session/graph.py +8 -2
- maxframe_client/session/odps.py +134 -27
- maxframe_client/session/task.py +58 -20
- maxframe_client/tests/test_fetcher.py +1 -1
- maxframe_client/tests/test_session.py +27 -3
- maxframe/core/entity/chunks.py +0 -68
- maxframe/core/entity/fuse.py +0 -73
- maxframe/core/graph/builder/chunk.py +0 -430
- maxframe/odpsio/volumeio.py +0 -95
- maxframe-1.0.0rc2.dist-info/METADATA +0 -177
- /maxframe/{odpsio → core/entity}/tests/__init__.py +0 -0
- /maxframe/{tensor/base/tests → io}/__init__.py +0 -0
- /maxframe/{odpsio → io/odpsio}/tests/test_arrow.py +0 -0
- /maxframe/tensor/{base → misc}/astype.py +0 -0
- /maxframe/tensor/{base → misc}/broadcast_to.py +0 -0
- /maxframe/tensor/{base → misc}/ravel.py +0 -0
- /maxframe/tensor/{base/tests/test_base.py → misc/tests/test_misc.py} +0 -0
- /maxframe/tensor/{base → misc}/unique.py +0 -0
- /maxframe/tensor/{base → misc}/where.py +0 -0
- {maxframe-1.0.0rc2.dist-info → maxframe-1.0.0rc4.dist-info}/top_level.txt +0 -0
|
@@ -1,44 +1,44 @@
|
|
|
1
|
-
maxframe-1.0.
|
|
2
|
-
maxframe-1.0.
|
|
3
|
-
maxframe-1.0.
|
|
4
|
-
maxframe-1.0.
|
|
1
|
+
maxframe-1.0.0rc4.dist-info/RECORD,,
|
|
2
|
+
maxframe-1.0.0rc4.dist-info/WHEEL,sha256=RNtgRL1ujC2TymWV9oL0Oq6EKBLR3oYp0uxLEG7w8S4,115
|
|
3
|
+
maxframe-1.0.0rc4.dist-info/top_level.txt,sha256=64x-fc2q59c_vXwNUkehyjF1vb8JWqFSdYmUqIFqoTM,31
|
|
4
|
+
maxframe-1.0.0rc4.dist-info/METADATA,sha256=m1n812IGGIlXWLemXVCoSOeKwvuDF8UnL_VNXT5mzzE,3027
|
|
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=zIFUiQ_iJQfGNjwpfA_GluNFkLn5KaVjO2L-E2dIcyY,8442
|
|
8
8
|
maxframe_client/clients/__init__.py,sha256=FEFOVLi3o2GpZoedTtLYvbie0eQBehJIjtCrWca2ZHw,596
|
|
9
9
|
maxframe_client/clients/framedriver.py,sha256=Rn09529D2qBTgNGc0oCY0l7b3FgzT87TqS1nujGQaHw,4463
|
|
10
|
-
maxframe_client/tests/test_session.py,sha256=
|
|
10
|
+
maxframe_client/tests/test_session.py,sha256=GioXBNjd5-xhj1uWOULq-mbIhlqHjDt-eonMAM06JTo,10537
|
|
11
11
|
maxframe_client/tests/__init__.py,sha256=FEFOVLi3o2GpZoedTtLYvbie0eQBehJIjtCrWca2ZHw,596
|
|
12
|
-
maxframe_client/tests/test_fetcher.py,sha256=
|
|
13
|
-
maxframe_client/session/task.py,sha256=
|
|
14
|
-
maxframe_client/session/graph.py,sha256=
|
|
12
|
+
maxframe_client/tests/test_fetcher.py,sha256=7mVDO456wcUMajguTJ4FWkSpuonLfinFfiz31ZYnHNs,4158
|
|
13
|
+
maxframe_client/session/task.py,sha256=XoxJ8fjAd7p9-FXDptIQoLSOjLiCNqOhhwW_H2vCKmI,12693
|
|
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=
|
|
16
|
+
maxframe_client/session/consts.py,sha256=kQv67i4wyhV2ZQXwJf_5k4PRXhN811LmYoo2C3NB7tk,1391
|
|
17
|
+
maxframe_client/session/odps.py,sha256=YvpLZWoLTdITGmwKeJ0u02eAzmT8f8Kf84bgi1LGWfg,23505
|
|
18
18
|
maxframe_client/session/tests/test_task.py,sha256=lDdw3gToaM3xSaRXEmHUoAo2h0id7t4v_VvpdKxQAao,3279
|
|
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=EFMnYhSi0L57fog9nAjOEtjRQuCGedFNIY6jK2MPbm0,5772
|
|
22
|
+
maxframe/opcodes.py,sha256=4t7OL55s0rt7qGxSkhsLjgs0ECb_hCzqxXRrYa3Vm0A,10236
|
|
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=HZg0IvtdN9qVHbnNnjzabgK84lNulUHQEkdvLYRv3sE,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=LwuzJ1diVF3u1ZYJemHGEWmbrHxoLGMAJteTDTQe1Pg,33873
|
|
30
30
|
maxframe/extension.py,sha256=F5XTYzW5hNw0AIQz3d6u6Yk7adDdiV4c-HD7bF0X1FI,2659
|
|
31
31
|
maxframe/errors.py,sha256=vHcpVrKRHmoZPa6IwsdDT-jOZUTlhCp8c0e8F2C-5uU,966
|
|
32
|
-
maxframe/udf.py,sha256
|
|
33
|
-
maxframe/typing_.py,sha256=
|
|
34
|
-
maxframe/codegen.py,sha256=
|
|
32
|
+
maxframe/udf.py,sha256=Fol4VzIb2hzyyA9s5xrvh4xTO4jq_I2YGnnN4f6wOhk,4338
|
|
33
|
+
maxframe/typing_.py,sha256=iYzgThxTu38yLRtyH5xFhMrurfFj7awMGytfObhvvcs,1180
|
|
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=
|
|
38
|
+
maxframe/dataframe/core.py,sha256=CN1oL_YhU1xF8WpAuKCsSDNN03gdR35aGcQ1KammS_0,74425
|
|
39
|
+
maxframe/dataframe/initializer.py,sha256=ppdPVRoXmg5ryZIfWbJ6nQ6okEOevOSJowvk1AJXFH4,10852
|
|
40
40
|
maxframe/dataframe/utils.py,sha256=aPQrT3-TBTL2O_9QS70KlG4oV9EiFTTswofd7n3IKEM,44213
|
|
41
|
-
maxframe/dataframe/operators.py,sha256=
|
|
41
|
+
maxframe/dataframe/operators.py,sha256=sXgnopzsCjr5qTL8wn9J-avzqSzGdds3MsyHgQCB4No,7577
|
|
42
42
|
maxframe/dataframe/statistics/corr.py,sha256=3dExebs9QC8GBaZZUSKXrN2eYt-hWMayJ2MHHzTn-8s,9483
|
|
43
43
|
maxframe/dataframe/statistics/quantile.py,sha256=ySXi2m8TrArfdidFc07VsOG-RdXJy-YIiOJRrlebfWU,11303
|
|
44
44
|
maxframe/dataframe/statistics/__init__.py,sha256=Ate3HERUCrjhRoGhpR9SNZA5JHlvuIVSrHgYPEcJd6Q,1084
|
|
@@ -69,7 +69,7 @@ maxframe/dataframe/misc/stack.py,sha256=ybopZCNzARqrtFYhvjs85j-g6mXL6X2XTdSTAudt
|
|
|
69
69
|
maxframe/dataframe/misc/transform.py,sha256=ZUeFD2ZByJxGHuyUlCCFVBT05WPewdWK6FDw6S7JuDw,10920
|
|
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=SRabiqBgyJHprWm3IOU2hT1ocx3C-bhGg-mKL6sHIs0,8375
|
|
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
|
|
@@ -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=vEYz85s1Fzhe3mBCYlMZo8uCb0_W9AuO4V4ngpbi87k,12335
|
|
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=GEtiNzYfjvFMw1LbYXA1rdQOCE2HZt6bDWA0hODmzfg,16041
|
|
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
|
|
@@ -110,7 +110,7 @@ maxframe/dataframe/tseries/to_datetime.py,sha256=ctRUuRPPyBIC0yLY0rOIIxEdK67e5o9
|
|
|
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
112
|
maxframe/dataframe/tests/__init__.py,sha256=FEFOVLi3o2GpZoedTtLYvbie0eQBehJIjtCrWca2ZHw,596
|
|
113
|
-
maxframe/dataframe/tests/test_initializer.py,sha256=
|
|
113
|
+
maxframe/dataframe/tests/test_initializer.py,sha256=9VFQ1MtCWkTE-QHI_3C7HHtXFxdWH6IbgYkOmjL1vPg,2000
|
|
114
114
|
maxframe/dataframe/ufunc/ufunc.py,sha256=P8mh9CwKnxoN624IaoZ010kwH1n4RiUUGMuU5IgHTOM,1651
|
|
115
115
|
maxframe/dataframe/ufunc/__init__.py,sha256=-_obmEV3B4Az5V0x-P-T8cfdeSoYHrLBOgj_-gqv1c4,889
|
|
116
116
|
maxframe/dataframe/ufunc/tensor.py,sha256=SeWQbDflxL5fipzPJdhVKFk9ntM4VXtGazb8lD2JwSM,1618
|
|
@@ -122,9 +122,10 @@ maxframe/dataframe/missing/replace.py,sha256=sYFzkyChrev8Vl0NocDGTCdWTdHjXvzBzHb
|
|
|
122
122
|
maxframe/dataframe/missing/tests/test_missing.py,sha256=L53Fm8w7r1uRghOhslWd0fKa7HJmn1Dk52ZTdG7FCi8,3134
|
|
123
123
|
maxframe/dataframe/missing/tests/__init__.py,sha256=FEFOVLi3o2GpZoedTtLYvbie0eQBehJIjtCrWca2ZHw,596
|
|
124
124
|
maxframe/dataframe/extensions/accessor.py,sha256=j7AYpmfPQwMS3ep52yY5ETtXyaO1cO4K9aPdELk2lR0,1447
|
|
125
|
-
maxframe/dataframe/extensions/__init__.py,sha256=
|
|
125
|
+
maxframe/dataframe/extensions/__init__.py,sha256=Mbp_WNVPctRzAUnbY9G_tnp5MJG6pUzjwoGv9J4pmck,1573
|
|
126
126
|
maxframe/dataframe/extensions/reshuffle.py,sha256=2GogwgsZPy9hbP5ecrkSPSm7KC6MD9M-HZk7FO9WAGg,2637
|
|
127
|
-
maxframe/dataframe/extensions/
|
|
127
|
+
maxframe/dataframe/extensions/flatmap.py,sha256=aqWE3TtL6CR5FWFyWmSp5JjSFJ3-FzxYTwpsjEs89x8,10538
|
|
128
|
+
maxframe/dataframe/extensions/tests/test_extensions.py,sha256=D759ZTZe-SCs65f1cJ9tRaiUhah61kKa8va1BR4-DD4,3011
|
|
128
129
|
maxframe/dataframe/extensions/tests/__init__.py,sha256=FEFOVLi3o2GpZoedTtLYvbie0eQBehJIjtCrWca2ZHw,596
|
|
129
130
|
maxframe/dataframe/groupby/aggregation.py,sha256=BuhqZal6RLHkjvwJep86oT1a7rMqxxUAPxQ_dao6I6E,11953
|
|
130
131
|
maxframe/dataframe/groupby/fill.py,sha256=JF3NxyXigZqg8ecKtLSndDmNMX8S6g_ChQR9JAK036E,4721
|
|
@@ -141,7 +142,7 @@ maxframe/dataframe/groupby/tests/test_groupby.py,sha256=ctkAniUwunVsgCG-b6b2qKSC
|
|
|
141
142
|
maxframe/dataframe/datastore/__init__.py,sha256=Ujd4ix4UJ7Zq-sV2pXTRDvZkKUvtt8sr-FfiUoi6Kh4,784
|
|
142
143
|
maxframe/dataframe/datastore/core.py,sha256=hLGhqYxX73tq9sOFxMyYBRMawTnsVQqluW5FcE3YHfE,743
|
|
143
144
|
maxframe/dataframe/datastore/to_csv.py,sha256=xVfpEsicD5A5uXLSdCN08K8uGyWB4QxnRcAbgBVUzbs,7747
|
|
144
|
-
maxframe/dataframe/datastore/to_odps.py,sha256=
|
|
145
|
+
maxframe/dataframe/datastore/to_odps.py,sha256=TP3dWCdb4lNGVnKuQ86lOpl5U4CYZlFhwkQ9f6096_M,6722
|
|
145
146
|
maxframe/dataframe/datastore/tests/__init__.py,sha256=FEFOVLi3o2GpZoedTtLYvbie0eQBehJIjtCrWca2ZHw,596
|
|
146
147
|
maxframe/dataframe/datastore/tests/test_to_odps.py,sha256=EaFprN1mErrqqy54Rzbw6PQxPbBCgxDP0E055RIIH0g,1296
|
|
147
148
|
maxframe/dataframe/fetch/__init__.py,sha256=E3VjxLRKjtr-D__K-c0aRETvBG7CQRG1iEtH0Qghq0s,653
|
|
@@ -156,7 +157,7 @@ maxframe/dataframe/reduction/unique.py,sha256=Dhghnf9mvgS8p-ETJUlhfJajBEyVZPBp1I
|
|
|
156
157
|
maxframe/dataframe/reduction/std.py,sha256=PYeh6-yton9vUI8D-dTlnXsWKCi-uDpop4UExmay7Ec,1355
|
|
157
158
|
maxframe/dataframe/reduction/str_concat.py,sha256=wbb4Y4ZDyou_ixR6ukJ8wQw74nzI05tToNWaWSirbSA,1657
|
|
158
159
|
maxframe/dataframe/reduction/__init__.py,sha256=ZadA_lXtrr1nQyb6vJrv_eb82bXiiiDHIn93F4O9-AU,4190
|
|
159
|
-
maxframe/dataframe/reduction/core.py,sha256=
|
|
160
|
+
maxframe/dataframe/reduction/core.py,sha256=xoEiVQQtl1eLtJ4AY6xqy3tCkyi6WZwSLbcv-f8-B14,30395
|
|
160
161
|
maxframe/dataframe/reduction/all.py,sha256=h3Y04RJ-mTxAggX1-BIpuiyhNofQEkBzsAxKOX--kv0,1966
|
|
161
162
|
maxframe/dataframe/reduction/cummin.py,sha256=CA9wjhx_ZFfk6b3KbbDykWZiyXsfwLBUODKn36WuGug,1013
|
|
162
163
|
maxframe/dataframe/reduction/min.py,sha256=8Kh07yoTRWaCWGKxZ4a64_tlIljR8GsjlbwdsjNmPTw,1660
|
|
@@ -192,11 +193,11 @@ maxframe/dataframe/arithmetic/arccos.py,sha256=WF3SE975VbwCOsrSPNck4swIejDFI-tVm
|
|
|
192
193
|
maxframe/dataframe/arithmetic/arctanh.py,sha256=7H32t46reUr0k_4pEj2Dx_dAkH59OIUinedqoOPd0Hg,935
|
|
193
194
|
maxframe/dataframe/arithmetic/trunc.py,sha256=WZSfPRti63DtH_JzsnqPlknwfvIdQogZGmC9uu17n64,925
|
|
194
195
|
maxframe/dataframe/arithmetic/tanh.py,sha256=EG2Fbb7lZPgdNKvIZQCkn0DWCp88pp6g7hyDFTQQZUY,920
|
|
195
|
-
maxframe/dataframe/arithmetic/equal.py,sha256=
|
|
196
|
+
maxframe/dataframe/arithmetic/equal.py,sha256=XUEHuLa3VdPs1ODWeIJjIOPq6l3lnMcQMfAyoMlokIg,1517
|
|
196
197
|
maxframe/dataframe/arithmetic/add.py,sha256=VMxJbbZf5Unl-0XH3QIAKtzcyJqKF103s8Rx_0kQQI0,1706
|
|
197
198
|
maxframe/dataframe/arithmetic/subtract.py,sha256=jus58lUI8MT3iYSoO5V2Z6veelPEYp8R3n8Kz_FOpFg,1780
|
|
198
199
|
maxframe/dataframe/arithmetic/sqrt.py,sha256=1-fOixLXtprGMyTEwMbMp7J2ZKONgMhjwcu2uXmPmL8,920
|
|
199
|
-
maxframe/dataframe/arithmetic/less_equal.py,sha256=
|
|
200
|
+
maxframe/dataframe/arithmetic/less_equal.py,sha256=Aw1sXCVjS7eZ6ZXvCnppyt3zFnNdH_XrmQ39RFq573A,1557
|
|
200
201
|
maxframe/dataframe/arithmetic/log.py,sha256=eQkt1Hj0KG7jlxEOR_WjyRO0ldMwvXfE0R59jEBOjCs,915
|
|
201
202
|
maxframe/dataframe/arithmetic/negative.py,sha256=tr4ihgbj2Kws6mhZrkQDqDcP3gCnswgTyW3TGODKl24,1007
|
|
202
203
|
maxframe/dataframe/arithmetic/multiply.py,sha256=IYRtGCnu9LtykcnLThRh4odOluXq2MkoVHQa_zwhpQU,1733
|
|
@@ -213,7 +214,7 @@ maxframe/dataframe/arithmetic/ceil.py,sha256=2Kg7DhGutwqRpH88pvbY0mXz0n6fI0KB_Eu
|
|
|
213
214
|
maxframe/dataframe/arithmetic/bitwise_or.py,sha256=BNYyKUshOkyQ1pnEPr4YV77ANRvV5VfY6QXuHs1oARk,1546
|
|
214
215
|
maxframe/dataframe/arithmetic/bitwise_and.py,sha256=G3IMIAmFz9HTcuNnVdSiWCKcSUdNKniR_f7wLhJ4ubM,1427
|
|
215
216
|
maxframe/dataframe/arithmetic/log10.py,sha256=yT9ziTGU0QogZLdwHiZA8VHqes2tKzHfKRsrrhEbEtg,925
|
|
216
|
-
maxframe/dataframe/arithmetic/docstring.py,sha256=
|
|
217
|
+
maxframe/dataframe/arithmetic/docstring.py,sha256=WsDeqeRbyTbfFGZJLCWLSRMcazLXkmK3wpDAcXA70e4,11691
|
|
217
218
|
maxframe/dataframe/arithmetic/truediv.py,sha256=KNMlFa7D8ui89ILKKg5QG1TmTYA3C3Gttv9UAq3UGK4,1808
|
|
218
219
|
maxframe/dataframe/arithmetic/exp2.py,sha256=cwyEZ7uyjbiqD-7Y9PqEDOI80hf6ReabtbGq6DLjwCg,920
|
|
219
220
|
maxframe/dataframe/arithmetic/expm1.py,sha256=XfDd6LQ1YzBq8mnTVFTWf3lBtIOMzaO4yc9b5ZRuIQU,925
|
|
@@ -221,18 +222,18 @@ maxframe/dataframe/arithmetic/arcsin.py,sha256=NuVj2ve_KVtT0BnDL0NP0W8OLbXxKljLA
|
|
|
221
222
|
maxframe/dataframe/arithmetic/floordiv.py,sha256=CySJxJb7DZqbe_CqC4Q0IyEm_4vXEgPpKyWMEEb10ag,1827
|
|
222
223
|
maxframe/dataframe/arithmetic/bitwise_xor.py,sha256=W0MDaBV4rEh6MtCk7eCsZkW6abvk_8JetzXKs1h9eiM,1426
|
|
223
224
|
maxframe/dataframe/arithmetic/invert.py,sha256=OvRZ3DtDpWQBr2fNIMjUeraT1zOhh5Hqn3VLhhhs-oo,985
|
|
224
|
-
maxframe/dataframe/arithmetic/greater.py,sha256=
|
|
225
|
+
maxframe/dataframe/arithmetic/greater.py,sha256=YE5dkcyoENXR6uxSOhWfD8isq8MtqFmiRu6AoXndObk,1547
|
|
225
226
|
maxframe/dataframe/arithmetic/log2.py,sha256=rqmgkwgqwvnyFLW554eHBCBDwP8Y8bXgx3vT2HJTzRo,920
|
|
226
|
-
maxframe/dataframe/arithmetic/less.py,sha256=
|
|
227
|
+
maxframe/dataframe/arithmetic/less.py,sha256=Q6hOp1IYybChzVCY0_ccTnD4pcCLw6CIVnzhMS_KK68,1518
|
|
227
228
|
maxframe/dataframe/arithmetic/cosh.py,sha256=OLmJdzc0B1v61-cu2ohXUflJwxkXfUy50YqS1X8h0Ho,920
|
|
228
229
|
maxframe/dataframe/arithmetic/sinh.py,sha256=-Cm7wHcywVAuLnt-AA3WggxfOjiPXfii5nx14dT_MYg,920
|
|
229
230
|
maxframe/dataframe/arithmetic/mod.py,sha256=hHYLPMbNLjuig9Tud3FqEYRxQeDMrFgvDm5LEjn1Xu4,1702
|
|
230
|
-
maxframe/dataframe/arithmetic/greater_equal.py,sha256=
|
|
231
|
+
maxframe/dataframe/arithmetic/greater_equal.py,sha256=lkP_0fM048BKLu7p5EX-VDkhmJpHzZB0DeKc18GGqhs,1572
|
|
231
232
|
maxframe/dataframe/arithmetic/exp.py,sha256=QE7i88tJrFYx2Qs7Hmcf8Zb2oBJDKghBjxSnf4Y9b7k,915
|
|
232
233
|
maxframe/dataframe/arithmetic/arcsinh.py,sha256=KreWLwP5wwQqna95iPlc2aiXPzuqCFq8chCMytk5qhY,935
|
|
233
234
|
maxframe/dataframe/arithmetic/arccosh.py,sha256=_LTrS_JOy1CTvCXT9iw9TQkBbO3wv-hKrYiYRzTwcnU,935
|
|
234
235
|
maxframe/dataframe/arithmetic/power.py,sha256=ZxssD1aoz8abrv1tE_LFhGF0jr_j5nXQ8nhY9lcZrF0,1811
|
|
235
|
-
maxframe/dataframe/arithmetic/not_equal.py,sha256=
|
|
236
|
+
maxframe/dataframe/arithmetic/not_equal.py,sha256=jwfWfLHbRmVEMVdAmHlFUU4Kd6hhyevIGO2Fl2nuyJM,1533
|
|
236
237
|
maxframe/dataframe/arithmetic/radians.py,sha256=pSq9S0KlV0Xx0vGSdxdol3348dSyYuxG4jMFbGFdQ6E,935
|
|
237
238
|
maxframe/dataframe/arithmetic/sin.py,sha256=zgWoijVpASlkZ7cnZZxKSSHUiLqQ0pKUAIOHEfCBubc,915
|
|
238
239
|
maxframe/dataframe/arithmetic/tests/__init__.py,sha256=FEFOVLi3o2GpZoedTtLYvbie0eQBehJIjtCrWca2ZHw,596
|
|
@@ -241,7 +242,7 @@ maxframe/dataframe/indexing/reset_index.py,sha256=uzGszHfkhwZgZtEaygy5UPrvHPNPXg
|
|
|
241
242
|
maxframe/dataframe/indexing/iat.py,sha256=ANURJ8qn_UitgM01gDPeaQOlSBxbk0pmN4Yr-iPRXM8,1127
|
|
242
243
|
maxframe/dataframe/indexing/loc.py,sha256=ZmiK3a2f-krkXFvNLSlzRRa6GWGiAAXk_3mWZC_MqdQ,14845
|
|
243
244
|
maxframe/dataframe/indexing/align.py,sha256=hEuoaNX4bI9LBWp_1kGG7GSs3PDF95tDXo7GX5nypGI,12085
|
|
244
|
-
maxframe/dataframe/indexing/rename.py,sha256=
|
|
245
|
+
maxframe/dataframe/indexing/rename.py,sha256=jYstF7CKilLjAlIGKs2wVhYtijJDCz8AWg2VF-1KROU,12892
|
|
245
246
|
maxframe/dataframe/indexing/setitem.py,sha256=PgVZr2A_joTHz9GUbnGfuSI28qSnwe-n84yKFJagLUc,5004
|
|
246
247
|
maxframe/dataframe/indexing/where.py,sha256=3h64jI_tXmWAu1ZvfeS58h8nUfBN7K7OZ0C22_5-_uk,8567
|
|
247
248
|
maxframe/dataframe/indexing/iloc.py,sha256=sP4hV9Wo3S4Iimxak5Q-EB_Vph2dCbbDsVS003jEeFI,17421
|
|
@@ -250,7 +251,7 @@ maxframe/dataframe/indexing/getitem.py,sha256=3LHjTcvU0PSTf_VI6x1MwirIiK_ynLcGb_
|
|
|
250
251
|
maxframe/dataframe/indexing/set_index.py,sha256=Sa49Z0n3bwAM1OTJJPdTSCZb4qMZjyfhiEpi4mALviU,4195
|
|
251
252
|
maxframe/dataframe/indexing/at.py,sha256=cGzJ3eM_kVIYDPf24JQxbhrRNtb2urscMtV0XUKzWkw,2217
|
|
252
253
|
maxframe/dataframe/indexing/rename_axis.py,sha256=w5B67qlcsdjNhN6OZnov5L5ovJXpu_Oqpux0AP0elzk,6302
|
|
253
|
-
maxframe/dataframe/indexing/add_prefix_suffix.py,sha256
|
|
254
|
+
maxframe/dataframe/indexing/add_prefix_suffix.py,sha256=tSNslK43yx9tOieXcEuWamW7HWysxSoqqEM4p5NN55k,2966
|
|
254
255
|
maxframe/dataframe/indexing/insert.py,sha256=GG9VGNozKDdeREdtsQJ6WztFUwuYuBP-LW1Lv4RftN0,2911
|
|
255
256
|
maxframe/dataframe/indexing/sample.py,sha256=Dm3qqFa2nL0A24rSrqDs_4U1m9a-noWQMp_CNE-Suak,8171
|
|
256
257
|
maxframe/dataframe/indexing/set_axis.py,sha256=n5obYjkg-YKSOGHA0gfM25qUPGcGHBeeo-uyvhYCI34,5530
|
|
@@ -258,60 +259,64 @@ maxframe/dataframe/indexing/reindex.py,sha256=mrDBxDZwbaqhjwy_fWGRtWI6MhJ6O1sR1A
|
|
|
258
259
|
maxframe/dataframe/indexing/tests/__init__.py,sha256=FEFOVLi3o2GpZoedTtLYvbie0eQBehJIjtCrWca2ZHw,596
|
|
259
260
|
maxframe/dataframe/indexing/tests/test_indexing.py,sha256=AcvF_exYVA6pf2giNzSAYfjAODbf207UtKSpTG68ssQ,15611
|
|
260
261
|
maxframe/learn/__init__.py,sha256=ii-8fJO-ubA3wRej1S1jXsb62zrS5MaAWc2gqQAAHFw,632
|
|
262
|
+
maxframe/learn/core.py,sha256=JeKLITsz1WrKOTR6Air2lG28MtjamWtFnal4ynvprNw,756
|
|
261
263
|
maxframe/learn/utils/__init__.py,sha256=zpkZ-HBwv91vyMeBVs59J_u0uVQCXUkEzo_pW2h9q00,646
|
|
262
264
|
maxframe/learn/utils/core.py,sha256=_tskQMfdvr5VAV68fDzM0DSVF2S7SMDnNXA8j_gHmGI,1029
|
|
263
|
-
maxframe/learn/contrib/__init__.py,sha256=
|
|
265
|
+
maxframe/learn/contrib/__init__.py,sha256=zmDTNjDax2LR3hTc3MU16k0NUAdkWNsOlgfnjqiGvao,649
|
|
264
266
|
maxframe/learn/contrib/utils.py,sha256=k5jlwY8pru_PD8olOBOsMcBLeo31NMx53TjJmSvbvy8,1662
|
|
265
|
-
maxframe/learn/contrib/xgboost/classifier.py,sha256=
|
|
266
|
-
maxframe/learn/contrib/xgboost/dmatrix.py,sha256=
|
|
267
|
-
maxframe/learn/contrib/xgboost/predict.py,sha256
|
|
267
|
+
maxframe/learn/contrib/xgboost/classifier.py,sha256=BgDRqInNhe6YvC4026vRq4DU9lL6vVDiCWJFFON9If4,3886
|
|
268
|
+
maxframe/learn/contrib/xgboost/dmatrix.py,sha256=r-3JfQNwv8Qgi6zxwSVlxolv8K82paofCBaR1u860rs,4742
|
|
269
|
+
maxframe/learn/contrib/xgboost/predict.py,sha256=BlFKaM0Fdw2BeUtxVyNtNTjwiXqjJNZjP0lbs5SNtjI,3756
|
|
268
270
|
maxframe/learn/contrib/xgboost/__init__.py,sha256=kbYrokjDXjMBqRka5NTkUjU5zrNUoT_TkTyuW9G5s-0,899
|
|
269
|
-
maxframe/learn/contrib/xgboost/core.py,sha256=
|
|
270
|
-
maxframe/learn/contrib/xgboost/train.py,sha256=
|
|
271
|
-
maxframe/learn/contrib/xgboost/regressor.py,sha256=
|
|
271
|
+
maxframe/learn/contrib/xgboost/core.py,sha256=KHPi--bAbWcd4bX_Nfuh3k9Sl-e6BW9Ck7PyIS9veUU,8035
|
|
272
|
+
maxframe/learn/contrib/xgboost/train.py,sha256=kgxNkmkgoH7P4w-eO0oLOVYNe-s3_kYnkPOS0UmWfv0,4528
|
|
273
|
+
maxframe/learn/contrib/xgboost/regressor.py,sha256=0Wuyt2nxyVqp3AHl4aro0WdXe0YhtXIcbJPTdboy_AI,2313
|
|
272
274
|
maxframe/learn/contrib/xgboost/tests/test_core.py,sha256=0Q3A1EFW30vsQLl7bSTTuw-ldlLEO43ljVSJBb8j1LM,1406
|
|
273
275
|
maxframe/learn/contrib/xgboost/tests/__init__.py,sha256=FEFOVLi3o2GpZoedTtLYvbie0eQBehJIjtCrWca2ZHw,596
|
|
276
|
+
maxframe/learn/contrib/graph/connected_components.py,sha256=JRLdmyryWas1W3mE_sIn5eX1rU4N_ycYtLrEInkbxlw,7152
|
|
277
|
+
maxframe/learn/contrib/graph/__init__.py,sha256=oJZ8FJcGcbaRwzY4O8BKLZkXBqhhYgPC615oJGFqJpY,652
|
|
278
|
+
maxframe/learn/contrib/graph/tests/__init__.py,sha256=FEFOVLi3o2GpZoedTtLYvbie0eQBehJIjtCrWca2ZHw,596
|
|
279
|
+
maxframe/learn/contrib/graph/tests/test_connected_components.py,sha256=13z_AulY1rhI2owu5rorcj4CwxxzKlJGuQWF6n2VC90,1609
|
|
274
280
|
maxframe/learn/contrib/pytorch/run_script.py,sha256=Joh0gwukGf3kqfBYRxL34hQjbULT6s3vNnmBdJ6NZP0,3111
|
|
275
281
|
maxframe/learn/contrib/pytorch/__init__.py,sha256=koagbwLwH1VNLTWYx29ckatBChZ_f9wFcflB4tGYYwg,687
|
|
276
282
|
maxframe/learn/contrib/pytorch/run_function.py,sha256=oMDMVqDFQJ5d8DllZrqqRmBT2lx1cTmAv0hdQlO2GrY,3244
|
|
277
283
|
maxframe/learn/contrib/pytorch/tests/__init__.py,sha256=FEFOVLi3o2GpZoedTtLYvbie0eQBehJIjtCrWca2ZHw,596
|
|
278
284
|
maxframe/learn/contrib/pytorch/tests/test_pytorch.py,sha256=ztAli4QwNUDfvM7M2LulJItFNWlUDFc_MByDF2KAcTI,1402
|
|
279
|
-
maxframe/core/__init__.py,sha256=
|
|
285
|
+
maxframe/core/__init__.py,sha256=nHHLxzmvyJQC9870XzBjEQmOIzv1CZs2FIO8ntNgd34,1457
|
|
280
286
|
maxframe/core/mode.py,sha256=uRzQDTu471APFDOx12NkTgZiPB-YiCuPhmakhEtIz3M,3011
|
|
281
287
|
maxframe/core/base.py,sha256=3ZNLtl0jZWY5ZIwmIJF1-khF-DYxoeHxAMMiOCwpaBA,4535
|
|
282
|
-
maxframe/core/entity/tileables.py,sha256=
|
|
283
|
-
maxframe/core/entity/__init__.py,sha256=
|
|
288
|
+
maxframe/core/entity/tileables.py,sha256=nPBdaJz66t_UWqO0utp7P9DPs5WAlx3lM4TXbgGHsQU,11271
|
|
289
|
+
maxframe/core/entity/__init__.py,sha256=9erZEQzE07BfJrQJDcEyHPo_XCIi5bJkKW3NvKhJhRo,1075
|
|
284
290
|
maxframe/core/entity/core.py,sha256=t7Ex9Yb7A1h_XwyRG88Fx4ZOai-NQKi2luRVS_jFPEo,4018
|
|
285
291
|
maxframe/core/entity/utils.py,sha256=IuNgFmBQFRioAA1hgZe6nTEggOmDY-iooZqncQQrV28,942
|
|
286
|
-
maxframe/core/entity/executable.py,sha256=
|
|
287
|
-
maxframe/core/entity/output_types.py,sha256=
|
|
288
|
-
maxframe/core/entity/objects.py,sha256=
|
|
289
|
-
maxframe/core/entity/
|
|
290
|
-
maxframe/core/entity/
|
|
291
|
-
maxframe/core/graph/__init__.py,sha256=
|
|
292
|
-
maxframe/core/graph/entity.py,sha256=
|
|
292
|
+
maxframe/core/entity/executable.py,sha256=0lc5113ASliBAAb59hT8n1qpyajdSa5p2lK3u79iblE,10956
|
|
293
|
+
maxframe/core/entity/output_types.py,sha256=Jrro-S4iI7BfaSe9hTq3zIAxG-hBENMU-hlN-kL5d8o,2536
|
|
294
|
+
maxframe/core/entity/objects.py,sha256=EnS0F2ageFTEvNfylqp21LTfTv3Q3p0X0Ur6HgWr2co,3781
|
|
295
|
+
maxframe/core/entity/tests/__init__.py,sha256=FEFOVLi3o2GpZoedTtLYvbie0eQBehJIjtCrWca2ZHw,596
|
|
296
|
+
maxframe/core/entity/tests/test_objects.py,sha256=-HS2dux6OdmwtMY6GRxwASq2gPSRY5S9YwTqeG-dGaA,1349
|
|
297
|
+
maxframe/core/graph/__init__.py,sha256=tqUUWDOXp2KFjO7zv1dN_-ttE-ef09-S1GNt8EQ35Bk,765
|
|
298
|
+
maxframe/core/graph/entity.py,sha256=3ifzsEDIxzDjeM9MhlSwgz92GuaEEoCVWxEkEu2xIgE,4863
|
|
293
299
|
maxframe/core/graph/core.pyx,sha256=kyqE5-X9Tc82wU4N_zsf8jNthAHWHTVRNFQWNNbzgpM,15923
|
|
294
|
-
maxframe/core/graph/core.cpython-310-darwin.so,sha256=
|
|
300
|
+
maxframe/core/graph/core.cpython-310-darwin.so,sha256=7jYTpD3axVlV7n5ijFL8MQVCSeYCMMn5atexSdZ3gMg,685616
|
|
295
301
|
maxframe/core/graph/tests/__init__.py,sha256=FEFOVLi3o2GpZoedTtLYvbie0eQBehJIjtCrWca2ZHw,596
|
|
296
302
|
maxframe/core/graph/tests/test_graph.py,sha256=kZfe_SfMOoHjEfXvtVtn0RjK4lOd-tFasxSpfL4G1WE,7462
|
|
297
|
-
maxframe/core/graph/builder/__init__.py,sha256=
|
|
298
|
-
maxframe/core/graph/builder/
|
|
299
|
-
maxframe/core/graph/builder/
|
|
300
|
-
maxframe/core/graph/builder/
|
|
301
|
-
maxframe/core/graph/builder/base.py,sha256=_UQMQmqb-O4BxoDZVi-j4ns2HOExeJdUGLNANn-wR0g,2549
|
|
303
|
+
maxframe/core/graph/builder/__init__.py,sha256=TYHKq5Y8iTRWprw6CZosdtq-NGV7Sa1u1CI6adR9hgk,640
|
|
304
|
+
maxframe/core/graph/builder/utils.py,sha256=zSgVV7Y976VkyzoR-dJ5M0CrEdLx_mU2FE4OibuUOvg,1316
|
|
305
|
+
maxframe/core/graph/builder/tileable.py,sha256=1rZbjE2WSIBBH3tBcx3puGbaZ2KPBctoxir2lxI3acQ,1173
|
|
306
|
+
maxframe/core/graph/builder/base.py,sha256=W_HcLBNwK8NwOuMqYq0B49DCzV6PY7FW0k1FxMbX-VM,2509
|
|
302
307
|
maxframe/core/tests/__init__.py,sha256=FEFOVLi3o2GpZoedTtLYvbie0eQBehJIjtCrWca2ZHw,596
|
|
303
308
|
maxframe/core/tests/test_mode.py,sha256=2QYqkPl-sW1LKlJF1pxiuMpnAYrbGibZRXHrNcZTO3M,2432
|
|
304
309
|
maxframe/core/operator/fetch.py,sha256=88Sc1DYTR0-H-z8DiUP8ZfcNatuRecHksgG0rqDvKqo,1510
|
|
305
|
-
maxframe/core/operator/__init__.py,sha256=
|
|
310
|
+
maxframe/core/operator/__init__.py,sha256=0IwJltVfYPGSq1cYbHigQ5zY50K3BwIkl3p8llgEC0w,1071
|
|
306
311
|
maxframe/core/operator/core.py,sha256=T2YYIleKiFxmufpHF7ELOztlJsYO-Kn4KYhQhY4jRUc,9263
|
|
307
312
|
maxframe/core/operator/shuffle.py,sha256=A_w62UxXRKyDNESo4Q0UGmCpuFfPlQXWmPyQGHdpz3A,4746
|
|
308
|
-
maxframe/core/operator/
|
|
309
|
-
maxframe/core/operator/
|
|
310
|
-
maxframe/core/operator/base.py,sha256=
|
|
313
|
+
maxframe/core/operator/utils.py,sha256=CVVamZJwbnequxDZmYcPLt4rcfAn8s77xk5hlr8eXh4,1706
|
|
314
|
+
maxframe/core/operator/objects.py,sha256=lEicZmIsR2sgWsH3oAeeYMde8C0TYeu2vkAyGj8WUVM,1965
|
|
315
|
+
maxframe/core/operator/base.py,sha256=gMSjgfOBJe0tMkFRukyGnGSInLVHw7xlxASlczeuzQg,15187
|
|
311
316
|
maxframe/core/operator/tests/test_core.py,sha256=57aICnc5VLqdVK7icAORTWC81bSjBxeeVWIJcha9J_0,1691
|
|
312
317
|
maxframe/core/operator/tests/__init__.py,sha256=FEFOVLi3o2GpZoedTtLYvbie0eQBehJIjtCrWca2ZHw,596
|
|
313
|
-
maxframe/config/config.py,sha256=
|
|
314
|
-
maxframe/config/validators.py,sha256=
|
|
318
|
+
maxframe/config/config.py,sha256=Qqfe0oS2SB0uf2FjxFbf7tFa8OK2OXZkta4AbfsxuoM,15388
|
|
319
|
+
maxframe/config/validators.py,sha256=UjbxMKZcDG98-9uCQESm_V56d-VUD7kQGV0KJghVbj8,2511
|
|
315
320
|
maxframe/config/__init__.py,sha256=g5lN3nP2HTAXa6ExGxU1NwU1M9ulYPmAcsV-gU7nIW8,656
|
|
316
321
|
maxframe/config/tests/__init__.py,sha256=FEFOVLi3o2GpZoedTtLYvbie0eQBehJIjtCrWca2ZHw,596
|
|
317
322
|
maxframe/config/tests/test_validators.py,sha256=U_7yKSl0FdVdDwKU1EsnCzNWaOXi8xrIC08x7hb_O4c,1240
|
|
@@ -321,12 +326,12 @@ maxframe/serialization/core.pxd,sha256=eBrSXiAPlX83Kbwml5IKJvqsIT03lPCeS6is9HplL
|
|
|
321
326
|
maxframe/serialization/pandas.py,sha256=Fj0HZsnTyZqDW4pTiz2AX_Clly6NwjAbQoaMhYwCocs,7315
|
|
322
327
|
maxframe/serialization/core.pyi,sha256=a3CQxlJv5aYyy__VNKEq5XsaHE-n0MPKE_9CcWu8Q34,2142
|
|
323
328
|
maxframe/serialization/arrow.py,sha256=VnGxNLU9UV_cUPTze43bEFCIbYLAOZnp2pAwVJbAIzQ,3418
|
|
324
|
-
maxframe/serialization/__init__.py,sha256=
|
|
329
|
+
maxframe/serialization/__init__.py,sha256=LrwesIKJ6MR_mhxW7qRXJXohH9waubZMR9-YicGDMUs,936
|
|
325
330
|
maxframe/serialization/maxframe_objects.py,sha256=R9WEjbHL0Kr56OGkYDU9fcGi7gII6fGlXhi6IyihTsM,1365
|
|
326
331
|
maxframe/serialization/numpy.py,sha256=8_GSo45l_eNoMn4NAGEb9NLXY_9i4tf9KK4EzG0mKpA,3213
|
|
327
332
|
maxframe/serialization/scipy.py,sha256=hP0fAW0di9UgJrGtANB2S8hLDbFBtR8p5NDqAMt5rDI,2427
|
|
328
333
|
maxframe/serialization/core.pyx,sha256=ZLVh7W7LgUb4KPb7rtuezRL6sQC4GNb3hLndAeSbiyU,35198
|
|
329
|
-
maxframe/serialization/core.cpython-310-darwin.so,sha256=
|
|
334
|
+
maxframe/serialization/core.cpython-310-darwin.so,sha256=cndAdipNTVNOVi2plnpjdxDkVkCZZe5D0WySwpED8Cg,1159616
|
|
330
335
|
maxframe/serialization/tests/test_serial.py,sha256=Wj_I6CBQMaOtE8WtqdUaBoU8FhBOihht6SfeHOJV-zU,12511
|
|
331
336
|
maxframe/serialization/tests/__init__.py,sha256=FEFOVLi3o2GpZoedTtLYvbie0eQBehJIjtCrWca2ZHw,596
|
|
332
337
|
maxframe/serialization/serializables/field.py,sha256=atVgX-9rsVG1fTev7vjQArVwIEaCRjXoSEjpQ3mh6bA,16015
|
|
@@ -336,16 +341,22 @@ maxframe/serialization/serializables/field_type.py,sha256=Feh09hu8XyaxS5MaJ4za_p
|
|
|
336
341
|
maxframe/serialization/serializables/tests/test_field_type.py,sha256=T3ebXbUkKveC9Pq1nIl85e4eYascFeJ52d0REHbz5jo,4381
|
|
337
342
|
maxframe/serialization/serializables/tests/__init__.py,sha256=FEFOVLi3o2GpZoedTtLYvbie0eQBehJIjtCrWca2ZHw,596
|
|
338
343
|
maxframe/serialization/serializables/tests/test_serializable.py,sha256=P6BCYvm-0HxlEHruyw-SIdVBywxQw16JUMws_lvqTk0,9867
|
|
339
|
-
maxframe/
|
|
340
|
-
maxframe/odpsio/
|
|
341
|
-
maxframe/odpsio/
|
|
342
|
-
maxframe/odpsio/
|
|
343
|
-
maxframe/odpsio/
|
|
344
|
-
maxframe/odpsio/
|
|
345
|
-
maxframe/odpsio/tests/
|
|
346
|
-
maxframe/odpsio/tests/
|
|
347
|
-
maxframe/odpsio/tests/
|
|
348
|
-
maxframe/odpsio/tests/
|
|
344
|
+
maxframe/io/__init__.py,sha256=FEFOVLi3o2GpZoedTtLYvbie0eQBehJIjtCrWca2ZHw,596
|
|
345
|
+
maxframe/io/odpsio/tableio.py,sha256=NAAjHJPOGNeSFSqkJokdMBaPIj-fZYfQ64TWysykrJA,24453
|
|
346
|
+
maxframe/io/odpsio/arrow.py,sha256=2x2N9UvihtXRBA5Ym7tMxqpHQbWi-9hq2lJ_tatETiI,3926
|
|
347
|
+
maxframe/io/odpsio/__init__.py,sha256=VD_mvxljDKDfJHYuN3OpjJWzHqFT5DKykIvECahGu0w,902
|
|
348
|
+
maxframe/io/odpsio/volumeio.py,sha256=2cbC1jarfahsL5Hh9HxjsrC2TbWoXkE96x8Tt6EFJko,2167
|
|
349
|
+
maxframe/io/odpsio/schema.py,sha256=kMuBw3zCI5aNXs8qv8Hjl8pU85oYmHd_Ub1PojEaH18,12399
|
|
350
|
+
maxframe/io/odpsio/tests/test_tableio.py,sha256=HFSx2R7Bj4O1bGM-H9fMQkXjNUmvvT1SIUwsIcw6M2c,5606
|
|
351
|
+
maxframe/io/odpsio/tests/__init__.py,sha256=FEFOVLi3o2GpZoedTtLYvbie0eQBehJIjtCrWca2ZHw,596
|
|
352
|
+
maxframe/io/odpsio/tests/test_schema.py,sha256=qXh6NPdQWbqhtmT4K9BiVqxlPjJclROup2Ijoyt7lIU,11815
|
|
353
|
+
maxframe/io/odpsio/tests/test_arrow.py,sha256=SQ9EmI9_VOOC8u6Rg6nh3IPC2fPbLvJ9HwtpMNDRhL8,3106
|
|
354
|
+
maxframe/io/odpsio/tests/test_volumeio.py,sha256=JlKn_pDU5bCxoPvt7GUJYfCRJIVO1YgCiHPBXHxFer8,2868
|
|
355
|
+
maxframe/io/objects/__init__.py,sha256=PtpSp5t1rGJ1DD0IjQs6oSHkOxT2JDMLfCaDz8VUCZ8,754
|
|
356
|
+
maxframe/io/objects/core.py,sha256=r9X1Cu9FNUdarMFiTPWX_MPcE8AW5e_d_AsFWjdZDP8,4577
|
|
357
|
+
maxframe/io/objects/tensor.py,sha256=F0aObDLIi_2ND5x-uVogi2A29kIuyhKtZLyZqxI13iM,2673
|
|
358
|
+
maxframe/io/objects/tests/test_object_io.py,sha256=g5vi7Y8ZrR7jrp1FUwXT-uM6l57Kea5wkKZk7iovvAA,3092
|
|
359
|
+
maxframe/io/objects/tests/__init__.py,sha256=FEFOVLi3o2GpZoedTtLYvbie0eQBehJIjtCrWca2ZHw,596
|
|
349
360
|
maxframe/tests/test_utils.py,sha256=imfe7sN1_4EjWuT4qMYMwjOjgL0t5oewyhebBGPDBhY,11504
|
|
350
361
|
maxframe/tests/test_protocol.py,sha256=9DWr3z1AI2DUMnLyak91PKSfV_ILkOtwAZPCmM42kcg,6103
|
|
351
362
|
maxframe/tests/__init__.py,sha256=FEFOVLi3o2GpZoedTtLYvbie0eQBehJIjtCrWca2ZHw,596
|
|
@@ -357,7 +368,7 @@ maxframe/lib/compression.py,sha256=k9DSrl_dNBsn5azLjBdL5B4WZ6eNvmCrdMbcF1G7JSc,1
|
|
|
357
368
|
maxframe/lib/__init__.py,sha256=CzfbLNqqm1yR1i6fDwCd4h1ptuKVDbURFVCb0ra7QNc,642
|
|
358
369
|
maxframe/lib/mmh3.pyi,sha256=AOp_XqbA5-NwepeeBeG0OFJj5tjEAFLzcViyRNZ0eVI,1494
|
|
359
370
|
maxframe/lib/functools_compat.py,sha256=PMSkct9GIbzq-aBwTnggrOLNfLh4xQnYTIFMPblzCUA,2616
|
|
360
|
-
maxframe/lib/mmh3.cpython-310-darwin.so,sha256=
|
|
371
|
+
maxframe/lib/mmh3.cpython-310-darwin.so,sha256=XZcxpaX6ia_Bo6Wl3M5qEt0PTOb893DGiIOfdNx5dMw,119784
|
|
361
372
|
maxframe/lib/mmh3_src/mmh3module.cpp,sha256=9J9eA42eKWTl546fvfQPNuIM3B2jpWSADpgIw3tr2jg,11604
|
|
362
373
|
maxframe/lib/mmh3_src/MurmurHash3.h,sha256=lg5uXUFyMBge2BWRn0FgrqaCFCMfDWoTXD4PQtjHrMA,1263
|
|
363
374
|
maxframe/lib/mmh3_src/MurmurHash3.cpp,sha256=kgrteG44VSftwp5hhD7pyTENDRU9wI_DqLD1493-bP0,8096
|
|
@@ -404,10 +415,10 @@ maxframe/lib/tblib/__init__.py,sha256=c4aVldbxJdS-bFsSDcmDQy_mW0qAcMrb4pHS2tjYhY
|
|
|
404
415
|
maxframe/lib/tblib/cpython.py,sha256=FQ0f6WTQyQHoMRhgPqrA0y0Ygxlbj5IC53guxA4h9Cw,2418
|
|
405
416
|
maxframe/lib/tblib/decorators.py,sha256=bcllK3kVuPnj6SNZGmlJGxTK0ovdt7TJDXrhA4UE5sQ,1063
|
|
406
417
|
maxframe/tensor/array_utils.py,sha256=259vG4SjyhiheARCZeEnfJdZjoojyrELn41oRcyAELs,4943
|
|
407
|
-
maxframe/tensor/__init__.py,sha256=
|
|
408
|
-
maxframe/tensor/core.py,sha256=
|
|
409
|
-
maxframe/tensor/utils.py,sha256=
|
|
410
|
-
maxframe/tensor/operators.py,sha256=
|
|
418
|
+
maxframe/tensor/__init__.py,sha256=F4iZBp8sd20XNgSFX8Bl8y6wOpEA4bmQ0wnoN4F5rVY,4392
|
|
419
|
+
maxframe/tensor/core.py,sha256=ouSU9TbFFShyvdJkyh9h6AUio97SXphs4-lz_w-7_fk,17945
|
|
420
|
+
maxframe/tensor/utils.py,sha256=wCx2ZBk_zmS2lJgtuUUGdqRSkhhnLAyeB0DTlIGZUyg,22411
|
|
421
|
+
maxframe/tensor/operators.py,sha256=XiYTFYLuKDMjEy-DZs5HKmcwvNgfJX3sGzIttAqNG8c,3338
|
|
411
422
|
maxframe/tensor/statistics/quantile.py,sha256=GYs4dlBwvUTu4-PZ9PnM4JTjzpQkS_8oFcOT85or404,9467
|
|
412
423
|
maxframe/tensor/statistics/__init__.py,sha256=FEFOVLi3o2GpZoedTtLYvbie0eQBehJIjtCrWca2ZHw,596
|
|
413
424
|
maxframe/tensor/statistics/percentile.py,sha256=U7ssKDJbBVp6i1n1EP_qJ2HomIQJwt73asGrXire3ww,6047
|
|
@@ -415,6 +426,18 @@ maxframe/tensor/reshape/reshape.py,sha256=wufzBHgqVpmNPNmgr7lCuGbMkghfOUV1q4t1tH
|
|
|
415
426
|
maxframe/tensor/reshape/__init__.py,sha256=ilMdv8u0POVi4zNzjKQ-iBRPak_tXgJ6aabv7_pHqKc,672
|
|
416
427
|
maxframe/tensor/reshape/tests/__init__.py,sha256=CzfbLNqqm1yR1i6fDwCd4h1ptuKVDbURFVCb0ra7QNc,642
|
|
417
428
|
maxframe/tensor/reshape/tests/test_reshape.py,sha256=MkXN_ibLMNn_4vc8Jsq39icqTIYV0H7-zrIJmuYvibo,1103
|
|
429
|
+
maxframe/tensor/misc/astype.py,sha256=zeLfyWkuc1LxMIiIO6ghZ_enR7IPgq0Hy4O18h8JQPk,4394
|
|
430
|
+
maxframe/tensor/misc/where.py,sha256=fMGBfppo4QToHX-B3rtTorstz83m8uWWhOQj6Qbu34U,4000
|
|
431
|
+
maxframe/tensor/misc/unique.py,sha256=EO7EYn0mHr9aZ7hVZxwiKNSPwbXvrpDWRWP5PksfgxY,6721
|
|
432
|
+
maxframe/tensor/misc/__init__.py,sha256=I4dwtIkgdnOkFLGp9chMZwDCteiKAAikygYz_b4RY2c,1149
|
|
433
|
+
maxframe/tensor/misc/transpose.py,sha256=a67BbXWt4rc0yh6yzljLQkdX0EyLxTcdWuB2n99Fnpc,4020
|
|
434
|
+
maxframe/tensor/misc/atleast_3d.py,sha256=ONXluuYTLyaPwii8PF6IG_o5f6QRQRue6uxsPeou9mk,2392
|
|
435
|
+
maxframe/tensor/misc/ravel.py,sha256=pJkez1NHoLqVMBPm5aA8uMNFeWURTAJV_iU98Vqr-50,3173
|
|
436
|
+
maxframe/tensor/misc/atleast_2d.py,sha256=wunxdRTd_2ZfAZiMt7QhOEII_f_Z8lwSgy0ncMT85eI,1958
|
|
437
|
+
maxframe/tensor/misc/broadcast_to.py,sha256=p0hi128OWlj3lXmacvxMhZOjUCq8fiA3yjy9nESZXgE,2686
|
|
438
|
+
maxframe/tensor/misc/atleast_1d.py,sha256=1-IdLYOg5zGCqp_RZ1X3Eq1oTb6UusuHVGW7mW5ayNY,1872
|
|
439
|
+
maxframe/tensor/misc/tests/test_misc.py,sha256=syedkA0jMjevYouCL3vCMuWpJ-3hfOc28wKXqF_MMno,2843
|
|
440
|
+
maxframe/tensor/misc/tests/__init__.py,sha256=FEFOVLi3o2GpZoedTtLYvbie0eQBehJIjtCrWca2ZHw,596
|
|
418
441
|
maxframe/tensor/datasource/from_dataframe.py,sha256=X6cfwLT__VGZLoy3U3tjehPnO43CnyN4kK4edDtLFrA,2503
|
|
419
442
|
maxframe/tensor/datasource/zeros.py,sha256=vMJ44GeCPOxtnj-NnKvkbb4u3U_yxcEhEJa1-ADt1fM,5672
|
|
420
443
|
maxframe/tensor/datasource/from_dense.py,sha256=N2FVRhU9uh-w1W8W9zvpTQVxGgskSdHZbVh_rJjC6QA,1607
|
|
@@ -422,19 +445,21 @@ maxframe/tensor/datasource/scalar.py,sha256=GzKdbBLFdq9aeWrrtZ3BT5514fBAi9A-QJ5M
|
|
|
422
445
|
maxframe/tensor/datasource/empty.py,sha256=e6XYQvFsyfnGqIrU216_Q1M7cYxwkQSOoZiEhtOT8nc,5850
|
|
423
446
|
maxframe/tensor/datasource/__init__.py,sha256=qU_GFAuMa_U_zrV6HcE9fsgO16EXVsqhh9j5Fxe6HFY,1146
|
|
424
447
|
maxframe/tensor/datasource/core.py,sha256=VpjxIcWp_O00smfvDsRIQ48d3HOIJ81hkn78S3H2n_U,3411
|
|
425
|
-
maxframe/tensor/datasource/full.py,sha256=
|
|
448
|
+
maxframe/tensor/datasource/full.py,sha256=uCzq53CA7Bg7HUO72wTRkcckQ_hMh20584ZQZ1fxQ4U,6276
|
|
426
449
|
maxframe/tensor/datasource/arange.py,sha256=jqUF1P1Smu2Bl1j5uOe_MM1EPft8heJu8WSmDmyFiDc,5476
|
|
427
|
-
maxframe/tensor/datasource/array.py,sha256=
|
|
450
|
+
maxframe/tensor/datasource/array.py,sha256=uWK2gJSYMGTBIgXdF_-QZB17fPemyCvBoV40AVPwlqA,13054
|
|
428
451
|
maxframe/tensor/datasource/from_sparse.py,sha256=ki_cSjqrUccChg2uqlXy1xF10c4YANA4QP_UDl_LZnA,1546
|
|
429
452
|
maxframe/tensor/datasource/ones.py,sha256=ER4NJ53HuGlSsz-cRXz9YSwZkokdc2wkBKdB2G1BMX8,5009
|
|
430
|
-
maxframe/tensor/datasource/tests/test_datasource.py,sha256=
|
|
453
|
+
maxframe/tensor/datasource/tests/test_datasource.py,sha256=6NWN9OgA-MioLjqhzTNIeCIP9k9i3ziPYbeyxPygPwY,7653
|
|
431
454
|
maxframe/tensor/datasource/tests/__init__.py,sha256=FEFOVLi3o2GpZoedTtLYvbie0eQBehJIjtCrWca2ZHw,596
|
|
432
455
|
maxframe/tensor/rechunk/__init__.py,sha256=pQ4vh6rNzxjIkxrWTxXjAcTDmUw3961-H1f__-lJl6A,797
|
|
433
456
|
maxframe/tensor/rechunk/rechunk.py,sha256=ltvGlUQxzoHSE7bC6J6uQ8sO-YhuFpxmj8-ArJJXIoY,1392
|
|
434
|
-
maxframe/tensor/merge/
|
|
457
|
+
maxframe/tensor/merge/concatenate.py,sha256=q0qVpizcU7E6op6D54bF4bl2eMLIJOOwb8AkG1jrDCE,3213
|
|
458
|
+
maxframe/tensor/merge/vstack.py,sha256=FzuynVGKkNiOXbzp4Jkde0VMxzs_FfxkxO7J0UU9nhs,2264
|
|
459
|
+
maxframe/tensor/merge/__init__.py,sha256=NCuoHVwBtVUQnl8-0ph9cT5ARRn3pTdqZt76-XSvpvs,686
|
|
435
460
|
maxframe/tensor/merge/stack.py,sha256=4ZMVqtJQ0nQtbtnJKTX0Z_fSUn8slLLSO56mFT-b0gE,4145
|
|
436
461
|
maxframe/tensor/merge/tests/__init__.py,sha256=FEFOVLi3o2GpZoedTtLYvbie0eQBehJIjtCrWca2ZHw,596
|
|
437
|
-
maxframe/tensor/merge/tests/test_merge.py,sha256=
|
|
462
|
+
maxframe/tensor/merge/tests/test_merge.py,sha256=PfZ883l7xHURs7F1PQl-jg3Kf8IN4qzBMlYv3K5_440,2210
|
|
438
463
|
maxframe/tensor/ufunc/ufunc.py,sha256=D39r6-KVwlPkRr9d3CLwHqO4dWgXsqRQOYZCBiKEEUE,7183
|
|
439
464
|
maxframe/tensor/ufunc/__init__.py,sha256=_GZckaiuuxNQdJS2tCMsgrxjEevJ0Irg4CTFDU_kQTI,795
|
|
440
465
|
maxframe/tensor/fetch/__init__.py,sha256=mGwv_bpJXkb_jgg1YCpOmLhaNU_rWBNZdPi5dr2HGNo,647
|
|
@@ -443,9 +468,9 @@ maxframe/tensor/reduction/nanprod.py,sha256=m7au8rYO8jgr4kYf0Tp5EizZUaspvrHgDJNF
|
|
|
443
468
|
maxframe/tensor/reduction/max.py,sha256=Z6TQSwaDcOmSstjKjntqKfinvF0XWNTGYDvvV-AIxgk,3979
|
|
444
469
|
maxframe/tensor/reduction/allclose.py,sha256=8C9E01aUZL-rGjlx_S1zN504peV_7vjjQA3DZSPElOI,2942
|
|
445
470
|
maxframe/tensor/reduction/nanmin.py,sha256=hq3TE7pM9HGakNEOIE9QPHG2O8soa2uPBrVsVHYsYyw,3947
|
|
446
|
-
maxframe/tensor/reduction/nanvar.py,sha256=
|
|
447
|
-
maxframe/tensor/reduction/count_nonzero.py,sha256=
|
|
448
|
-
maxframe/tensor/reduction/nanmean.py,sha256=
|
|
471
|
+
maxframe/tensor/reduction/nanvar.py,sha256=hRrorXczfi-wrQFjeSAmomVL5Dn1esXNsltglFA4l3k,5470
|
|
472
|
+
maxframe/tensor/reduction/count_nonzero.py,sha256=bnkLSm1mEVTXJmiT9gkqCeLbTbk8Am5vghtT64mx2Ak,2754
|
|
473
|
+
maxframe/tensor/reduction/nanmean.py,sha256=J63uIJxq9RA1RRd1mJc69IM0FBX4K86hrsXgIfZ69cQ,3971
|
|
449
474
|
maxframe/tensor/reduction/nancumsum.py,sha256=r47LTZ65-m6u1vr-zoxKw50Q3wOg2gwWy3ewHtV1jRg,3283
|
|
450
475
|
maxframe/tensor/reduction/nansum.py,sha256=2x-RMKHxN9ikE8tm455wpKtYT1i-lKtuE03mKQopzA0,4066
|
|
451
476
|
maxframe/tensor/reduction/std.py,sha256=PDVJRjr7G7gQQjywhfvbIVsfUAep1-cjjH49mi346XI,5135
|
|
@@ -455,8 +480,8 @@ maxframe/tensor/reduction/core.py,sha256=3uekPz3RdKS2HINqtLOY1Yzkk8BqMuKYlXBfY3O
|
|
|
455
480
|
maxframe/tensor/reduction/all.py,sha256=UX8WvzKd8s2M7OHzbirK63RH4XVRNmkU10tHNuq3W3w,3467
|
|
456
481
|
maxframe/tensor/reduction/nanargmin.py,sha256=ncJEvf2dZxF6URk4Yv3kadDnXjzevIJBD9Rz_PEckG8,2203
|
|
457
482
|
maxframe/tensor/reduction/min.py,sha256=U59kxhcL5JsYVoXRfUmCmY8e_MfBKU7WRIPBFCuxUSU,3980
|
|
458
|
-
maxframe/tensor/reduction/mean.py,sha256=
|
|
459
|
-
maxframe/tensor/reduction/var.py,sha256=
|
|
483
|
+
maxframe/tensor/reduction/mean.py,sha256=JSDPHYzfS4Z3sKVCN0BeERIap5qEKorLWKTXnWY3C0s,4379
|
|
484
|
+
maxframe/tensor/reduction/var.py,sha256=LQa7FZHAfD0mtR52qkfPYO9tV0oFDfF8yNeFO6a5pgE,6304
|
|
460
485
|
maxframe/tensor/reduction/nanmax.py,sha256=nce8mD6zIsC9LSQ0fiaRBG6gBL8tNbQpRCDDrP_HaqU,3950
|
|
461
486
|
maxframe/tensor/reduction/array_equal.py,sha256=bLbKT1tGSKfqp3L8-AzWEdhBYkEnzUHvyWHEfP9ouEk,1795
|
|
462
487
|
maxframe/tensor/reduction/sum.py,sha256=SupE9cxNTGCRZPdS9i-a40U4rRsi5ruc4FZsJJgLGJ4,4246
|
|
@@ -469,7 +494,7 @@ maxframe/tensor/reduction/nanstd.py,sha256=ZPHxKLowx2FrQS_DI5VDeU3SvyBzi53-_87nG
|
|
|
469
494
|
maxframe/tensor/reduction/nancumprod.py,sha256=_ri_LhT0lH4jPxFdSHh7gjAMRF9_0rNlCcAbPs_PpMg,3121
|
|
470
495
|
maxframe/tensor/reduction/argmin.py,sha256=OVR6chF48tQEpoTYbQGWGF6StqRFp9vmwNRtuToQdrg,3099
|
|
471
496
|
maxframe/tensor/reduction/tests/__init__.py,sha256=FEFOVLi3o2GpZoedTtLYvbie0eQBehJIjtCrWca2ZHw,596
|
|
472
|
-
maxframe/tensor/reduction/tests/test_reduction.py,sha256=
|
|
497
|
+
maxframe/tensor/reduction/tests/test_reduction.py,sha256=EbqJob7OysLfX7TRpL_owIAknwQmzbE7n83brxW7Aik,6178
|
|
473
498
|
maxframe/tensor/arithmetic/copysign.py,sha256=HficiUZ-cdCbkoG9Rs3iz54tgbrHLZUsFa36TFZDn7s,2505
|
|
474
499
|
maxframe/tensor/arithmetic/spacing.py,sha256=x_7pCRUX5wUBFsSMjH_RrkwKWx-303Mli0BbHi5BwJA,2313
|
|
475
500
|
maxframe/tensor/arithmetic/arctan.py,sha256=0neaMOGmcUwhTOV-z93UFSP4i0EDuDaWCb2Suj6kzFw,3562
|
|
@@ -518,7 +543,7 @@ maxframe/tensor/arithmetic/real.py,sha256=cAtf4ID5STaSaTNPdYw-ioSKIBO-09VoSWSnnv
|
|
|
518
543
|
maxframe/tensor/arithmetic/around.py,sha256=6gop_55BB3SVYvaxhZ6Y1qBVxScMVWfnv-C1BxkA_4M,3826
|
|
519
544
|
maxframe/tensor/arithmetic/nan_to_num.py,sha256=CA0q3CCh0Ya9EOlGDI9HgdxbW9agATThr-bY0hijdVQ,3249
|
|
520
545
|
maxframe/tensor/arithmetic/ceil.py,sha256=0u0u3pD2XF8aKxkJQZiPpGjntIgf5q6PmKbxgqAGmRo,2252
|
|
521
|
-
maxframe/tensor/arithmetic/isclose.py,sha256=
|
|
546
|
+
maxframe/tensor/arithmetic/isclose.py,sha256=0cb5-5HMg0j6X9U_iv7kNgtjR2S013eo0et__HU-U0I,3695
|
|
522
547
|
maxframe/tensor/arithmetic/maximum.py,sha256=sc4EdXDzZ_Dq50Ik5rh_Vg1hXfP-RS-YlfMDzFGzZGA,3694
|
|
523
548
|
maxframe/tensor/arithmetic/log10.py,sha256=kHkxvGYbn2JVYwYjQ2RbKN2VbtrzPCnhYT_7ESLUpsQ,3024
|
|
524
549
|
maxframe/tensor/arithmetic/frexp.py,sha256=yJ9us5ilLUkVxLnc9QB2PVhEaJGJIXDctaYNlv7yyZI,3146
|
|
@@ -570,16 +595,16 @@ maxframe/tensor/arithmetic/sin.py,sha256=Ux8mQS-pb3F7PCD_35Ghl7p2e2yF2jiS_1WC9zi
|
|
|
570
595
|
maxframe/tensor/arithmetic/reciprocal.py,sha256=q3TKbF209Kbv7HD0hM9AF7xlQ9zXHrpHaFc9dHFuplE,2375
|
|
571
596
|
maxframe/tensor/arithmetic/bitxor.py,sha256=l1bRVnzHSa7N7-nd2MzDxF33guNoml8mPB9t9_0QpMc,2908
|
|
572
597
|
maxframe/tensor/arithmetic/tests/__init__.py,sha256=CzfbLNqqm1yR1i6fDwCd4h1ptuKVDbURFVCb0ra7QNc,642
|
|
573
|
-
maxframe/tensor/arithmetic/tests/test_arithmetic.py,sha256=
|
|
598
|
+
maxframe/tensor/arithmetic/tests/test_arithmetic.py,sha256=gK17go0jF7l_dGCmhOqZxLPaiiu9oK5wvw98IZ7rilI,11421
|
|
574
599
|
maxframe/tensor/indexing/choose.py,sha256=TNsRP_1zoMnqfJyqk_RgPtRPFCisEXq5CMh3FUmPZ-8,7584
|
|
575
600
|
maxframe/tensor/indexing/nonzero.py,sha256=JN5TyPzS1LIIjIaieXsDkffCjuq-CPBUDG3qMvNsIWI,3646
|
|
576
601
|
maxframe/tensor/indexing/slice.py,sha256=VbalHoaXUGulPjskcQ4PoiZQhB2q3P1R8MrGKY2MqGw,1022
|
|
577
602
|
maxframe/tensor/indexing/setitem.py,sha256=ieJ1IiwT5GFNvBBEEivt_jD6bQiMSK_ZbvEAtSaUTJQ,4352
|
|
578
603
|
maxframe/tensor/indexing/__init__.py,sha256=v2uUjRm0rSDyxG9IVayCDo0gKY9OQnk1Z-4PX8XQuqs,1611
|
|
579
|
-
maxframe/tensor/indexing/getitem.py,sha256=
|
|
604
|
+
maxframe/tensor/indexing/getitem.py,sha256=EWlP6xmVxfGn-mPDDHANEO7NiHhrnBrjXeuTg8gcfRU,5623
|
|
580
605
|
maxframe/tensor/indexing/core.py,sha256=8iNHn9nObBoXyB6uhI3NHEFHMcmOn1WSPp5cC4utv2w,7022
|
|
581
606
|
maxframe/tensor/indexing/unravel_index.py,sha256=jQ3KnJ8UFg5K8uLsTzIUABQXPiTiG2Kkp5VO2yVy1H4,3223
|
|
582
|
-
maxframe/tensor/indexing/flatnonzero.py,sha256=
|
|
607
|
+
maxframe/tensor/indexing/flatnonzero.py,sha256=T32TDhjmaMCw90RdUZA33QsIlXrL3BrclEBcRBKw4KQ,1706
|
|
583
608
|
maxframe/tensor/indexing/fill_diagonal.py,sha256=L8F-C_g2h4fi_JX8wIU2mBOavZaLJZZCp7kwK-wIAmU,5305
|
|
584
609
|
maxframe/tensor/indexing/take.py,sha256=g03C9ehHqmEOxXUZEdQH5I810pPSstadRF61y6IcuyQ,4254
|
|
585
610
|
maxframe/tensor/indexing/compress.py,sha256=EBj2d4dtc60GSVBOhDWonSzzHGrD7QDJhOsMEvVuuKQ,4029
|
|
@@ -601,7 +626,7 @@ maxframe/tensor/random/logistic.py,sha256=X_o_rfdvdsNc8PWaaBnwqOpaMEHiJJ8dy5DYs_
|
|
|
601
626
|
maxframe/tensor/random/beta.py,sha256=Il-bnSvryGlWQmyk5GU_zLRQuerqX4iVRpA8zqNF3bk,3113
|
|
602
627
|
maxframe/tensor/random/choice.py,sha256=fwvKc8CKtoddoSzjqs9g7iC_haKMRVF9FchSJ3qPeq0,5958
|
|
603
628
|
maxframe/tensor/random/__init__.py,sha256=QSAef7wgESPJmYrliksHRFfgVim6GrIZUOye5n_DCGI,7011
|
|
604
|
-
maxframe/tensor/random/core.py,sha256=
|
|
629
|
+
maxframe/tensor/random/core.py,sha256=AIdcAFmr9yPd-uQCyJHv7GbXqo5rs3RuVdHQ59-0raY,7206
|
|
605
630
|
maxframe/tensor/random/multinomial.py,sha256=QZ2c9tYq99cj3QW60DNG7wkzENnt5Xfdedl7yUazVDs,4771
|
|
606
631
|
maxframe/tensor/random/exponential.py,sha256=QwHMgmsFypbmQ5JqU7BSlyKyhmZU4GNXy78AHUJzEec,3583
|
|
607
632
|
maxframe/tensor/random/pareto.py,sha256=pPhlJzH68JsmL900sIALlmEstLy1YQgdPUfe3IacEMw,5389
|
|
@@ -634,16 +659,6 @@ maxframe/tensor/random/wald.py,sha256=HQRsQet9FxxCzhHm1EQtkFd_MsexinSkJXU_TgNCpD
|
|
|
634
659
|
maxframe/tensor/random/binomial.py,sha256=-PM5464Z8opuP0eP7MMevy9QOGIAYSdkm1rbv-HeKOQ,5291
|
|
635
660
|
maxframe/tensor/random/tests/__init__.py,sha256=CzfbLNqqm1yR1i6fDwCd4h1ptuKVDbURFVCb0ra7QNc,642
|
|
636
661
|
maxframe/tensor/random/tests/test_random.py,sha256=2hGaik9A783PFuuxIrhCDZ2O-SYKwUh98LKPwf1psLs,4275
|
|
637
|
-
maxframe/tensor/base/astype.py,sha256=zeLfyWkuc1LxMIiIO6ghZ_enR7IPgq0Hy4O18h8JQPk,4394
|
|
638
|
-
maxframe/tensor/base/where.py,sha256=fMGBfppo4QToHX-B3rtTorstz83m8uWWhOQj6Qbu34U,4000
|
|
639
|
-
maxframe/tensor/base/unique.py,sha256=EO7EYn0mHr9aZ7hVZxwiKNSPwbXvrpDWRWP5PksfgxY,6721
|
|
640
|
-
maxframe/tensor/base/__init__.py,sha256=FMnuIAaGUObPZpXBnN-9eTSmmdq0Cdb-VI_JNHKVy3Q,1079
|
|
641
|
-
maxframe/tensor/base/transpose.py,sha256=yDfr1vD6doNlsuKuU94daE0IgIwGMuyBfXhKauQ1UaM,3414
|
|
642
|
-
maxframe/tensor/base/ravel.py,sha256=pJkez1NHoLqVMBPm5aA8uMNFeWURTAJV_iU98Vqr-50,3173
|
|
643
|
-
maxframe/tensor/base/broadcast_to.py,sha256=p0hi128OWlj3lXmacvxMhZOjUCq8fiA3yjy9nESZXgE,2686
|
|
644
|
-
maxframe/tensor/base/atleast_1d.py,sha256=rCw_Ik6Y4isiMuC2Kvs0F7nDdSvx9RPahoq_v6D66Jo,1918
|
|
645
|
-
maxframe/tensor/base/tests/__init__.py,sha256=FEFOVLi3o2GpZoedTtLYvbie0eQBehJIjtCrWca2ZHw,596
|
|
646
|
-
maxframe/tensor/base/tests/test_base.py,sha256=syedkA0jMjevYouCL3vCMuWpJ-3hfOc28wKXqF_MMno,2843
|
|
647
662
|
maxframe/remote/run_script.py,sha256=Z1j662AwDF9sr-z1xnPTlrfSTixi2RBZjccXEilfpGA,3556
|
|
648
663
|
maxframe/remote/__init__.py,sha256=D1nfsnjU_cTzwpo_0icFvEPgkFJeCsqv3IOg6_Ho68k,729
|
|
649
|
-
maxframe/remote/core.py,sha256=
|
|
664
|
+
maxframe/remote/core.py,sha256=Ydb2jAyOVJS32nivMfknbg6y_fwcocy2Lskec2_5_kk,6527
|