maxframe 1.0.0rc2__cp310-cp310-macosx_10_9_universal2.whl → 1.0.0rc3__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 +3 -2
- maxframe/config/config.py +16 -9
- maxframe/config/validators.py +42 -12
- maxframe/conftest.py +13 -2
- maxframe/core/__init__.py +2 -13
- maxframe/core/entity/__init__.py +0 -4
- 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/datasource/read_odps_query.py +1 -1
- maxframe/dataframe/datasource/read_odps_table.py +1 -1
- maxframe/dataframe/datastore/to_odps.py +1 -1
- maxframe/dataframe/operators.py +1 -17
- maxframe/dataframe/reduction/core.py +2 -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 +5 -5
- maxframe/{odpsio → io/odpsio}/tableio.py +10 -4
- maxframe/io/odpsio/tests/__init__.py +13 -0
- maxframe/{odpsio → io/odpsio}/tests/test_schema.py +3 -3
- 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 +57 -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 +19 -5
- maxframe/learn/contrib/xgboost/regressor.py +3 -10
- maxframe/learn/contrib/xgboost/train.py +25 -15
- maxframe/{core/operator/fuse.py → learn/core.py} +7 -10
- maxframe/lib/mmh3.cpython-310-darwin.so +0 -0
- maxframe/protocol.py +1 -15
- maxframe/remote/core.py +4 -8
- maxframe/serialization/__init__.py +1 -0
- maxframe/serialization/core.cpython-310-darwin.so +0 -0
- 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/merge/__init__.py +2 -0
- maxframe/tensor/merge/concatenate.py +98 -0
- maxframe/tensor/merge/tests/test_merge.py +30 -1
- maxframe/tensor/merge/vstack.py +70 -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 +15 -61
- maxframe-1.0.0rc3.dist-info/METADATA +104 -0
- {maxframe-1.0.0rc2.dist-info → maxframe-1.0.0rc3.dist-info}/RECORD +101 -91
- {maxframe-1.0.0rc2.dist-info → maxframe-1.0.0rc3.dist-info}/WHEEL +1 -1
- maxframe_client/fetcher.py +23 -42
- maxframe_client/session/graph.py +8 -2
- maxframe_client/session/odps.py +54 -18
- maxframe_client/tests/test_fetcher.py +1 -1
- maxframe_client/tests/test_session.py +14 -2
- 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.0rc3.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.0rc3.dist-info/RECORD,,
|
|
2
|
+
maxframe-1.0.0rc3.dist-info/WHEEL,sha256=TOs0OZkR3LDvIFtBxXCV_zV168DLXPOf8nS8J9-Nn9Y,114
|
|
3
|
+
maxframe-1.0.0rc3.dist-info/top_level.txt,sha256=64x-fc2q59c_vXwNUkehyjF1vb8JWqFSdYmUqIFqoTM,31
|
|
4
|
+
maxframe-1.0.0rc3.dist-info/METADATA,sha256=_-16SK-Jz3GNaM3byVxjvE7ZUTV_kZjFa4Zq9ZbkN70,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=B6cXX7WP34ys0ukT-JekWprlwweXAy1ljw00T4800Z0,8339
|
|
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=YEr9bCY_hOmVhkJt4wDIyBkkuAimheWzL5733YCkEyw,10113
|
|
11
11
|
maxframe_client/tests/__init__.py,sha256=FEFOVLi3o2GpZoedTtLYvbie0eQBehJIjtCrWca2ZHw,596
|
|
12
|
-
maxframe_client/tests/test_fetcher.py,sha256=
|
|
12
|
+
maxframe_client/tests/test_fetcher.py,sha256=7mVDO456wcUMajguTJ4FWkSpuonLfinFfiz31ZYnHNs,4158
|
|
13
13
|
maxframe_client/session/task.py,sha256=v0tnS2QtkiNt7D47l_3QjXOqNqlkD7NGL8dJ_h4Fr_E,11101
|
|
14
|
-
maxframe_client/session/graph.py,sha256=
|
|
14
|
+
maxframe_client/session/graph.py,sha256=rRilIWsiVfj_N160s8uv2s7mi_nhx7JxSa9BkhyLRnE,4376
|
|
15
15
|
maxframe_client/session/__init__.py,sha256=KPqhSlAJiuUz8TC-z5o7mHDVXzLSqWwrZ33zNni7piY,832
|
|
16
16
|
maxframe_client/session/consts.py,sha256=R37BxDF3kgCy0qmDdwLaH5jB7mb7SzfYV6g9yHBKAwk,1344
|
|
17
|
-
maxframe_client/session/odps.py,sha256=
|
|
17
|
+
maxframe_client/session/odps.py,sha256=vIV3HfuqIRnVNskau4Eap6secuX_MpK-oxdCBX0l9Rk,20690
|
|
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=
|
|
21
|
+
maxframe/conftest.py,sha256=zyxq9OfQ9pgL5QtG5DCOxTjYqXs5bk3QLN7xVgin6ig,4726
|
|
22
22
|
maxframe/opcodes.py,sha256=1Da6d3a82mecIHmnyZve4gSH_KN-q3Snl0nSygue2Ng,10191
|
|
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=
|
|
25
|
+
maxframe/protocol.py,sha256=LRwCTbnX1DLY5OaG2OwP3NR3truWtwpuvU8OaG9mypE,18841
|
|
26
|
+
maxframe/_utils.cpython-310-darwin.so,sha256=h4tJ4imBVtNIAQ0-4VFNWn5WAhgafrzRhd0znHOHUjM,846464
|
|
27
27
|
maxframe/session.py,sha256=o2jp5NQP1pVMkp4AujN_3DB1HffZ0rMd5EbYZiLJxls,36205
|
|
28
28
|
maxframe/__init__.py,sha256=SqTFS_1o2HDuVY1mhS0ELlqDuM-biwM_MN0EYGkJLf0,1004
|
|
29
|
-
maxframe/utils.py,sha256=
|
|
29
|
+
maxframe/utils.py,sha256=yCKkWCTu6erwUeMFipH0RKKaG7CA3mFjmmeUHmv8hAw,33138
|
|
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=AZRBxWzSq0rcJ3hRNg8GI6EbIsbk9O4-5MeZd6ZUkGk,17657
|
|
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
38
|
maxframe/dataframe/core.py,sha256=5CMPn9kuKVMhUtFi3QLy6utFN71EXkMndTyDUyb-1Rg,74374
|
|
39
39
|
maxframe/dataframe/initializer.py,sha256=4BpZJB8bbyFnABUYWBrk_qzzrogEsWgFuU21Ma9IsjY,10264
|
|
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
|
|
@@ -84,10 +84,10 @@ 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=08GAbK51a22pOG8pRLuPLSV51iK_1y28U7ZHa03ZYZo,10220
|
|
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=cloTgtWRtTUIRCsP3ufih-qHCVKBfoX8khEv-V4_7dE,9228
|
|
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
|
|
@@ -141,7 +141,7 @@ maxframe/dataframe/groupby/tests/test_groupby.py,sha256=ctkAniUwunVsgCG-b6b2qKSC
|
|
|
141
141
|
maxframe/dataframe/datastore/__init__.py,sha256=Ujd4ix4UJ7Zq-sV2pXTRDvZkKUvtt8sr-FfiUoi6Kh4,784
|
|
142
142
|
maxframe/dataframe/datastore/core.py,sha256=hLGhqYxX73tq9sOFxMyYBRMawTnsVQqluW5FcE3YHfE,743
|
|
143
143
|
maxframe/dataframe/datastore/to_csv.py,sha256=xVfpEsicD5A5uXLSdCN08K8uGyWB4QxnRcAbgBVUzbs,7747
|
|
144
|
-
maxframe/dataframe/datastore/to_odps.py,sha256
|
|
144
|
+
maxframe/dataframe/datastore/to_odps.py,sha256=-X1GQfOfRePyASlG5vP_xAQoE3K_ECcZen5isWRZA3o,6416
|
|
145
145
|
maxframe/dataframe/datastore/tests/__init__.py,sha256=FEFOVLi3o2GpZoedTtLYvbie0eQBehJIjtCrWca2ZHw,596
|
|
146
146
|
maxframe/dataframe/datastore/tests/test_to_odps.py,sha256=EaFprN1mErrqqy54Rzbw6PQxPbBCgxDP0E055RIIH0g,1296
|
|
147
147
|
maxframe/dataframe/fetch/__init__.py,sha256=E3VjxLRKjtr-D__K-c0aRETvBG7CQRG1iEtH0Qghq0s,653
|
|
@@ -156,7 +156,7 @@ maxframe/dataframe/reduction/unique.py,sha256=Dhghnf9mvgS8p-ETJUlhfJajBEyVZPBp1I
|
|
|
156
156
|
maxframe/dataframe/reduction/std.py,sha256=PYeh6-yton9vUI8D-dTlnXsWKCi-uDpop4UExmay7Ec,1355
|
|
157
157
|
maxframe/dataframe/reduction/str_concat.py,sha256=wbb4Y4ZDyou_ixR6ukJ8wQw74nzI05tToNWaWSirbSA,1657
|
|
158
158
|
maxframe/dataframe/reduction/__init__.py,sha256=ZadA_lXtrr1nQyb6vJrv_eb82bXiiiDHIn93F4O9-AU,4190
|
|
159
|
-
maxframe/dataframe/reduction/core.py,sha256=
|
|
159
|
+
maxframe/dataframe/reduction/core.py,sha256=xoEiVQQtl1eLtJ4AY6xqy3tCkyi6WZwSLbcv-f8-B14,30395
|
|
160
160
|
maxframe/dataframe/reduction/all.py,sha256=h3Y04RJ-mTxAggX1-BIpuiyhNofQEkBzsAxKOX--kv0,1966
|
|
161
161
|
maxframe/dataframe/reduction/cummin.py,sha256=CA9wjhx_ZFfk6b3KbbDykWZiyXsfwLBUODKn36WuGug,1013
|
|
162
162
|
maxframe/dataframe/reduction/min.py,sha256=8Kh07yoTRWaCWGKxZ4a64_tlIljR8GsjlbwdsjNmPTw,1660
|
|
@@ -258,17 +258,18 @@ maxframe/dataframe/indexing/reindex.py,sha256=mrDBxDZwbaqhjwy_fWGRtWI6MhJ6O1sR1A
|
|
|
258
258
|
maxframe/dataframe/indexing/tests/__init__.py,sha256=FEFOVLi3o2GpZoedTtLYvbie0eQBehJIjtCrWca2ZHw,596
|
|
259
259
|
maxframe/dataframe/indexing/tests/test_indexing.py,sha256=AcvF_exYVA6pf2giNzSAYfjAODbf207UtKSpTG68ssQ,15611
|
|
260
260
|
maxframe/learn/__init__.py,sha256=ii-8fJO-ubA3wRej1S1jXsb62zrS5MaAWc2gqQAAHFw,632
|
|
261
|
+
maxframe/learn/core.py,sha256=JeKLITsz1WrKOTR6Air2lG28MtjamWtFnal4ynvprNw,756
|
|
261
262
|
maxframe/learn/utils/__init__.py,sha256=zpkZ-HBwv91vyMeBVs59J_u0uVQCXUkEzo_pW2h9q00,646
|
|
262
263
|
maxframe/learn/utils/core.py,sha256=_tskQMfdvr5VAV68fDzM0DSVF2S7SMDnNXA8j_gHmGI,1029
|
|
263
264
|
maxframe/learn/contrib/__init__.py,sha256=WvCqsncQZKtDURfK8ma9GoPHVVK02yW2ueom_kBMl44,632
|
|
264
265
|
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
|
|
266
|
+
maxframe/learn/contrib/xgboost/classifier.py,sha256=Atb17PYxoczaR9tOAgjVm87QLPWS1ow2Twxlvh6HyZA,3850
|
|
267
|
+
maxframe/learn/contrib/xgboost/dmatrix.py,sha256=r-3JfQNwv8Qgi6zxwSVlxolv8K82paofCBaR1u860rs,4742
|
|
268
|
+
maxframe/learn/contrib/xgboost/predict.py,sha256=ZW738ey1yNBK-pemDnJb5KHLci2B2QIItlzmzEOqt48,4879
|
|
268
269
|
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=
|
|
270
|
+
maxframe/learn/contrib/xgboost/core.py,sha256=KHPi--bAbWcd4bX_Nfuh3k9Sl-e6BW9Ck7PyIS9veUU,8035
|
|
271
|
+
maxframe/learn/contrib/xgboost/train.py,sha256=q7QsONrLmvHGw2v5YB2L3S94UVfkLP2tWRIKIdVethA,4469
|
|
272
|
+
maxframe/learn/contrib/xgboost/regressor.py,sha256=0Wuyt2nxyVqp3AHl4aro0WdXe0YhtXIcbJPTdboy_AI,2313
|
|
272
273
|
maxframe/learn/contrib/xgboost/tests/test_core.py,sha256=0Q3A1EFW30vsQLl7bSTTuw-ldlLEO43ljVSJBb8j1LM,1406
|
|
273
274
|
maxframe/learn/contrib/xgboost/tests/__init__.py,sha256=FEFOVLi3o2GpZoedTtLYvbie0eQBehJIjtCrWca2ZHw,596
|
|
274
275
|
maxframe/learn/contrib/pytorch/run_script.py,sha256=Joh0gwukGf3kqfBYRxL34hQjbULT6s3vNnmBdJ6NZP0,3111
|
|
@@ -276,42 +277,41 @@ maxframe/learn/contrib/pytorch/__init__.py,sha256=koagbwLwH1VNLTWYx29ckatBChZ_f9
|
|
|
276
277
|
maxframe/learn/contrib/pytorch/run_function.py,sha256=oMDMVqDFQJ5d8DllZrqqRmBT2lx1cTmAv0hdQlO2GrY,3244
|
|
277
278
|
maxframe/learn/contrib/pytorch/tests/__init__.py,sha256=FEFOVLi3o2GpZoedTtLYvbie0eQBehJIjtCrWca2ZHw,596
|
|
278
279
|
maxframe/learn/contrib/pytorch/tests/test_pytorch.py,sha256=ztAli4QwNUDfvM7M2LulJItFNWlUDFc_MByDF2KAcTI,1402
|
|
279
|
-
maxframe/core/__init__.py,sha256=
|
|
280
|
+
maxframe/core/__init__.py,sha256=nHHLxzmvyJQC9870XzBjEQmOIzv1CZs2FIO8ntNgd34,1457
|
|
280
281
|
maxframe/core/mode.py,sha256=uRzQDTu471APFDOx12NkTgZiPB-YiCuPhmakhEtIz3M,3011
|
|
281
282
|
maxframe/core/base.py,sha256=3ZNLtl0jZWY5ZIwmIJF1-khF-DYxoeHxAMMiOCwpaBA,4535
|
|
282
|
-
maxframe/core/entity/tileables.py,sha256=
|
|
283
|
-
maxframe/core/entity/__init__.py,sha256=
|
|
283
|
+
maxframe/core/entity/tileables.py,sha256=nPBdaJz66t_UWqO0utp7P9DPs5WAlx3lM4TXbgGHsQU,11271
|
|
284
|
+
maxframe/core/entity/__init__.py,sha256=9erZEQzE07BfJrQJDcEyHPo_XCIi5bJkKW3NvKhJhRo,1075
|
|
284
285
|
maxframe/core/entity/core.py,sha256=t7Ex9Yb7A1h_XwyRG88Fx4ZOai-NQKi2luRVS_jFPEo,4018
|
|
285
286
|
maxframe/core/entity/utils.py,sha256=IuNgFmBQFRioAA1hgZe6nTEggOmDY-iooZqncQQrV28,942
|
|
286
287
|
maxframe/core/entity/executable.py,sha256=HKXHXdPIyxg9i-OWmJxIY3KfXwX0x3xN9QcR5Xhc7dQ,10938
|
|
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=
|
|
288
|
+
maxframe/core/entity/output_types.py,sha256=Jrro-S4iI7BfaSe9hTq3zIAxG-hBENMU-hlN-kL5d8o,2536
|
|
289
|
+
maxframe/core/entity/objects.py,sha256=EnS0F2ageFTEvNfylqp21LTfTv3Q3p0X0Ur6HgWr2co,3781
|
|
290
|
+
maxframe/core/entity/tests/__init__.py,sha256=FEFOVLi3o2GpZoedTtLYvbie0eQBehJIjtCrWca2ZHw,596
|
|
291
|
+
maxframe/core/entity/tests/test_objects.py,sha256=-HS2dux6OdmwtMY6GRxwASq2gPSRY5S9YwTqeG-dGaA,1349
|
|
292
|
+
maxframe/core/graph/__init__.py,sha256=tqUUWDOXp2KFjO7zv1dN_-ttE-ef09-S1GNt8EQ35Bk,765
|
|
293
|
+
maxframe/core/graph/entity.py,sha256=3ifzsEDIxzDjeM9MhlSwgz92GuaEEoCVWxEkEu2xIgE,4863
|
|
293
294
|
maxframe/core/graph/core.pyx,sha256=kyqE5-X9Tc82wU4N_zsf8jNthAHWHTVRNFQWNNbzgpM,15923
|
|
294
|
-
maxframe/core/graph/core.cpython-310-darwin.so,sha256=
|
|
295
|
+
maxframe/core/graph/core.cpython-310-darwin.so,sha256=XEoyLFBaCft66yHc8SE01dF2G0MaWcE4-O4dS4EClUU,685616
|
|
295
296
|
maxframe/core/graph/tests/__init__.py,sha256=FEFOVLi3o2GpZoedTtLYvbie0eQBehJIjtCrWca2ZHw,596
|
|
296
297
|
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
|
|
298
|
+
maxframe/core/graph/builder/__init__.py,sha256=TYHKq5Y8iTRWprw6CZosdtq-NGV7Sa1u1CI6adR9hgk,640
|
|
299
|
+
maxframe/core/graph/builder/utils.py,sha256=zSgVV7Y976VkyzoR-dJ5M0CrEdLx_mU2FE4OibuUOvg,1316
|
|
300
|
+
maxframe/core/graph/builder/tileable.py,sha256=1rZbjE2WSIBBH3tBcx3puGbaZ2KPBctoxir2lxI3acQ,1173
|
|
301
|
+
maxframe/core/graph/builder/base.py,sha256=W_HcLBNwK8NwOuMqYq0B49DCzV6PY7FW0k1FxMbX-VM,2509
|
|
302
302
|
maxframe/core/tests/__init__.py,sha256=FEFOVLi3o2GpZoedTtLYvbie0eQBehJIjtCrWca2ZHw,596
|
|
303
303
|
maxframe/core/tests/test_mode.py,sha256=2QYqkPl-sW1LKlJF1pxiuMpnAYrbGibZRXHrNcZTO3M,2432
|
|
304
304
|
maxframe/core/operator/fetch.py,sha256=88Sc1DYTR0-H-z8DiUP8ZfcNatuRecHksgG0rqDvKqo,1510
|
|
305
|
-
maxframe/core/operator/__init__.py,sha256=
|
|
305
|
+
maxframe/core/operator/__init__.py,sha256=0IwJltVfYPGSq1cYbHigQ5zY50K3BwIkl3p8llgEC0w,1071
|
|
306
306
|
maxframe/core/operator/core.py,sha256=T2YYIleKiFxmufpHF7ELOztlJsYO-Kn4KYhQhY4jRUc,9263
|
|
307
307
|
maxframe/core/operator/shuffle.py,sha256=A_w62UxXRKyDNESo4Q0UGmCpuFfPlQXWmPyQGHdpz3A,4746
|
|
308
|
-
maxframe/core/operator/
|
|
309
|
-
maxframe/core/operator/
|
|
310
|
-
maxframe/core/operator/base.py,sha256=
|
|
308
|
+
maxframe/core/operator/utils.py,sha256=CVVamZJwbnequxDZmYcPLt4rcfAn8s77xk5hlr8eXh4,1706
|
|
309
|
+
maxframe/core/operator/objects.py,sha256=lEicZmIsR2sgWsH3oAeeYMde8C0TYeu2vkAyGj8WUVM,1965
|
|
310
|
+
maxframe/core/operator/base.py,sha256=gMSjgfOBJe0tMkFRukyGnGSInLVHw7xlxASlczeuzQg,15187
|
|
311
311
|
maxframe/core/operator/tests/test_core.py,sha256=57aICnc5VLqdVK7icAORTWC81bSjBxeeVWIJcha9J_0,1691
|
|
312
312
|
maxframe/core/operator/tests/__init__.py,sha256=FEFOVLi3o2GpZoedTtLYvbie0eQBehJIjtCrWca2ZHw,596
|
|
313
|
-
maxframe/config/config.py,sha256=
|
|
314
|
-
maxframe/config/validators.py,sha256=
|
|
313
|
+
maxframe/config/config.py,sha256=XFJKAYeRyVx-7JhV_7kyk93HvjCwXIyKL7k1FyIeujA,14935
|
|
314
|
+
maxframe/config/validators.py,sha256=UjbxMKZcDG98-9uCQESm_V56d-VUD7kQGV0KJghVbj8,2511
|
|
315
315
|
maxframe/config/__init__.py,sha256=g5lN3nP2HTAXa6ExGxU1NwU1M9ulYPmAcsV-gU7nIW8,656
|
|
316
316
|
maxframe/config/tests/__init__.py,sha256=FEFOVLi3o2GpZoedTtLYvbie0eQBehJIjtCrWca2ZHw,596
|
|
317
317
|
maxframe/config/tests/test_validators.py,sha256=U_7yKSl0FdVdDwKU1EsnCzNWaOXi8xrIC08x7hb_O4c,1240
|
|
@@ -321,12 +321,12 @@ maxframe/serialization/core.pxd,sha256=eBrSXiAPlX83Kbwml5IKJvqsIT03lPCeS6is9HplL
|
|
|
321
321
|
maxframe/serialization/pandas.py,sha256=Fj0HZsnTyZqDW4pTiz2AX_Clly6NwjAbQoaMhYwCocs,7315
|
|
322
322
|
maxframe/serialization/core.pyi,sha256=a3CQxlJv5aYyy__VNKEq5XsaHE-n0MPKE_9CcWu8Q34,2142
|
|
323
323
|
maxframe/serialization/arrow.py,sha256=VnGxNLU9UV_cUPTze43bEFCIbYLAOZnp2pAwVJbAIzQ,3418
|
|
324
|
-
maxframe/serialization/__init__.py,sha256=
|
|
324
|
+
maxframe/serialization/__init__.py,sha256=LrwesIKJ6MR_mhxW7qRXJXohH9waubZMR9-YicGDMUs,936
|
|
325
325
|
maxframe/serialization/maxframe_objects.py,sha256=R9WEjbHL0Kr56OGkYDU9fcGi7gII6fGlXhi6IyihTsM,1365
|
|
326
326
|
maxframe/serialization/numpy.py,sha256=8_GSo45l_eNoMn4NAGEb9NLXY_9i4tf9KK4EzG0mKpA,3213
|
|
327
327
|
maxframe/serialization/scipy.py,sha256=hP0fAW0di9UgJrGtANB2S8hLDbFBtR8p5NDqAMt5rDI,2427
|
|
328
328
|
maxframe/serialization/core.pyx,sha256=ZLVh7W7LgUb4KPb7rtuezRL6sQC4GNb3hLndAeSbiyU,35198
|
|
329
|
-
maxframe/serialization/core.cpython-310-darwin.so,sha256=
|
|
329
|
+
maxframe/serialization/core.cpython-310-darwin.so,sha256=xLolhJs6nDlt1n58mR4q41LqwWcXlvyMUF7uIhsPcAI,1159616
|
|
330
330
|
maxframe/serialization/tests/test_serial.py,sha256=Wj_I6CBQMaOtE8WtqdUaBoU8FhBOihht6SfeHOJV-zU,12511
|
|
331
331
|
maxframe/serialization/tests/__init__.py,sha256=FEFOVLi3o2GpZoedTtLYvbie0eQBehJIjtCrWca2ZHw,596
|
|
332
332
|
maxframe/serialization/serializables/field.py,sha256=atVgX-9rsVG1fTev7vjQArVwIEaCRjXoSEjpQ3mh6bA,16015
|
|
@@ -336,16 +336,22 @@ maxframe/serialization/serializables/field_type.py,sha256=Feh09hu8XyaxS5MaJ4za_p
|
|
|
336
336
|
maxframe/serialization/serializables/tests/test_field_type.py,sha256=T3ebXbUkKveC9Pq1nIl85e4eYascFeJ52d0REHbz5jo,4381
|
|
337
337
|
maxframe/serialization/serializables/tests/__init__.py,sha256=FEFOVLi3o2GpZoedTtLYvbie0eQBehJIjtCrWca2ZHw,596
|
|
338
338
|
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/
|
|
339
|
+
maxframe/io/__init__.py,sha256=FEFOVLi3o2GpZoedTtLYvbie0eQBehJIjtCrWca2ZHw,596
|
|
340
|
+
maxframe/io/odpsio/tableio.py,sha256=w__VRoxp8HEoPEactcJXd5FF7Qg5Hqul9LVmLLlJxj8,24117
|
|
341
|
+
maxframe/io/odpsio/arrow.py,sha256=2x2N9UvihtXRBA5Ym7tMxqpHQbWi-9hq2lJ_tatETiI,3926
|
|
342
|
+
maxframe/io/odpsio/__init__.py,sha256=VD_mvxljDKDfJHYuN3OpjJWzHqFT5DKykIvECahGu0w,902
|
|
343
|
+
maxframe/io/odpsio/volumeio.py,sha256=nESBAz9Bn77sKh8vTa52SknzZffcmKkrxhMv_kpZKP0,2055
|
|
344
|
+
maxframe/io/odpsio/schema.py,sha256=zMEDu5sOYEyzWxj8Hf58hWyoxdTOTGGQ768lIpqGf7M,12318
|
|
345
|
+
maxframe/io/odpsio/tests/test_tableio.py,sha256=HFSx2R7Bj4O1bGM-H9fMQkXjNUmvvT1SIUwsIcw6M2c,5606
|
|
346
|
+
maxframe/io/odpsio/tests/__init__.py,sha256=FEFOVLi3o2GpZoedTtLYvbie0eQBehJIjtCrWca2ZHw,596
|
|
347
|
+
maxframe/io/odpsio/tests/test_schema.py,sha256=Tum2qlGskOKddekngRa1nFhJc-HH60Uc8h-YKrDAPaE,11968
|
|
348
|
+
maxframe/io/odpsio/tests/test_arrow.py,sha256=SQ9EmI9_VOOC8u6Rg6nh3IPC2fPbLvJ9HwtpMNDRhL8,3106
|
|
349
|
+
maxframe/io/odpsio/tests/test_volumeio.py,sha256=JlKn_pDU5bCxoPvt7GUJYfCRJIVO1YgCiHPBXHxFer8,2868
|
|
350
|
+
maxframe/io/objects/__init__.py,sha256=PtpSp5t1rGJ1DD0IjQs6oSHkOxT2JDMLfCaDz8VUCZ8,754
|
|
351
|
+
maxframe/io/objects/core.py,sha256=r9X1Cu9FNUdarMFiTPWX_MPcE8AW5e_d_AsFWjdZDP8,4577
|
|
352
|
+
maxframe/io/objects/tensor.py,sha256=F0aObDLIi_2ND5x-uVogi2A29kIuyhKtZLyZqxI13iM,2673
|
|
353
|
+
maxframe/io/objects/tests/test_object_io.py,sha256=g5vi7Y8ZrR7jrp1FUwXT-uM6l57Kea5wkKZk7iovvAA,3092
|
|
354
|
+
maxframe/io/objects/tests/__init__.py,sha256=FEFOVLi3o2GpZoedTtLYvbie0eQBehJIjtCrWca2ZHw,596
|
|
349
355
|
maxframe/tests/test_utils.py,sha256=imfe7sN1_4EjWuT4qMYMwjOjgL0t5oewyhebBGPDBhY,11504
|
|
350
356
|
maxframe/tests/test_protocol.py,sha256=9DWr3z1AI2DUMnLyak91PKSfV_ILkOtwAZPCmM42kcg,6103
|
|
351
357
|
maxframe/tests/__init__.py,sha256=FEFOVLi3o2GpZoedTtLYvbie0eQBehJIjtCrWca2ZHw,596
|
|
@@ -357,7 +363,7 @@ maxframe/lib/compression.py,sha256=k9DSrl_dNBsn5azLjBdL5B4WZ6eNvmCrdMbcF1G7JSc,1
|
|
|
357
363
|
maxframe/lib/__init__.py,sha256=CzfbLNqqm1yR1i6fDwCd4h1ptuKVDbURFVCb0ra7QNc,642
|
|
358
364
|
maxframe/lib/mmh3.pyi,sha256=AOp_XqbA5-NwepeeBeG0OFJj5tjEAFLzcViyRNZ0eVI,1494
|
|
359
365
|
maxframe/lib/functools_compat.py,sha256=PMSkct9GIbzq-aBwTnggrOLNfLh4xQnYTIFMPblzCUA,2616
|
|
360
|
-
maxframe/lib/mmh3.cpython-310-darwin.so,sha256=
|
|
366
|
+
maxframe/lib/mmh3.cpython-310-darwin.so,sha256=AfVDHqyZsZlqlFI_o6MZAPq9nHVmZ8oQUk5jien7M7w,119784
|
|
361
367
|
maxframe/lib/mmh3_src/mmh3module.cpp,sha256=9J9eA42eKWTl546fvfQPNuIM3B2jpWSADpgIw3tr2jg,11604
|
|
362
368
|
maxframe/lib/mmh3_src/MurmurHash3.h,sha256=lg5uXUFyMBge2BWRn0FgrqaCFCMfDWoTXD4PQtjHrMA,1263
|
|
363
369
|
maxframe/lib/mmh3_src/MurmurHash3.cpp,sha256=kgrteG44VSftwp5hhD7pyTENDRU9wI_DqLD1493-bP0,8096
|
|
@@ -404,10 +410,10 @@ maxframe/lib/tblib/__init__.py,sha256=c4aVldbxJdS-bFsSDcmDQy_mW0qAcMrb4pHS2tjYhY
|
|
|
404
410
|
maxframe/lib/tblib/cpython.py,sha256=FQ0f6WTQyQHoMRhgPqrA0y0Ygxlbj5IC53guxA4h9Cw,2418
|
|
405
411
|
maxframe/lib/tblib/decorators.py,sha256=bcllK3kVuPnj6SNZGmlJGxTK0ovdt7TJDXrhA4UE5sQ,1063
|
|
406
412
|
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=
|
|
413
|
+
maxframe/tensor/__init__.py,sha256=F4iZBp8sd20XNgSFX8Bl8y6wOpEA4bmQ0wnoN4F5rVY,4392
|
|
414
|
+
maxframe/tensor/core.py,sha256=ouSU9TbFFShyvdJkyh9h6AUio97SXphs4-lz_w-7_fk,17945
|
|
415
|
+
maxframe/tensor/utils.py,sha256=wCx2ZBk_zmS2lJgtuUUGdqRSkhhnLAyeB0DTlIGZUyg,22411
|
|
416
|
+
maxframe/tensor/operators.py,sha256=XiYTFYLuKDMjEy-DZs5HKmcwvNgfJX3sGzIttAqNG8c,3338
|
|
411
417
|
maxframe/tensor/statistics/quantile.py,sha256=GYs4dlBwvUTu4-PZ9PnM4JTjzpQkS_8oFcOT85or404,9467
|
|
412
418
|
maxframe/tensor/statistics/__init__.py,sha256=FEFOVLi3o2GpZoedTtLYvbie0eQBehJIjtCrWca2ZHw,596
|
|
413
419
|
maxframe/tensor/statistics/percentile.py,sha256=U7ssKDJbBVp6i1n1EP_qJ2HomIQJwt73asGrXire3ww,6047
|
|
@@ -415,6 +421,18 @@ maxframe/tensor/reshape/reshape.py,sha256=wufzBHgqVpmNPNmgr7lCuGbMkghfOUV1q4t1tH
|
|
|
415
421
|
maxframe/tensor/reshape/__init__.py,sha256=ilMdv8u0POVi4zNzjKQ-iBRPak_tXgJ6aabv7_pHqKc,672
|
|
416
422
|
maxframe/tensor/reshape/tests/__init__.py,sha256=CzfbLNqqm1yR1i6fDwCd4h1ptuKVDbURFVCb0ra7QNc,642
|
|
417
423
|
maxframe/tensor/reshape/tests/test_reshape.py,sha256=MkXN_ibLMNn_4vc8Jsq39icqTIYV0H7-zrIJmuYvibo,1103
|
|
424
|
+
maxframe/tensor/misc/astype.py,sha256=zeLfyWkuc1LxMIiIO6ghZ_enR7IPgq0Hy4O18h8JQPk,4394
|
|
425
|
+
maxframe/tensor/misc/where.py,sha256=fMGBfppo4QToHX-B3rtTorstz83m8uWWhOQj6Qbu34U,4000
|
|
426
|
+
maxframe/tensor/misc/unique.py,sha256=EO7EYn0mHr9aZ7hVZxwiKNSPwbXvrpDWRWP5PksfgxY,6721
|
|
427
|
+
maxframe/tensor/misc/__init__.py,sha256=I4dwtIkgdnOkFLGp9chMZwDCteiKAAikygYz_b4RY2c,1149
|
|
428
|
+
maxframe/tensor/misc/transpose.py,sha256=fd8eee3jdfp-uCM4dKsFiS78FWeuszmrDb3fvUMo8dw,4005
|
|
429
|
+
maxframe/tensor/misc/atleast_3d.py,sha256=ONXluuYTLyaPwii8PF6IG_o5f6QRQRue6uxsPeou9mk,2392
|
|
430
|
+
maxframe/tensor/misc/ravel.py,sha256=pJkez1NHoLqVMBPm5aA8uMNFeWURTAJV_iU98Vqr-50,3173
|
|
431
|
+
maxframe/tensor/misc/atleast_2d.py,sha256=wunxdRTd_2ZfAZiMt7QhOEII_f_Z8lwSgy0ncMT85eI,1958
|
|
432
|
+
maxframe/tensor/misc/broadcast_to.py,sha256=p0hi128OWlj3lXmacvxMhZOjUCq8fiA3yjy9nESZXgE,2686
|
|
433
|
+
maxframe/tensor/misc/atleast_1d.py,sha256=1-IdLYOg5zGCqp_RZ1X3Eq1oTb6UusuHVGW7mW5ayNY,1872
|
|
434
|
+
maxframe/tensor/misc/tests/test_misc.py,sha256=syedkA0jMjevYouCL3vCMuWpJ-3hfOc28wKXqF_MMno,2843
|
|
435
|
+
maxframe/tensor/misc/tests/__init__.py,sha256=FEFOVLi3o2GpZoedTtLYvbie0eQBehJIjtCrWca2ZHw,596
|
|
418
436
|
maxframe/tensor/datasource/from_dataframe.py,sha256=X6cfwLT__VGZLoy3U3tjehPnO43CnyN4kK4edDtLFrA,2503
|
|
419
437
|
maxframe/tensor/datasource/zeros.py,sha256=vMJ44GeCPOxtnj-NnKvkbb4u3U_yxcEhEJa1-ADt1fM,5672
|
|
420
438
|
maxframe/tensor/datasource/from_dense.py,sha256=N2FVRhU9uh-w1W8W9zvpTQVxGgskSdHZbVh_rJjC6QA,1607
|
|
@@ -422,19 +440,21 @@ maxframe/tensor/datasource/scalar.py,sha256=GzKdbBLFdq9aeWrrtZ3BT5514fBAi9A-QJ5M
|
|
|
422
440
|
maxframe/tensor/datasource/empty.py,sha256=e6XYQvFsyfnGqIrU216_Q1M7cYxwkQSOoZiEhtOT8nc,5850
|
|
423
441
|
maxframe/tensor/datasource/__init__.py,sha256=qU_GFAuMa_U_zrV6HcE9fsgO16EXVsqhh9j5Fxe6HFY,1146
|
|
424
442
|
maxframe/tensor/datasource/core.py,sha256=VpjxIcWp_O00smfvDsRIQ48d3HOIJ81hkn78S3H2n_U,3411
|
|
425
|
-
maxframe/tensor/datasource/full.py,sha256=
|
|
443
|
+
maxframe/tensor/datasource/full.py,sha256=uCzq53CA7Bg7HUO72wTRkcckQ_hMh20584ZQZ1fxQ4U,6276
|
|
426
444
|
maxframe/tensor/datasource/arange.py,sha256=jqUF1P1Smu2Bl1j5uOe_MM1EPft8heJu8WSmDmyFiDc,5476
|
|
427
|
-
maxframe/tensor/datasource/array.py,sha256=
|
|
445
|
+
maxframe/tensor/datasource/array.py,sha256=uWK2gJSYMGTBIgXdF_-QZB17fPemyCvBoV40AVPwlqA,13054
|
|
428
446
|
maxframe/tensor/datasource/from_sparse.py,sha256=ki_cSjqrUccChg2uqlXy1xF10c4YANA4QP_UDl_LZnA,1546
|
|
429
447
|
maxframe/tensor/datasource/ones.py,sha256=ER4NJ53HuGlSsz-cRXz9YSwZkokdc2wkBKdB2G1BMX8,5009
|
|
430
|
-
maxframe/tensor/datasource/tests/test_datasource.py,sha256=
|
|
448
|
+
maxframe/tensor/datasource/tests/test_datasource.py,sha256=6NWN9OgA-MioLjqhzTNIeCIP9k9i3ziPYbeyxPygPwY,7653
|
|
431
449
|
maxframe/tensor/datasource/tests/__init__.py,sha256=FEFOVLi3o2GpZoedTtLYvbie0eQBehJIjtCrWca2ZHw,596
|
|
432
450
|
maxframe/tensor/rechunk/__init__.py,sha256=pQ4vh6rNzxjIkxrWTxXjAcTDmUw3961-H1f__-lJl6A,797
|
|
433
451
|
maxframe/tensor/rechunk/rechunk.py,sha256=ltvGlUQxzoHSE7bC6J6uQ8sO-YhuFpxmj8-ArJJXIoY,1392
|
|
434
|
-
maxframe/tensor/merge/
|
|
452
|
+
maxframe/tensor/merge/concatenate.py,sha256=qbmkhzS2_tbnXEuBJ2fnJFUObfqEKwYA6ucL7EjMlmI,3084
|
|
453
|
+
maxframe/tensor/merge/vstack.py,sha256=J3R7-eR0wVMg0silXbwj_PkCHghn8ts0mqMlD5CgJz4,2168
|
|
454
|
+
maxframe/tensor/merge/__init__.py,sha256=NCuoHVwBtVUQnl8-0ph9cT5ARRn3pTdqZt76-XSvpvs,686
|
|
435
455
|
maxframe/tensor/merge/stack.py,sha256=4ZMVqtJQ0nQtbtnJKTX0Z_fSUn8slLLSO56mFT-b0gE,4145
|
|
436
456
|
maxframe/tensor/merge/tests/__init__.py,sha256=FEFOVLi3o2GpZoedTtLYvbie0eQBehJIjtCrWca2ZHw,596
|
|
437
|
-
maxframe/tensor/merge/tests/test_merge.py,sha256=
|
|
457
|
+
maxframe/tensor/merge/tests/test_merge.py,sha256=PfZ883l7xHURs7F1PQl-jg3Kf8IN4qzBMlYv3K5_440,2210
|
|
438
458
|
maxframe/tensor/ufunc/ufunc.py,sha256=D39r6-KVwlPkRr9d3CLwHqO4dWgXsqRQOYZCBiKEEUE,7183
|
|
439
459
|
maxframe/tensor/ufunc/__init__.py,sha256=_GZckaiuuxNQdJS2tCMsgrxjEevJ0Irg4CTFDU_kQTI,795
|
|
440
460
|
maxframe/tensor/fetch/__init__.py,sha256=mGwv_bpJXkb_jgg1YCpOmLhaNU_rWBNZdPi5dr2HGNo,647
|
|
@@ -443,9 +463,9 @@ maxframe/tensor/reduction/nanprod.py,sha256=m7au8rYO8jgr4kYf0Tp5EizZUaspvrHgDJNF
|
|
|
443
463
|
maxframe/tensor/reduction/max.py,sha256=Z6TQSwaDcOmSstjKjntqKfinvF0XWNTGYDvvV-AIxgk,3979
|
|
444
464
|
maxframe/tensor/reduction/allclose.py,sha256=8C9E01aUZL-rGjlx_S1zN504peV_7vjjQA3DZSPElOI,2942
|
|
445
465
|
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=
|
|
466
|
+
maxframe/tensor/reduction/nanvar.py,sha256=hRrorXczfi-wrQFjeSAmomVL5Dn1esXNsltglFA4l3k,5470
|
|
467
|
+
maxframe/tensor/reduction/count_nonzero.py,sha256=bnkLSm1mEVTXJmiT9gkqCeLbTbk8Am5vghtT64mx2Ak,2754
|
|
468
|
+
maxframe/tensor/reduction/nanmean.py,sha256=J63uIJxq9RA1RRd1mJc69IM0FBX4K86hrsXgIfZ69cQ,3971
|
|
449
469
|
maxframe/tensor/reduction/nancumsum.py,sha256=r47LTZ65-m6u1vr-zoxKw50Q3wOg2gwWy3ewHtV1jRg,3283
|
|
450
470
|
maxframe/tensor/reduction/nansum.py,sha256=2x-RMKHxN9ikE8tm455wpKtYT1i-lKtuE03mKQopzA0,4066
|
|
451
471
|
maxframe/tensor/reduction/std.py,sha256=PDVJRjr7G7gQQjywhfvbIVsfUAep1-cjjH49mi346XI,5135
|
|
@@ -455,8 +475,8 @@ maxframe/tensor/reduction/core.py,sha256=3uekPz3RdKS2HINqtLOY1Yzkk8BqMuKYlXBfY3O
|
|
|
455
475
|
maxframe/tensor/reduction/all.py,sha256=UX8WvzKd8s2M7OHzbirK63RH4XVRNmkU10tHNuq3W3w,3467
|
|
456
476
|
maxframe/tensor/reduction/nanargmin.py,sha256=ncJEvf2dZxF6URk4Yv3kadDnXjzevIJBD9Rz_PEckG8,2203
|
|
457
477
|
maxframe/tensor/reduction/min.py,sha256=U59kxhcL5JsYVoXRfUmCmY8e_MfBKU7WRIPBFCuxUSU,3980
|
|
458
|
-
maxframe/tensor/reduction/mean.py,sha256=
|
|
459
|
-
maxframe/tensor/reduction/var.py,sha256=
|
|
478
|
+
maxframe/tensor/reduction/mean.py,sha256=JSDPHYzfS4Z3sKVCN0BeERIap5qEKorLWKTXnWY3C0s,4379
|
|
479
|
+
maxframe/tensor/reduction/var.py,sha256=LQa7FZHAfD0mtR52qkfPYO9tV0oFDfF8yNeFO6a5pgE,6304
|
|
460
480
|
maxframe/tensor/reduction/nanmax.py,sha256=nce8mD6zIsC9LSQ0fiaRBG6gBL8tNbQpRCDDrP_HaqU,3950
|
|
461
481
|
maxframe/tensor/reduction/array_equal.py,sha256=bLbKT1tGSKfqp3L8-AzWEdhBYkEnzUHvyWHEfP9ouEk,1795
|
|
462
482
|
maxframe/tensor/reduction/sum.py,sha256=SupE9cxNTGCRZPdS9i-a40U4rRsi5ruc4FZsJJgLGJ4,4246
|
|
@@ -469,7 +489,7 @@ maxframe/tensor/reduction/nanstd.py,sha256=ZPHxKLowx2FrQS_DI5VDeU3SvyBzi53-_87nG
|
|
|
469
489
|
maxframe/tensor/reduction/nancumprod.py,sha256=_ri_LhT0lH4jPxFdSHh7gjAMRF9_0rNlCcAbPs_PpMg,3121
|
|
470
490
|
maxframe/tensor/reduction/argmin.py,sha256=OVR6chF48tQEpoTYbQGWGF6StqRFp9vmwNRtuToQdrg,3099
|
|
471
491
|
maxframe/tensor/reduction/tests/__init__.py,sha256=FEFOVLi3o2GpZoedTtLYvbie0eQBehJIjtCrWca2ZHw,596
|
|
472
|
-
maxframe/tensor/reduction/tests/test_reduction.py,sha256=
|
|
492
|
+
maxframe/tensor/reduction/tests/test_reduction.py,sha256=EbqJob7OysLfX7TRpL_owIAknwQmzbE7n83brxW7Aik,6178
|
|
473
493
|
maxframe/tensor/arithmetic/copysign.py,sha256=HficiUZ-cdCbkoG9Rs3iz54tgbrHLZUsFa36TFZDn7s,2505
|
|
474
494
|
maxframe/tensor/arithmetic/spacing.py,sha256=x_7pCRUX5wUBFsSMjH_RrkwKWx-303Mli0BbHi5BwJA,2313
|
|
475
495
|
maxframe/tensor/arithmetic/arctan.py,sha256=0neaMOGmcUwhTOV-z93UFSP4i0EDuDaWCb2Suj6kzFw,3562
|
|
@@ -518,7 +538,7 @@ maxframe/tensor/arithmetic/real.py,sha256=cAtf4ID5STaSaTNPdYw-ioSKIBO-09VoSWSnnv
|
|
|
518
538
|
maxframe/tensor/arithmetic/around.py,sha256=6gop_55BB3SVYvaxhZ6Y1qBVxScMVWfnv-C1BxkA_4M,3826
|
|
519
539
|
maxframe/tensor/arithmetic/nan_to_num.py,sha256=CA0q3CCh0Ya9EOlGDI9HgdxbW9agATThr-bY0hijdVQ,3249
|
|
520
540
|
maxframe/tensor/arithmetic/ceil.py,sha256=0u0u3pD2XF8aKxkJQZiPpGjntIgf5q6PmKbxgqAGmRo,2252
|
|
521
|
-
maxframe/tensor/arithmetic/isclose.py,sha256=
|
|
541
|
+
maxframe/tensor/arithmetic/isclose.py,sha256=0cb5-5HMg0j6X9U_iv7kNgtjR2S013eo0et__HU-U0I,3695
|
|
522
542
|
maxframe/tensor/arithmetic/maximum.py,sha256=sc4EdXDzZ_Dq50Ik5rh_Vg1hXfP-RS-YlfMDzFGzZGA,3694
|
|
523
543
|
maxframe/tensor/arithmetic/log10.py,sha256=kHkxvGYbn2JVYwYjQ2RbKN2VbtrzPCnhYT_7ESLUpsQ,3024
|
|
524
544
|
maxframe/tensor/arithmetic/frexp.py,sha256=yJ9us5ilLUkVxLnc9QB2PVhEaJGJIXDctaYNlv7yyZI,3146
|
|
@@ -570,7 +590,7 @@ maxframe/tensor/arithmetic/sin.py,sha256=Ux8mQS-pb3F7PCD_35Ghl7p2e2yF2jiS_1WC9zi
|
|
|
570
590
|
maxframe/tensor/arithmetic/reciprocal.py,sha256=q3TKbF209Kbv7HD0hM9AF7xlQ9zXHrpHaFc9dHFuplE,2375
|
|
571
591
|
maxframe/tensor/arithmetic/bitxor.py,sha256=l1bRVnzHSa7N7-nd2MzDxF33guNoml8mPB9t9_0QpMc,2908
|
|
572
592
|
maxframe/tensor/arithmetic/tests/__init__.py,sha256=CzfbLNqqm1yR1i6fDwCd4h1ptuKVDbURFVCb0ra7QNc,642
|
|
573
|
-
maxframe/tensor/arithmetic/tests/test_arithmetic.py,sha256=
|
|
593
|
+
maxframe/tensor/arithmetic/tests/test_arithmetic.py,sha256=gK17go0jF7l_dGCmhOqZxLPaiiu9oK5wvw98IZ7rilI,11421
|
|
574
594
|
maxframe/tensor/indexing/choose.py,sha256=TNsRP_1zoMnqfJyqk_RgPtRPFCisEXq5CMh3FUmPZ-8,7584
|
|
575
595
|
maxframe/tensor/indexing/nonzero.py,sha256=JN5TyPzS1LIIjIaieXsDkffCjuq-CPBUDG3qMvNsIWI,3646
|
|
576
596
|
maxframe/tensor/indexing/slice.py,sha256=VbalHoaXUGulPjskcQ4PoiZQhB2q3P1R8MrGKY2MqGw,1022
|
|
@@ -579,7 +599,7 @@ maxframe/tensor/indexing/__init__.py,sha256=v2uUjRm0rSDyxG9IVayCDo0gKY9OQnk1Z-4P
|
|
|
579
599
|
maxframe/tensor/indexing/getitem.py,sha256=0kdc45nf5IP-Bjb8zNdb2MzE1bdlaLSv9D6P4_Kd7wA,5548
|
|
580
600
|
maxframe/tensor/indexing/core.py,sha256=8iNHn9nObBoXyB6uhI3NHEFHMcmOn1WSPp5cC4utv2w,7022
|
|
581
601
|
maxframe/tensor/indexing/unravel_index.py,sha256=jQ3KnJ8UFg5K8uLsTzIUABQXPiTiG2Kkp5VO2yVy1H4,3223
|
|
582
|
-
maxframe/tensor/indexing/flatnonzero.py,sha256=
|
|
602
|
+
maxframe/tensor/indexing/flatnonzero.py,sha256=T32TDhjmaMCw90RdUZA33QsIlXrL3BrclEBcRBKw4KQ,1706
|
|
583
603
|
maxframe/tensor/indexing/fill_diagonal.py,sha256=L8F-C_g2h4fi_JX8wIU2mBOavZaLJZZCp7kwK-wIAmU,5305
|
|
584
604
|
maxframe/tensor/indexing/take.py,sha256=g03C9ehHqmEOxXUZEdQH5I810pPSstadRF61y6IcuyQ,4254
|
|
585
605
|
maxframe/tensor/indexing/compress.py,sha256=EBj2d4dtc60GSVBOhDWonSzzHGrD7QDJhOsMEvVuuKQ,4029
|
|
@@ -601,7 +621,7 @@ maxframe/tensor/random/logistic.py,sha256=X_o_rfdvdsNc8PWaaBnwqOpaMEHiJJ8dy5DYs_
|
|
|
601
621
|
maxframe/tensor/random/beta.py,sha256=Il-bnSvryGlWQmyk5GU_zLRQuerqX4iVRpA8zqNF3bk,3113
|
|
602
622
|
maxframe/tensor/random/choice.py,sha256=fwvKc8CKtoddoSzjqs9g7iC_haKMRVF9FchSJ3qPeq0,5958
|
|
603
623
|
maxframe/tensor/random/__init__.py,sha256=QSAef7wgESPJmYrliksHRFfgVim6GrIZUOye5n_DCGI,7011
|
|
604
|
-
maxframe/tensor/random/core.py,sha256=
|
|
624
|
+
maxframe/tensor/random/core.py,sha256=AIdcAFmr9yPd-uQCyJHv7GbXqo5rs3RuVdHQ59-0raY,7206
|
|
605
625
|
maxframe/tensor/random/multinomial.py,sha256=QZ2c9tYq99cj3QW60DNG7wkzENnt5Xfdedl7yUazVDs,4771
|
|
606
626
|
maxframe/tensor/random/exponential.py,sha256=QwHMgmsFypbmQ5JqU7BSlyKyhmZU4GNXy78AHUJzEec,3583
|
|
607
627
|
maxframe/tensor/random/pareto.py,sha256=pPhlJzH68JsmL900sIALlmEstLy1YQgdPUfe3IacEMw,5389
|
|
@@ -634,16 +654,6 @@ maxframe/tensor/random/wald.py,sha256=HQRsQet9FxxCzhHm1EQtkFd_MsexinSkJXU_TgNCpD
|
|
|
634
654
|
maxframe/tensor/random/binomial.py,sha256=-PM5464Z8opuP0eP7MMevy9QOGIAYSdkm1rbv-HeKOQ,5291
|
|
635
655
|
maxframe/tensor/random/tests/__init__.py,sha256=CzfbLNqqm1yR1i6fDwCd4h1ptuKVDbURFVCb0ra7QNc,642
|
|
636
656
|
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
657
|
maxframe/remote/run_script.py,sha256=Z1j662AwDF9sr-z1xnPTlrfSTixi2RBZjccXEilfpGA,3556
|
|
648
658
|
maxframe/remote/__init__.py,sha256=D1nfsnjU_cTzwpo_0icFvEPgkFJeCsqv3IOg6_Ho68k,729
|
|
649
|
-
maxframe/remote/core.py,sha256=
|
|
659
|
+
maxframe/remote/core.py,sha256=Ydb2jAyOVJS32nivMfknbg6y_fwcocy2Lskec2_5_kk,6527
|
maxframe_client/fetcher.py
CHANGED
|
@@ -19,14 +19,18 @@ from typing import Any, Dict, List, Optional, Tuple, Type, Union
|
|
|
19
19
|
import pandas as pd
|
|
20
20
|
import pyarrow as pa
|
|
21
21
|
from odps import ODPS
|
|
22
|
-
from odps.models import ExternalVolume
|
|
22
|
+
from odps.models import ExternalVolume
|
|
23
23
|
from odps.tunnel import TableTunnel
|
|
24
|
-
from tornado import httpclient
|
|
25
24
|
|
|
26
25
|
from maxframe.core import OBJECT_TYPE
|
|
27
26
|
from maxframe.dataframe.core import DATAFRAME_TYPE
|
|
28
|
-
from maxframe.
|
|
29
|
-
from maxframe.odpsio import
|
|
27
|
+
from maxframe.io.objects import get_object_io_handler
|
|
28
|
+
from maxframe.io.odpsio import (
|
|
29
|
+
ODPSTableIO,
|
|
30
|
+
ODPSVolumeReader,
|
|
31
|
+
arrow_to_pandas,
|
|
32
|
+
build_dataframe_table_meta,
|
|
33
|
+
)
|
|
30
34
|
from maxframe.protocol import (
|
|
31
35
|
DataFrameTableMeta,
|
|
32
36
|
ODPSTableResultInfo,
|
|
@@ -222,47 +226,24 @@ class ODPSVolumeFetcher(ToThreadMixin, ResultFetcher):
|
|
|
222
226
|
) -> None:
|
|
223
227
|
return
|
|
224
228
|
|
|
225
|
-
async def
|
|
226
|
-
self,
|
|
227
|
-
|
|
228
|
-
|
|
229
|
-
|
|
230
|
-
|
|
231
|
-
|
|
232
|
-
|
|
233
|
-
|
|
234
|
-
|
|
235
|
-
|
|
236
|
-
|
|
237
|
-
signed_url = await self.to_thread(
|
|
238
|
-
volume.get_sign_url, path + "/" + file_name, "GET"
|
|
239
|
-
)
|
|
240
|
-
http_client = httpclient.AsyncHTTPClient()
|
|
241
|
-
|
|
242
|
-
resp = await http_client.fetch(signed_url)
|
|
243
|
-
if hasattr(resp, "status_code") and resp.code >= 400:
|
|
244
|
-
try:
|
|
245
|
-
import oss2.exceptions
|
|
246
|
-
|
|
247
|
-
oss_exc = oss2.exceptions.make_exception(resp.body)
|
|
248
|
-
raise oss_exc
|
|
249
|
-
except ImportError:
|
|
250
|
-
raise SystemError(resp.body)
|
|
251
|
-
return resp.body
|
|
229
|
+
async def _fetch_object(
|
|
230
|
+
self,
|
|
231
|
+
tileable: TileableType,
|
|
232
|
+
info: ODPSVolumeResultInfo,
|
|
233
|
+
indexes: List[Union[Integral, slice]],
|
|
234
|
+
) -> Any:
|
|
235
|
+
def volume_fetch_func():
|
|
236
|
+
reader = ODPSVolumeReader(
|
|
237
|
+
self._odps_entry, info.volume_name, info.volume_path
|
|
238
|
+
)
|
|
239
|
+
io_handler = get_object_io_handler(tileable)()
|
|
240
|
+
return io_handler.read_object(reader, tileable, indexes)
|
|
252
241
|
|
|
253
|
-
async def _fetch_object(self, info: ODPSVolumeResultInfo) -> Any:
|
|
254
242
|
volume = await self.to_thread(self._odps_entry.get_volume, info.volume_name)
|
|
255
|
-
if isinstance(volume,
|
|
256
|
-
|
|
257
|
-
volume, info.volume_path, "data"
|
|
258
|
-
)
|
|
259
|
-
elif isinstance(volume, ExternalVolume):
|
|
260
|
-
byte_data = await self._read_external_volume_data(
|
|
261
|
-
volume, info.volume_path, "data"
|
|
262
|
-
)
|
|
243
|
+
if isinstance(volume, ExternalVolume):
|
|
244
|
+
return await self.to_thread(volume_fetch_func)
|
|
263
245
|
else:
|
|
264
246
|
raise NotImplementedError(f"Volume type {type(volume)} not supported")
|
|
265
|
-
return pickle.loads(byte_data)
|
|
266
247
|
|
|
267
248
|
async def fetch(
|
|
268
249
|
self,
|
|
@@ -271,5 +252,5 @@ class ODPSVolumeFetcher(ToThreadMixin, ResultFetcher):
|
|
|
271
252
|
indexes: List[Union[Integral, slice]],
|
|
272
253
|
) -> Any:
|
|
273
254
|
if isinstance(tileable, (OBJECT_TYPE, TENSOR_TYPE)):
|
|
274
|
-
return await self._fetch_object(info)
|
|
255
|
+
return await self._fetch_object(tileable, info, indexes)
|
|
275
256
|
raise NotImplementedError(f"Fetching {type(tileable)} not implemented")
|
maxframe_client/session/graph.py
CHANGED
|
@@ -19,10 +19,16 @@ from dataclasses import dataclass
|
|
|
19
19
|
from typing import Any, Dict, List, Tuple, Union
|
|
20
20
|
from weakref import WeakSet
|
|
21
21
|
|
|
22
|
-
from maxframe.core import
|
|
22
|
+
from maxframe.core import (
|
|
23
|
+
ChunkType,
|
|
24
|
+
TileableGraph,
|
|
25
|
+
TileableType,
|
|
26
|
+
build_fetch,
|
|
27
|
+
enter_mode,
|
|
28
|
+
)
|
|
23
29
|
from maxframe.core.operator import Fetch
|
|
24
30
|
from maxframe.session import AbstractSession
|
|
25
|
-
from maxframe.utils import
|
|
31
|
+
from maxframe.utils import copy_tileables
|
|
26
32
|
|
|
27
33
|
logger = logging.getLogger(__name__)
|
|
28
34
|
|