maxframe 1.0.0rc2__cp310-cp310-win32.whl → 1.0.0rc4__cp310-cp310-win32.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.cp310-win32.pyd +0 -0
- maxframe/codegen.py +4 -2
- maxframe/config/config.py +28 -9
- maxframe/config/validators.py +42 -12
- maxframe/conftest.py +56 -14
- maxframe/core/__init__.py +2 -13
- maxframe/core/entity/__init__.py +0 -4
- maxframe/core/entity/executable.py +1 -1
- maxframe/core/entity/objects.py +45 -2
- maxframe/core/entity/output_types.py +0 -3
- maxframe/core/entity/tests/test_objects.py +43 -0
- maxframe/core/entity/tileables.py +5 -78
- maxframe/core/graph/__init__.py +2 -2
- maxframe/core/graph/builder/__init__.py +0 -1
- maxframe/core/graph/builder/base.py +5 -4
- maxframe/core/graph/builder/tileable.py +4 -4
- maxframe/core/graph/builder/utils.py +4 -8
- maxframe/core/graph/core.cp310-win32.pyd +0 -0
- maxframe/core/graph/entity.py +9 -33
- maxframe/core/operator/__init__.py +2 -9
- maxframe/core/operator/base.py +3 -5
- maxframe/core/operator/objects.py +0 -9
- maxframe/core/operator/utils.py +55 -0
- maxframe/dataframe/arithmetic/docstring.py +26 -2
- maxframe/dataframe/arithmetic/equal.py +4 -2
- maxframe/dataframe/arithmetic/greater.py +4 -2
- maxframe/dataframe/arithmetic/greater_equal.py +4 -2
- maxframe/dataframe/arithmetic/less.py +2 -2
- maxframe/dataframe/arithmetic/less_equal.py +4 -2
- maxframe/dataframe/arithmetic/not_equal.py +4 -2
- maxframe/dataframe/core.py +2 -0
- maxframe/dataframe/datasource/read_odps_query.py +67 -8
- maxframe/dataframe/datasource/read_odps_table.py +4 -2
- maxframe/dataframe/datasource/tests/test_datasource.py +35 -6
- maxframe/dataframe/datastore/to_odps.py +8 -1
- maxframe/dataframe/extensions/__init__.py +3 -0
- maxframe/dataframe/extensions/flatmap.py +326 -0
- maxframe/dataframe/extensions/tests/test_extensions.py +62 -1
- maxframe/dataframe/indexing/add_prefix_suffix.py +1 -1
- maxframe/dataframe/indexing/rename.py +11 -0
- maxframe/dataframe/initializer.py +11 -1
- maxframe/dataframe/misc/drop_duplicates.py +18 -1
- maxframe/dataframe/operators.py +1 -17
- maxframe/dataframe/reduction/core.py +2 -2
- maxframe/dataframe/tests/test_initializer.py +33 -2
- maxframe/io/objects/__init__.py +24 -0
- maxframe/io/objects/core.py +140 -0
- maxframe/io/objects/tensor.py +76 -0
- maxframe/io/objects/tests/__init__.py +13 -0
- maxframe/io/objects/tests/test_object_io.py +97 -0
- maxframe/{odpsio → io/odpsio}/__init__.py +2 -0
- maxframe/{odpsio → io/odpsio}/arrow.py +4 -4
- maxframe/{odpsio → io/odpsio}/schema.py +10 -8
- maxframe/{odpsio → io/odpsio}/tableio.py +50 -38
- maxframe/io/odpsio/tests/__init__.py +13 -0
- maxframe/{odpsio → io/odpsio}/tests/test_schema.py +3 -7
- maxframe/{odpsio → io/odpsio}/tests/test_tableio.py +3 -3
- maxframe/{odpsio → io/odpsio}/tests/test_volumeio.py +4 -6
- maxframe/io/odpsio/volumeio.py +63 -0
- maxframe/learn/contrib/__init__.py +2 -1
- maxframe/learn/contrib/graph/__init__.py +15 -0
- maxframe/learn/contrib/graph/connected_components.py +215 -0
- maxframe/learn/contrib/graph/tests/__init__.py +13 -0
- maxframe/learn/contrib/graph/tests/test_connected_components.py +53 -0
- maxframe/learn/contrib/xgboost/classifier.py +26 -2
- maxframe/learn/contrib/xgboost/core.py +87 -2
- maxframe/learn/contrib/xgboost/dmatrix.py +1 -4
- maxframe/learn/contrib/xgboost/predict.py +27 -44
- maxframe/learn/contrib/xgboost/regressor.py +3 -10
- maxframe/learn/contrib/xgboost/train.py +27 -16
- maxframe/{core/operator/fuse.py → learn/core.py} +7 -10
- maxframe/lib/mmh3.cp310-win32.pyd +0 -0
- maxframe/opcodes.py +3 -0
- maxframe/protocol.py +7 -16
- maxframe/remote/core.py +4 -8
- maxframe/serialization/__init__.py +1 -0
- maxframe/serialization/core.cp310-win32.pyd +0 -0
- maxframe/session.py +9 -2
- maxframe/tensor/__init__.py +10 -2
- maxframe/tensor/arithmetic/isclose.py +1 -0
- maxframe/tensor/arithmetic/tests/test_arithmetic.py +21 -17
- maxframe/tensor/core.py +5 -136
- maxframe/tensor/datasource/array.py +3 -0
- maxframe/tensor/datasource/full.py +1 -1
- maxframe/tensor/datasource/tests/test_datasource.py +1 -1
- maxframe/tensor/indexing/flatnonzero.py +1 -1
- maxframe/tensor/indexing/getitem.py +2 -0
- maxframe/tensor/merge/__init__.py +2 -0
- maxframe/tensor/merge/concatenate.py +101 -0
- maxframe/tensor/merge/tests/test_merge.py +30 -1
- maxframe/tensor/merge/vstack.py +74 -0
- maxframe/tensor/{base → misc}/__init__.py +2 -0
- maxframe/tensor/{base → misc}/atleast_1d.py +0 -2
- maxframe/tensor/misc/atleast_2d.py +70 -0
- maxframe/tensor/misc/atleast_3d.py +85 -0
- maxframe/tensor/misc/tests/__init__.py +13 -0
- maxframe/tensor/{base → misc}/transpose.py +22 -18
- maxframe/tensor/operators.py +1 -7
- maxframe/tensor/random/core.py +1 -1
- maxframe/tensor/reduction/count_nonzero.py +1 -0
- maxframe/tensor/reduction/mean.py +1 -0
- maxframe/tensor/reduction/nanmean.py +1 -0
- maxframe/tensor/reduction/nanvar.py +2 -0
- maxframe/tensor/reduction/tests/test_reduction.py +12 -1
- maxframe/tensor/reduction/var.py +2 -0
- maxframe/tensor/utils.py +2 -22
- maxframe/typing_.py +4 -1
- maxframe/udf.py +8 -9
- maxframe/utils.py +49 -73
- maxframe-1.0.0rc4.dist-info/METADATA +104 -0
- {maxframe-1.0.0rc2.dist-info → maxframe-1.0.0rc4.dist-info}/RECORD +129 -114
- {maxframe-1.0.0rc2.dist-info → maxframe-1.0.0rc4.dist-info}/WHEEL +1 -1
- maxframe_client/fetcher.py +33 -50
- maxframe_client/session/consts.py +3 -0
- maxframe_client/session/graph.py +8 -2
- maxframe_client/session/odps.py +134 -27
- maxframe_client/session/task.py +58 -20
- maxframe_client/tests/test_fetcher.py +1 -1
- maxframe_client/tests/test_session.py +27 -3
- maxframe/core/entity/chunks.py +0 -68
- maxframe/core/entity/fuse.py +0 -73
- maxframe/core/graph/builder/chunk.py +0 -430
- maxframe/odpsio/volumeio.py +0 -95
- maxframe-1.0.0rc2.dist-info/METADATA +0 -177
- /maxframe/{odpsio → core/entity}/tests/__init__.py +0 -0
- /maxframe/{tensor/base/tests → io}/__init__.py +0 -0
- /maxframe/{odpsio → io/odpsio}/tests/test_arrow.py +0 -0
- /maxframe/tensor/{base → misc}/astype.py +0 -0
- /maxframe/tensor/{base → misc}/broadcast_to.py +0 -0
- /maxframe/tensor/{base → misc}/ravel.py +0 -0
- /maxframe/tensor/{base/tests/test_base.py → misc/tests/test_misc.py} +0 -0
- /maxframe/tensor/{base → misc}/unique.py +0 -0
- /maxframe/tensor/{base → misc}/where.py +0 -0
- {maxframe-1.0.0rc2.dist-info → maxframe-1.0.0rc4.dist-info}/top_level.txt +0 -0
|
@@ -1,64 +1,63 @@
|
|
|
1
1
|
maxframe/__init__.py,sha256=RujkARDvD6mhFpR330UQ0UfogvIdae5EjR1euFpTiYA,1036
|
|
2
|
-
maxframe/_utils.cp310-win32.pyd,sha256=
|
|
2
|
+
maxframe/_utils.cp310-win32.pyd,sha256=4MhCNab9m-5gu0MJ-HfBKZauLkIEa8qnXg1qGfxI360,269824
|
|
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
8
|
maxframe/errors.py,sha256=nhQVjRbH5EsyLZhyAufvHpMhfDN6eR8vcrv4sjaI7p8,1000
|
|
9
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=GERZf2zLTygG3nLQc3MX91vy6tJcAC0t6vf2ymw201o,10829
|
|
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=qOplo4pJBaz0vbWNkS2ichMHN4BvACO2TpFpHjzx4YI,34974
|
|
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=bGDuHdF95IHPOwP7biUVV0NFRiQn0WIbhjqnKcTCkMQ,15886
|
|
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/
|
|
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.cp310-win32.pyd,sha256=cb1wr3zkh2oYpcavvTMi4DPpnDmFDZjv_Z1KdxJ5Xw0,218624
|
|
37
37
|
maxframe/core/graph/core.pyx,sha256=J619C6xfVCF8NQ8oeinhICYSg-w5ecX-dnBI7NB-6n0,16390
|
|
38
|
-
maxframe/core/graph/entity.py,sha256=
|
|
39
|
-
maxframe/core/graph/builder/__init__.py,sha256=
|
|
40
|
-
maxframe/core/graph/builder/base.py,sha256=
|
|
41
|
-
maxframe/core/graph/builder/
|
|
42
|
-
maxframe/core/graph/builder/
|
|
43
|
-
maxframe/core/graph/builder/utils.py,sha256=vO7_4ykzI1G194Oqn_tM6zVWwxLReJ0GL4lCXfOg-Zk,1565
|
|
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
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=
|
|
58
|
+
maxframe/dataframe/core.py,sha256=p4x5QkNGiP0M8flIviFzLiRZ1fmnL55yvpiIzEqRqEA,76844
|
|
59
|
+
maxframe/dataframe/initializer.py,sha256=f_gYxuwrTQL_-0FKMWUnX84jBsuRwv4Z7y-1Vf15ZA0,11150
|
|
60
|
+
maxframe/dataframe/operators.py,sha256=7u2v-yRl2wcTg8BmIXh-IFrj4TcKoegqf06gm-t0wGQ,7834
|
|
62
61
|
maxframe/dataframe/utils.py,sha256=sonPqTu6vwXg5lxYFsZg3ZjUsQhTokpdngH_R0-3Kjg,45477
|
|
63
62
|
maxframe/dataframe/arithmetic/__init__.py,sha256=MPnITPuO7DDjAMTBawpennv6D0V9AnT6oF0nz2KUIqc,12837
|
|
64
63
|
maxframe/dataframe/arithmetic/abs.py,sha256=EgyzciSwjE_I3ZBuzeVJFVzBHsxn9MWzCtvHgyEl6ek,1016
|
|
@@ -78,26 +77,26 @@ maxframe/dataframe/arithmetic/core.py,sha256=GJWdYOXmKhvessF1c7AiKl_-uHE6SQR-FzN
|
|
|
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
|
|
@@ -119,23 +118,24 @@ maxframe/dataframe/datasource/from_records.py,sha256=ygpKOMXZnDdWzGxMxQ4KdGv-tJF
|
|
|
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=V4OT4yKmlk2hdXbxFdaDdRnHRnXeeMiZrqUZSlPGIY8,12699
|
|
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=91Vml3MmtiASE9KqjU5FIC4XpHj2t3EqcdLoEdtuvNA,16485
|
|
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=
|
|
130
|
+
maxframe/dataframe/datastore/to_odps.py,sha256=HzIAYRRLJBtsUCHD3vcfXWBE4jAEsCzrGt3Nx34B-d8,6912
|
|
132
131
|
maxframe/dataframe/datastore/tests/__init__.py,sha256=29eM5D4knhYwe3TF42naTuC5b4Ym3VeH4rK8KpdLWNY,609
|
|
133
132
|
maxframe/dataframe/datastore/tests/test_to_odps.py,sha256=385SCJK_XkddV9dJrRqSOuaXurpGjWd_QwRSeGTOTNU,1344
|
|
134
|
-
maxframe/dataframe/extensions/__init__.py,sha256=
|
|
133
|
+
maxframe/dataframe/extensions/__init__.py,sha256=sHoXEEzfa6yB5-feY0EmcWWdwKtoDf0be3GVzgiuSUo,1617
|
|
135
134
|
maxframe/dataframe/extensions/accessor.py,sha256=0OA8YPL3rofSvdU0z_1kMLImahrvow_vhxdQDYODki0,1497
|
|
135
|
+
maxframe/dataframe/extensions/flatmap.py,sha256=drmtjzftFB_tnbj9aRDkuh2VXFquJTeDbIWqtU4Ymt4,10864
|
|
136
136
|
maxframe/dataframe/extensions/reshuffle.py,sha256=yOlJ-3R4v9CoiEKFA1zgCOvbocy00MxpFBbQuTn-uDw,2720
|
|
137
137
|
maxframe/dataframe/extensions/tests/__init__.py,sha256=29eM5D4knhYwe3TF42naTuC5b4Ym3VeH4rK8KpdLWNY,609
|
|
138
|
-
maxframe/dataframe/extensions/tests/test_extensions.py,sha256=
|
|
138
|
+
maxframe/dataframe/extensions/tests/test_extensions.py,sha256=K7CyT17eH8vy2MkZgjKiSRUnr6pyQ7NcsqmSIBLSclM,3110
|
|
139
139
|
maxframe/dataframe/fetch/__init__.py,sha256=W1arTCAjD0v_bdVeIzpJMnil3h0Ucsn29zFWmgZcYck,668
|
|
140
140
|
maxframe/dataframe/fetch/core.py,sha256=27VANjpMm2rdCg1KPZxWZrKWNuNgSMzZrordI05mqWc,3424
|
|
141
141
|
maxframe/dataframe/groupby/__init__.py,sha256=wMjmvk4ced1uCm7bw0oodIKvaep61KhupriL9JRRq5w,3443
|
|
@@ -151,7 +151,7 @@ maxframe/dataframe/groupby/transform.py,sha256=1Gn4uOydtRMwFo-CUXrSTyOwlbuJyeWNI
|
|
|
151
151
|
maxframe/dataframe/groupby/tests/__init__.py,sha256=29eM5D4knhYwe3TF42naTuC5b4Ym3VeH4rK8KpdLWNY,609
|
|
152
152
|
maxframe/dataframe/groupby/tests/test_groupby.py,sha256=oidpLtSA3fhZldVRQ5-3PnfXKnyclqR-ApiNgzh-yzk,12740
|
|
153
153
|
maxframe/dataframe/indexing/__init__.py,sha256=AkjowbPJu6kM4fJF5baU6g6FA7n2ux5__f4_2budLSs,3297
|
|
154
|
-
maxframe/dataframe/indexing/add_prefix_suffix.py,sha256=
|
|
154
|
+
maxframe/dataframe/indexing/add_prefix_suffix.py,sha256=YMHFXnVcFsRJfVIOHlTWkOGCqzxWAJam3SXmIRjKGKk,3076
|
|
155
155
|
maxframe/dataframe/indexing/align.py,sha256=-kV91o_-pq7rFsv0zgnGZuEyn8HqyUK_Ejv4VWF5fps,12434
|
|
156
156
|
maxframe/dataframe/indexing/at.py,sha256=7Igb4I9_9drZSCZITFRNL3Q-7EI_mtfklUrnNP0apHo,2300
|
|
157
157
|
maxframe/dataframe/indexing/getitem.py,sha256=eS8dnlMEP2zaYvzYZFlBNfwjD89UqT0MRIlNuDcAJQc,7958
|
|
@@ -160,7 +160,7 @@ maxframe/dataframe/indexing/iloc.py,sha256=O4lCMV2Q0GtSM3_FbKY6rl_1WUGcae-H2wHvC
|
|
|
160
160
|
maxframe/dataframe/indexing/insert.py,sha256=bvKdAswI688hOIaL9EvU7LnbjpELUdv5QS7rogSn_5U,2997
|
|
161
161
|
maxframe/dataframe/indexing/loc.py,sha256=senwgO_ijLJtbzaeqS_CMefV8nlf3guEQXKdSQcwYy0,15256
|
|
162
162
|
maxframe/dataframe/indexing/reindex.py,sha256=v4Rd85aNfh3onzcFqOhdUjiLrDv9QuNtGh-OaWpnG-4,19699
|
|
163
|
-
maxframe/dataframe/indexing/rename.py,sha256=
|
|
163
|
+
maxframe/dataframe/indexing/rename.py,sha256=eXPW-a16JWhSUheN_KE3kqV3W4CMBqEoVHCyJauHaa4,13331
|
|
164
164
|
maxframe/dataframe/indexing/rename_axis.py,sha256=ugKcve4Kp8EuSmokQFUL-mVhGQ1cd6IDZ3UauHPiFeQ,6511
|
|
165
165
|
maxframe/dataframe/indexing/reset_index.py,sha256=_NFQZTjHzc_IgiqC-aqFJUfjneyJUN42-ujxGPfBVnQ,13524
|
|
166
166
|
maxframe/dataframe/indexing/sample.py,sha256=XrgzEugAL_WXJc_OkrWAugXUOIaqg3_OwWBp-hMee9U,8391
|
|
@@ -188,7 +188,7 @@ maxframe/dataframe/misc/datetimes.py,sha256=zR99O-8EKKWt4UtNdPI22K8N9mP9XSs9lDQL
|
|
|
188
188
|
maxframe/dataframe/misc/describe.py,sha256=PaddhvhKVZDkG6WuWGWi3LL7Vg8uny_3WzlVbdKZseQ,4478
|
|
189
189
|
maxframe/dataframe/misc/diff.py,sha256=j6C0PNb4eufB7ZU-mAXNNIC8y1wzHd6MHS-IWTz606E,5701
|
|
190
190
|
maxframe/dataframe/misc/drop.py,sha256=UDP1EWpHPa0tkpjvNPIcstAiWoMainCMcvV7wefH7RA,13469
|
|
191
|
-
maxframe/dataframe/misc/drop_duplicates.py,sha256=
|
|
191
|
+
maxframe/dataframe/misc/drop_duplicates.py,sha256=z_2TXufnZ1MYyetGckKRthRsmYuTCqVYu6QhA_j_Sro,8619
|
|
192
192
|
maxframe/dataframe/misc/duplicated.py,sha256=w5aXwtDn5_ZbvnB0oCOoTE7EJQ6cdSnhTjL8SMci0Tw,8826
|
|
193
193
|
maxframe/dataframe/misc/eval.py,sha256=3UuqaMW0Pe6CRh82XtKiNNuWeJOyz_hzhzRZ2zqpBLQ,25091
|
|
194
194
|
maxframe/dataframe/misc/explode.py,sha256=aWQObjpxgPCCm87Lc1cavqotETz6xVLm8HSsPhM3n5k,5182
|
|
@@ -225,7 +225,7 @@ maxframe/dataframe/reduction/__init__.py,sha256=ejIK5G6ylU0q37XVs_2DkmsnHTtYbE44
|
|
|
225
225
|
maxframe/dataframe/reduction/aggregation.py,sha256=-v_jzKAiLGHOmv3MTDgqovfEYLgeJobU3CqaMWKqkRo,12948
|
|
226
226
|
maxframe/dataframe/reduction/all.py,sha256=enpOWffBNXAEgFSaiZm0KPwU3izMvWd7M8smLwZjaeE,2044
|
|
227
227
|
maxframe/dataframe/reduction/any.py,sha256=PensVOfgCcxu7u7-1OuMcD6gov2c2kN01B57O3eoHw8,2048
|
|
228
|
-
maxframe/dataframe/reduction/core.py,sha256=
|
|
228
|
+
maxframe/dataframe/reduction/core.py,sha256=Ys8mP0-p0zRzND8LtsZLeyBkTDeteJFoSqJCbS330BQ,31232
|
|
229
229
|
maxframe/dataframe/reduction/count.py,sha256=YLx9bFb2IdnBIkTyApRad0x1yub6TmqncP6TzGcOL_Q,1800
|
|
230
230
|
maxframe/dataframe/reduction/cummax.py,sha256=S2iUhfBL2lKwFKhFIYMQxlE26pYroEYKG3cqmG0gIAs,1043
|
|
231
231
|
maxframe/dataframe/reduction/cummin.py,sha256=EWz1CUCQoTwxluvvQPtcNxWdIISr3bBaZPttB104Pdc,1043
|
|
@@ -260,7 +260,7 @@ maxframe/dataframe/statistics/quantile.py,sha256=v_Ff05C8eE9Suq3k_G_KWMHcfGvduS0
|
|
|
260
260
|
maxframe/dataframe/statistics/tests/__init__.py,sha256=29eM5D4knhYwe3TF42naTuC5b4Ym3VeH4rK8KpdLWNY,609
|
|
261
261
|
maxframe/dataframe/statistics/tests/test_statistics.py,sha256=tvk_kTcOuzRLFspidSPVoZrBVtVsbHhGb16LU-Vr3lU,2812
|
|
262
262
|
maxframe/dataframe/tests/__init__.py,sha256=29eM5D4knhYwe3TF42naTuC5b4Ym3VeH4rK8KpdLWNY,609
|
|
263
|
-
maxframe/dataframe/tests/test_initializer.py,sha256=
|
|
263
|
+
maxframe/dataframe/tests/test_initializer.py,sha256=qvlKFDcS9jvuT-l2_v64VcAGWTYoPIpP72HQo8bMf3E,2060
|
|
264
264
|
maxframe/dataframe/tseries/__init__.py,sha256=29eM5D4knhYwe3TF42naTuC5b4Ym3VeH4rK8KpdLWNY,609
|
|
265
265
|
maxframe/dataframe/tseries/to_datetime.py,sha256=PAtSgFLpes87BwC9zdyj-caJEIeqMFREwyTMWZ9pJEI,11625
|
|
266
266
|
maxframe/dataframe/tseries/tests/__init__.py,sha256=29eM5D4knhYwe3TF42naTuC5b4Ym3VeH4rK8KpdLWNY,609
|
|
@@ -278,21 +278,42 @@ maxframe/dataframe/window/tests/__init__.py,sha256=29eM5D4knhYwe3TF42naTuC5b4Ym3
|
|
|
278
278
|
maxframe/dataframe/window/tests/test_ewm.py,sha256=v1hM2ucFH_8aRn8AJqWEpvvVtSK9QQUCs911N0trbX8,2130
|
|
279
279
|
maxframe/dataframe/window/tests/test_expanding.py,sha256=PsFYI6YXxNHYlsyaesy9yIAUSixp4IOrChmQtRGBpKc,2010
|
|
280
280
|
maxframe/dataframe/window/tests/test_rolling.py,sha256=eJYHh4MhKm_e9h4bCnK_d_aAYlKGQtFAbZTTEILe6gU,1771
|
|
281
|
+
maxframe/io/__init__.py,sha256=29eM5D4knhYwe3TF42naTuC5b4Ym3VeH4rK8KpdLWNY,609
|
|
282
|
+
maxframe/io/objects/__init__.py,sha256=QswbXcyRmPgMPdYyRFcm4maLAMDbOK0i-OUdHyyAn4Y,778
|
|
283
|
+
maxframe/io/objects/core.py,sha256=rhEYmS8Ty_cqJfjvTiPU-KaUVnr9DwPSIZEaPMZDH2U,4717
|
|
284
|
+
maxframe/io/objects/tensor.py,sha256=NQaYIItNYaeM0EcJ6TFejNWSSpXKSJjb6eI_ZKzXf6w,2749
|
|
285
|
+
maxframe/io/objects/tests/__init__.py,sha256=29eM5D4knhYwe3TF42naTuC5b4Ym3VeH4rK8KpdLWNY,609
|
|
286
|
+
maxframe/io/objects/tests/test_object_io.py,sha256=ElYAUf7jJtUMciZzzuEjPajSNEeqkMuWReHDDklo5Es,3189
|
|
287
|
+
maxframe/io/odpsio/__init__.py,sha256=xJbh1eHNI0D3xJG22VM3AHwwiwMIPldtGEJjildPsxc,925
|
|
288
|
+
maxframe/io/odpsio/arrow.py,sha256=yBdrld-Bh1eyLY_vcj6E0oA2WS9jiKlL93PNJASN7kk,4021
|
|
289
|
+
maxframe/io/odpsio/schema.py,sha256=SXZe8vc-YIJ92hIuYyCgyvqyZyiBN-58xFeCfKfcq0s,12768
|
|
290
|
+
maxframe/io/odpsio/tableio.py,sha256=OkYlZ13CTM8nrsIO9seR9oINWMNr4f-Wr9PlQ0qfPnk,25161
|
|
291
|
+
maxframe/io/odpsio/volumeio.py,sha256=yiZytTg3adJuYGwnwmAfMDshtomGd4cxqsyzCc40FhU,2230
|
|
292
|
+
maxframe/io/odpsio/tests/__init__.py,sha256=29eM5D4knhYwe3TF42naTuC5b4Ym3VeH4rK8KpdLWNY,609
|
|
293
|
+
maxframe/io/odpsio/tests/test_arrow.py,sha256=yeDWFzsm2IMS-k6jimlQ7uim5T6WW1Anuy8didaf4cs,3194
|
|
294
|
+
maxframe/io/odpsio/tests/test_schema.py,sha256=7zJv8ndaAaCgyHzRzHW-JhzsVSQpxP1vQ-5mRTwNyEY,12109
|
|
295
|
+
maxframe/io/odpsio/tests/test_tableio.py,sha256=XPgbCJj_hxscynqYO4L3_g67LckYLJznqzcJyRLCm_M,5769
|
|
296
|
+
maxframe/io/odpsio/tests/test_volumeio.py,sha256=gZga0IWoEkpu6DL3qpemPzo_zHxou-F-nj0g2zeUGa4,2956
|
|
281
297
|
maxframe/learn/__init__.py,sha256=1QzrFCJmdZFy0Nh1Ng3V6yY_NVvoSUdTIqcU-HIa1wk,649
|
|
282
|
-
maxframe/learn/
|
|
298
|
+
maxframe/learn/core.py,sha256=jQVOXTFond0ia9IdvObCV5MBpIgjPuxFSzyeg5AB11A,782
|
|
299
|
+
maxframe/learn/contrib/__init__.py,sha256=sSf3fsDgTSUi7tNvxxuhkk-fTga1Bt3jrpIS36kzMIQ,667
|
|
283
300
|
maxframe/learn/contrib/utils.py,sha256=e4E-QLr7SAhCBTUX246SBpi9DtRNQAE-xOUxvNnFzZY,1714
|
|
301
|
+
maxframe/learn/contrib/graph/__init__.py,sha256=Hy6k8OzCgLRiLPgSElIj4O4r_mttA9AvhpmXPofmvFo,667
|
|
302
|
+
maxframe/learn/contrib/graph/connected_components.py,sha256=KJXeRsxWBP4piViSOhST3M4OO81jCf73acMRg9NA1no,7367
|
|
303
|
+
maxframe/learn/contrib/graph/tests/__init__.py,sha256=29eM5D4knhYwe3TF42naTuC5b4Ym3VeH4rK8KpdLWNY,609
|
|
304
|
+
maxframe/learn/contrib/graph/tests/test_connected_components.py,sha256=HLBJ6m7V8KHkOjsUhjePdUbnvykVGpgdiegvGpyLBpM,1662
|
|
284
305
|
maxframe/learn/contrib/pytorch/__init__.py,sha256=a60NZy-COXEFgyC0uXJRBZGi-Vd9HZcqX62bKAMPKaM,703
|
|
285
306
|
maxframe/learn/contrib/pytorch/run_function.py,sha256=aQQhy2Bc6EEe-NVZb17hK4I9_TqIM1uI3fIMihY3TSQ,3354
|
|
286
307
|
maxframe/learn/contrib/pytorch/run_script.py,sha256=FOBXdJ9Q5QOirGGXq8_XwpwrTpDEmWt45-9n4VR_ixI,3213
|
|
287
308
|
maxframe/learn/contrib/pytorch/tests/__init__.py,sha256=29eM5D4knhYwe3TF42naTuC5b4Ym3VeH4rK8KpdLWNY,609
|
|
288
309
|
maxframe/learn/contrib/pytorch/tests/test_pytorch.py,sha256=GHP-oD5uMU8LD90Jt2cHbYRDdM5efjzsjpeBkc3t_qE,1444
|
|
289
310
|
maxframe/learn/contrib/xgboost/__init__.py,sha256=vk9xZO_FUwyVCrcLP1dbEz6JCZQBEHsmhGr1uQ45FAI,925
|
|
290
|
-
maxframe/learn/contrib/xgboost/classifier.py,sha256=
|
|
291
|
-
maxframe/learn/contrib/xgboost/core.py,sha256=
|
|
292
|
-
maxframe/learn/contrib/xgboost/dmatrix.py,sha256=
|
|
293
|
-
maxframe/learn/contrib/xgboost/predict.py,sha256=
|
|
294
|
-
maxframe/learn/contrib/xgboost/regressor.py,sha256=
|
|
295
|
-
maxframe/learn/contrib/xgboost/train.py,sha256=
|
|
311
|
+
maxframe/learn/contrib/xgboost/classifier.py,sha256=iJtEryJbi06gOeWzy9tguhDUGjD2LquUHtCjgaGXW24,3996
|
|
312
|
+
maxframe/learn/contrib/xgboost/core.py,sha256=p6SXqBzWjY5VzqkqOoMu-O9TBcQ3UHlddcsbEoTBXaE,8276
|
|
313
|
+
maxframe/learn/contrib/xgboost/dmatrix.py,sha256=acXkK8Ab6vT1DVb3ZtpeUdzNfVbOtrsCSdXrluQGN70,4889
|
|
314
|
+
maxframe/learn/contrib/xgboost/predict.py,sha256=aRtTMF1OODvrh9kQnDJK0mx0bLTZEVKB1O-nt6eVZ6M,3877
|
|
315
|
+
maxframe/learn/contrib/xgboost/regressor.py,sha256=0_GNVJFfkYmXJtG1eIUrwLOtr6HNNfkjKoBymLvd388,2384
|
|
316
|
+
maxframe/learn/contrib/xgboost/train.py,sha256=Mp0t7kyNGYgn6uKJf9Nesof5VuoUe6mg7g1sFpFZwfY,4660
|
|
296
317
|
maxframe/learn/contrib/xgboost/tests/__init__.py,sha256=29eM5D4knhYwe3TF42naTuC5b4Ym3VeH4rK8KpdLWNY,609
|
|
297
318
|
maxframe/learn/contrib/xgboost/tests/test_core.py,sha256=qNSXaB1t1vpoCD6RfpnFjJZHS8ShW9O_uz0ucXXlfpE,1449
|
|
298
319
|
maxframe/learn/utils/__init__.py,sha256=w2_QpDZ9J5BcSgbqu8P2RlkVRWC2gLowfgsaDPtz_Pg,661
|
|
@@ -300,7 +321,7 @@ maxframe/learn/utils/core.py,sha256=WNDISxPFsWmjkwHwEvjVGCkAOkIftqzEQFPA_KWr7FY,
|
|
|
300
321
|
maxframe/lib/__init__.py,sha256=_PB28W40qku6YiT8fJYqdmEdRMQfelOwGeksCOZJfCc,657
|
|
301
322
|
maxframe/lib/compression.py,sha256=QQpNK79iUC9zck74I0HKMhapSRnLBXtTRyS91taEVIc,1497
|
|
302
323
|
maxframe/lib/functools_compat.py,sha256=2LTrkSw5i-z5E9XCtZzfg9-0vPrYxicKvDjnnNrAL1Q,2697
|
|
303
|
-
maxframe/lib/mmh3.cp310-win32.pyd,sha256=
|
|
324
|
+
maxframe/lib/mmh3.cp310-win32.pyd,sha256=tVpo79IAyn7ZhFhGejjlTAx8PB3wlX1ser_rdKav7tY,15360
|
|
304
325
|
maxframe/lib/mmh3.pyi,sha256=pkzO6SUUukCty3X-WFsuokWBtIPWyxEa06ypF9liruI,1537
|
|
305
326
|
maxframe/lib/version.py,sha256=VOVZu3KHS53YUsb_vQsT7AyHwcCWAgc-3bBqV5ANcbQ,18941
|
|
306
327
|
maxframe/lib/wrapped_pickle.py,sha256=Akx-qhMMJJ6VVzQYrcVO_umFjx0IR-Yzb1XqyOS1Mio,3976
|
|
@@ -349,22 +370,12 @@ maxframe/lib/tblib/decorators.py,sha256=377HT3gnD9B2dcxw75pHM17--ABkcgi_GQGmdA_M
|
|
|
349
370
|
maxframe/lib/tblib/pickling_support.py,sha256=D9A0eX7gJeyqhXWxJJZ1GRwwcc5lj86wBRh0tmo6GHk,3025
|
|
350
371
|
maxframe/lib/tests/__init__.py,sha256=29eM5D4knhYwe3TF42naTuC5b4Ym3VeH4rK8KpdLWNY,609
|
|
351
372
|
maxframe/lib/tests/test_wrapped_pickle.py,sha256=WV0EJQ1hTSp8xjuosWWtEO7PeiBqdDUYgStxp72_c94,1575
|
|
352
|
-
maxframe/odpsio/__init__.py,sha256=NjyhtdmOuFrEBB5nfVtS_lngdjNKL26yZwYy4HTc40s,833
|
|
353
|
-
maxframe/odpsio/arrow.py,sha256=3GTTaA-VpsFAU_8wurmr4QRGkW7yB3KKTdXrtFrqrTs,4017
|
|
354
|
-
maxframe/odpsio/schema.py,sha256=ipHxt3FWPdxNHpeEV9FcY-dJjm07znM1wI5xtIIGLLc,12680
|
|
355
|
-
maxframe/odpsio/tableio.py,sha256=3iUrmInpC_4CAbFWNPvxPNyUPy5mq456NfpEAKRNLKk,24531
|
|
356
|
-
maxframe/odpsio/volumeio.py,sha256=IT_OO-RG2rJZOEx8C8xRr0oNR358RSAJQAp6WGxeXzI,3838
|
|
357
|
-
maxframe/odpsio/tests/__init__.py,sha256=29eM5D4knhYwe3TF42naTuC5b4Ym3VeH4rK8KpdLWNY,609
|
|
358
|
-
maxframe/odpsio/tests/test_arrow.py,sha256=yeDWFzsm2IMS-k6jimlQ7uim5T6WW1Anuy8didaf4cs,3194
|
|
359
|
-
maxframe/odpsio/tests/test_schema.py,sha256=_qXr_EqhG2tLsetxiSkuZitoZ55bQkqguK2eWBxWF68,12263
|
|
360
|
-
maxframe/odpsio/tests/test_tableio.py,sha256=Z6eR-DDNwlatyKQ0AEpemhjiLLSW2KqvxgQ7csRwIxY,5766
|
|
361
|
-
maxframe/odpsio/tests/test_volumeio.py,sha256=xvnrPZueZ76OAWK2zW_tHHI_cDxo7gJXTHiEe0lkmjk,3112
|
|
362
373
|
maxframe/remote/__init__.py,sha256=Yu1ZDLICbehNfd1ur7_2bnIn2VFIsTxH_cILCbHAeZY,747
|
|
363
|
-
maxframe/remote/core.py,sha256=
|
|
374
|
+
maxframe/remote/core.py,sha256=ELCUvg-_ZdTax_exFqm6-XWUXukT5qalKYBeDB-mV0k,6733
|
|
364
375
|
maxframe/remote/run_script.py,sha256=k93-vaFLUanWoBRai4-78DX_SLeZ8_rbbxcCtOIXZO8,3677
|
|
365
|
-
maxframe/serialization/__init__.py,sha256=
|
|
376
|
+
maxframe/serialization/__init__.py,sha256=UmDfKNohvk3StL-87QYmQTcQ2g6dRHSk49VFQS73VB0,963
|
|
366
377
|
maxframe/serialization/arrow.py,sha256=OMeDjLcPgagqzokG7g3Vhwm6Xw1j-Kph1V2QsIwi6dw,3513
|
|
367
|
-
maxframe/serialization/core.cp310-win32.pyd,sha256=
|
|
378
|
+
maxframe/serialization/core.cp310-win32.pyd,sha256=H0kDouSA34IEVdDZWmWlPw7hMy4IXQN_NOGEYHSfkdw,359424
|
|
368
379
|
maxframe/serialization/core.pxd,sha256=KioRiFhr5DTuqXnS2imJ3djWfSv2IAmhnz-kAFPgU6A,1548
|
|
369
380
|
maxframe/serialization/core.pyi,sha256=ELDG44v8O7A7RfURExMfVEJENuaEYHTwgJ-vzlH2Vh4,2206
|
|
370
381
|
maxframe/serialization/core.pyx,sha256=4iyUotIVV8CkVhHo3RyotDP1E7M2C1KMb0_40Ex_h1c,36321
|
|
@@ -382,11 +393,11 @@ maxframe/serialization/serializables/tests/test_field_type.py,sha256=uG87-bdG8xG
|
|
|
382
393
|
maxframe/serialization/serializables/tests/test_serializable.py,sha256=w5r-WC-8Zi1xAO1AfxdkjGcbGHZ8G5B-z_-d47Fje-A,10159
|
|
383
394
|
maxframe/serialization/tests/__init__.py,sha256=29eM5D4knhYwe3TF42naTuC5b4Ym3VeH4rK8KpdLWNY,609
|
|
384
395
|
maxframe/serialization/tests/test_serial.py,sha256=9G2CbPBHINwcZ038pRwZON_OtH-JVXZ8w66BLYWP578,12923
|
|
385
|
-
maxframe/tensor/__init__.py,sha256=
|
|
396
|
+
maxframe/tensor/__init__.py,sha256=7tlj6f0V97wwMr1x1LeVev3B0fAylsnyRwShSEN2Yvs,4642
|
|
386
397
|
maxframe/tensor/array_utils.py,sha256=xr_Ng-4dETJFjsMfWi5gbTPM9mRmPvRWj8QY2WKjmCg,5129
|
|
387
|
-
maxframe/tensor/core.py,sha256
|
|
388
|
-
maxframe/tensor/operators.py,sha256=
|
|
389
|
-
maxframe/tensor/utils.py,sha256=
|
|
398
|
+
maxframe/tensor/core.py,sha256=YE1if5ofQft725nhsfRFCF_S1xxjf7xk_ETfznGZzP0,18538
|
|
399
|
+
maxframe/tensor/operators.py,sha256=bmnL2EIIC28tlTB5SwQc5sunIkhPz8KBvSQHxbACqZg,3455
|
|
400
|
+
maxframe/tensor/utils.py,sha256=6HENWGkcwHe7t8IOAyyJ4m7pZt--S1Q1IOfz0oUZt6A,23109
|
|
390
401
|
maxframe/tensor/arithmetic/__init__.py,sha256=SUlcG0Mf9ddgxAdydenuJ9eY5yVu0TgKfpBujI3OX4w,9695
|
|
391
402
|
maxframe/tensor/arithmetic/abs.py,sha256=WQO9CxiI-u_gtXNOX1AIcL4Dak-NliK0YDjdOi9sHtc,2248
|
|
392
403
|
maxframe/tensor/arithmetic/absolute.py,sha256=GSIA5UySoSbGlgcjK8sChurEMATFz2cwdfJ7wAjqotc,2278
|
|
@@ -433,7 +444,7 @@ maxframe/tensor/arithmetic/hypot.py,sha256=mm0RQsKrLaC2rzW-qVNT_De_YKueNKB5lhD1m
|
|
|
433
444
|
maxframe/tensor/arithmetic/i0.py,sha256=FlsRK-63SoNbN0R8qCUGYbD0LfdfetBBzZndya3LYg0,3000
|
|
434
445
|
maxframe/tensor/arithmetic/imag.py,sha256=lCSlPCVL5HKalujl8ae4Msgtilgy9xiESt4GFjWY4gU,1835
|
|
435
446
|
maxframe/tensor/arithmetic/invert.py,sha256=DSFgIzY5xJCVmRXzjyADiNnAgc9RpYVzNwWOf1bQiTQ,3572
|
|
436
|
-
maxframe/tensor/arithmetic/isclose.py,sha256=
|
|
447
|
+
maxframe/tensor/arithmetic/isclose.py,sha256=1p_gcUJmk1xtrofAVR4-yVqrKggywqQkdzLBrgOlK_I,3811
|
|
437
448
|
maxframe/tensor/arithmetic/iscomplex.py,sha256=lSUunn3RZiZlrIHiSNx21siVR0BID9-_8ZfueEIxXvc,1768
|
|
438
449
|
maxframe/tensor/arithmetic/isfinite.py,sha256=JycutXOjf5YE9w9RFt65zFccgYc1uhdRFJ03fMpom5A,3704
|
|
439
450
|
maxframe/tensor/arithmetic/isinf.py,sha256=Yc97fOv6aD-YjrWzs3zHKSI1DR3pDXlRhnK3jQd1nHQ,3565
|
|
@@ -487,31 +498,21 @@ maxframe/tensor/arithmetic/truediv.py,sha256=xrsN8Z-q6msst9S8-469XQFgrs7T4RTkaym
|
|
|
487
498
|
maxframe/tensor/arithmetic/trunc.py,sha256=3z8jme9ZpPU8TqNo2ioViqJa7ThNK9KOVX1wl-R0a7M,2375
|
|
488
499
|
maxframe/tensor/arithmetic/utils.py,sha256=Kc3xqbIK9uRhHhDKFwAj-mW7SRljajfK9UOMyXyCHCY,2304
|
|
489
500
|
maxframe/tensor/arithmetic/tests/__init__.py,sha256=_PB28W40qku6YiT8fJYqdmEdRMQfelOwGeksCOZJfCc,657
|
|
490
|
-
maxframe/tensor/arithmetic/tests/test_arithmetic.py,sha256=
|
|
491
|
-
maxframe/tensor/base/__init__.py,sha256=qVf97u2J74RSjCmkF-7N-ylxWUc6mbiPPWpDe45vRmQ,1113
|
|
492
|
-
maxframe/tensor/base/astype.py,sha256=fzj0o3pJMVaSEEKMR-JBsd2FktlSa9ABtpt-fcWKio0,4513
|
|
493
|
-
maxframe/tensor/base/atleast_1d.py,sha256=_d7xamputAAHFY8v0Ayc8ILMdqS6fLZYhWQLOh_LFmc,1992
|
|
494
|
-
maxframe/tensor/base/broadcast_to.py,sha256=V-OB8YSbMfkMP2JpbiIQ0A9PrC-OHfaWzrntf5AOEwo,2775
|
|
495
|
-
maxframe/tensor/base/ravel.py,sha256=P9SCDU-UUHzd1HqZbodBSgKjtjiOFkyfLV_G9LFnz_U,3265
|
|
496
|
-
maxframe/tensor/base/transpose.py,sha256=yMK1KzxguKZOWxT3oMo5GchjB-1Yakilp2rEX3QlxFM,3539
|
|
497
|
-
maxframe/tensor/base/unique.py,sha256=wweWA7Qg-MwRsJwXQc_-4BuDAYBQkRgVw-B38z6hNTQ,6926
|
|
498
|
-
maxframe/tensor/base/where.py,sha256=cSg1mDhiOBB4F0Soh_uVw3yeSve9pfEhPSIDadc-wto,4127
|
|
499
|
-
maxframe/tensor/base/tests/__init__.py,sha256=29eM5D4knhYwe3TF42naTuC5b4Ym3VeH4rK8KpdLWNY,609
|
|
500
|
-
maxframe/tensor/base/tests/test_base.py,sha256=i9TneozyHCHDhO438U285KS6tdh0Zks8mgkRm3fsHxk,2957
|
|
501
|
+
maxframe/tensor/arithmetic/tests/test_arithmetic.py,sha256=zyvizXBapZcauwf64awWMzmNQeWR6VK0aSq1WwdbfBw,11839
|
|
501
502
|
maxframe/tensor/datasource/__init__.py,sha256=xtrdcuP6yTc_T19ITPsJTknoqTT-XudlhSlffrScjsY,1178
|
|
502
503
|
maxframe/tensor/datasource/arange.py,sha256=tjNF_huiWTtqtN6YBBtn0tvP9Pnebf6LNXRmAsYqRQk,5632
|
|
503
|
-
maxframe/tensor/datasource/array.py,sha256=
|
|
504
|
+
maxframe/tensor/datasource/array.py,sha256=21R-mH1a4PLwlby9M4YMXBS31DT1BVvbKUUhE23Mop0,13472
|
|
504
505
|
maxframe/tensor/datasource/core.py,sha256=LzuHtRWCNny1y-IzGylelWZ6rejS31LdT4E7qs_uIQs,3520
|
|
505
506
|
maxframe/tensor/datasource/empty.py,sha256=GpK-DHUfJp9M46wUrGt5lf-YbDDveubwntDjTVYnmMw,6019
|
|
506
507
|
maxframe/tensor/datasource/from_dataframe.py,sha256=iJY2cw2yA6YKnqRLyB0XdvpdemHHzpU7q2SA1sYo6mo,2573
|
|
507
508
|
maxframe/tensor/datasource/from_dense.py,sha256=txyxNBD0oXr3Ama9me2ay1_ASuDu1QK3w6ATebMzNCU,1661
|
|
508
509
|
maxframe/tensor/datasource/from_sparse.py,sha256=le-Wfno7Z8XY71TLwEOhO80fkvKXwKXbDgsrOfmDM8s,1593
|
|
509
|
-
maxframe/tensor/datasource/full.py,sha256
|
|
510
|
+
maxframe/tensor/datasource/full.py,sha256=cWS5GSEV-82s0IU1GMHTrAlydVGQ-Zxk2uCs5vxgOfc,6462
|
|
510
511
|
maxframe/tensor/datasource/ones.py,sha256=0UuYAwMLGfjF-O_90vkwsMqQlAAfJ98TdxbfgC1y6Fk,5182
|
|
511
512
|
maxframe/tensor/datasource/scalar.py,sha256=g2dsnmOEzV30I0UK3ytMtkiosdfH3NJ6wacZuxBpmbk,1196
|
|
512
513
|
maxframe/tensor/datasource/zeros.py,sha256=DJZK_kraSn820O17GSHLFHV43x1JL3Gt_HdlN0p5o7k,5860
|
|
513
514
|
maxframe/tensor/datasource/tests/__init__.py,sha256=29eM5D4knhYwe3TF42naTuC5b4Ym3VeH4rK8KpdLWNY,609
|
|
514
|
-
maxframe/tensor/datasource/tests/test_datasource.py,sha256=
|
|
515
|
+
maxframe/tensor/datasource/tests/test_datasource.py,sha256=mCyjktnCHuR2w796nHAzQ_fVR95fRqY57Zome2Wjuss,7931
|
|
515
516
|
maxframe/tensor/fetch/__init__.py,sha256=udOT7c7dIbszchvIkCLAWp7SE-GUIE6vl85wWFuaJl0,662
|
|
516
517
|
maxframe/tensor/fetch/core.py,sha256=nyK5dFqDSrM1vi_xgk_yh4GRLUp-FxvjgdbqFxlS_Hg,1872
|
|
517
518
|
maxframe/tensor/indexing/__init__.py,sha256=IF7jK7ZqwWi8nhKY2IRXVzLYacqdeyc4iUFGvzx09Mg,1658
|
|
@@ -520,8 +521,8 @@ maxframe/tensor/indexing/compress.py,sha256=2i-mhWB7-Z7y8luWBJ_2Fhci7IP0kNGr8s-S
|
|
|
520
521
|
maxframe/tensor/indexing/core.py,sha256=85E1kSDogs7p57vE1O-ZYx4XhpEE21tmt1-mOey5ejs,7212
|
|
521
522
|
maxframe/tensor/indexing/extract.py,sha256=KHqEVMKwxIlm2RYVSVhZX5Jo7yymKTIgzNT6y8Ilodc,2139
|
|
522
523
|
maxframe/tensor/indexing/fill_diagonal.py,sha256=V3_kMu5Cvund5a4GYTG5617ryNu0cHjWp3FfAU_d3yY,5488
|
|
523
|
-
maxframe/tensor/indexing/flatnonzero.py,sha256=
|
|
524
|
-
maxframe/tensor/indexing/getitem.py,sha256=
|
|
524
|
+
maxframe/tensor/indexing/flatnonzero.py,sha256=v0Od1T6pn6vfoDeEG40lJ7h4OD8cPIlzDTDHMcR50IA,1766
|
|
525
|
+
maxframe/tensor/indexing/getitem.py,sha256=v_NyhKc78Cj0YZZQ12XDS4l4rXVavLV1brqcAXNjUPM,5800
|
|
525
526
|
maxframe/tensor/indexing/nonzero.py,sha256=qeTEj7oiqf2CYBDlL1aKG19lPPFXvHkMq0A-4Dmvz4A,3766
|
|
526
527
|
maxframe/tensor/indexing/setitem.py,sha256=u7YbeJQmWnhu13H8k5ohw89YQRcPnY-9Ni0zJxzfJJo,4484
|
|
527
528
|
maxframe/tensor/indexing/slice.py,sha256=J49_6hcI0Z1MFfgtKFrnhraTJAs6cLcvMV-63pGHKLQ,1051
|
|
@@ -529,17 +530,31 @@ maxframe/tensor/indexing/take.py,sha256=OCuIrhqO74CIojaoOc45McoQiJEjxvN1zens4RQV
|
|
|
529
530
|
maxframe/tensor/indexing/unravel_index.py,sha256=FMmoEYrDHZAtx_HHC21W3KZfkqwxNZUObXP3HVSJgGw,3326
|
|
530
531
|
maxframe/tensor/indexing/tests/__init__.py,sha256=_PB28W40qku6YiT8fJYqdmEdRMQfelOwGeksCOZJfCc,657
|
|
531
532
|
maxframe/tensor/indexing/tests/test_indexing.py,sha256=uatTFiNkYnyqibYa2-NleUWyFRnlK0mN1AG0tBqFCts,6886
|
|
532
|
-
maxframe/tensor/merge/__init__.py,sha256=
|
|
533
|
+
maxframe/tensor/merge/__init__.py,sha256=mzXzvbNObPYmvWY3PCu3yFvV82Tqqaxav5DX_Iv2UN8,703
|
|
534
|
+
maxframe/tensor/merge/concatenate.py,sha256=RRyP-fqUGfMeP3Zo2wgfZcnF-u8dCCIOpr_0jI5Fft8,3314
|
|
533
535
|
maxframe/tensor/merge/stack.py,sha256=lZJs8M1JYBdYXnalj6-6ltdJKKslZ1Z-ydkzvGlzzkY,4277
|
|
536
|
+
maxframe/tensor/merge/vstack.py,sha256=RDlTE2A51b1ku7ep1J0p-bq8EQHUkiXLa0rVHNWOLBI,2338
|
|
534
537
|
maxframe/tensor/merge/tests/__init__.py,sha256=29eM5D4knhYwe3TF42naTuC5b4Ym3VeH4rK8KpdLWNY,609
|
|
535
|
-
maxframe/tensor/merge/tests/test_merge.py,sha256=
|
|
538
|
+
maxframe/tensor/merge/tests/test_merge.py,sha256=tI4xeJPpME68buemIzTga9mTQiMoqFc9v4__Hi40kzg,2291
|
|
539
|
+
maxframe/tensor/misc/__init__.py,sha256=C6VvY-dnO0_8Z1ArbzhT0I0ClFNT2LGfSgPJdICUexo,1185
|
|
540
|
+
maxframe/tensor/misc/astype.py,sha256=fzj0o3pJMVaSEEKMR-JBsd2FktlSa9ABtpt-fcWKio0,4513
|
|
541
|
+
maxframe/tensor/misc/atleast_1d.py,sha256=XG-8Yxjo0_HD_hRWMoGtaqhgVrIXOR3g1leH_6ib9mk,1944
|
|
542
|
+
maxframe/tensor/misc/atleast_2d.py,sha256=9F5m9DyDJ63nPFhrCqTTHszz36pgU0_VM6nJLmLx9QM,2028
|
|
543
|
+
maxframe/tensor/misc/atleast_3d.py,sha256=XkpSZ_haJJz0wanww5HB4Xhhx3QK8xtbleWvC7ARkBE,2477
|
|
544
|
+
maxframe/tensor/misc/broadcast_to.py,sha256=V-OB8YSbMfkMP2JpbiIQ0A9PrC-OHfaWzrntf5AOEwo,2775
|
|
545
|
+
maxframe/tensor/misc/ravel.py,sha256=P9SCDU-UUHzd1HqZbodBSgKjtjiOFkyfLV_G9LFnz_U,3265
|
|
546
|
+
maxframe/tensor/misc/transpose.py,sha256=e_VAfFPAmde8mzJTovSPWx53vUlgnYtYbEa4bYZst_4,4149
|
|
547
|
+
maxframe/tensor/misc/unique.py,sha256=wweWA7Qg-MwRsJwXQc_-4BuDAYBQkRgVw-B38z6hNTQ,6926
|
|
548
|
+
maxframe/tensor/misc/where.py,sha256=cSg1mDhiOBB4F0Soh_uVw3yeSve9pfEhPSIDadc-wto,4127
|
|
549
|
+
maxframe/tensor/misc/tests/__init__.py,sha256=29eM5D4knhYwe3TF42naTuC5b4Ym3VeH4rK8KpdLWNY,609
|
|
550
|
+
maxframe/tensor/misc/tests/test_misc.py,sha256=i9TneozyHCHDhO438U285KS6tdh0Zks8mgkRm3fsHxk,2957
|
|
536
551
|
maxframe/tensor/random/__init__.py,sha256=KKshGsQFlScwgZU-lS_yy1CPsEcufVlKyZSz1CUxzU4,7179
|
|
537
552
|
maxframe/tensor/random/beta.py,sha256=8-t9NxQrDOTpm5Q_ip_HWnARX_T69tfyJeRv-FobFXw,3200
|
|
538
553
|
maxframe/tensor/random/binomial.py,sha256=BsjD4yRX_IvfexgqZFQMb0jceD46xj4cmKXbpla5eL8,5428
|
|
539
554
|
maxframe/tensor/random/bytes.py,sha256=PmmPFGnhq_FCbkcSYQWNTw1jehvDLmRCzPgEukAgo7w,1093
|
|
540
555
|
maxframe/tensor/random/chisquare.py,sha256=buOfihHGKTsH_Uv8BuWb6_0L0dJukSFrjNlsaWBKy1I,3864
|
|
541
556
|
maxframe/tensor/random/choice.py,sha256=dLM_5Vw5ov_2P-82tcHwQtMPE02VmQScAsY5zbTZ4K4,6144
|
|
542
|
-
maxframe/tensor/random/core.py,sha256=
|
|
557
|
+
maxframe/tensor/random/core.py,sha256=hLmTHK6my3_1JADRny018C3yGPycsO0JWcALQ_XZwMg,7440
|
|
543
558
|
maxframe/tensor/random/dirichlet.py,sha256=s89z_s5qevE0DdezLeI1pdoBFclDBQy-ulSAMDyy_TE,4507
|
|
544
559
|
maxframe/tensor/random/exponential.py,sha256=82kMZBn1N_XdHdggUUWecPYjx91SAYvPtArErwqD66g,3677
|
|
545
560
|
maxframe/tensor/random/f.py,sha256=5grVBKXHDhmc-N4wuwNpC7sF92uTXd1zfCQEVzCPLSo,5226
|
|
@@ -591,29 +606,29 @@ maxframe/tensor/reduction/argmax.py,sha256=UqPBCgnyLFpIjaNPWxcyLGynpOzYnaVj23PQy
|
|
|
591
606
|
maxframe/tensor/reduction/argmin.py,sha256=Gy_O7kEcJosGQImqkR5S7N5ygs-bXnYcpljj3TSe5Ho,3202
|
|
592
607
|
maxframe/tensor/reduction/array_equal.py,sha256=1otUnsacNdSgkdP1hHs3NcAdqtJNyY3F1oOVItrmv70,1859
|
|
593
608
|
maxframe/tensor/reduction/core.py,sha256=NwASayI1P1uCCFCyNltH-cVezefW3Th2qS6viSuSKMQ,5257
|
|
594
|
-
maxframe/tensor/reduction/count_nonzero.py,sha256=
|
|
609
|
+
maxframe/tensor/reduction/count_nonzero.py,sha256=zhaiKDQxWR5WTNwwqn8piRuBGYwOq-Oe0Uv7rdSPyPA,2836
|
|
595
610
|
maxframe/tensor/reduction/cumprod.py,sha256=zitvIvh2Sb4iL7yL2Spenoe7NQndV9LJ4qrejd_ul48,3369
|
|
596
611
|
maxframe/tensor/reduction/cumsum.py,sha256=IUOvbrVEgjDOdd3nsxnDy3Fx0eJC0EfOGt0PIfik_PM,3592
|
|
597
612
|
maxframe/tensor/reduction/max.py,sha256=8B5k9n89orftEYLI_Lwl10O0zbN6vq5SxUpX0W9L7Bo,4099
|
|
598
|
-
maxframe/tensor/reduction/mean.py,sha256=
|
|
613
|
+
maxframe/tensor/reduction/mean.py,sha256=X-DeUsX_6jbJLAgeLqfFghNnVz-CPzvTr6SD_LvkrQI,4503
|
|
599
614
|
maxframe/tensor/reduction/min.py,sha256=YRHJ-leK2wF6ZJT7WgepMhIofw9JQ62PxRw8JqJTaFU,4100
|
|
600
615
|
maxframe/tensor/reduction/nanargmax.py,sha256=Nwiin8tWykaaOjtNF7DGMNuIFZXAts_v4XO68ODM9FI,2563
|
|
601
616
|
maxframe/tensor/reduction/nanargmin.py,sha256=rgOcOEbbJyvGwAYFSJkQSfY8yjdqtaOg5d7gL5FijLE,2279
|
|
602
617
|
maxframe/tensor/reduction/nancumprod.py,sha256=e9l343oVsXra2Goiai3Qbwnqe1Fq8BEATa0475_DNdo,3212
|
|
603
618
|
maxframe/tensor/reduction/nancumsum.py,sha256=Q8sNfx8d8sfKQhOWBI5dOJfORua_HzUydwauX4Lu8LI,3377
|
|
604
619
|
maxframe/tensor/reduction/nanmax.py,sha256=l8GplMV1eZwsgYt2esxPCj7ou3DgODzi3N1Vbbxjz7o,4061
|
|
605
|
-
maxframe/tensor/reduction/nanmean.py,sha256=
|
|
620
|
+
maxframe/tensor/reduction/nanmean.py,sha256=PJCx-oVyL-gCBIuyxrIKcqQKP5z5ro9XIBapMQ6IMe8,4078
|
|
606
621
|
maxframe/tensor/reduction/nanmin.py,sha256=vxq-g_ffwI6fLZ9rVdGoaGAq87w4pvLas_NKZsfLiYQ,4058
|
|
607
622
|
maxframe/tensor/reduction/nanprod.py,sha256=1of1DIP390_12QA0xKCXSvAxYrddJC52h7KmsLwTvyQ,3408
|
|
608
623
|
maxframe/tensor/reduction/nanstd.py,sha256=6aOed5RQ4-N2IfQjWZKVoQ34GN6O9_LVeGoUwa5d1hU,5017
|
|
609
624
|
maxframe/tensor/reduction/nansum.py,sha256=3gjbgh6Qw29HxLNdyn8MzxekFlyr3l377EZwNFgla4g,4181
|
|
610
|
-
maxframe/tensor/reduction/nanvar.py,sha256=
|
|
625
|
+
maxframe/tensor/reduction/nanvar.py,sha256=ZvC3EnhvaSbCe3P9RDelCqjMiWFjmze5RBEGS5bTi4A,5621
|
|
611
626
|
maxframe/tensor/reduction/prod.py,sha256=PfTHhIYDVsPtTSRQ2wZQ2WY7wbbuIh8YoEFR7kTJdzU,4536
|
|
612
627
|
maxframe/tensor/reduction/std.py,sha256=s4wvtnRUCw9EfKZrdefClxnKLjM6gzZqYuxOrg6Tgck,5269
|
|
613
628
|
maxframe/tensor/reduction/sum.py,sha256=ehfqbdEafd5ASliWR5DL689q_VH7Isk7ozlrWBdamDk,4371
|
|
614
|
-
maxframe/tensor/reduction/var.py,sha256=
|
|
629
|
+
maxframe/tensor/reduction/var.py,sha256=MKl5pe9t7g20atW5XFdFChr1Qxb1ReeViIaHwoRGCpM,6482
|
|
615
630
|
maxframe/tensor/reduction/tests/__init__.py,sha256=29eM5D4knhYwe3TF42naTuC5b4Ym3VeH4rK8KpdLWNY,609
|
|
616
|
-
maxframe/tensor/reduction/tests/test_reduction.py,sha256=
|
|
631
|
+
maxframe/tensor/reduction/tests/test_reduction.py,sha256=k2pXfAfowBDzEgMvldflUzhFUMWIkiP2fznZp7q9Bkw,6370
|
|
617
632
|
maxframe/tensor/reshape/__init__.py,sha256=h_yXSMgSS3hGdLmnyWUUqXshEz4rLiEYDTlZbDBuj0w,689
|
|
618
633
|
maxframe/tensor/reshape/reshape.py,sha256=3vfmYigJcfODwg4av9lcMDM4mQ4TsNQT0qmbdcsg4zc,6641
|
|
619
634
|
maxframe/tensor/reshape/tests/__init__.py,sha256=_PB28W40qku6YiT8fJYqdmEdRMQfelOwGeksCOZJfCc,657
|
|
@@ -630,20 +645,20 @@ maxframe/tests/test_utils.py,sha256=5Z2cym1tlpnF73f4I3WC1eBocsbNEDGzDErJL_fKWx8,
|
|
|
630
645
|
maxframe/tests/utils.py,sha256=t99jsFXhHme886zvXO5sl20stB5WFJsDH6KeHc5I9N0,5057
|
|
631
646
|
maxframe_client/__init__.py,sha256=hIVOnxj6AoN2zIMxQCzRb10k0LSoYS_DrQevXO9KPBg,705
|
|
632
647
|
maxframe_client/conftest.py,sha256=UWWMYjmohHL13hLl4adb0gZPLRdBVOYVvsFo6VZruI0,658
|
|
633
|
-
maxframe_client/fetcher.py,sha256=
|
|
648
|
+
maxframe_client/fetcher.py,sha256=vwzGCH9pR_5aLcKzPL63iwDQ9UF2IMKa6TrY-JW2GNQ,8700
|
|
634
649
|
maxframe_client/clients/__init__.py,sha256=29eM5D4knhYwe3TF42naTuC5b4Ym3VeH4rK8KpdLWNY,609
|
|
635
650
|
maxframe_client/clients/framedriver.py,sha256=upN6C1eZrCpLTsS6fihWOMy392psWfo0bw2XgSLI_Yg,4581
|
|
636
651
|
maxframe_client/session/__init__.py,sha256=9zFCd3zkSADESAFc4SPoQ2nkvRwsIhhpNNO2TtSaWbU,854
|
|
637
|
-
maxframe_client/session/consts.py,sha256=
|
|
638
|
-
maxframe_client/session/graph.py,sha256=
|
|
639
|
-
maxframe_client/session/odps.py,sha256=
|
|
640
|
-
maxframe_client/session/task.py,sha256=
|
|
652
|
+
maxframe_client/session/consts.py,sha256=USDwwz79zFjhlp2MGz5Th6cCuZaYRLAo491tUanZdDs,1430
|
|
653
|
+
maxframe_client/session/graph.py,sha256=CEavpl_zmz_nZ2TXI4moRxpdYsMZMokV63889qI6l_4,4501
|
|
654
|
+
maxframe_client/session/odps.py,sha256=6EzIZnE8zuBhyrG7PKxDtQNBqzcyPcD_7ZzzRFXmPhU,24134
|
|
655
|
+
maxframe_client/session/task.py,sha256=uxelaneGEMFQX_Cs73e3ZBdtbhLEJ-voa7BJ6VIDq0Y,13032
|
|
641
656
|
maxframe_client/session/tests/__init__.py,sha256=29eM5D4knhYwe3TF42naTuC5b4Ym3VeH4rK8KpdLWNY,609
|
|
642
657
|
maxframe_client/session/tests/test_task.py,sha256=861usEURVXeTUzfJYZmBfwsHfZFexG23mMtT5IJOOm4,3364
|
|
643
658
|
maxframe_client/tests/__init__.py,sha256=29eM5D4knhYwe3TF42naTuC5b4Ym3VeH4rK8KpdLWNY,609
|
|
644
|
-
maxframe_client/tests/test_fetcher.py,sha256=
|
|
645
|
-
maxframe_client/tests/test_session.py,sha256=
|
|
646
|
-
maxframe-1.0.
|
|
647
|
-
maxframe-1.0.
|
|
648
|
-
maxframe-1.0.
|
|
649
|
-
maxframe-1.0.
|
|
659
|
+
maxframe_client/tests/test_fetcher.py,sha256=lYtn4NuntN-_A7rMd10e2y_CEUp7zelTij441NTFP6M,4265
|
|
660
|
+
maxframe_client/tests/test_session.py,sha256=hzzEhQnaefASvwlTGKWrkDUGPhOvk3WUSlvsi30O5C0,10863
|
|
661
|
+
maxframe-1.0.0rc4.dist-info/METADATA,sha256=XxNVZ4QAHY16v64X3Porg8IfQhIw7DdJyhretRIL2uo,3131
|
|
662
|
+
maxframe-1.0.0rc4.dist-info/WHEEL,sha256=kGWsP8BhvrdTiAkIHlw_YH1b9_r1ixoZOxchxwbMhE8,98
|
|
663
|
+
maxframe-1.0.0rc4.dist-info/top_level.txt,sha256=64x-fc2q59c_vXwNUkehyjF1vb8JWqFSdYmUqIFqoTM,31
|
|
664
|
+
maxframe-1.0.0rc4.dist-info/RECORD,,
|