maxframe 0.1.0b5__cp311-cp311-win_amd64.whl → 1.0.0__cp311-cp311-win_amd64.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.cp311-win_amd64.pyd +0 -0
- maxframe/codegen.py +10 -4
- maxframe/config/config.py +68 -10
- maxframe/config/validators.py +42 -11
- maxframe/conftest.py +58 -14
- maxframe/core/__init__.py +2 -16
- maxframe/core/entity/__init__.py +1 -12
- maxframe/core/entity/executable.py +1 -1
- maxframe/core/entity/objects.py +46 -45
- 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.cp311-win_amd64.pyd +0 -0
- maxframe/core/graph/core.pyx +4 -4
- 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/__init__.py +1 -1
- maxframe/dataframe/arithmetic/around.py +5 -17
- maxframe/dataframe/arithmetic/core.py +15 -7
- maxframe/dataframe/arithmetic/docstring.py +7 -33
- maxframe/dataframe/arithmetic/equal.py +4 -2
- maxframe/dataframe/arithmetic/greater.py +4 -2
- maxframe/dataframe/arithmetic/greater_equal.py +4 -2
- maxframe/dataframe/arithmetic/less.py +2 -2
- maxframe/dataframe/arithmetic/less_equal.py +4 -2
- maxframe/dataframe/arithmetic/not_equal.py +4 -2
- maxframe/dataframe/arithmetic/tests/test_arithmetic.py +39 -16
- maxframe/dataframe/core.py +31 -7
- maxframe/dataframe/datasource/date_range.py +2 -2
- maxframe/dataframe/datasource/read_odps_query.py +117 -23
- maxframe/dataframe/datasource/read_odps_table.py +6 -3
- maxframe/dataframe/datasource/tests/test_datasource.py +103 -8
- maxframe/dataframe/datastore/tests/test_to_odps.py +48 -0
- maxframe/dataframe/datastore/to_odps.py +28 -0
- maxframe/dataframe/extensions/__init__.py +5 -0
- maxframe/dataframe/extensions/flatjson.py +131 -0
- maxframe/dataframe/extensions/flatmap.py +317 -0
- maxframe/dataframe/extensions/reshuffle.py +1 -1
- maxframe/dataframe/extensions/tests/test_extensions.py +108 -3
- maxframe/dataframe/groupby/core.py +1 -1
- maxframe/dataframe/groupby/cum.py +0 -1
- maxframe/dataframe/groupby/fill.py +4 -1
- maxframe/dataframe/groupby/getitem.py +6 -0
- maxframe/dataframe/groupby/tests/test_groupby.py +5 -1
- maxframe/dataframe/groupby/transform.py +5 -1
- maxframe/dataframe/indexing/align.py +1 -1
- maxframe/dataframe/indexing/loc.py +6 -4
- maxframe/dataframe/indexing/rename.py +5 -28
- maxframe/dataframe/indexing/sample.py +0 -1
- maxframe/dataframe/indexing/set_index.py +68 -1
- maxframe/dataframe/initializer.py +11 -1
- maxframe/dataframe/merge/__init__.py +9 -1
- maxframe/dataframe/merge/concat.py +41 -31
- maxframe/dataframe/merge/merge.py +237 -3
- maxframe/dataframe/merge/tests/test_merge.py +126 -1
- maxframe/dataframe/misc/apply.py +5 -10
- maxframe/dataframe/misc/case_when.py +1 -1
- maxframe/dataframe/misc/describe.py +2 -2
- maxframe/dataframe/misc/drop_duplicates.py +8 -8
- maxframe/dataframe/misc/eval.py +4 -0
- maxframe/dataframe/misc/memory_usage.py +2 -2
- maxframe/dataframe/misc/pct_change.py +1 -83
- maxframe/dataframe/misc/tests/test_misc.py +33 -2
- maxframe/dataframe/misc/transform.py +1 -30
- maxframe/dataframe/misc/value_counts.py +4 -17
- maxframe/dataframe/missing/dropna.py +1 -1
- maxframe/dataframe/missing/fillna.py +5 -5
- maxframe/dataframe/operators.py +1 -17
- maxframe/dataframe/reduction/core.py +2 -2
- maxframe/dataframe/reduction/tests/test_reduction.py +2 -4
- maxframe/dataframe/sort/sort_values.py +1 -11
- maxframe/dataframe/statistics/corr.py +3 -3
- maxframe/dataframe/statistics/quantile.py +13 -19
- maxframe/dataframe/statistics/tests/test_statistics.py +4 -4
- maxframe/dataframe/tests/test_initializer.py +33 -2
- maxframe/dataframe/utils.py +26 -11
- maxframe/dataframe/window/expanding.py +5 -3
- maxframe/dataframe/window/tests/test_expanding.py +2 -2
- maxframe/errors.py +13 -0
- maxframe/extension.py +12 -0
- maxframe/io/__init__.py +13 -0
- 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 +3 -1
- maxframe/{odpsio → io/odpsio}/arrow.py +42 -10
- maxframe/{odpsio → io/odpsio}/schema.py +38 -16
- maxframe/io/odpsio/tableio.py +719 -0
- maxframe/io/odpsio/tests/__init__.py +13 -0
- maxframe/{odpsio → io/odpsio}/tests/test_schema.py +59 -22
- maxframe/{odpsio → io/odpsio}/tests/test_tableio.py +50 -23
- maxframe/{odpsio → io/odpsio}/tests/test_volumeio.py +4 -6
- maxframe/io/odpsio/volumeio.py +63 -0
- maxframe/learn/contrib/__init__.py +3 -1
- maxframe/learn/contrib/graph/__init__.py +15 -0
- maxframe/learn/contrib/graph/connected_components.py +215 -0
- maxframe/learn/contrib/graph/tests/__init__.py +13 -0
- maxframe/learn/contrib/graph/tests/test_connected_components.py +53 -0
- maxframe/learn/contrib/llm/__init__.py +16 -0
- maxframe/learn/contrib/llm/core.py +54 -0
- maxframe/learn/contrib/llm/models/__init__.py +14 -0
- maxframe/learn/contrib/llm/models/dashscope.py +73 -0
- maxframe/learn/contrib/llm/multi_modal.py +42 -0
- maxframe/learn/contrib/llm/text.py +42 -0
- maxframe/learn/contrib/xgboost/classifier.py +26 -2
- maxframe/learn/contrib/xgboost/core.py +87 -2
- maxframe/learn/contrib/xgboost/dmatrix.py +3 -6
- maxframe/learn/contrib/xgboost/predict.py +29 -46
- maxframe/learn/contrib/xgboost/regressor.py +3 -10
- maxframe/learn/contrib/xgboost/train.py +29 -18
- maxframe/{core/operator/fuse.py → learn/core.py} +7 -10
- maxframe/lib/mmh3.cp311-win_amd64.pyd +0 -0
- maxframe/lib/mmh3.pyi +43 -0
- maxframe/lib/sparse/tests/test_sparse.py +15 -15
- maxframe/lib/wrapped_pickle.py +2 -1
- maxframe/opcodes.py +8 -0
- maxframe/protocol.py +154 -27
- maxframe/remote/core.py +4 -8
- maxframe/serialization/__init__.py +1 -0
- maxframe/serialization/core.cp311-win_amd64.pyd +0 -0
- maxframe/serialization/core.pxd +3 -0
- maxframe/serialization/core.pyi +3 -0
- maxframe/serialization/core.pyx +67 -26
- maxframe/serialization/exception.py +1 -1
- maxframe/serialization/pandas.py +52 -17
- maxframe/serialization/serializables/core.py +180 -15
- maxframe/serialization/serializables/field_type.py +4 -1
- maxframe/serialization/serializables/tests/test_serializable.py +54 -5
- maxframe/serialization/tests/test_serial.py +2 -1
- maxframe/session.py +9 -2
- maxframe/tensor/__init__.py +81 -2
- maxframe/tensor/arithmetic/isclose.py +1 -0
- maxframe/tensor/arithmetic/tests/test_arithmetic.py +22 -18
- 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 +1 -3
- 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/{base → misc}/unique.py +3 -3
- maxframe/tensor/operators.py +1 -7
- maxframe/tensor/random/core.py +1 -1
- maxframe/tensor/reduction/count_nonzero.py +2 -1
- 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/statistics/quantile.py +2 -2
- maxframe/tensor/utils.py +2 -22
- maxframe/tests/test_protocol.py +34 -0
- maxframe/tests/test_utils.py +0 -12
- maxframe/tests/utils.py +17 -2
- maxframe/typing_.py +4 -1
- maxframe/udf.py +8 -9
- maxframe/utils.py +106 -86
- {maxframe-0.1.0b5.dist-info → maxframe-1.0.0.dist-info}/METADATA +25 -25
- {maxframe-0.1.0b5.dist-info → maxframe-1.0.0.dist-info}/RECORD +197 -173
- {maxframe-0.1.0b5.dist-info → maxframe-1.0.0.dist-info}/WHEEL +1 -1
- maxframe_client/__init__.py +0 -1
- maxframe_client/clients/framedriver.py +4 -1
- maxframe_client/fetcher.py +81 -74
- maxframe_client/session/consts.py +3 -0
- maxframe_client/session/graph.py +8 -2
- maxframe_client/session/odps.py +194 -40
- maxframe_client/session/task.py +94 -39
- maxframe_client/tests/test_fetcher.py +21 -3
- maxframe_client/tests/test_session.py +109 -8
- maxframe/core/entity/chunks.py +0 -68
- maxframe/core/entity/fuse.py +0 -73
- maxframe/core/graph/builder/chunk.py +0 -430
- maxframe/odpsio/tableio.py +0 -322
- maxframe/odpsio/volumeio.py +0 -95
- maxframe_client/clients/spe.py +0 -104
- /maxframe/{odpsio → core/entity}/tests/__init__.py +0 -0
- /maxframe/{tensor/base → dataframe/datastore}/tests/__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}/where.py +0 -0
- {maxframe-0.1.0b5.dist-info → maxframe-1.0.0.dist-info}/top_level.txt +0 -0
|
@@ -1,65 +1,64 @@
|
|
|
1
1
|
maxframe/__init__.py,sha256=RujkARDvD6mhFpR330UQ0UfogvIdae5EjR1euFpTiYA,1036
|
|
2
|
-
maxframe/_utils.cp311-win_amd64.pyd,sha256=
|
|
2
|
+
maxframe/_utils.cp311-win_amd64.pyd,sha256=E09NQO_j6wpT8LRrLvUpmqGCO_YO9PX7q7bKLt-YZpU,306176
|
|
3
3
|
maxframe/_utils.pxd,sha256=_qHN-lCY1FQgDFIrrqA79Ys0SBdonp9kXRMS93xKSYk,1187
|
|
4
4
|
maxframe/_utils.pyx,sha256=_3p6aJEJ6WZYLcNZ6o4DxoxsxqadTlJXFlgDeFPxqUQ,17564
|
|
5
|
-
maxframe/codegen.py,sha256=
|
|
6
|
-
maxframe/conftest.py,sha256=
|
|
5
|
+
maxframe/codegen.py,sha256=8CvmD-1elhT9hK5O3jadhq7G-3AVf7Tb1MNOJcGJWVA,18267
|
|
6
|
+
maxframe/conftest.py,sha256=oCHdhSgzITSm-7vee2Icwwhxq3dyyHg__KUkQnesjug,5955
|
|
7
7
|
maxframe/env.py,sha256=xY4wjMWIJ4qLsFAQ5F-X5CrVR7dDSWiryPXni0YSK5c,1435
|
|
8
|
-
maxframe/errors.py,sha256=
|
|
9
|
-
maxframe/extension.py,sha256=
|
|
8
|
+
maxframe/errors.py,sha256=nhQVjRbH5EsyLZhyAufvHpMhfDN6eR8vcrv4sjaI7p8,1000
|
|
9
|
+
maxframe/extension.py,sha256=XKgK2b42i-jfnLc0lBPiBMsGA6HMQ4a12mJc09tMAFc,2752
|
|
10
10
|
maxframe/mixin.py,sha256=QfX0KqVIWDlVDSFs0lwdzLexw7lS7W_IUuK7aY1Ib8c,3624
|
|
11
|
-
maxframe/opcodes.py,sha256=
|
|
12
|
-
maxframe/protocol.py,sha256=
|
|
13
|
-
maxframe/session.py,sha256=
|
|
14
|
-
maxframe/typing_.py,sha256=
|
|
15
|
-
maxframe/udf.py,sha256=
|
|
16
|
-
maxframe/utils.py,sha256=
|
|
11
|
+
maxframe/opcodes.py,sha256=qIuPLTcpUk8FIO20SznffK9C2_ygZ88q_HiF3LBLEQs,10929
|
|
12
|
+
maxframe/protocol.py,sha256=TM6jnUsNy634YaI-Ed-alX48ebtGSyFJwM8XvmlGPbg,19526
|
|
13
|
+
maxframe/session.py,sha256=wftB7_3CHU9ljdgS9b-Gz6PNiUToVSScwSG-x3dlu3I,37710
|
|
14
|
+
maxframe/typing_.py,sha256=EsgH2QO4VF0TRdjshKyL0Tmgiy3Ow8doTwEuam5nStE,1220
|
|
15
|
+
maxframe/udf.py,sha256=Xrx3wrZCVX6zDggS1QGmHpuJhLgTG9HqLziId_NFnic,4471
|
|
16
|
+
maxframe/utils.py,sha256=flC-hl83CqTCnSsfb-rhLo2f0owx8KrwKHHFsNhCRJo,35947
|
|
17
17
|
maxframe/config/__init__.py,sha256=AHo3deaCm1JnbbRX_udboJEDYrYytdvivp9RFxJcumI,671
|
|
18
|
-
maxframe/config/config.py,sha256=
|
|
19
|
-
maxframe/config/validators.py,sha256=
|
|
18
|
+
maxframe/config/config.py,sha256=PjTqbLPW2e8DxgMuz9vmY1lxcSdTWaSxhCsheMeWomI,16011
|
|
19
|
+
maxframe/config/validators.py,sha256=vs82UJa4xdY7tvbM7U4vOtXDJHrfdAOTvDkbrFtuGLU,2599
|
|
20
20
|
maxframe/config/tests/__init__.py,sha256=29eM5D4knhYwe3TF42naTuC5b4Ym3VeH4rK8KpdLWNY,609
|
|
21
21
|
maxframe/config/tests/test_config.py,sha256=FWQZ6KBUG_jY1-KaR-GKXl7khhlTbuLlk3uaEV8koM8,2839
|
|
22
22
|
maxframe/config/tests/test_validators.py,sha256=kz9Yxiqvl_BJq2CT61JTzfpRyrjm6lFrjqIfqeld_yo,1274
|
|
23
|
-
maxframe/core/__init__.py,sha256=
|
|
23
|
+
maxframe/core/__init__.py,sha256=uNccOOfZ1aCxvUsz8ic5kObQkrBgfUv8ExU7OScyW1w,1508
|
|
24
24
|
maxframe/core/base.py,sha256=43qZ_sJFgW857qhT1jqgsjdAsBy9tzCeqeX62CPm4vM,4691
|
|
25
25
|
maxframe/core/mode.py,sha256=a-2AjLrIaqemN3pZPFhdfrPYXR7ryCLcsT1KJwWKPb0,3107
|
|
26
|
-
maxframe/core/entity/__init__.py,sha256=
|
|
27
|
-
maxframe/core/entity/chunks.py,sha256=zKk8Iyc3IkakIDW1bMYq_zZNLrR4ZMdXH-mBuOiFerM,2202
|
|
26
|
+
maxframe/core/entity/__init__.py,sha256=G3cRUyYuSNZ7HS13BLJAj7KBCaAqNSd2wx-MiHU0Hxc,1108
|
|
28
27
|
maxframe/core/entity/core.py,sha256=aFwjNMhTJ4ybr1WzmMVSTG211fzutzaATs14QoNh-JM,4170
|
|
29
|
-
maxframe/core/entity/executable.py,sha256=
|
|
30
|
-
maxframe/core/entity/
|
|
31
|
-
maxframe/core/entity/
|
|
32
|
-
maxframe/core/entity/
|
|
33
|
-
maxframe/core/entity/tileables.py,sha256=6jJyFscvb8sH5K_k2VaNGeUm8YrpevCtou3WSUl4Dw8,13973
|
|
28
|
+
maxframe/core/entity/executable.py,sha256=9TAg3IO0v1GGnuAAubWM0B6M9l3k3cpJkjChlL5928s,11293
|
|
29
|
+
maxframe/core/entity/objects.py,sha256=-9Yi8pcy-Rk-mYgrrClNUwPgq65b5Ns3L3yOvGKyCX8,3882
|
|
30
|
+
maxframe/core/entity/output_types.py,sha256=eNjyM_4Z8V5LjEaDz3D6eJ_Ly6JyZy0LfSiHVmfKdyw,2623
|
|
31
|
+
maxframe/core/entity/tileables.py,sha256=Unv_pZSlqDfXKVpIkPjHcRDueUdKqb55ifQGwkBlhO0,11636
|
|
34
32
|
maxframe/core/entity/utils.py,sha256=454RYVbTMVW_8KnfDqUPec4kz1p98izVTC2OrzhOkao,966
|
|
35
|
-
maxframe/core/
|
|
36
|
-
maxframe/core/
|
|
37
|
-
maxframe/core/graph/
|
|
38
|
-
maxframe/core/graph/
|
|
39
|
-
maxframe/core/graph/
|
|
40
|
-
maxframe/core/graph/
|
|
41
|
-
maxframe/core/graph/builder/
|
|
42
|
-
maxframe/core/graph/builder/
|
|
43
|
-
maxframe/core/graph/builder/
|
|
33
|
+
maxframe/core/entity/tests/__init__.py,sha256=29eM5D4knhYwe3TF42naTuC5b4Ym3VeH4rK8KpdLWNY,609
|
|
34
|
+
maxframe/core/entity/tests/test_objects.py,sha256=8OAMgphXRVri3UewnCYoXfS3lJ_53yxFmR3rv2pWiMY,1392
|
|
35
|
+
maxframe/core/graph/__init__.py,sha256=IRTkHcVzI57tPXZ3agJJb-atpoD-9Jk4vtcRj3XQXzg,782
|
|
36
|
+
maxframe/core/graph/core.cp311-win_amd64.pyd,sha256=deaGWZjqBqct-xRc7hip1MGvBzh7eh3fbolkB4mSklc,251392
|
|
37
|
+
maxframe/core/graph/core.pyx,sha256=J619C6xfVCF8NQ8oeinhICYSg-w5ecX-dnBI7NB-6n0,16390
|
|
38
|
+
maxframe/core/graph/entity.py,sha256=7DJtHi7Xum_Yp16caiQd2AMZd34PWDPy7kocjWhgl3o,5010
|
|
39
|
+
maxframe/core/graph/builder/__init__.py,sha256=fL_blRc623cJ5CQTiFG1d4OK8M97FcFqGbX9chwbUQs,655
|
|
40
|
+
maxframe/core/graph/builder/base.py,sha256=vfU9zeEQv-BP4f11CdIJD_opiU6uDjnEVknMJGUtzPw,2596
|
|
41
|
+
maxframe/core/graph/builder/tileable.py,sha256=ZgvTbndsd1TVA6iQK1xcwupTuZSsmeQSTgbd2hP0BiE,1207
|
|
42
|
+
maxframe/core/graph/builder/utils.py,sha256=656KxKPwE8Il8S8OefItfqkhHQ8kyfSjfqDag1Ie3UE,1353
|
|
44
43
|
maxframe/core/graph/tests/__init__.py,sha256=29eM5D4knhYwe3TF42naTuC5b4Ym3VeH4rK8KpdLWNY,609
|
|
45
44
|
maxframe/core/graph/tests/test_graph.py,sha256=nkVn_dLk0oT42HWJxnSjniC5ElXjsHxC1Jzlg1CKHcQ,7667
|
|
46
|
-
maxframe/core/operator/__init__.py,sha256=
|
|
47
|
-
maxframe/core/operator/base.py,sha256=
|
|
45
|
+
maxframe/core/operator/__init__.py,sha256=s2r2k2-5iP57gByVSg8K_fTj6iQPXOgSto0kW6bvOoM,1098
|
|
46
|
+
maxframe/core/operator/base.py,sha256=owRYDDMvnL_4bOdlQXLTq6NFeE6RiZYKSrFrDglkBqc,15635
|
|
48
47
|
maxframe/core/operator/core.py,sha256=cDzq0_9k7pfUiyAkaIq2eLaP6fAw7uRS-7bacon0Acg,9539
|
|
49
48
|
maxframe/core/operator/fetch.py,sha256=4g9kyJbIco7cDgbdUJOJNtC3NCploUU45jnateGYG8c,1563
|
|
50
|
-
maxframe/core/operator/
|
|
51
|
-
maxframe/core/operator/objects.py,sha256=bA8taaGQYVuKh3CxLjKTlAw4LNUar5Agol75-G8dhjY,2224
|
|
49
|
+
maxframe/core/operator/objects.py,sha256=OylWHC78AIpxM4M3ns4MzqGF7HzTJaWU9QJv-B3zKzQ,2028
|
|
52
50
|
maxframe/core/operator/shuffle.py,sha256=fUp5dm6cOEL4JXVz2Vr33dzycQQwC5mNExO0-2GPwkE,4857
|
|
51
|
+
maxframe/core/operator/utils.py,sha256=91Doo94Yj7VPZBiu-0AEWs4eqGJwBqMxgWPokt09Qes,1761
|
|
53
52
|
maxframe/core/operator/tests/__init__.py,sha256=29eM5D4knhYwe3TF42naTuC5b4Ym3VeH4rK8KpdLWNY,609
|
|
54
53
|
maxframe/core/operator/tests/test_core.py,sha256=iqZk4AWubFLO24V_VeV6SEy5xrzBFLP9qKK6tKO0SGs,1755
|
|
55
54
|
maxframe/core/tests/__init__.py,sha256=29eM5D4knhYwe3TF42naTuC5b4Ym3VeH4rK8KpdLWNY,609
|
|
56
55
|
maxframe/core/tests/test_mode.py,sha256=fyRH-ksa6MogEs6kNhtXhCZyvhYqflgaXJYI3nSo-ps,2507
|
|
57
|
-
maxframe/dataframe/__init__.py,sha256=
|
|
56
|
+
maxframe/dataframe/__init__.py,sha256=FqEhQAdEx5W8-P8mG3Wwzx-gJcScVpcqkaDAp6ejWgU,2323
|
|
58
57
|
maxframe/dataframe/arrays.py,sha256=rOvhxMQars9E3SOYSu0ygBuuRVY0QV6xzengnMqKs4s,29616
|
|
59
|
-
maxframe/dataframe/core.py,sha256=
|
|
60
|
-
maxframe/dataframe/initializer.py,sha256=
|
|
61
|
-
maxframe/dataframe/operators.py,sha256=
|
|
62
|
-
maxframe/dataframe/utils.py,sha256=
|
|
58
|
+
maxframe/dataframe/core.py,sha256=z96cEmBsCMalavN0GMzEU1iTF2zDiWomnNGq0y0BHA8,77441
|
|
59
|
+
maxframe/dataframe/initializer.py,sha256=f_gYxuwrTQL_-0FKMWUnX84jBsuRwv4Z7y-1Vf15ZA0,11150
|
|
60
|
+
maxframe/dataframe/operators.py,sha256=7u2v-yRl2wcTg8BmIXh-IFrj4TcKoegqf06gm-t0wGQ,7834
|
|
61
|
+
maxframe/dataframe/utils.py,sha256=8R0ah_9pH1T_aBNzl_GCaLjLefJ_CPXmWt60_Byl164,45993
|
|
63
62
|
maxframe/dataframe/arithmetic/__init__.py,sha256=MPnITPuO7DDjAMTBawpennv6D0V9AnT6oF0nz2KUIqc,12837
|
|
64
63
|
maxframe/dataframe/arithmetic/abs.py,sha256=EgyzciSwjE_I3ZBuzeVJFVzBHsxn9MWzCtvHgyEl6ek,1016
|
|
65
64
|
maxframe/dataframe/arithmetic/add.py,sha256=wbmfAZgxjuP02ZUV4-VEsNhJlyo9tytXwkEx65ahuxI,1766
|
|
@@ -69,35 +68,35 @@ maxframe/dataframe/arithmetic/arcsin.py,sha256=z1s2UUosWOjKxp3qkC2XKJ4MeK3l3txQ2
|
|
|
69
68
|
maxframe/dataframe/arithmetic/arcsinh.py,sha256=EbGXb8IrpHjBrGLDJxFpVgSUpJ3oiFgbzoVHKH4SzHo,963
|
|
70
69
|
maxframe/dataframe/arithmetic/arctan.py,sha256=bYEkgWV7Etqq8DjnSaXWdTn736NHW-R7Va4wy83DcL0,958
|
|
71
70
|
maxframe/dataframe/arithmetic/arctanh.py,sha256=USWdXHQU99W4PCsLpaen5kN3QlqaxMp-e9LIGnbIa4Y,963
|
|
72
|
-
maxframe/dataframe/arithmetic/around.py,sha256=
|
|
71
|
+
maxframe/dataframe/arithmetic/around.py,sha256=L5Akz-F4F-6zNSp9VamH-VZ0OkmbVBDjtAIO9m2kP6Y,3963
|
|
73
72
|
maxframe/dataframe/arithmetic/bitwise_and.py,sha256=NWbfauXqEUW9N0mjy9SfdTMYpP6-Qjb1rFMM63OwSEw,1473
|
|
74
73
|
maxframe/dataframe/arithmetic/bitwise_or.py,sha256=a3HW12Wz_XTGJQU0yuhFm_USY4A4ex4aSNNKh6yMFxM,1596
|
|
75
74
|
maxframe/dataframe/arithmetic/bitwise_xor.py,sha256=jQmUMreUiOTlYraPEDhcdrYrtZisTRTX68Lll3uk818,1472
|
|
76
75
|
maxframe/dataframe/arithmetic/ceil.py,sha256=YnNA0N6GRd3GfJfmq3Yc5nu95vqIteKzf7pRQ_sQ9Wk,948
|
|
77
|
-
maxframe/dataframe/arithmetic/core.py,sha256=
|
|
76
|
+
maxframe/dataframe/arithmetic/core.py,sha256=GJWdYOXmKhvessF1c7AiKl_-uHE6SQR-FzNfkgBnYNk,14409
|
|
78
77
|
maxframe/dataframe/arithmetic/cos.py,sha256=7eWAEOvO8RePY6Bs3FDoSFtL57fBJdvLJRslx8Or63o,943
|
|
79
78
|
maxframe/dataframe/arithmetic/cosh.py,sha256=X15rxbk0RymYTTG0ISUvtZCl2T3YIQvx-w3aTtMVjyc,948
|
|
80
79
|
maxframe/dataframe/arithmetic/degrees.py,sha256=AdkR27ECvXJxNtie2pdiTcSu_mlX5zuhnljO_DL9OzQ,963
|
|
81
|
-
maxframe/dataframe/arithmetic/docstring.py,sha256=
|
|
82
|
-
maxframe/dataframe/arithmetic/equal.py,sha256=
|
|
80
|
+
maxframe/dataframe/arithmetic/docstring.py,sha256=JRxNuSzu5ZCUCCSN_VH1hNx21S9k6O83BLmY9z-0Rqw,12107
|
|
81
|
+
maxframe/dataframe/arithmetic/equal.py,sha256=f1XNB0hQEgyC0NrjRhqSq6OWEFaz0AdEbSEa5L46g_I,1575
|
|
83
82
|
maxframe/dataframe/arithmetic/exp.py,sha256=22_EHcKx3d0x880QqPQYY_x8rUqaRhgTqAgvPrSt0PM,943
|
|
84
83
|
maxframe/dataframe/arithmetic/exp2.py,sha256=3dRamSqFmgnRFVbjP3-8K4MX46uryNuZZwoif4zHsRI,948
|
|
85
84
|
maxframe/dataframe/arithmetic/expm1.py,sha256=MYVaTA7sDpaYeO9UqG1KBuQVQatOBdggD1Gg2zk1OZw,953
|
|
86
85
|
maxframe/dataframe/arithmetic/floor.py,sha256=Ojci1eQLgNXVFyqle1oirDFhofHGtFugtLHQgX-oOng,953
|
|
87
86
|
maxframe/dataframe/arithmetic/floordiv.py,sha256=gxiOirTCJVJQRdsGVMRrJ9oQS6MbdRf-Az8BhcY4pRg,1891
|
|
88
|
-
maxframe/dataframe/arithmetic/greater.py,sha256=
|
|
89
|
-
maxframe/dataframe/arithmetic/greater_equal.py,sha256=
|
|
87
|
+
maxframe/dataframe/arithmetic/greater.py,sha256=jvg8ax5ejg6VYgmHmIJ55XX_EmevIxBn1l86-5b0hYI,1606
|
|
88
|
+
maxframe/dataframe/arithmetic/greater_equal.py,sha256=1krtzKHcihI9pHi_s5q2TYvcM-dzcCcMvQTesnCpYuU,1631
|
|
90
89
|
maxframe/dataframe/arithmetic/invert.py,sha256=RZrB4_t9vaoopPaAIynllhv58zNpQpa8KzaBm5972XU,1018
|
|
91
90
|
maxframe/dataframe/arithmetic/is_ufuncs.py,sha256=grYk2-AL6x4REVkGDPm2J3iHpKdIzIDNFoaTQWLlk3U,1798
|
|
92
|
-
maxframe/dataframe/arithmetic/less.py,sha256=
|
|
93
|
-
maxframe/dataframe/arithmetic/less_equal.py,sha256=
|
|
91
|
+
maxframe/dataframe/arithmetic/less.py,sha256=3PXxUpy11Ou_fl6fuXLMJyxiZlyE_zJCoappk4lMTN8,1575
|
|
92
|
+
maxframe/dataframe/arithmetic/less_equal.py,sha256=pLK78jjNPOrmoOLULTAxKIJXNUp0_HC0csiQ0sGnvWs,1616
|
|
94
93
|
maxframe/dataframe/arithmetic/log.py,sha256=4aJL3Ie5hjoB5OeW61-uUpYuXY8q_OGIYsBTHFOj-xU,943
|
|
95
94
|
maxframe/dataframe/arithmetic/log10.py,sha256=qSrf78LGNTbve93PgMwBQCHrwb_pXTxPnwWj5hGZHc8,953
|
|
96
95
|
maxframe/dataframe/arithmetic/log2.py,sha256=6vlRaylM_P5Lb10bzcyQqeaK0W9jMa2qKc-r46kt99E,948
|
|
97
96
|
maxframe/dataframe/arithmetic/mod.py,sha256=5mH0nm3xb7-xqhtoC8JE8T0cJN_HUtz-SKqMPw22vKE,1762
|
|
98
97
|
maxframe/dataframe/arithmetic/multiply.py,sha256=Qen_WyhbAkKHhyzy_6SZ27g9Q0tQObcWs-jLy6Cz1kY,1793
|
|
99
98
|
maxframe/dataframe/arithmetic/negative.py,sha256=yKEeHZIVAGVI-5T6ghkAsp9tlmO2zuyZ8VCwm481NP8,1040
|
|
100
|
-
maxframe/dataframe/arithmetic/not_equal.py,sha256=
|
|
99
|
+
maxframe/dataframe/arithmetic/not_equal.py,sha256=mDXvV0I-mzcuDag5OLzXhSmcuj4JXzU6NVy7yVLSpSM,1591
|
|
101
100
|
maxframe/dataframe/arithmetic/power.py,sha256=4SnDtDhYd6t19v2w6vdq0aCYhvdaahyuOsfzZVACCQ4,1879
|
|
102
101
|
maxframe/dataframe/arithmetic/radians.py,sha256=xuKMlEGZspnraj6nh4GV4bP1NsRiDjtoZJ7Cz44lQhY,963
|
|
103
102
|
maxframe/dataframe/arithmetic/sin.py,sha256=13wADLxfMNecSTOHSEyMFpwPsFM0Rt78DpM9FAs32ZA,943
|
|
@@ -109,93 +108,97 @@ maxframe/dataframe/arithmetic/tanh.py,sha256=mbGIJLCLPypcwbZhGdqfboFKVQ7RSy-B0lA
|
|
|
109
108
|
maxframe/dataframe/arithmetic/truediv.py,sha256=MpvDwQ4SZ6ugXF04oFv0kheMcx-EcgkXeIBiPjh6MQQ,1872
|
|
110
109
|
maxframe/dataframe/arithmetic/trunc.py,sha256=ji9K9VRxvDPfODJmZ_yKBY885YKTWwdGK99kx4ZEZ5U,953
|
|
111
110
|
maxframe/dataframe/arithmetic/tests/__init__.py,sha256=29eM5D4knhYwe3TF42naTuC5b4Ym3VeH4rK8KpdLWNY,609
|
|
112
|
-
maxframe/dataframe/arithmetic/tests/test_arithmetic.py,sha256=
|
|
111
|
+
maxframe/dataframe/arithmetic/tests/test_arithmetic.py,sha256=BLCpyMNnWo2LHHqtGWyLZTG2ThlRWkbzlrg7BeiqDF0,25881
|
|
113
112
|
maxframe/dataframe/datasource/__init__.py,sha256=SX8ZXJsvQYntLZiEk-X1LmbF6v6k-Kaueh0R04N2eCQ,655
|
|
114
113
|
maxframe/dataframe/datasource/core.py,sha256=1X32MxCU3Y5vxTVEIkNNXx29eIARyRCvnkVe7ThT0wI,2768
|
|
115
114
|
maxframe/dataframe/datasource/dataframe.py,sha256=P3kvDS_Jh6EGgJRVfh_rHVkVfMaHeGQ2U7rZT5Gr2Tk,2082
|
|
116
|
-
maxframe/dataframe/datasource/date_range.py,sha256=
|
|
115
|
+
maxframe/dataframe/datasource/date_range.py,sha256=wmralVkR1F7vYKnOAQA34gXqHE6MwqUuKAgVodsk8f8,17731
|
|
117
116
|
maxframe/dataframe/datasource/from_index.py,sha256=c6ecX7miuig3-uZB3-aj68TkpUypzpaogZsUZSbTtBs,1911
|
|
118
117
|
maxframe/dataframe/datasource/from_records.py,sha256=ygpKOMXZnDdWzGxMxQ4KdGv-tJFT_yhpLGnDlS1rNLc,3549
|
|
119
118
|
maxframe/dataframe/datasource/from_tensor.py,sha256=mShHYi0fZcG7ZShFVgIezaphh8tSFqR9-nQMm5YKIhw,15146
|
|
120
119
|
maxframe/dataframe/datasource/index.py,sha256=X_NShW67nYJGxaWp3qOrvyInNkz9L-XHjbApU4fHoes,4518
|
|
121
120
|
maxframe/dataframe/datasource/read_csv.py,sha256=IvQihmpcZIdzSD7ziX92aTAHNyP5WnTgd2cZz_h43sQ,24668
|
|
122
|
-
maxframe/dataframe/datasource/read_odps_query.py,sha256=
|
|
123
|
-
maxframe/dataframe/datasource/read_odps_table.py,sha256=
|
|
121
|
+
maxframe/dataframe/datasource/read_odps_query.py,sha256=Uao52Qg9o1hZAORIw5Sfphx9bNhd5BWg4EoXHq_2Bn8,13861
|
|
122
|
+
maxframe/dataframe/datasource/read_odps_table.py,sha256=9cMQZ3pdJbL54xHJE2o884iTrwv6VDRkjfehdOa6SOI,9594
|
|
124
123
|
maxframe/dataframe/datasource/read_parquet.py,sha256=SZPrWoax2mwMBNvRk_3lkS72pZLe-_X_GwQ1JROBMs4,14952
|
|
125
124
|
maxframe/dataframe/datasource/series.py,sha256=elQVupKETh-hUHI2fTu8TRxBE729Vyrmpjx17XlRV-8,1964
|
|
126
125
|
maxframe/dataframe/datasource/tests/__init__.py,sha256=29eM5D4knhYwe3TF42naTuC5b4Ym3VeH4rK8KpdLWNY,609
|
|
127
|
-
maxframe/dataframe/datasource/tests/test_datasource.py,sha256=
|
|
126
|
+
maxframe/dataframe/datasource/tests/test_datasource.py,sha256=D5OMUx2ZOKoFXcb-PWJ0cVx4M2gVhcfeDwMzmoBTYgg,17659
|
|
128
127
|
maxframe/dataframe/datastore/__init__.py,sha256=MmlHYvFacMReOHDQMXF-z2bCsLyrSHYBVwIlCsZGOK4,810
|
|
129
128
|
maxframe/dataframe/datastore/core.py,sha256=HCqrZN47RP-IC6zDqLX_RErDUAWkcTB58FHNU70V2b4,762
|
|
130
129
|
maxframe/dataframe/datastore/to_csv.py,sha256=sns4bBgNpq7Ihb-goNqaBRdiEtrG-V6jqhNkWGZ1YaE,7974
|
|
131
|
-
maxframe/dataframe/datastore/to_odps.py,sha256=
|
|
132
|
-
maxframe/dataframe/
|
|
130
|
+
maxframe/dataframe/datastore/to_odps.py,sha256=HzIAYRRLJBtsUCHD3vcfXWBE4jAEsCzrGt3Nx34B-d8,6912
|
|
131
|
+
maxframe/dataframe/datastore/tests/__init__.py,sha256=29eM5D4knhYwe3TF42naTuC5b4Ym3VeH4rK8KpdLWNY,609
|
|
132
|
+
maxframe/dataframe/datastore/tests/test_to_odps.py,sha256=385SCJK_XkddV9dJrRqSOuaXurpGjWd_QwRSeGTOTNU,1344
|
|
133
|
+
maxframe/dataframe/extensions/__init__.py,sha256=diBJabvNM9rhQ2IvmwEUdQzejMt9d5erB8exzAyH9Rs,1723
|
|
133
134
|
maxframe/dataframe/extensions/accessor.py,sha256=0OA8YPL3rofSvdU0z_1kMLImahrvow_vhxdQDYODki0,1497
|
|
134
|
-
maxframe/dataframe/extensions/
|
|
135
|
+
maxframe/dataframe/extensions/flatjson.py,sha256=_tpPzvG4H2-yoL8ms6uI1RdlYOsoaJ0w-9Dciz0isuQ,4499
|
|
136
|
+
maxframe/dataframe/extensions/flatmap.py,sha256=jaociToBmJep6bV2KWx9N89XueqhfnKy9oupujbI1po,10393
|
|
137
|
+
maxframe/dataframe/extensions/reshuffle.py,sha256=3pQEg0xu6d_OA0Rl-9UCHwLEggnqfhQw-pqz3dSIPJs,2718
|
|
135
138
|
maxframe/dataframe/extensions/tests/__init__.py,sha256=29eM5D4knhYwe3TF42naTuC5b4Ym3VeH4rK8KpdLWNY,609
|
|
136
|
-
maxframe/dataframe/extensions/tests/test_extensions.py,sha256=
|
|
139
|
+
maxframe/dataframe/extensions/tests/test_extensions.py,sha256=P7iX7jwru7ZOnLDNCYdWcwR8A5aHytDlCLrmWNrcqVA,4921
|
|
137
140
|
maxframe/dataframe/fetch/__init__.py,sha256=W1arTCAjD0v_bdVeIzpJMnil3h0Ucsn29zFWmgZcYck,668
|
|
138
141
|
maxframe/dataframe/fetch/core.py,sha256=27VANjpMm2rdCg1KPZxWZrKWNuNgSMzZrordI05mqWc,3424
|
|
139
142
|
maxframe/dataframe/groupby/__init__.py,sha256=wMjmvk4ced1uCm7bw0oodIKvaep61KhupriL9JRRq5w,3443
|
|
140
143
|
maxframe/dataframe/groupby/aggregation.py,sha256=cUnu-Bj6YD1TVkaafwL2aGIIqixLEq7s9-7BQ_1T2DI,12303
|
|
141
144
|
maxframe/dataframe/groupby/apply.py,sha256=DQHyEfqj-3tfK-CxwpdVgya0_YC9dImeWYPZJDw7ckk,9735
|
|
142
|
-
maxframe/dataframe/groupby/core.py,sha256=
|
|
143
|
-
maxframe/dataframe/groupby/cum.py,sha256=
|
|
144
|
-
maxframe/dataframe/groupby/fill.py,sha256=
|
|
145
|
-
maxframe/dataframe/groupby/getitem.py,sha256=
|
|
145
|
+
maxframe/dataframe/groupby/core.py,sha256=3I2_Sg336hdrBmJLJdagmQKT4rIn3wjahbPTqld5p7o,6255
|
|
146
|
+
maxframe/dataframe/groupby/cum.py,sha256=T5fVdcy8XzLjrTE7NNqkwVgydg_aKM8xhlcWCsjsHwM,3806
|
|
147
|
+
maxframe/dataframe/groupby/fill.py,sha256=twmIAWZx5xGmXVfikaASTqwreGjevbLxake1wUkRdls,4952
|
|
148
|
+
maxframe/dataframe/groupby/getitem.py,sha256=vPorFrW2C7c1rJNSMmwmODd5B67IN0o5wOTW5e2GRrs,3513
|
|
146
149
|
maxframe/dataframe/groupby/head.py,sha256=idlO3MCVKgHYmLsBrPMsUpxt3Zbha07r_ZJXJZy5P3k,3371
|
|
147
150
|
maxframe/dataframe/groupby/sample.py,sha256=bM7xrF4dzAM8lA0gtkglEfmys1og27dwCm9UiFayJTU,7149
|
|
148
|
-
maxframe/dataframe/groupby/transform.py,sha256=
|
|
151
|
+
maxframe/dataframe/groupby/transform.py,sha256=bWqzIuHazEih5pTV33fO67CP47tuu6T_gOUbHAqlXvA,8965
|
|
149
152
|
maxframe/dataframe/groupby/tests/__init__.py,sha256=29eM5D4knhYwe3TF42naTuC5b4Ym3VeH4rK8KpdLWNY,609
|
|
150
|
-
maxframe/dataframe/groupby/tests/test_groupby.py,sha256=
|
|
153
|
+
maxframe/dataframe/groupby/tests/test_groupby.py,sha256=y-UowOVTtZWx_iusKDiIWNzuMM-SFTOCbOyvujytWys,12754
|
|
151
154
|
maxframe/dataframe/indexing/__init__.py,sha256=AkjowbPJu6kM4fJF5baU6g6FA7n2ux5__f4_2budLSs,3297
|
|
152
155
|
maxframe/dataframe/indexing/add_prefix_suffix.py,sha256=YMHFXnVcFsRJfVIOHlTWkOGCqzxWAJam3SXmIRjKGKk,3076
|
|
153
|
-
maxframe/dataframe/indexing/align.py,sha256
|
|
156
|
+
maxframe/dataframe/indexing/align.py,sha256=-kV91o_-pq7rFsv0zgnGZuEyn8HqyUK_Ejv4VWF5fps,12434
|
|
154
157
|
maxframe/dataframe/indexing/at.py,sha256=7Igb4I9_9drZSCZITFRNL3Q-7EI_mtfklUrnNP0apHo,2300
|
|
155
158
|
maxframe/dataframe/indexing/getitem.py,sha256=eS8dnlMEP2zaYvzYZFlBNfwjD89UqT0MRIlNuDcAJQc,7958
|
|
156
159
|
maxframe/dataframe/indexing/iat.py,sha256=gc9V2Ps8fvBFIgJbYTY3ZJmH54rv-dunZzJsY3Lns1s,1164
|
|
157
160
|
maxframe/dataframe/indexing/iloc.py,sha256=O4lCMV2Q0GtSM3_FbKY6rl_1WUGcae-H2wHvCVUGUG8,17987
|
|
158
161
|
maxframe/dataframe/indexing/insert.py,sha256=bvKdAswI688hOIaL9EvU7LnbjpELUdv5QS7rogSn_5U,2997
|
|
159
|
-
maxframe/dataframe/indexing/loc.py,sha256=
|
|
162
|
+
maxframe/dataframe/indexing/loc.py,sha256=cCl5SfGEOdl_im6F50w1JS4aPqqz-SQwlqvdy_Wez78,15388
|
|
160
163
|
maxframe/dataframe/indexing/reindex.py,sha256=v4Rd85aNfh3onzcFqOhdUjiLrDv9QuNtGh-OaWpnG-4,19699
|
|
161
|
-
maxframe/dataframe/indexing/rename.py,sha256=
|
|
164
|
+
maxframe/dataframe/indexing/rename.py,sha256=eXPW-a16JWhSUheN_KE3kqV3W4CMBqEoVHCyJauHaa4,13331
|
|
162
165
|
maxframe/dataframe/indexing/rename_axis.py,sha256=ugKcve4Kp8EuSmokQFUL-mVhGQ1cd6IDZ3UauHPiFeQ,6511
|
|
163
166
|
maxframe/dataframe/indexing/reset_index.py,sha256=_NFQZTjHzc_IgiqC-aqFJUfjneyJUN42-ujxGPfBVnQ,13524
|
|
164
|
-
maxframe/dataframe/indexing/sample.py,sha256=
|
|
167
|
+
maxframe/dataframe/indexing/sample.py,sha256=XrgzEugAL_WXJc_OkrWAugXUOIaqg3_OwWBp-hMee9U,8391
|
|
165
168
|
maxframe/dataframe/indexing/set_axis.py,sha256=ECRV5rRfbsKAQ90nEZVWCtGyu_0hN8ZPTmWNRGIJ0zo,5724
|
|
166
|
-
maxframe/dataframe/indexing/set_index.py,sha256=
|
|
169
|
+
maxframe/dataframe/indexing/set_index.py,sha256=sJmXxBh-veIbf0LohLo69FSB2FTuYc0qOsyO7WQFX4k,4323
|
|
167
170
|
maxframe/dataframe/indexing/setitem.py,sha256=N82AVPJ6iENXNJx7m662jPp2HH-Sb5QZvuOIoDlQJ7w,5134
|
|
168
171
|
maxframe/dataframe/indexing/where.py,sha256=puKc4XR45KmJxCar8AwWbjJouEqYxW5-SdAWLuwCZ44,8875
|
|
169
172
|
maxframe/dataframe/indexing/tests/__init__.py,sha256=29eM5D4knhYwe3TF42naTuC5b4Ym3VeH4rK8KpdLWNY,609
|
|
170
173
|
maxframe/dataframe/indexing/tests/test_indexing.py,sha256=F0tHjhVTZyGrE2khpxGIAvFagLCqy_3mf8psIrRwAYc,16099
|
|
171
|
-
maxframe/dataframe/merge/__init__.py,sha256=
|
|
174
|
+
maxframe/dataframe/merge/__init__.py,sha256=PpWljZpJd6NxW8dOBcyp2taaWyTfdW426y3UNg_B0Fo,1161
|
|
172
175
|
maxframe/dataframe/merge/append.py,sha256=9CgzHZEdnJjDwzuzdTMhodJAeOJJuUVjYT4RMFOW4nI,4973
|
|
173
|
-
maxframe/dataframe/merge/concat.py,sha256=
|
|
174
|
-
maxframe/dataframe/merge/merge.py,sha256=
|
|
176
|
+
maxframe/dataframe/merge/concat.py,sha256=btiTTO-9j1cieS5dDwaccaY4MlfR0GMVzaBj78Xjqpo,12127
|
|
177
|
+
maxframe/dataframe/merge/merge.py,sha256=Vz0lgj9qRdqNyNrw-pPBEXgyobzWx4zvjQZmzOqgdcE,31268
|
|
175
178
|
maxframe/dataframe/merge/tests/__init__.py,sha256=29eM5D4knhYwe3TF42naTuC5b4Ym3VeH4rK8KpdLWNY,609
|
|
176
|
-
maxframe/dataframe/merge/tests/test_merge.py,sha256=
|
|
179
|
+
maxframe/dataframe/merge/tests/test_merge.py,sha256=e2H0c6LGGExZRJUNSWnvb0fapoUIW-pRoeVjqrL8dcQ,11599
|
|
177
180
|
maxframe/dataframe/misc/__init__.py,sha256=Lq82VMR4qWhYD1lYTbj8Wr7ndOh0CNATdOtlOikuZRQ,5401
|
|
178
181
|
maxframe/dataframe/misc/_duplicate.py,sha256=EYNv1_sKm14d91Gm4_Buxo7b5Tuy93MOvaq1TTAUkis,1516
|
|
179
182
|
maxframe/dataframe/misc/accessor.py,sha256=XtbMV6QrYb2m9oAd8swkFoKAq5mxj_QO0LVLVw5uJB4,10303
|
|
180
|
-
maxframe/dataframe/misc/apply.py,sha256=
|
|
183
|
+
maxframe/dataframe/misc/apply.py,sha256=BIaBSjx-KxkdubPc_N_C_F5uuaV4aIdRdiPsZhN-7Qg,24057
|
|
181
184
|
maxframe/dataframe/misc/astype.py,sha256=9CO4BEW98Flqk7HHWScjxRK8EdeTRgQDYcyRwEnyIB0,8033
|
|
182
|
-
maxframe/dataframe/misc/case_when.py,sha256=
|
|
185
|
+
maxframe/dataframe/misc/case_when.py,sha256=ApjsHykW53a61Rfe034S0wT1X6lzWk5zYJ7vIsaiQIc,5002
|
|
183
186
|
maxframe/dataframe/misc/check_monotonic.py,sha256=LDltdmPq90fZn8A0ucqpNy0uswKo2hJx59Y4EHSN9l4,2506
|
|
184
187
|
maxframe/dataframe/misc/cut.py,sha256=dOKWwd1D2CYU9LVQvfonMrD8E2eGeBONZvWN1ArCfMM,14288
|
|
185
188
|
maxframe/dataframe/misc/datetimes.py,sha256=zR99O-8EKKWt4UtNdPI22K8N9mP9XSs9lDQLBPEmFlo,2582
|
|
186
|
-
maxframe/dataframe/misc/describe.py,sha256=
|
|
189
|
+
maxframe/dataframe/misc/describe.py,sha256=PaddhvhKVZDkG6WuWGWi3LL7Vg8uny_3WzlVbdKZseQ,4478
|
|
187
190
|
maxframe/dataframe/misc/diff.py,sha256=j6C0PNb4eufB7ZU-mAXNNIC8y1wzHd6MHS-IWTz606E,5701
|
|
188
191
|
maxframe/dataframe/misc/drop.py,sha256=UDP1EWpHPa0tkpjvNPIcstAiWoMainCMcvV7wefH7RA,13469
|
|
189
|
-
maxframe/dataframe/misc/drop_duplicates.py,sha256=
|
|
192
|
+
maxframe/dataframe/misc/drop_duplicates.py,sha256=Y6D7_xqOCMq9r5BGJIaVVAeXlhbniO6GqGTq_3LTYdM,8716
|
|
190
193
|
maxframe/dataframe/misc/duplicated.py,sha256=w5aXwtDn5_ZbvnB0oCOoTE7EJQ6cdSnhTjL8SMci0Tw,8826
|
|
191
|
-
maxframe/dataframe/misc/eval.py,sha256=
|
|
194
|
+
maxframe/dataframe/misc/eval.py,sha256=3UuqaMW0Pe6CRh82XtKiNNuWeJOyz_hzhzRZ2zqpBLQ,25091
|
|
192
195
|
maxframe/dataframe/misc/explode.py,sha256=aWQObjpxgPCCm87Lc1cavqotETz6xVLm8HSsPhM3n5k,5182
|
|
193
196
|
maxframe/dataframe/misc/get_dummies.py,sha256=fkoGya2HUVMlJviEfCy1toedfa_gOro_E0xrl-azGDg,7295
|
|
194
197
|
maxframe/dataframe/misc/isin.py,sha256=mqce_GgIkT390glXJ4jq4JEcRYhpbJNkN6tqP-8x078,7148
|
|
195
198
|
maxframe/dataframe/misc/map.py,sha256=NSsQvOFrRvULVHPOfJk3B_tIh2IRU4IE0oOF2qkL4mE,8385
|
|
196
199
|
maxframe/dataframe/misc/melt.py,sha256=LoqZ45-J8WvXixtFEbEF1UCtZy4-E6loFtVdFghgt0A,5282
|
|
197
|
-
maxframe/dataframe/misc/memory_usage.py,sha256=
|
|
198
|
-
maxframe/dataframe/misc/pct_change.py,sha256
|
|
200
|
+
maxframe/dataframe/misc/memory_usage.py,sha256=3d6g2lAW7R4BV_vpUpn2-BFs9cwbEW03UH-6AEhmue0,8137
|
|
201
|
+
maxframe/dataframe/misc/pct_change.py,sha256=-T22ebhiTy7psZS9xE1087xKDuznasaNwoGXs5yYZPc,2584
|
|
199
202
|
maxframe/dataframe/misc/pivot_table.py,sha256=5HmAdczDMJbznFq2omuBKjjib0WvTrohXGwCtHAMwOY,9782
|
|
200
203
|
maxframe/dataframe/misc/qcut.py,sha256=kcYhSf6m47u5zIEPgG98nE3hv57e6uuCuJs_dxpcszE,3841
|
|
201
204
|
maxframe/dataframe/misc/select_dtypes.py,sha256=qsrWW8BNBd-hAT1yIlrnbvBjfbzZyttzch7bxKgRkCg,3248
|
|
@@ -203,15 +206,15 @@ maxframe/dataframe/misc/shift.py,sha256=HCGKBuToksgu5LZR_k5eaQrdyrXCeqRZYbZs0J5-
|
|
|
203
206
|
maxframe/dataframe/misc/stack.py,sha256=a3eWRUnFQ4okGUEirsdIq9taLfcRTCKnLfcXHg-sce8,8200
|
|
204
207
|
maxframe/dataframe/misc/string_.py,sha256=AaEfHcPAJWZ8Ug-zbD0gjaBfuFXWfHDXbrHQ1Kaqes4,8322
|
|
205
208
|
maxframe/dataframe/misc/to_numeric.py,sha256=VxYijzFTiUD9Jc62fE24tZ3iB8EVb9cBqZwvQFt2bHA,6440
|
|
206
|
-
maxframe/dataframe/misc/transform.py,sha256=
|
|
209
|
+
maxframe/dataframe/misc/transform.py,sha256=NabM88Ix5fFaH_waStAdjylj3BGT_Uel0c0pH1t8o90,11252
|
|
207
210
|
maxframe/dataframe/misc/transpose.py,sha256=SsKRuN9Pj36D6kntnsLfzBsFHjSCiV1cZuPJuKHgbGU,3772
|
|
208
|
-
maxframe/dataframe/misc/value_counts.py,sha256=
|
|
211
|
+
maxframe/dataframe/misc/value_counts.py,sha256=EpgfnbPbndrTKgTE_xgZGW-uHZDw1MIWQUF40oGGWUI,5384
|
|
209
212
|
maxframe/dataframe/misc/tests/__init__.py,sha256=29eM5D4knhYwe3TF42naTuC5b4Ym3VeH4rK8KpdLWNY,609
|
|
210
|
-
maxframe/dataframe/misc/tests/test_misc.py,sha256=
|
|
213
|
+
maxframe/dataframe/misc/tests/test_misc.py,sha256=0_teMFSad_oi4AtDVFixaKCDwVrx2ZLMbCkV5d604BY,16461
|
|
211
214
|
maxframe/dataframe/missing/__init__.py,sha256=DQDpYqjvXN6o6TF76wJIpf1fZICOEJskljzwDNjN80k,1866
|
|
212
215
|
maxframe/dataframe/missing/checkna.py,sha256=_Rd-HRX7lTzMV3myu745tzoTB8WIqDIJu2TcT1SfdB0,7113
|
|
213
|
-
maxframe/dataframe/missing/dropna.py,sha256=
|
|
214
|
-
maxframe/dataframe/missing/fillna.py,sha256=
|
|
216
|
+
maxframe/dataframe/missing/dropna.py,sha256=at89SeMZxHZdmSFOInwtz7ap4g9Vy_4W4OK_Bj6DWpc,8520
|
|
217
|
+
maxframe/dataframe/missing/fillna.py,sha256=GIOayBXUBSQf6Enf8IR2UuVOvru3lR2SlXhiTLonM_w,9180
|
|
215
218
|
maxframe/dataframe/missing/replace.py,sha256=g9KqENIuuaFW33KIFXTClngWcVu2ttrGa28UwbtQJ8o,13779
|
|
216
219
|
maxframe/dataframe/missing/tests/__init__.py,sha256=29eM5D4knhYwe3TF42naTuC5b4Ym3VeH4rK8KpdLWNY,609
|
|
217
220
|
maxframe/dataframe/missing/tests/test_missing.py,sha256=zhsgn-yonyXYhlFZtH2OpXtvN0NLxFOZpU_vCumTCqA,3223
|
|
@@ -223,7 +226,7 @@ maxframe/dataframe/reduction/__init__.py,sha256=ejIK5G6ylU0q37XVs_2DkmsnHTtYbE44
|
|
|
223
226
|
maxframe/dataframe/reduction/aggregation.py,sha256=-v_jzKAiLGHOmv3MTDgqovfEYLgeJobU3CqaMWKqkRo,12948
|
|
224
227
|
maxframe/dataframe/reduction/all.py,sha256=enpOWffBNXAEgFSaiZm0KPwU3izMvWd7M8smLwZjaeE,2044
|
|
225
228
|
maxframe/dataframe/reduction/any.py,sha256=PensVOfgCcxu7u7-1OuMcD6gov2c2kN01B57O3eoHw8,2048
|
|
226
|
-
maxframe/dataframe/reduction/core.py,sha256=
|
|
229
|
+
maxframe/dataframe/reduction/core.py,sha256=Ys8mP0-p0zRzND8LtsZLeyBkTDeteJFoSqJCbS330BQ,31232
|
|
227
230
|
maxframe/dataframe/reduction/count.py,sha256=YLx9bFb2IdnBIkTyApRad0x1yub6TmqncP6TzGcOL_Q,1800
|
|
228
231
|
maxframe/dataframe/reduction/cummax.py,sha256=S2iUhfBL2lKwFKhFIYMQxlE26pYroEYKG3cqmG0gIAs,1043
|
|
229
232
|
maxframe/dataframe/reduction/cummin.py,sha256=EWz1CUCQoTwxluvvQPtcNxWdIISr3bBaZPttB104Pdc,1043
|
|
@@ -245,20 +248,20 @@ maxframe/dataframe/reduction/sum.py,sha256=IYWEg-lKO6yYHEkUkMOJehCPcXrcvhaJ36ScI
|
|
|
245
248
|
maxframe/dataframe/reduction/unique.py,sha256=sQts0dpyES_AmWk7CPJeDW7RnGXQ88HpS-gBpRL7Uzw,3045
|
|
246
249
|
maxframe/dataframe/reduction/var.py,sha256=WMBKa3r4fc4CmzjpG7w4JEZDUueMIwt9INa5AuoIyAI,2080
|
|
247
250
|
maxframe/dataframe/reduction/tests/__init__.py,sha256=29eM5D4knhYwe3TF42naTuC5b4Ym3VeH4rK8KpdLWNY,609
|
|
248
|
-
maxframe/dataframe/reduction/tests/test_reduction.py,sha256=
|
|
251
|
+
maxframe/dataframe/reduction/tests/test_reduction.py,sha256=EOyPUIR4c6o1NSoHiCh82f7MsC5-ZdJ6Oh9ClxngGRU,17704
|
|
249
252
|
maxframe/dataframe/sort/__init__.py,sha256=57j5S4NVcmcgI5pKlEWEio3qbtxdUCFA3B9sP1QJafU,1194
|
|
250
253
|
maxframe/dataframe/sort/core.py,sha256=FxwuboZE5yuAtCCj7EWntuk_ueaMdM25JZKrArHY_yQ,1260
|
|
251
254
|
maxframe/dataframe/sort/sort_index.py,sha256=R7PiCuI7kmoWX4EsmyJyqciettWi4CJl6_RMKZdxrmI,5565
|
|
252
|
-
maxframe/dataframe/sort/sort_values.py,sha256=
|
|
255
|
+
maxframe/dataframe/sort/sort_values.py,sha256=Zw_JEA3VOukd9HSpxqBeIcMgU4qtjrbCQ3vC-7jwGng,9003
|
|
253
256
|
maxframe/dataframe/sort/tests/__init__.py,sha256=29eM5D4knhYwe3TF42naTuC5b4Ym3VeH4rK8KpdLWNY,609
|
|
254
257
|
maxframe/dataframe/sort/tests/test_sort.py,sha256=2KwQP4eyAL7rflYrbei9ocU5oum3NjiGurWirR2GzHg,2685
|
|
255
258
|
maxframe/dataframe/statistics/__init__.py,sha256=gC4z9SHj8mG1EECYiMNeGPNF3aie1AOw8UATmiLG-bo,1117
|
|
256
|
-
maxframe/dataframe/statistics/corr.py,sha256=
|
|
257
|
-
maxframe/dataframe/statistics/quantile.py,sha256=
|
|
259
|
+
maxframe/dataframe/statistics/corr.py,sha256=ufSCKpITCR8HnKc7osxnxDwg8hvptrcKOjIeKsF4eB4,9763
|
|
260
|
+
maxframe/dataframe/statistics/quantile.py,sha256=8tX0kGx5ql1PRQp4KNdoIro9O67EQ3lgTS-fzOww-g8,11855
|
|
258
261
|
maxframe/dataframe/statistics/tests/__init__.py,sha256=29eM5D4knhYwe3TF42naTuC5b4Ym3VeH4rK8KpdLWNY,609
|
|
259
|
-
maxframe/dataframe/statistics/tests/test_statistics.py,sha256=
|
|
262
|
+
maxframe/dataframe/statistics/tests/test_statistics.py,sha256=rgPAFBWnE8d1CLVXR2odkEdUpTlabZQO433eVRr48RM,2888
|
|
260
263
|
maxframe/dataframe/tests/__init__.py,sha256=29eM5D4knhYwe3TF42naTuC5b4Ym3VeH4rK8KpdLWNY,609
|
|
261
|
-
maxframe/dataframe/tests/test_initializer.py,sha256=
|
|
264
|
+
maxframe/dataframe/tests/test_initializer.py,sha256=qvlKFDcS9jvuT-l2_v64VcAGWTYoPIpP72HQo8bMf3E,2060
|
|
262
265
|
maxframe/dataframe/tseries/__init__.py,sha256=29eM5D4knhYwe3TF42naTuC5b4Ym3VeH4rK8KpdLWNY,609
|
|
263
266
|
maxframe/dataframe/tseries/to_datetime.py,sha256=PAtSgFLpes87BwC9zdyj-caJEIeqMFREwyTMWZ9pJEI,11625
|
|
264
267
|
maxframe/dataframe/tseries/tests/__init__.py,sha256=29eM5D4knhYwe3TF42naTuC5b4Ym3VeH4rK8KpdLWNY,609
|
|
@@ -270,27 +273,54 @@ maxframe/dataframe/window/__init__.py,sha256=bQsgFdk801ezvU3Z4i-V-JGIOX-JzwsQk2J
|
|
|
270
273
|
maxframe/dataframe/window/aggregation.py,sha256=gTkI4ysG3Qd-pHiTI-aUWnsaGMZuk_gUhD8pZ-tZYko,3890
|
|
271
274
|
maxframe/dataframe/window/core.py,sha256=NKWQIao5dOI_3jL2Rzkgo_wdi36VCBIMWG4eRe1237M,2274
|
|
272
275
|
maxframe/dataframe/window/ewm.py,sha256=csPVRhHOTk2VP_I7WOuQMG6vlZtPXSij6A3Pe7H-who,8038
|
|
273
|
-
maxframe/dataframe/window/expanding.py,sha256=
|
|
276
|
+
maxframe/dataframe/window/expanding.py,sha256=aYcylGOQHo67CnavmA_s9I4ZCw8gM7MOso0AW-jKfn4,4067
|
|
274
277
|
maxframe/dataframe/window/rolling.py,sha256=czrpdXbenldL-9tYc8ndRBf7KlzIIfP4jwmM5V-fwO8,12418
|
|
275
278
|
maxframe/dataframe/window/tests/__init__.py,sha256=29eM5D4knhYwe3TF42naTuC5b4Ym3VeH4rK8KpdLWNY,609
|
|
276
279
|
maxframe/dataframe/window/tests/test_ewm.py,sha256=v1hM2ucFH_8aRn8AJqWEpvvVtSK9QQUCs911N0trbX8,2130
|
|
277
|
-
maxframe/dataframe/window/tests/test_expanding.py,sha256=
|
|
280
|
+
maxframe/dataframe/window/tests/test_expanding.py,sha256=LMZjcLQug84Nai47WWl7jF-tTHcM5uYfNomQOHvU-nI,1982
|
|
278
281
|
maxframe/dataframe/window/tests/test_rolling.py,sha256=eJYHh4MhKm_e9h4bCnK_d_aAYlKGQtFAbZTTEILe6gU,1771
|
|
282
|
+
maxframe/io/__init__.py,sha256=29eM5D4knhYwe3TF42naTuC5b4Ym3VeH4rK8KpdLWNY,609
|
|
283
|
+
maxframe/io/objects/__init__.py,sha256=QswbXcyRmPgMPdYyRFcm4maLAMDbOK0i-OUdHyyAn4Y,778
|
|
284
|
+
maxframe/io/objects/core.py,sha256=rhEYmS8Ty_cqJfjvTiPU-KaUVnr9DwPSIZEaPMZDH2U,4717
|
|
285
|
+
maxframe/io/objects/tensor.py,sha256=NQaYIItNYaeM0EcJ6TFejNWSSpXKSJjb6eI_ZKzXf6w,2749
|
|
286
|
+
maxframe/io/objects/tests/__init__.py,sha256=29eM5D4knhYwe3TF42naTuC5b4Ym3VeH4rK8KpdLWNY,609
|
|
287
|
+
maxframe/io/objects/tests/test_object_io.py,sha256=ElYAUf7jJtUMciZzzuEjPajSNEeqkMuWReHDDklo5Es,3189
|
|
288
|
+
maxframe/io/odpsio/__init__.py,sha256=xJbh1eHNI0D3xJG22VM3AHwwiwMIPldtGEJjildPsxc,925
|
|
289
|
+
maxframe/io/odpsio/arrow.py,sha256=Q83DRXCsg1HEuv821Y39i3bdddGHPh-ToKj9ZJ2Tx9g,5231
|
|
290
|
+
maxframe/io/odpsio/schema.py,sha256=Hs8i3Oe4_zjHZonznZ7RGdZRSww_S7AJXJidWxwTpqA,13388
|
|
291
|
+
maxframe/io/odpsio/tableio.py,sha256=vV0xHUgJz9QKdpzCsL1iIWu7MeaY46oiln8wNMqGvY4,25646
|
|
292
|
+
maxframe/io/odpsio/volumeio.py,sha256=yiZytTg3adJuYGwnwmAfMDshtomGd4cxqsyzCc40FhU,2230
|
|
293
|
+
maxframe/io/odpsio/tests/__init__.py,sha256=29eM5D4knhYwe3TF42naTuC5b4Ym3VeH4rK8KpdLWNY,609
|
|
294
|
+
maxframe/io/odpsio/tests/test_arrow.py,sha256=yeDWFzsm2IMS-k6jimlQ7uim5T6WW1Anuy8didaf4cs,3194
|
|
295
|
+
maxframe/io/odpsio/tests/test_schema.py,sha256=1eXjkUvzpNBcyaPhBbbTiIH-3LVi_ghYoVR25Fk8xqM,13622
|
|
296
|
+
maxframe/io/odpsio/tests/test_tableio.py,sha256=XPgbCJj_hxscynqYO4L3_g67LckYLJznqzcJyRLCm_M,5769
|
|
297
|
+
maxframe/io/odpsio/tests/test_volumeio.py,sha256=gZga0IWoEkpu6DL3qpemPzo_zHxou-F-nj0g2zeUGa4,2956
|
|
279
298
|
maxframe/learn/__init__.py,sha256=1QzrFCJmdZFy0Nh1Ng3V6yY_NVvoSUdTIqcU-HIa1wk,649
|
|
280
|
-
maxframe/learn/
|
|
299
|
+
maxframe/learn/core.py,sha256=jQVOXTFond0ia9IdvObCV5MBpIgjPuxFSzyeg5AB11A,782
|
|
300
|
+
maxframe/learn/contrib/__init__.py,sha256=OJjHCf0jCVDVIEZaI4m-dW-0EvGky1XOsUWDM-9iegs,681
|
|
281
301
|
maxframe/learn/contrib/utils.py,sha256=e4E-QLr7SAhCBTUX246SBpi9DtRNQAE-xOUxvNnFzZY,1714
|
|
302
|
+
maxframe/learn/contrib/graph/__init__.py,sha256=Hy6k8OzCgLRiLPgSElIj4O4r_mttA9AvhpmXPofmvFo,667
|
|
303
|
+
maxframe/learn/contrib/graph/connected_components.py,sha256=KJXeRsxWBP4piViSOhST3M4OO81jCf73acMRg9NA1no,7367
|
|
304
|
+
maxframe/learn/contrib/graph/tests/__init__.py,sha256=29eM5D4knhYwe3TF42naTuC5b4Ym3VeH4rK8KpdLWNY,609
|
|
305
|
+
maxframe/learn/contrib/graph/tests/test_connected_components.py,sha256=HLBJ6m7V8KHkOjsUhjePdUbnvykVGpgdiegvGpyLBpM,1662
|
|
306
|
+
maxframe/learn/contrib/llm/__init__.py,sha256=Qzg4KdiX4_J6TeK5sqFVflsft3MrVGgtfwhpU0ZQDv8,664
|
|
307
|
+
maxframe/learn/contrib/llm/core.py,sha256=Rxc4MOLs2RCjae4PurcPcKc3D5xH5ZOF6SE7YCNAIIw,2060
|
|
308
|
+
maxframe/learn/contrib/llm/multi_modal.py,sha256=PfOqxUP203yGS30ihvFi32LnOmlknOglmxW91PLKkjg,1488
|
|
309
|
+
maxframe/learn/contrib/llm/text.py,sha256=zepjRsbN2wC4l8MnXAqcXrqSTGGtHDbGvG8wPlBtfLQ,1464
|
|
310
|
+
maxframe/learn/contrib/llm/models/__init__.py,sha256=7D9JZSIHuOW99WjOg1M10JGLqj6pCNR1_uoBUlzDqE8,674
|
|
311
|
+
maxframe/learn/contrib/llm/models/dashscope.py,sha256=uIurDki5v8t6GBPeHluUtHPhOhrmckQD8A11ogTDRBg,2371
|
|
282
312
|
maxframe/learn/contrib/pytorch/__init__.py,sha256=a60NZy-COXEFgyC0uXJRBZGi-Vd9HZcqX62bKAMPKaM,703
|
|
283
313
|
maxframe/learn/contrib/pytorch/run_function.py,sha256=aQQhy2Bc6EEe-NVZb17hK4I9_TqIM1uI3fIMihY3TSQ,3354
|
|
284
314
|
maxframe/learn/contrib/pytorch/run_script.py,sha256=FOBXdJ9Q5QOirGGXq8_XwpwrTpDEmWt45-9n4VR_ixI,3213
|
|
285
315
|
maxframe/learn/contrib/pytorch/tests/__init__.py,sha256=29eM5D4knhYwe3TF42naTuC5b4Ym3VeH4rK8KpdLWNY,609
|
|
286
316
|
maxframe/learn/contrib/pytorch/tests/test_pytorch.py,sha256=GHP-oD5uMU8LD90Jt2cHbYRDdM5efjzsjpeBkc3t_qE,1444
|
|
287
317
|
maxframe/learn/contrib/xgboost/__init__.py,sha256=vk9xZO_FUwyVCrcLP1dbEz6JCZQBEHsmhGr1uQ45FAI,925
|
|
288
|
-
maxframe/learn/contrib/xgboost/classifier.py,sha256=
|
|
289
|
-
maxframe/learn/contrib/xgboost/core.py,sha256=
|
|
290
|
-
maxframe/learn/contrib/xgboost/dmatrix.py,sha256=
|
|
291
|
-
maxframe/learn/contrib/xgboost/predict.py,sha256=
|
|
292
|
-
maxframe/learn/contrib/xgboost/regressor.py,sha256=
|
|
293
|
-
maxframe/learn/contrib/xgboost/train.py,sha256=
|
|
318
|
+
maxframe/learn/contrib/xgboost/classifier.py,sha256=iJtEryJbi06gOeWzy9tguhDUGjD2LquUHtCjgaGXW24,3996
|
|
319
|
+
maxframe/learn/contrib/xgboost/core.py,sha256=p6SXqBzWjY5VzqkqOoMu-O9TBcQ3UHlddcsbEoTBXaE,8276
|
|
320
|
+
maxframe/learn/contrib/xgboost/dmatrix.py,sha256=acXkK8Ab6vT1DVb3ZtpeUdzNfVbOtrsCSdXrluQGN70,4889
|
|
321
|
+
maxframe/learn/contrib/xgboost/predict.py,sha256=aRtTMF1OODvrh9kQnDJK0mx0bLTZEVKB1O-nt6eVZ6M,3877
|
|
322
|
+
maxframe/learn/contrib/xgboost/regressor.py,sha256=0_GNVJFfkYmXJtG1eIUrwLOtr6HNNfkjKoBymLvd388,2384
|
|
323
|
+
maxframe/learn/contrib/xgboost/train.py,sha256=Mp0t7kyNGYgn6uKJf9Nesof5VuoUe6mg7g1sFpFZwfY,4660
|
|
294
324
|
maxframe/learn/contrib/xgboost/tests/__init__.py,sha256=29eM5D4knhYwe3TF42naTuC5b4Ym3VeH4rK8KpdLWNY,609
|
|
295
325
|
maxframe/learn/contrib/xgboost/tests/test_core.py,sha256=qNSXaB1t1vpoCD6RfpnFjJZHS8ShW9O_uz0ucXXlfpE,1449
|
|
296
326
|
maxframe/learn/utils/__init__.py,sha256=w2_QpDZ9J5BcSgbqu8P2RlkVRWC2gLowfgsaDPtz_Pg,661
|
|
@@ -298,9 +328,10 @@ maxframe/learn/utils/core.py,sha256=WNDISxPFsWmjkwHwEvjVGCkAOkIftqzEQFPA_KWr7FY,
|
|
|
298
328
|
maxframe/lib/__init__.py,sha256=_PB28W40qku6YiT8fJYqdmEdRMQfelOwGeksCOZJfCc,657
|
|
299
329
|
maxframe/lib/compression.py,sha256=QQpNK79iUC9zck74I0HKMhapSRnLBXtTRyS91taEVIc,1497
|
|
300
330
|
maxframe/lib/functools_compat.py,sha256=2LTrkSw5i-z5E9XCtZzfg9-0vPrYxicKvDjnnNrAL1Q,2697
|
|
301
|
-
maxframe/lib/mmh3.cp311-win_amd64.pyd,sha256=
|
|
331
|
+
maxframe/lib/mmh3.cp311-win_amd64.pyd,sha256=M1_G0y8-19382CUl6hQKTf3PR-zY1QfVoq3IB-0SQYE,17920
|
|
332
|
+
maxframe/lib/mmh3.pyi,sha256=pkzO6SUUukCty3X-WFsuokWBtIPWyxEa06ypF9liruI,1537
|
|
302
333
|
maxframe/lib/version.py,sha256=VOVZu3KHS53YUsb_vQsT7AyHwcCWAgc-3bBqV5ANcbQ,18941
|
|
303
|
-
maxframe/lib/wrapped_pickle.py,sha256=
|
|
334
|
+
maxframe/lib/wrapped_pickle.py,sha256=Akx-qhMMJJ6VVzQYrcVO_umFjx0IR-Yzb1XqyOS1Mio,3976
|
|
304
335
|
maxframe/lib/aio/__init__.py,sha256=xzIYnV42_7CYuDTTv8svscIXQeJMF0nn8AXMbpv173M,963
|
|
305
336
|
maxframe/lib/aio/_runners.py,sha256=zhDC92KxrYxLEufo5Hk8QU-mTVOxNL7IM9pZXas_nDg,5367
|
|
306
337
|
maxframe/lib/aio/_threads.py,sha256=cDaEKg5STncq9QTPUUwehJ722vgueqBoB1C-NeoHN8E,1363
|
|
@@ -338,7 +369,7 @@ maxframe/lib/sparse/core.py,sha256=HZqTRHykQQyBvzNPg8B70S9YZPF1oCyB6ZhqZgv7Gro,2
|
|
|
338
369
|
maxframe/lib/sparse/matrix.py,sha256=PRCE6kb-CsAry6iPU_yq4MiydjERejRjvdcms2YkfeY,7395
|
|
339
370
|
maxframe/lib/sparse/vector.py,sha256=mcjcQbMDtBXKj2J0_dh1BjeTWGUZNtPr0PQiDgv67Jw,4959
|
|
340
371
|
maxframe/lib/sparse/tests/__init__.py,sha256=_PB28W40qku6YiT8fJYqdmEdRMQfelOwGeksCOZJfCc,657
|
|
341
|
-
maxframe/lib/sparse/tests/test_sparse.py,sha256=
|
|
372
|
+
maxframe/lib/sparse/tests/test_sparse.py,sha256=De1A9gkk4pY4_cYDLXQdlGpDXTKe8B5Ij-qKFKcMSvo,15785
|
|
342
373
|
maxframe/lib/tblib/LICENSE,sha256=UV8te2W7BnvQ7rMYp9I2IjrJ7C79BfoIV82EXAK2ACU,1350
|
|
343
374
|
maxframe/lib/tblib/__init__.py,sha256=6QQyWUaDhJwfGikR0g8ij-seILLevfOjBBedxmfwaD4,10205
|
|
344
375
|
maxframe/lib/tblib/cpython.py,sha256=KY4eqJ5Oohbq2xHfWitd7p80S8SkMhiB0OWFRpulJQA,2501
|
|
@@ -346,44 +377,34 @@ maxframe/lib/tblib/decorators.py,sha256=377HT3gnD9B2dcxw75pHM17--ABkcgi_GQGmdA_M
|
|
|
346
377
|
maxframe/lib/tblib/pickling_support.py,sha256=D9A0eX7gJeyqhXWxJJZ1GRwwcc5lj86wBRh0tmo6GHk,3025
|
|
347
378
|
maxframe/lib/tests/__init__.py,sha256=29eM5D4knhYwe3TF42naTuC5b4Ym3VeH4rK8KpdLWNY,609
|
|
348
379
|
maxframe/lib/tests/test_wrapped_pickle.py,sha256=WV0EJQ1hTSp8xjuosWWtEO7PeiBqdDUYgStxp72_c94,1575
|
|
349
|
-
maxframe/odpsio/__init__.py,sha256=0SesD04XxFli4Gp23ipMkefFQ2ZTB0PItwZoSHpDC-k,820
|
|
350
|
-
maxframe/odpsio/arrow.py,sha256=pFw7aP7u8maEnXXF63VpMbI2qrOvWl78dYWGqHkXuJA,3884
|
|
351
|
-
maxframe/odpsio/schema.py,sha256=Hba-eCXnBUS6NxHRsshaohzO1eThm4HeVzzvAF7E3Vg,12479
|
|
352
|
-
maxframe/odpsio/tableio.py,sha256=ugLy15g2JoCD3GHhCRrH9PT9g9hyKfwrC71qXEVqvB0,10470
|
|
353
|
-
maxframe/odpsio/volumeio.py,sha256=IT_OO-RG2rJZOEx8C8xRr0oNR358RSAJQAp6WGxeXzI,3838
|
|
354
|
-
maxframe/odpsio/tests/__init__.py,sha256=29eM5D4knhYwe3TF42naTuC5b4Ym3VeH4rK8KpdLWNY,609
|
|
355
|
-
maxframe/odpsio/tests/test_arrow.py,sha256=yeDWFzsm2IMS-k6jimlQ7uim5T6WW1Anuy8didaf4cs,3194
|
|
356
|
-
maxframe/odpsio/tests/test_schema.py,sha256=QekMLBWu98IUN6mCloOxEQU0-7RL5OKzV8EE3A17wfU,12255
|
|
357
|
-
maxframe/odpsio/tests/test_tableio.py,sha256=ZyQxBAVA5GG3j_NOPTTFs5vCQqQywhRKC9OAJx9LJxM,4789
|
|
358
|
-
maxframe/odpsio/tests/test_volumeio.py,sha256=xvnrPZueZ76OAWK2zW_tHHI_cDxo7gJXTHiEe0lkmjk,3112
|
|
359
380
|
maxframe/remote/__init__.py,sha256=Yu1ZDLICbehNfd1ur7_2bnIn2VFIsTxH_cILCbHAeZY,747
|
|
360
|
-
maxframe/remote/core.py,sha256=
|
|
381
|
+
maxframe/remote/core.py,sha256=ELCUvg-_ZdTax_exFqm6-XWUXukT5qalKYBeDB-mV0k,6733
|
|
361
382
|
maxframe/remote/run_script.py,sha256=k93-vaFLUanWoBRai4-78DX_SLeZ8_rbbxcCtOIXZO8,3677
|
|
362
|
-
maxframe/serialization/__init__.py,sha256=
|
|
383
|
+
maxframe/serialization/__init__.py,sha256=UmDfKNohvk3StL-87QYmQTcQ2g6dRHSk49VFQS73VB0,963
|
|
363
384
|
maxframe/serialization/arrow.py,sha256=OMeDjLcPgagqzokG7g3Vhwm6Xw1j-Kph1V2QsIwi6dw,3513
|
|
364
|
-
maxframe/serialization/core.cp311-win_amd64.pyd,sha256=
|
|
365
|
-
maxframe/serialization/core.pxd,sha256=
|
|
366
|
-
maxframe/serialization/core.pyi,sha256=
|
|
367
|
-
maxframe/serialization/core.pyx,sha256=
|
|
368
|
-
maxframe/serialization/exception.py,sha256=
|
|
385
|
+
maxframe/serialization/core.cp311-win_amd64.pyd,sha256=nWb7T_7lNQKzAyJCbYpVv4tAhZnmDExjc3At31DKMuo,423424
|
|
386
|
+
maxframe/serialization/core.pxd,sha256=KioRiFhr5DTuqXnS2imJ3djWfSv2IAmhnz-kAFPgU6A,1548
|
|
387
|
+
maxframe/serialization/core.pyi,sha256=ELDG44v8O7A7RfURExMfVEJENuaEYHTwgJ-vzlH2Vh4,2206
|
|
388
|
+
maxframe/serialization/core.pyx,sha256=TKEAyaJJAUV20vR_uI93jA6B8mhTt7uoOtMdw0vL5q4,36686
|
|
389
|
+
maxframe/serialization/exception.py,sha256=noFTo9iwQje8Q0XnJV21J6bkbYahyoFLQSdl-OXNRIs,3079
|
|
369
390
|
maxframe/serialization/maxframe_objects.py,sha256=ZHyvxIALoPuB_y3CRc70hZXyfdj4IhaKMXUEYLXHQag,1404
|
|
370
391
|
maxframe/serialization/numpy.py,sha256=ENrFKl24mtYyO1vZRLwHvMD0r4z_UI7J2-yNlmfWSdk,3304
|
|
371
|
-
maxframe/serialization/pandas.py,sha256=
|
|
392
|
+
maxframe/serialization/pandas.py,sha256=PMp999KR9xnTFSgRTgepbsD7nGfObNwaYeK4UGJ_T4U,8725
|
|
372
393
|
maxframe/serialization/scipy.py,sha256=fGwQ5ZreymrMT8g7TneATfFdKFF7YPNZQqgWgMa3J8M,2498
|
|
373
394
|
maxframe/serialization/serializables/__init__.py,sha256=rlQhIaSAVzz4KYkc5shEHFZDPd6WDMPkxalU76yjJ3M,1406
|
|
374
|
-
maxframe/serialization/serializables/core.py,sha256=
|
|
395
|
+
maxframe/serialization/serializables/core.py,sha256=LARyWxWwPK-eknPHrMGauPG1GJpfjl-mKI50bQSWuz4,16583
|
|
375
396
|
maxframe/serialization/serializables/field.py,sha256=DVott3HAbne4UvN-heSFS9gSl0wCxV5RssS738FCjzk,16639
|
|
376
|
-
maxframe/serialization/serializables/field_type.py,sha256=
|
|
397
|
+
maxframe/serialization/serializables/field_type.py,sha256=NtzY4Zi87futV3Er3tD1qK8UpI7MXOC09h2Uipq9RRA,15525
|
|
377
398
|
maxframe/serialization/serializables/tests/__init__.py,sha256=29eM5D4knhYwe3TF42naTuC5b4Ym3VeH4rK8KpdLWNY,609
|
|
378
399
|
maxframe/serialization/serializables/tests/test_field_type.py,sha256=uG87-bdG8xGmjrubEHCww1ZKmRupSvnNKnZoV2SnwYM,4502
|
|
379
|
-
maxframe/serialization/serializables/tests/test_serializable.py,sha256=
|
|
400
|
+
maxframe/serialization/serializables/tests/test_serializable.py,sha256=ZzQcsL82r6l0Ny80MdBXJGohoZ2UcEgdA_5bxEjHX6E,10447
|
|
380
401
|
maxframe/serialization/tests/__init__.py,sha256=29eM5D4knhYwe3TF42naTuC5b4Ym3VeH4rK8KpdLWNY,609
|
|
381
|
-
maxframe/serialization/tests/test_serial.py,sha256=
|
|
382
|
-
maxframe/tensor/__init__.py,sha256=
|
|
402
|
+
maxframe/serialization/tests/test_serial.py,sha256=D1cCXylizxdQm6tBwVSVDs7v8ZZJokv7jHN_-nrqf7U,12956
|
|
403
|
+
maxframe/tensor/__init__.py,sha256=3XN24f4B0eBroWt7XW33_vJCXlbcJj83zgnmAJpz1dQ,4910
|
|
383
404
|
maxframe/tensor/array_utils.py,sha256=xr_Ng-4dETJFjsMfWi5gbTPM9mRmPvRWj8QY2WKjmCg,5129
|
|
384
|
-
maxframe/tensor/core.py,sha256
|
|
385
|
-
maxframe/tensor/operators.py,sha256=
|
|
386
|
-
maxframe/tensor/utils.py,sha256=
|
|
405
|
+
maxframe/tensor/core.py,sha256=YE1if5ofQft725nhsfRFCF_S1xxjf7xk_ETfznGZzP0,18538
|
|
406
|
+
maxframe/tensor/operators.py,sha256=bmnL2EIIC28tlTB5SwQc5sunIkhPz8KBvSQHxbACqZg,3455
|
|
407
|
+
maxframe/tensor/utils.py,sha256=6HENWGkcwHe7t8IOAyyJ4m7pZt--S1Q1IOfz0oUZt6A,23109
|
|
387
408
|
maxframe/tensor/arithmetic/__init__.py,sha256=SUlcG0Mf9ddgxAdydenuJ9eY5yVu0TgKfpBujI3OX4w,9695
|
|
388
409
|
maxframe/tensor/arithmetic/abs.py,sha256=WQO9CxiI-u_gtXNOX1AIcL4Dak-NliK0YDjdOi9sHtc,2248
|
|
389
410
|
maxframe/tensor/arithmetic/absolute.py,sha256=GSIA5UySoSbGlgcjK8sChurEMATFz2cwdfJ7wAjqotc,2278
|
|
@@ -430,7 +451,7 @@ maxframe/tensor/arithmetic/hypot.py,sha256=mm0RQsKrLaC2rzW-qVNT_De_YKueNKB5lhD1m
|
|
|
430
451
|
maxframe/tensor/arithmetic/i0.py,sha256=FlsRK-63SoNbN0R8qCUGYbD0LfdfetBBzZndya3LYg0,3000
|
|
431
452
|
maxframe/tensor/arithmetic/imag.py,sha256=lCSlPCVL5HKalujl8ae4Msgtilgy9xiESt4GFjWY4gU,1835
|
|
432
453
|
maxframe/tensor/arithmetic/invert.py,sha256=DSFgIzY5xJCVmRXzjyADiNnAgc9RpYVzNwWOf1bQiTQ,3572
|
|
433
|
-
maxframe/tensor/arithmetic/isclose.py,sha256=
|
|
454
|
+
maxframe/tensor/arithmetic/isclose.py,sha256=1p_gcUJmk1xtrofAVR4-yVqrKggywqQkdzLBrgOlK_I,3811
|
|
434
455
|
maxframe/tensor/arithmetic/iscomplex.py,sha256=lSUunn3RZiZlrIHiSNx21siVR0BID9-_8ZfueEIxXvc,1768
|
|
435
456
|
maxframe/tensor/arithmetic/isfinite.py,sha256=JycutXOjf5YE9w9RFt65zFccgYc1uhdRFJ03fMpom5A,3704
|
|
436
457
|
maxframe/tensor/arithmetic/isinf.py,sha256=Yc97fOv6aD-YjrWzs3zHKSI1DR3pDXlRhnK3jQd1nHQ,3565
|
|
@@ -484,31 +505,21 @@ maxframe/tensor/arithmetic/truediv.py,sha256=xrsN8Z-q6msst9S8-469XQFgrs7T4RTkaym
|
|
|
484
505
|
maxframe/tensor/arithmetic/trunc.py,sha256=3z8jme9ZpPU8TqNo2ioViqJa7ThNK9KOVX1wl-R0a7M,2375
|
|
485
506
|
maxframe/tensor/arithmetic/utils.py,sha256=Kc3xqbIK9uRhHhDKFwAj-mW7SRljajfK9UOMyXyCHCY,2304
|
|
486
507
|
maxframe/tensor/arithmetic/tests/__init__.py,sha256=_PB28W40qku6YiT8fJYqdmEdRMQfelOwGeksCOZJfCc,657
|
|
487
|
-
maxframe/tensor/arithmetic/tests/test_arithmetic.py,sha256=
|
|
488
|
-
maxframe/tensor/base/__init__.py,sha256=qVf97u2J74RSjCmkF-7N-ylxWUc6mbiPPWpDe45vRmQ,1113
|
|
489
|
-
maxframe/tensor/base/astype.py,sha256=fzj0o3pJMVaSEEKMR-JBsd2FktlSa9ABtpt-fcWKio0,4513
|
|
490
|
-
maxframe/tensor/base/atleast_1d.py,sha256=AgFdj7P3nBy6WibI54IPIwfowLHsk2BHfH3bXKVn5rg,1992
|
|
491
|
-
maxframe/tensor/base/broadcast_to.py,sha256=V-OB8YSbMfkMP2JpbiIQ0A9PrC-OHfaWzrntf5AOEwo,2775
|
|
492
|
-
maxframe/tensor/base/ravel.py,sha256=P9SCDU-UUHzd1HqZbodBSgKjtjiOFkyfLV_G9LFnz_U,3265
|
|
493
|
-
maxframe/tensor/base/transpose.py,sha256=yMK1KzxguKZOWxT3oMo5GchjB-1Yakilp2rEX3QlxFM,3539
|
|
494
|
-
maxframe/tensor/base/unique.py,sha256=zzE3w6VAZslTgYx4FDUPQ3bMsBsj-61z0BPY5hPaM6Q,6947
|
|
495
|
-
maxframe/tensor/base/where.py,sha256=cSg1mDhiOBB4F0Soh_uVw3yeSve9pfEhPSIDadc-wto,4127
|
|
496
|
-
maxframe/tensor/base/tests/__init__.py,sha256=29eM5D4knhYwe3TF42naTuC5b4Ym3VeH4rK8KpdLWNY,609
|
|
497
|
-
maxframe/tensor/base/tests/test_base.py,sha256=i9TneozyHCHDhO438U285KS6tdh0Zks8mgkRm3fsHxk,2957
|
|
508
|
+
maxframe/tensor/arithmetic/tests/test_arithmetic.py,sha256=zyvizXBapZcauwf64awWMzmNQeWR6VK0aSq1WwdbfBw,11839
|
|
498
509
|
maxframe/tensor/datasource/__init__.py,sha256=xtrdcuP6yTc_T19ITPsJTknoqTT-XudlhSlffrScjsY,1178
|
|
499
510
|
maxframe/tensor/datasource/arange.py,sha256=tjNF_huiWTtqtN6YBBtn0tvP9Pnebf6LNXRmAsYqRQk,5632
|
|
500
|
-
maxframe/tensor/datasource/array.py,sha256=
|
|
511
|
+
maxframe/tensor/datasource/array.py,sha256=21R-mH1a4PLwlby9M4YMXBS31DT1BVvbKUUhE23Mop0,13472
|
|
501
512
|
maxframe/tensor/datasource/core.py,sha256=LzuHtRWCNny1y-IzGylelWZ6rejS31LdT4E7qs_uIQs,3520
|
|
502
513
|
maxframe/tensor/datasource/empty.py,sha256=GpK-DHUfJp9M46wUrGt5lf-YbDDveubwntDjTVYnmMw,6019
|
|
503
514
|
maxframe/tensor/datasource/from_dataframe.py,sha256=iJY2cw2yA6YKnqRLyB0XdvpdemHHzpU7q2SA1sYo6mo,2573
|
|
504
515
|
maxframe/tensor/datasource/from_dense.py,sha256=txyxNBD0oXr3Ama9me2ay1_ASuDu1QK3w6ATebMzNCU,1661
|
|
505
516
|
maxframe/tensor/datasource/from_sparse.py,sha256=le-Wfno7Z8XY71TLwEOhO80fkvKXwKXbDgsrOfmDM8s,1593
|
|
506
|
-
maxframe/tensor/datasource/full.py,sha256
|
|
517
|
+
maxframe/tensor/datasource/full.py,sha256=cWS5GSEV-82s0IU1GMHTrAlydVGQ-Zxk2uCs5vxgOfc,6462
|
|
507
518
|
maxframe/tensor/datasource/ones.py,sha256=0UuYAwMLGfjF-O_90vkwsMqQlAAfJ98TdxbfgC1y6Fk,5182
|
|
508
519
|
maxframe/tensor/datasource/scalar.py,sha256=g2dsnmOEzV30I0UK3ytMtkiosdfH3NJ6wacZuxBpmbk,1196
|
|
509
520
|
maxframe/tensor/datasource/zeros.py,sha256=DJZK_kraSn820O17GSHLFHV43x1JL3Gt_HdlN0p5o7k,5860
|
|
510
521
|
maxframe/tensor/datasource/tests/__init__.py,sha256=29eM5D4knhYwe3TF42naTuC5b4Ym3VeH4rK8KpdLWNY,609
|
|
511
|
-
maxframe/tensor/datasource/tests/test_datasource.py,sha256=
|
|
522
|
+
maxframe/tensor/datasource/tests/test_datasource.py,sha256=mCyjktnCHuR2w796nHAzQ_fVR95fRqY57Zome2Wjuss,7931
|
|
512
523
|
maxframe/tensor/fetch/__init__.py,sha256=udOT7c7dIbszchvIkCLAWp7SE-GUIE6vl85wWFuaJl0,662
|
|
513
524
|
maxframe/tensor/fetch/core.py,sha256=nyK5dFqDSrM1vi_xgk_yh4GRLUp-FxvjgdbqFxlS_Hg,1872
|
|
514
525
|
maxframe/tensor/indexing/__init__.py,sha256=IF7jK7ZqwWi8nhKY2IRXVzLYacqdeyc4iUFGvzx09Mg,1658
|
|
@@ -517,8 +528,8 @@ maxframe/tensor/indexing/compress.py,sha256=2i-mhWB7-Z7y8luWBJ_2Fhci7IP0kNGr8s-S
|
|
|
517
528
|
maxframe/tensor/indexing/core.py,sha256=85E1kSDogs7p57vE1O-ZYx4XhpEE21tmt1-mOey5ejs,7212
|
|
518
529
|
maxframe/tensor/indexing/extract.py,sha256=KHqEVMKwxIlm2RYVSVhZX5Jo7yymKTIgzNT6y8Ilodc,2139
|
|
519
530
|
maxframe/tensor/indexing/fill_diagonal.py,sha256=V3_kMu5Cvund5a4GYTG5617ryNu0cHjWp3FfAU_d3yY,5488
|
|
520
|
-
maxframe/tensor/indexing/flatnonzero.py,sha256=
|
|
521
|
-
maxframe/tensor/indexing/getitem.py,sha256=
|
|
531
|
+
maxframe/tensor/indexing/flatnonzero.py,sha256=v0Od1T6pn6vfoDeEG40lJ7h4OD8cPIlzDTDHMcR50IA,1766
|
|
532
|
+
maxframe/tensor/indexing/getitem.py,sha256=v_NyhKc78Cj0YZZQ12XDS4l4rXVavLV1brqcAXNjUPM,5800
|
|
522
533
|
maxframe/tensor/indexing/nonzero.py,sha256=qeTEj7oiqf2CYBDlL1aKG19lPPFXvHkMq0A-4Dmvz4A,3766
|
|
523
534
|
maxframe/tensor/indexing/setitem.py,sha256=u7YbeJQmWnhu13H8k5ohw89YQRcPnY-9Ni0zJxzfJJo,4484
|
|
524
535
|
maxframe/tensor/indexing/slice.py,sha256=J49_6hcI0Z1MFfgtKFrnhraTJAs6cLcvMV-63pGHKLQ,1051
|
|
@@ -526,17 +537,31 @@ maxframe/tensor/indexing/take.py,sha256=OCuIrhqO74CIojaoOc45McoQiJEjxvN1zens4RQV
|
|
|
526
537
|
maxframe/tensor/indexing/unravel_index.py,sha256=FMmoEYrDHZAtx_HHC21W3KZfkqwxNZUObXP3HVSJgGw,3326
|
|
527
538
|
maxframe/tensor/indexing/tests/__init__.py,sha256=_PB28W40qku6YiT8fJYqdmEdRMQfelOwGeksCOZJfCc,657
|
|
528
539
|
maxframe/tensor/indexing/tests/test_indexing.py,sha256=uatTFiNkYnyqibYa2-NleUWyFRnlK0mN1AG0tBqFCts,6886
|
|
529
|
-
maxframe/tensor/merge/__init__.py,sha256=
|
|
540
|
+
maxframe/tensor/merge/__init__.py,sha256=mzXzvbNObPYmvWY3PCu3yFvV82Tqqaxav5DX_Iv2UN8,703
|
|
541
|
+
maxframe/tensor/merge/concatenate.py,sha256=RRyP-fqUGfMeP3Zo2wgfZcnF-u8dCCIOpr_0jI5Fft8,3314
|
|
530
542
|
maxframe/tensor/merge/stack.py,sha256=lZJs8M1JYBdYXnalj6-6ltdJKKslZ1Z-ydkzvGlzzkY,4277
|
|
543
|
+
maxframe/tensor/merge/vstack.py,sha256=RDlTE2A51b1ku7ep1J0p-bq8EQHUkiXLa0rVHNWOLBI,2338
|
|
531
544
|
maxframe/tensor/merge/tests/__init__.py,sha256=29eM5D4knhYwe3TF42naTuC5b4Ym3VeH4rK8KpdLWNY,609
|
|
532
|
-
maxframe/tensor/merge/tests/test_merge.py,sha256=
|
|
545
|
+
maxframe/tensor/merge/tests/test_merge.py,sha256=tI4xeJPpME68buemIzTga9mTQiMoqFc9v4__Hi40kzg,2291
|
|
546
|
+
maxframe/tensor/misc/__init__.py,sha256=C6VvY-dnO0_8Z1ArbzhT0I0ClFNT2LGfSgPJdICUexo,1185
|
|
547
|
+
maxframe/tensor/misc/astype.py,sha256=fzj0o3pJMVaSEEKMR-JBsd2FktlSa9ABtpt-fcWKio0,4513
|
|
548
|
+
maxframe/tensor/misc/atleast_1d.py,sha256=XG-8Yxjo0_HD_hRWMoGtaqhgVrIXOR3g1leH_6ib9mk,1944
|
|
549
|
+
maxframe/tensor/misc/atleast_2d.py,sha256=9F5m9DyDJ63nPFhrCqTTHszz36pgU0_VM6nJLmLx9QM,2028
|
|
550
|
+
maxframe/tensor/misc/atleast_3d.py,sha256=XkpSZ_haJJz0wanww5HB4Xhhx3QK8xtbleWvC7ARkBE,2477
|
|
551
|
+
maxframe/tensor/misc/broadcast_to.py,sha256=V-OB8YSbMfkMP2JpbiIQ0A9PrC-OHfaWzrntf5AOEwo,2775
|
|
552
|
+
maxframe/tensor/misc/ravel.py,sha256=P9SCDU-UUHzd1HqZbodBSgKjtjiOFkyfLV_G9LFnz_U,3265
|
|
553
|
+
maxframe/tensor/misc/transpose.py,sha256=e_VAfFPAmde8mzJTovSPWx53vUlgnYtYbEa4bYZst_4,4149
|
|
554
|
+
maxframe/tensor/misc/unique.py,sha256=wweWA7Qg-MwRsJwXQc_-4BuDAYBQkRgVw-B38z6hNTQ,6926
|
|
555
|
+
maxframe/tensor/misc/where.py,sha256=cSg1mDhiOBB4F0Soh_uVw3yeSve9pfEhPSIDadc-wto,4127
|
|
556
|
+
maxframe/tensor/misc/tests/__init__.py,sha256=29eM5D4knhYwe3TF42naTuC5b4Ym3VeH4rK8KpdLWNY,609
|
|
557
|
+
maxframe/tensor/misc/tests/test_misc.py,sha256=i9TneozyHCHDhO438U285KS6tdh0Zks8mgkRm3fsHxk,2957
|
|
533
558
|
maxframe/tensor/random/__init__.py,sha256=KKshGsQFlScwgZU-lS_yy1CPsEcufVlKyZSz1CUxzU4,7179
|
|
534
559
|
maxframe/tensor/random/beta.py,sha256=8-t9NxQrDOTpm5Q_ip_HWnARX_T69tfyJeRv-FobFXw,3200
|
|
535
560
|
maxframe/tensor/random/binomial.py,sha256=BsjD4yRX_IvfexgqZFQMb0jceD46xj4cmKXbpla5eL8,5428
|
|
536
561
|
maxframe/tensor/random/bytes.py,sha256=PmmPFGnhq_FCbkcSYQWNTw1jehvDLmRCzPgEukAgo7w,1093
|
|
537
562
|
maxframe/tensor/random/chisquare.py,sha256=buOfihHGKTsH_Uv8BuWb6_0L0dJukSFrjNlsaWBKy1I,3864
|
|
538
563
|
maxframe/tensor/random/choice.py,sha256=dLM_5Vw5ov_2P-82tcHwQtMPE02VmQScAsY5zbTZ4K4,6144
|
|
539
|
-
maxframe/tensor/random/core.py,sha256=
|
|
564
|
+
maxframe/tensor/random/core.py,sha256=hLmTHK6my3_1JADRny018C3yGPycsO0JWcALQ_XZwMg,7440
|
|
540
565
|
maxframe/tensor/random/dirichlet.py,sha256=s89z_s5qevE0DdezLeI1pdoBFclDBQy-ulSAMDyy_TE,4507
|
|
541
566
|
maxframe/tensor/random/exponential.py,sha256=82kMZBn1N_XdHdggUUWecPYjx91SAYvPtArErwqD66g,3677
|
|
542
567
|
maxframe/tensor/random/f.py,sha256=5grVBKXHDhmc-N4wuwNpC7sF92uTXd1zfCQEVzCPLSo,5226
|
|
@@ -588,60 +613,59 @@ maxframe/tensor/reduction/argmax.py,sha256=UqPBCgnyLFpIjaNPWxcyLGynpOzYnaVj23PQy
|
|
|
588
613
|
maxframe/tensor/reduction/argmin.py,sha256=Gy_O7kEcJosGQImqkR5S7N5ygs-bXnYcpljj3TSe5Ho,3202
|
|
589
614
|
maxframe/tensor/reduction/array_equal.py,sha256=1otUnsacNdSgkdP1hHs3NcAdqtJNyY3F1oOVItrmv70,1859
|
|
590
615
|
maxframe/tensor/reduction/core.py,sha256=NwASayI1P1uCCFCyNltH-cVezefW3Th2qS6viSuSKMQ,5257
|
|
591
|
-
maxframe/tensor/reduction/count_nonzero.py,sha256=
|
|
616
|
+
maxframe/tensor/reduction/count_nonzero.py,sha256=zhaiKDQxWR5WTNwwqn8piRuBGYwOq-Oe0Uv7rdSPyPA,2836
|
|
592
617
|
maxframe/tensor/reduction/cumprod.py,sha256=zitvIvh2Sb4iL7yL2Spenoe7NQndV9LJ4qrejd_ul48,3369
|
|
593
618
|
maxframe/tensor/reduction/cumsum.py,sha256=IUOvbrVEgjDOdd3nsxnDy3Fx0eJC0EfOGt0PIfik_PM,3592
|
|
594
619
|
maxframe/tensor/reduction/max.py,sha256=8B5k9n89orftEYLI_Lwl10O0zbN6vq5SxUpX0W9L7Bo,4099
|
|
595
|
-
maxframe/tensor/reduction/mean.py,sha256=
|
|
620
|
+
maxframe/tensor/reduction/mean.py,sha256=X-DeUsX_6jbJLAgeLqfFghNnVz-CPzvTr6SD_LvkrQI,4503
|
|
596
621
|
maxframe/tensor/reduction/min.py,sha256=YRHJ-leK2wF6ZJT7WgepMhIofw9JQ62PxRw8JqJTaFU,4100
|
|
597
622
|
maxframe/tensor/reduction/nanargmax.py,sha256=Nwiin8tWykaaOjtNF7DGMNuIFZXAts_v4XO68ODM9FI,2563
|
|
598
623
|
maxframe/tensor/reduction/nanargmin.py,sha256=rgOcOEbbJyvGwAYFSJkQSfY8yjdqtaOg5d7gL5FijLE,2279
|
|
599
624
|
maxframe/tensor/reduction/nancumprod.py,sha256=e9l343oVsXra2Goiai3Qbwnqe1Fq8BEATa0475_DNdo,3212
|
|
600
625
|
maxframe/tensor/reduction/nancumsum.py,sha256=Q8sNfx8d8sfKQhOWBI5dOJfORua_HzUydwauX4Lu8LI,3377
|
|
601
626
|
maxframe/tensor/reduction/nanmax.py,sha256=l8GplMV1eZwsgYt2esxPCj7ou3DgODzi3N1Vbbxjz7o,4061
|
|
602
|
-
maxframe/tensor/reduction/nanmean.py,sha256=
|
|
627
|
+
maxframe/tensor/reduction/nanmean.py,sha256=PJCx-oVyL-gCBIuyxrIKcqQKP5z5ro9XIBapMQ6IMe8,4078
|
|
603
628
|
maxframe/tensor/reduction/nanmin.py,sha256=vxq-g_ffwI6fLZ9rVdGoaGAq87w4pvLas_NKZsfLiYQ,4058
|
|
604
629
|
maxframe/tensor/reduction/nanprod.py,sha256=1of1DIP390_12QA0xKCXSvAxYrddJC52h7KmsLwTvyQ,3408
|
|
605
630
|
maxframe/tensor/reduction/nanstd.py,sha256=6aOed5RQ4-N2IfQjWZKVoQ34GN6O9_LVeGoUwa5d1hU,5017
|
|
606
631
|
maxframe/tensor/reduction/nansum.py,sha256=3gjbgh6Qw29HxLNdyn8MzxekFlyr3l377EZwNFgla4g,4181
|
|
607
|
-
maxframe/tensor/reduction/nanvar.py,sha256=
|
|
632
|
+
maxframe/tensor/reduction/nanvar.py,sha256=ZvC3EnhvaSbCe3P9RDelCqjMiWFjmze5RBEGS5bTi4A,5621
|
|
608
633
|
maxframe/tensor/reduction/prod.py,sha256=PfTHhIYDVsPtTSRQ2wZQ2WY7wbbuIh8YoEFR7kTJdzU,4536
|
|
609
634
|
maxframe/tensor/reduction/std.py,sha256=s4wvtnRUCw9EfKZrdefClxnKLjM6gzZqYuxOrg6Tgck,5269
|
|
610
635
|
maxframe/tensor/reduction/sum.py,sha256=ehfqbdEafd5ASliWR5DL689q_VH7Isk7ozlrWBdamDk,4371
|
|
611
|
-
maxframe/tensor/reduction/var.py,sha256=
|
|
636
|
+
maxframe/tensor/reduction/var.py,sha256=MKl5pe9t7g20atW5XFdFChr1Qxb1ReeViIaHwoRGCpM,6482
|
|
612
637
|
maxframe/tensor/reduction/tests/__init__.py,sha256=29eM5D4knhYwe3TF42naTuC5b4Ym3VeH4rK8KpdLWNY,609
|
|
613
|
-
maxframe/tensor/reduction/tests/test_reduction.py,sha256=
|
|
638
|
+
maxframe/tensor/reduction/tests/test_reduction.py,sha256=k2pXfAfowBDzEgMvldflUzhFUMWIkiP2fznZp7q9Bkw,6370
|
|
614
639
|
maxframe/tensor/reshape/__init__.py,sha256=h_yXSMgSS3hGdLmnyWUUqXshEz4rLiEYDTlZbDBuj0w,689
|
|
615
640
|
maxframe/tensor/reshape/reshape.py,sha256=3vfmYigJcfODwg4av9lcMDM4mQ4TsNQT0qmbdcsg4zc,6641
|
|
616
641
|
maxframe/tensor/reshape/tests/__init__.py,sha256=_PB28W40qku6YiT8fJYqdmEdRMQfelOwGeksCOZJfCc,657
|
|
617
642
|
maxframe/tensor/reshape/tests/test_reshape.py,sha256=hkYCagnIg85vV8moLIHVA-WAya7r9ga16Y8WJoCmK28,1140
|
|
618
643
|
maxframe/tensor/statistics/__init__.py,sha256=29eM5D4knhYwe3TF42naTuC5b4Ym3VeH4rK8KpdLWNY,609
|
|
619
644
|
maxframe/tensor/statistics/percentile.py,sha256=VvMIKNSawT2WaoyJofoBEvmli2w-7TkG9V0Au9Bg3Eo,6222
|
|
620
|
-
maxframe/tensor/statistics/quantile.py,sha256=
|
|
645
|
+
maxframe/tensor/statistics/quantile.py,sha256=2QshmOurJLJPHBhsyYz9brBWkcEzjzTjo2Wju_LD21o,9755
|
|
621
646
|
maxframe/tensor/ufunc/__init__.py,sha256=8QUi-cPvvbsD7i7LOeZ9sc0v1XXd7lt-XV5pQKbVZJs,821
|
|
622
647
|
maxframe/tensor/ufunc/ufunc.py,sha256=XRtGlhdrW7H--mrc8fTBOlUP0mzKpd9tdRtCuLDymtc,7383
|
|
623
648
|
maxframe/tests/__init__.py,sha256=29eM5D4knhYwe3TF42naTuC5b4Ym3VeH4rK8KpdLWNY,609
|
|
624
649
|
maxframe/tests/test_codegen.py,sha256=h3TKqP4zghxTn1twH7gR9jOe6NKXdCC1B4u0chlUrpY,2277
|
|
625
|
-
maxframe/tests/test_protocol.py,sha256=
|
|
626
|
-
maxframe/tests/test_utils.py,sha256=
|
|
627
|
-
maxframe/tests/utils.py,sha256=
|
|
628
|
-
maxframe_client/__init__.py,sha256=
|
|
650
|
+
maxframe/tests/test_protocol.py,sha256=JkvsgGnbVSLu3VsUd_XT_qstcHPnKLzmoDBEXetaWT8,6281
|
|
651
|
+
maxframe/tests/test_utils.py,sha256=5Z2cym1tlpnF73f4I3WC1eBocsbNEDGzDErJL_fKWx8,11868
|
|
652
|
+
maxframe/tests/utils.py,sha256=cNBplvQWInDINz6kAqlVrT61j0hHoVyMhpPxmjyuBns,5233
|
|
653
|
+
maxframe_client/__init__.py,sha256=hIVOnxj6AoN2zIMxQCzRb10k0LSoYS_DrQevXO9KPBg,705
|
|
629
654
|
maxframe_client/conftest.py,sha256=UWWMYjmohHL13hLl4adb0gZPLRdBVOYVvsFo6VZruI0,658
|
|
630
|
-
maxframe_client/fetcher.py,sha256=
|
|
655
|
+
maxframe_client/fetcher.py,sha256=GXQFCrakE5gtC2hbezDbMfkJcjzLHnHXFE-LK2T4oDI,9397
|
|
631
656
|
maxframe_client/clients/__init__.py,sha256=29eM5D4knhYwe3TF42naTuC5b4Ym3VeH4rK8KpdLWNY,609
|
|
632
|
-
maxframe_client/clients/framedriver.py,sha256=
|
|
633
|
-
maxframe_client/clients/spe.py,sha256=uizNBejhU_FrMhsgsFgDnq7gL7Cxk803LeLYmr3nmxs,3697
|
|
657
|
+
maxframe_client/clients/framedriver.py,sha256=GdF_VGr2n4QZTbHy-p_IAaUrHLD1t7DYA-g3BtnylAA,4678
|
|
634
658
|
maxframe_client/session/__init__.py,sha256=9zFCd3zkSADESAFc4SPoQ2nkvRwsIhhpNNO2TtSaWbU,854
|
|
635
|
-
maxframe_client/session/consts.py,sha256=
|
|
636
|
-
maxframe_client/session/graph.py,sha256=
|
|
637
|
-
maxframe_client/session/odps.py,sha256=
|
|
638
|
-
maxframe_client/session/task.py,sha256=
|
|
659
|
+
maxframe_client/session/consts.py,sha256=USDwwz79zFjhlp2MGz5Th6cCuZaYRLAo491tUanZdDs,1430
|
|
660
|
+
maxframe_client/session/graph.py,sha256=CEavpl_zmz_nZ2TXI4moRxpdYsMZMokV63889qI6l_4,4501
|
|
661
|
+
maxframe_client/session/odps.py,sha256=zBswDCZ6N7S5DQC6f3VPDM8Zs40zpwwJOjJ4jlMJlzw,24597
|
|
662
|
+
maxframe_client/session/task.py,sha256=QwOeY7uBzWq5zOx1YAMtkdOFziRvr56t_me7Eqzk1Hg,12937
|
|
639
663
|
maxframe_client/session/tests/__init__.py,sha256=29eM5D4knhYwe3TF42naTuC5b4Ym3VeH4rK8KpdLWNY,609
|
|
640
664
|
maxframe_client/session/tests/test_task.py,sha256=861usEURVXeTUzfJYZmBfwsHfZFexG23mMtT5IJOOm4,3364
|
|
641
665
|
maxframe_client/tests/__init__.py,sha256=29eM5D4knhYwe3TF42naTuC5b4Ym3VeH4rK8KpdLWNY,609
|
|
642
|
-
maxframe_client/tests/test_fetcher.py,sha256=
|
|
643
|
-
maxframe_client/tests/test_session.py,sha256=
|
|
644
|
-
maxframe-0.
|
|
645
|
-
maxframe-0.
|
|
646
|
-
maxframe-0.
|
|
647
|
-
maxframe-0.
|
|
666
|
+
maxframe_client/tests/test_fetcher.py,sha256=lYtn4NuntN-_A7rMd10e2y_CEUp7zelTij441NTFP6M,4265
|
|
667
|
+
maxframe_client/tests/test_session.py,sha256=jOgsrgJ1892jTBaieYPoCttruBTJ-ozBp2iVP1HY2XY,11783
|
|
668
|
+
maxframe-1.0.0.dist-info/METADATA,sha256=1n2-jTzKf6wuimnzPpOj58RzoPLwabY6_bXwXcqaMSE,3128
|
|
669
|
+
maxframe-1.0.0.dist-info/WHEEL,sha256=yEpuRje-u1Z_HrXQj-UTAfIAegW_HcP2GJ7Ek8BJkUM,102
|
|
670
|
+
maxframe-1.0.0.dist-info/top_level.txt,sha256=64x-fc2q59c_vXwNUkehyjF1vb8JWqFSdYmUqIFqoTM,31
|
|
671
|
+
maxframe-1.0.0.dist-info/RECORD,,
|