maxframe 1.0.0rc1__cp311-cp311-macosx_10_9_universal2.whl → 1.0.0rc3__cp311-cp311-macosx_10_9_universal2.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of maxframe might be problematic. Click here for more details.
- maxframe/_utils.cpython-311-darwin.so +0 -0
- maxframe/codegen.py +3 -6
- maxframe/config/config.py +49 -10
- maxframe/config/validators.py +42 -11
- maxframe/conftest.py +15 -2
- maxframe/core/__init__.py +2 -13
- maxframe/core/entity/__init__.py +0 -4
- maxframe/core/entity/objects.py +46 -3
- maxframe/core/entity/output_types.py +0 -3
- maxframe/core/entity/tests/test_objects.py +43 -0
- maxframe/core/entity/tileables.py +5 -78
- maxframe/core/graph/__init__.py +2 -2
- maxframe/core/graph/builder/__init__.py +0 -1
- maxframe/core/graph/builder/base.py +5 -4
- maxframe/core/graph/builder/tileable.py +4 -4
- maxframe/core/graph/builder/utils.py +4 -8
- maxframe/core/graph/core.cpython-311-darwin.so +0 -0
- maxframe/core/graph/entity.py +9 -33
- maxframe/core/operator/__init__.py +2 -9
- maxframe/core/operator/base.py +3 -5
- maxframe/core/operator/objects.py +0 -9
- maxframe/core/operator/utils.py +55 -0
- maxframe/dataframe/__init__.py +1 -1
- maxframe/dataframe/arithmetic/around.py +5 -17
- maxframe/dataframe/arithmetic/core.py +15 -7
- maxframe/dataframe/arithmetic/docstring.py +5 -55
- maxframe/dataframe/arithmetic/tests/test_arithmetic.py +22 -0
- maxframe/dataframe/core.py +5 -5
- maxframe/dataframe/datasource/date_range.py +2 -2
- maxframe/dataframe/datasource/read_odps_query.py +7 -1
- maxframe/dataframe/datasource/read_odps_table.py +3 -2
- maxframe/dataframe/datasource/tests/test_datasource.py +14 -0
- maxframe/dataframe/datastore/to_odps.py +1 -1
- maxframe/dataframe/groupby/cum.py +0 -1
- maxframe/dataframe/groupby/tests/test_groupby.py +4 -0
- maxframe/dataframe/indexing/add_prefix_suffix.py +1 -1
- maxframe/dataframe/indexing/rename.py +3 -37
- maxframe/dataframe/indexing/sample.py +0 -1
- maxframe/dataframe/indexing/set_index.py +68 -1
- maxframe/dataframe/merge/merge.py +236 -2
- maxframe/dataframe/merge/tests/test_merge.py +123 -0
- maxframe/dataframe/misc/apply.py +3 -10
- maxframe/dataframe/misc/case_when.py +1 -1
- maxframe/dataframe/misc/describe.py +2 -2
- maxframe/dataframe/misc/drop_duplicates.py +4 -25
- maxframe/dataframe/misc/eval.py +4 -0
- maxframe/dataframe/misc/pct_change.py +1 -83
- 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/sort/sort_values.py +1 -11
- maxframe/dataframe/statistics/quantile.py +5 -17
- maxframe/dataframe/utils.py +4 -7
- 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 +12 -8
- maxframe/{odpsio → io/odpsio}/schema.py +15 -12
- maxframe/io/odpsio/tableio.py +702 -0
- maxframe/io/odpsio/tests/__init__.py +13 -0
- maxframe/{odpsio → io/odpsio}/tests/test_schema.py +19 -18
- 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 +57 -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 +21 -7
- maxframe/learn/contrib/xgboost/regressor.py +3 -10
- maxframe/learn/contrib/xgboost/train.py +27 -17
- maxframe/{core/operator/fuse.py → learn/core.py} +7 -10
- maxframe/lib/mmh3.cpython-311-darwin.so +0 -0
- maxframe/protocol.py +41 -17
- maxframe/remote/core.py +4 -8
- maxframe/serialization/__init__.py +1 -0
- maxframe/serialization/core.cpython-311-darwin.so +0 -0
- maxframe/serialization/serializables/core.py +48 -9
- maxframe/tensor/__init__.py +69 -2
- maxframe/tensor/arithmetic/isclose.py +1 -0
- maxframe/tensor/arithmetic/tests/test_arithmetic.py +21 -17
- maxframe/tensor/core.py +5 -136
- maxframe/tensor/datasource/array.py +3 -0
- maxframe/tensor/datasource/full.py +1 -1
- maxframe/tensor/datasource/tests/test_datasource.py +1 -1
- maxframe/tensor/indexing/flatnonzero.py +1 -1
- maxframe/tensor/merge/__init__.py +2 -0
- maxframe/tensor/merge/concatenate.py +98 -0
- maxframe/tensor/merge/tests/test_merge.py +30 -1
- maxframe/tensor/merge/vstack.py +70 -0
- maxframe/tensor/{base → misc}/__init__.py +2 -0
- maxframe/tensor/{base → misc}/atleast_1d.py +0 -2
- maxframe/tensor/misc/atleast_2d.py +70 -0
- maxframe/tensor/misc/atleast_3d.py +85 -0
- maxframe/tensor/misc/tests/__init__.py +13 -0
- maxframe/tensor/{base → misc}/transpose.py +22 -18
- maxframe/tensor/{base → misc}/unique.py +2 -2
- 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/statistics/quantile.py +2 -2
- maxframe/tensor/utils.py +2 -22
- maxframe/tests/utils.py +11 -2
- maxframe/typing_.py +4 -1
- maxframe/udf.py +8 -9
- maxframe/utils.py +32 -70
- {maxframe-1.0.0rc1.dist-info → maxframe-1.0.0rc3.dist-info}/METADATA +25 -25
- {maxframe-1.0.0rc1.dist-info → maxframe-1.0.0rc3.dist-info}/RECORD +133 -123
- {maxframe-1.0.0rc1.dist-info → maxframe-1.0.0rc3.dist-info}/WHEEL +1 -1
- maxframe_client/fetcher.py +60 -68
- maxframe_client/session/graph.py +8 -2
- maxframe_client/session/odps.py +58 -22
- maxframe_client/tests/test_fetcher.py +21 -3
- maxframe_client/tests/test_session.py +27 -4
- 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/{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}/where.py +0 -0
- {maxframe-1.0.0rc1.dist-info → maxframe-1.0.0rc3.dist-info}/top_level.txt +0 -0
|
@@ -1,54 +1,54 @@
|
|
|
1
|
-
maxframe-1.0.
|
|
2
|
-
maxframe-1.0.
|
|
3
|
-
maxframe-1.0.
|
|
4
|
-
maxframe-1.0.
|
|
1
|
+
maxframe-1.0.0rc3.dist-info/RECORD,,
|
|
2
|
+
maxframe-1.0.0rc3.dist-info/WHEEL,sha256=92_hVubBG0j2n36L0dzKIEgqBO1NS-E4GlWp-1cPYxI,114
|
|
3
|
+
maxframe-1.0.0rc3.dist-info/top_level.txt,sha256=64x-fc2q59c_vXwNUkehyjF1vb8JWqFSdYmUqIFqoTM,31
|
|
4
|
+
maxframe-1.0.0rc3.dist-info/METADATA,sha256=_-16SK-Jz3GNaM3byVxjvE7ZUTV_kZjFa4Zq9ZbkN70,3027
|
|
5
5
|
maxframe_client/conftest.py,sha256=7cwy2sFy5snEaxvtMvxfYFUnG6WtYC_9XxVrwJxOpcU,643
|
|
6
6
|
maxframe_client/__init__.py,sha256=0_6MYIqksNc-B0hORLb0yqNQUhtqdFD7TGg39bQ-_NI,689
|
|
7
|
-
maxframe_client/fetcher.py,sha256=
|
|
7
|
+
maxframe_client/fetcher.py,sha256=B6cXX7WP34ys0ukT-JekWprlwweXAy1ljw00T4800Z0,8339
|
|
8
8
|
maxframe_client/clients/__init__.py,sha256=FEFOVLi3o2GpZoedTtLYvbie0eQBehJIjtCrWca2ZHw,596
|
|
9
9
|
maxframe_client/clients/framedriver.py,sha256=Rn09529D2qBTgNGc0oCY0l7b3FgzT87TqS1nujGQaHw,4463
|
|
10
|
-
maxframe_client/tests/test_session.py,sha256=
|
|
10
|
+
maxframe_client/tests/test_session.py,sha256=YEr9bCY_hOmVhkJt4wDIyBkkuAimheWzL5733YCkEyw,10113
|
|
11
11
|
maxframe_client/tests/__init__.py,sha256=FEFOVLi3o2GpZoedTtLYvbie0eQBehJIjtCrWca2ZHw,596
|
|
12
|
-
maxframe_client/tests/test_fetcher.py,sha256=
|
|
12
|
+
maxframe_client/tests/test_fetcher.py,sha256=7mVDO456wcUMajguTJ4FWkSpuonLfinFfiz31ZYnHNs,4158
|
|
13
13
|
maxframe_client/session/task.py,sha256=v0tnS2QtkiNt7D47l_3QjXOqNqlkD7NGL8dJ_h4Fr_E,11101
|
|
14
|
-
maxframe_client/session/graph.py,sha256=
|
|
14
|
+
maxframe_client/session/graph.py,sha256=rRilIWsiVfj_N160s8uv2s7mi_nhx7JxSa9BkhyLRnE,4376
|
|
15
15
|
maxframe_client/session/__init__.py,sha256=KPqhSlAJiuUz8TC-z5o7mHDVXzLSqWwrZ33zNni7piY,832
|
|
16
16
|
maxframe_client/session/consts.py,sha256=R37BxDF3kgCy0qmDdwLaH5jB7mb7SzfYV6g9yHBKAwk,1344
|
|
17
|
-
maxframe_client/session/odps.py,sha256=
|
|
17
|
+
maxframe_client/session/odps.py,sha256=vIV3HfuqIRnVNskau4Eap6secuX_MpK-oxdCBX0l9Rk,20690
|
|
18
18
|
maxframe_client/session/tests/test_task.py,sha256=lDdw3gToaM3xSaRXEmHUoAo2h0id7t4v_VvpdKxQAao,3279
|
|
19
19
|
maxframe_client/session/tests/__init__.py,sha256=FEFOVLi3o2GpZoedTtLYvbie0eQBehJIjtCrWca2ZHw,596
|
|
20
20
|
maxframe/_utils.pyx,sha256=I4kmfhNr-xXK2ak22dr4Vwahzn-JmTaYctbL3y9_UBQ,17017
|
|
21
|
-
maxframe/conftest.py,sha256=
|
|
22
|
-
maxframe/_utils.cpython-311-darwin.so,sha256=
|
|
21
|
+
maxframe/conftest.py,sha256=zyxq9OfQ9pgL5QtG5DCOxTjYqXs5bk3QLN7xVgin6ig,4726
|
|
22
|
+
maxframe/_utils.cpython-311-darwin.so,sha256=13XHwUAPnRw9jpKeSPclhJJGs7ZQ10J2f-39K1FqTDM,846720
|
|
23
23
|
maxframe/opcodes.py,sha256=1Da6d3a82mecIHmnyZve4gSH_KN-q3Snl0nSygue2Ng,10191
|
|
24
24
|
maxframe/env.py,sha256=_K499f7giN7Iu9f39iI9p_naaEDoJ0rx8dInbzqFOVI,1402
|
|
25
25
|
maxframe/mixin.py,sha256=HBAeWYGb7N6ZIgkA-YpkKiSY1GetcEVNTuMb0ieznBs,3524
|
|
26
|
-
maxframe/protocol.py,sha256=
|
|
26
|
+
maxframe/protocol.py,sha256=LRwCTbnX1DLY5OaG2OwP3NR3truWtwpuvU8OaG9mypE,18841
|
|
27
27
|
maxframe/session.py,sha256=o2jp5NQP1pVMkp4AujN_3DB1HffZ0rMd5EbYZiLJxls,36205
|
|
28
28
|
maxframe/__init__.py,sha256=SqTFS_1o2HDuVY1mhS0ELlqDuM-biwM_MN0EYGkJLf0,1004
|
|
29
|
-
maxframe/utils.py,sha256=
|
|
29
|
+
maxframe/utils.py,sha256=yCKkWCTu6erwUeMFipH0RKKaG7CA3mFjmmeUHmv8hAw,33138
|
|
30
30
|
maxframe/extension.py,sha256=F5XTYzW5hNw0AIQz3d6u6Yk7adDdiV4c-HD7bF0X1FI,2659
|
|
31
31
|
maxframe/errors.py,sha256=vHcpVrKRHmoZPa6IwsdDT-jOZUTlhCp8c0e8F2C-5uU,966
|
|
32
|
-
maxframe/udf.py,sha256
|
|
33
|
-
maxframe/typing_.py,sha256=
|
|
34
|
-
maxframe/codegen.py,sha256=
|
|
32
|
+
maxframe/udf.py,sha256=Fol4VzIb2hzyyA9s5xrvh4xTO4jq_I2YGnnN4f6wOhk,4338
|
|
33
|
+
maxframe/typing_.py,sha256=iYzgThxTu38yLRtyH5xFhMrurfFj7awMGytfObhvvcs,1180
|
|
34
|
+
maxframe/codegen.py,sha256=AZRBxWzSq0rcJ3hRNg8GI6EbIsbk9O4-5MeZd6ZUkGk,17657
|
|
35
35
|
maxframe/_utils.pxd,sha256=AhJ4vA_UqZqPshi5nvIZq1xgr80fhIVQ9dm5-UdkYJ8,1154
|
|
36
36
|
maxframe/dataframe/arrays.py,sha256=RWzimUcrds5CsIlPausfJAkLUjcktBSSXwdXyUNKEtU,28752
|
|
37
|
-
maxframe/dataframe/__init__.py,sha256=
|
|
38
|
-
maxframe/dataframe/core.py,sha256=
|
|
37
|
+
maxframe/dataframe/__init__.py,sha256=ojcTejC6A-txmh1fPhaZxIiXNQejd1Qf_nH0nRr6TbM,2242
|
|
38
|
+
maxframe/dataframe/core.py,sha256=5CMPn9kuKVMhUtFi3QLy6utFN71EXkMndTyDUyb-1Rg,74374
|
|
39
39
|
maxframe/dataframe/initializer.py,sha256=4BpZJB8bbyFnABUYWBrk_qzzrogEsWgFuU21Ma9IsjY,10264
|
|
40
|
-
maxframe/dataframe/utils.py,sha256=
|
|
41
|
-
maxframe/dataframe/operators.py,sha256=
|
|
40
|
+
maxframe/dataframe/utils.py,sha256=aPQrT3-TBTL2O_9QS70KlG4oV9EiFTTswofd7n3IKEM,44213
|
|
41
|
+
maxframe/dataframe/operators.py,sha256=sXgnopzsCjr5qTL8wn9J-avzqSzGdds3MsyHgQCB4No,7577
|
|
42
42
|
maxframe/dataframe/statistics/corr.py,sha256=3dExebs9QC8GBaZZUSKXrN2eYt-hWMayJ2MHHzTn-8s,9483
|
|
43
|
-
maxframe/dataframe/statistics/quantile.py,sha256=
|
|
43
|
+
maxframe/dataframe/statistics/quantile.py,sha256=ySXi2m8TrArfdidFc07VsOG-RdXJy-YIiOJRrlebfWU,11303
|
|
44
44
|
maxframe/dataframe/statistics/__init__.py,sha256=Ate3HERUCrjhRoGhpR9SNZA5JHlvuIVSrHgYPEcJd6Q,1084
|
|
45
45
|
maxframe/dataframe/statistics/tests/test_statistics.py,sha256=3kpFq9EoUI8PBikQGwMoMN7vwBTeoQeF3XG2h2Hzcu0,2730
|
|
46
46
|
maxframe/dataframe/statistics/tests/__init__.py,sha256=FEFOVLi3o2GpZoedTtLYvbie0eQBehJIjtCrWca2ZHw,596
|
|
47
47
|
maxframe/dataframe/misc/accessor.py,sha256=QXjV5Q6LW0KNs67X5h2bCBhwHV8R7riP6TmTY_ECpmA,10027
|
|
48
|
-
maxframe/dataframe/misc/describe.py,sha256=
|
|
48
|
+
maxframe/dataframe/misc/describe.py,sha256=Ym9DrZVBSOK0EcsiqKzjMSIK5LNPA12GPoLkFjACyZM,4370
|
|
49
49
|
maxframe/dataframe/misc/astype.py,sha256=OkGDO6PBZli46m0kKq0BOO2OOwJWEyatzeBFV_mnKz8,7797
|
|
50
50
|
maxframe/dataframe/misc/to_numeric.py,sha256=gG5fxEtC71SkDeHaJ0Vd1JZrIM8gMHGFaiwyFtMwbWs,6262
|
|
51
|
-
maxframe/dataframe/misc/case_when.py,sha256=
|
|
51
|
+
maxframe/dataframe/misc/case_when.py,sha256=1Eiy_OP_ljq8rTSjhDthT30ybTq6UUfgfCgG2DroECI,4861
|
|
52
52
|
maxframe/dataframe/misc/check_monotonic.py,sha256=apHehWNRUTuzux3hI4JflWiuvpaeEFwtpPTWVide7wU,2422
|
|
53
53
|
maxframe/dataframe/misc/datetimes.py,sha256=fgLczaX-yDdairnNW1EsabEzoioP5gUsO0ukYANisLE,2503
|
|
54
54
|
maxframe/dataframe/misc/string_.py,sha256=eG4uMA6ScB0Pfby6pBLH24Ln01Aai2aAn-hMyRM5YFo,8101
|
|
@@ -56,7 +56,7 @@ maxframe/dataframe/misc/cut.py,sha256=aB8iuk6k2W3G2S3j0jPsryvBhOmaQJSZGIpZ5u1rWb
|
|
|
56
56
|
maxframe/dataframe/misc/get_dummies.py,sha256=q4f-1RCw-WWz53bT2FseYyzBNV3pDJTKNBKFx0dd888,7087
|
|
57
57
|
maxframe/dataframe/misc/__init__.py,sha256=U1p-l0iC1dbh7WLv5kVPelXqK7tb00LJvtu_H7GdtGA,5267
|
|
58
58
|
maxframe/dataframe/misc/qcut.py,sha256=De8kM1FfOWMEDvRNWRaupSHBRGLaOVrtGbLmtHAZvOg,3737
|
|
59
|
-
maxframe/dataframe/misc/pct_change.py,sha256
|
|
59
|
+
maxframe/dataframe/misc/pct_change.py,sha256=-WBq5VD3cPMv3EsqoAEvN9MXbBWfh4qHydwtWbMutZY,2516
|
|
60
60
|
maxframe/dataframe/misc/duplicated.py,sha256=JPtBDLaxlVUqFBU3U3bqGnKQNaOcKwS5sdVfBFJt-Uo,8534
|
|
61
61
|
maxframe/dataframe/misc/pivot_table.py,sha256=YoKjjtOw2Z6KU3q3opAFag1gICz5Kc_VIcKNs3ur62A,9520
|
|
62
62
|
maxframe/dataframe/misc/map.py,sha256=RbUi0xPzT0hnsKid5RA5uHYyTeBnpzXlukR48Ntooxk,8149
|
|
@@ -66,16 +66,16 @@ maxframe/dataframe/misc/shift.py,sha256=feTqtnIRm0YGha5Ps_feQOqHLxSbicnOMbthmZc6
|
|
|
66
66
|
maxframe/dataframe/misc/transpose.py,sha256=-Q7iFtafKKibpZKWYxf0bUg4zIZPTupvY4hkdAlB3Gw,3636
|
|
67
67
|
maxframe/dataframe/misc/melt.py,sha256=wZnxUWZfOxU9xoDp5asfi7UCXUyUNwqupZiPBibbA7c,5120
|
|
68
68
|
maxframe/dataframe/misc/stack.py,sha256=ybopZCNzARqrtFYhvjs85j-g6mXL6X2XTdSTAudtmVI,7962
|
|
69
|
-
maxframe/dataframe/misc/transform.py,sha256=
|
|
69
|
+
maxframe/dataframe/misc/transform.py,sha256=ZUeFD2ZByJxGHuyUlCCFVBT05WPewdWK6FDw6S7JuDw,10920
|
|
70
70
|
maxframe/dataframe/misc/explode.py,sha256=Z26L0iYmyHE1mffyAC19Fk5rGDfw7oxOnaBHzeZ4QbU,5011
|
|
71
71
|
maxframe/dataframe/misc/diff.py,sha256=bhorH5BuKmnMJSXKC-_ZANNAR8LFDIy6p7m4kpZV_R8,5491
|
|
72
|
-
maxframe/dataframe/misc/drop_duplicates.py,sha256=
|
|
72
|
+
maxframe/dataframe/misc/drop_duplicates.py,sha256=t8Rq93Qp4ZHGqJH9YzYJ9qdx9-StoKkkX9YVBfU9ErQ,7851
|
|
73
73
|
maxframe/dataframe/misc/_duplicate.py,sha256=lCryaC64c46YA6R3UjTBfh77L4yyB8ub3EPzBMe_HPg,1470
|
|
74
|
-
maxframe/dataframe/misc/eval.py,sha256
|
|
75
|
-
maxframe/dataframe/misc/value_counts.py,sha256=
|
|
74
|
+
maxframe/dataframe/misc/eval.py,sha256=jXIQyGK4d1c8A-n3BBdisKK3dIjLbZO07hh-qtslBdE,24359
|
|
75
|
+
maxframe/dataframe/misc/value_counts.py,sha256=yWpGLLdx--QobAFNJHb51wuA_fePMqKMeWXA6GjIgbo,5215
|
|
76
76
|
maxframe/dataframe/misc/select_dtypes.py,sha256=xEdLNun58kvp-Vbl3u2cr8kaXFG8GsIU2BMfo7tFCM8,3144
|
|
77
77
|
maxframe/dataframe/misc/drop.py,sha256=-RHIQWek2LUTK8lOILNpCWYftCY3-I3DHSP0XT4uHBc,13029
|
|
78
|
-
maxframe/dataframe/misc/apply.py,sha256=
|
|
78
|
+
maxframe/dataframe/misc/apply.py,sha256=hPwYKPvdxtj_jqEX1DOxH1_O7Hz3giM6NOdyN1VRPqU,23370
|
|
79
79
|
maxframe/dataframe/misc/tests/test_misc.py,sha256=5yF01TfqHmNBayMGWc5_4bS8vEc2bQ-kPMSwn54ytM0,15630
|
|
80
80
|
maxframe/dataframe/misc/tests/__init__.py,sha256=FEFOVLi3o2GpZoedTtLYvbie0eQBehJIjtCrWca2ZHw,596
|
|
81
81
|
maxframe/dataframe/datasource/index.py,sha256=D7PcfIWS-6Hv1-8o6adNesditOAa9kb4JOQK1WlqNDQ,4401
|
|
@@ -84,27 +84,27 @@ maxframe/dataframe/datasource/from_index.py,sha256=2061zsQn-BhyHTT0X9tE0JK8vLxQU
|
|
|
84
84
|
maxframe/dataframe/datasource/dataframe.py,sha256=LxAKF4gBIHhnJQPuaAUdIEyMAq7HTfiEeNVls5n4I4A,2023
|
|
85
85
|
maxframe/dataframe/datasource/series.py,sha256=QcYiBNcR8jjH6vdO6l6H9F46KHmlBqVCTI2tv9eyZ9w,1909
|
|
86
86
|
maxframe/dataframe/datasource/__init__.py,sha256=C8EKsHTJi-1jvJUKIpZtMtsK-ZID3dtxL1voXnaltTs,640
|
|
87
|
-
maxframe/dataframe/datasource/read_odps_query.py,sha256=
|
|
87
|
+
maxframe/dataframe/datasource/read_odps_query.py,sha256=08GAbK51a22pOG8pRLuPLSV51iK_1y28U7ZHa03ZYZo,10220
|
|
88
88
|
maxframe/dataframe/datasource/core.py,sha256=ozFmDgw1og7nK9_jU-u3tLEq9pNbitN-8w8XWdbKkJ0,2687
|
|
89
|
-
maxframe/dataframe/datasource/date_range.py,sha256=
|
|
90
|
-
maxframe/dataframe/datasource/read_odps_table.py,sha256=
|
|
89
|
+
maxframe/dataframe/datasource/date_range.py,sha256=8JMr_Ife5pKCS_ca7W50Fyoc1JigOJirVzdVaPDzeFo,17227
|
|
90
|
+
maxframe/dataframe/datasource/read_odps_table.py,sha256=cloTgtWRtTUIRCsP3ufih-qHCVKBfoX8khEv-V4_7dE,9228
|
|
91
91
|
maxframe/dataframe/datasource/read_parquet.py,sha256=9auOcy8snTxCOohgXZCUXfT_O39irdkBngZH5svgx0E,14531
|
|
92
92
|
maxframe/dataframe/datasource/from_tensor.py,sha256=4viuN5SLLye7Xeb8kouOpm-osoQ2yEovWTDNPQuW8gE,14727
|
|
93
93
|
maxframe/dataframe/datasource/from_records.py,sha256=WBYouYyg7m_8NJdN-yUWSfJlIpm6DVP3IMfLXZFugyI,3442
|
|
94
|
-
maxframe/dataframe/datasource/tests/test_datasource.py,sha256=
|
|
94
|
+
maxframe/dataframe/datasource/tests/test_datasource.py,sha256=CMgDm-fENFgjcrenWqOoQhhzT_dj6TMnUBWr5LG9GHQ,15073
|
|
95
95
|
maxframe/dataframe/datasource/tests/__init__.py,sha256=FEFOVLi3o2GpZoedTtLYvbie0eQBehJIjtCrWca2ZHw,596
|
|
96
96
|
maxframe/dataframe/sort/sort_index.py,sha256=Hwbkm9x8kqGgXh4gMcAtYMDjYtt-S3CJXfYR9pN5Iqk,5412
|
|
97
97
|
maxframe/dataframe/sort/__init__.py,sha256=Vt2Ynr7uAX51hLbQu93QeHiFH4D9_WJMO99KljpbO2U,1160
|
|
98
|
-
maxframe/dataframe/sort/sort_values.py,sha256
|
|
98
|
+
maxframe/dataframe/sort/sort_values.py,sha256=-B0C2MXo9U33rW36xUFWqR8igPTdYwxAbI8-Vd4E4t0,8702
|
|
99
99
|
maxframe/dataframe/sort/core.py,sha256=yWVlULMI91lSgW7-F-nwBQ7Sc71sCLAYvLeM0GR49w0,1224
|
|
100
100
|
maxframe/dataframe/sort/tests/__init__.py,sha256=FEFOVLi3o2GpZoedTtLYvbie0eQBehJIjtCrWca2ZHw,596
|
|
101
101
|
maxframe/dataframe/sort/tests/test_sort.py,sha256=BE03oQ8lJTQUZhMW0vzwv9jjcLToLmc68vfj3hO_sp8,2604
|
|
102
|
-
maxframe/dataframe/merge/merge.py,sha256=
|
|
102
|
+
maxframe/dataframe/merge/merge.py,sha256=TEybvYFQAn67HEXPx_m1poLPPNW2sTdkJ7q0WUMpGpc,30423
|
|
103
103
|
maxframe/dataframe/merge/concat.py,sha256=A6KGkekcT7E_cHgw9LIZN0zynydCKSm42yHjD5DTeHM,11482
|
|
104
104
|
maxframe/dataframe/merge/__init__.py,sha256=isesjujGNB_rzutbCEQLApYY16O7qRgpp4cvFQVcN_8,1037
|
|
105
105
|
maxframe/dataframe/merge/append.py,sha256=-Y1LXO3mOn_8nYOlb1-8644bYcafInBen0G7f4OKKiA,4852
|
|
106
106
|
maxframe/dataframe/merge/tests/__init__.py,sha256=FEFOVLi3o2GpZoedTtLYvbie0eQBehJIjtCrWca2ZHw,596
|
|
107
|
-
maxframe/dataframe/merge/tests/test_merge.py,sha256=
|
|
107
|
+
maxframe/dataframe/merge/tests/test_merge.py,sha256=XZXfGcnlmRFI9IjO0q_bg9BUd-jVlIypUl73lNW4Vyo,11150
|
|
108
108
|
maxframe/dataframe/tseries/__init__.py,sha256=FEFOVLi3o2GpZoedTtLYvbie0eQBehJIjtCrWca2ZHw,596
|
|
109
109
|
maxframe/dataframe/tseries/to_datetime.py,sha256=ctRUuRPPyBIC0yLY0rOIIxEdK67e5o9c63KRFsuKZB8,11328
|
|
110
110
|
maxframe/dataframe/tseries/tests/__init__.py,sha256=FEFOVLi3o2GpZoedTtLYvbie0eQBehJIjtCrWca2ZHw,596
|
|
@@ -114,8 +114,8 @@ maxframe/dataframe/tests/test_initializer.py,sha256=wgV1a3YK6Q4xzVVcfS_3qIWdO-t8
|
|
|
114
114
|
maxframe/dataframe/ufunc/ufunc.py,sha256=P8mh9CwKnxoN624IaoZ010kwH1n4RiUUGMuU5IgHTOM,1651
|
|
115
115
|
maxframe/dataframe/ufunc/__init__.py,sha256=-_obmEV3B4Az5V0x-P-T8cfdeSoYHrLBOgj_-gqv1c4,889
|
|
116
116
|
maxframe/dataframe/ufunc/tensor.py,sha256=SeWQbDflxL5fipzPJdhVKFk9ntM4VXtGazb8lD2JwSM,1618
|
|
117
|
-
maxframe/dataframe/missing/dropna.py,sha256=
|
|
118
|
-
maxframe/dataframe/missing/fillna.py,sha256=
|
|
117
|
+
maxframe/dataframe/missing/dropna.py,sha256=apc4SsUPtAMtHab3ErMj6BmZj_AxdS6Zp_zSeOjhXLI,8240
|
|
118
|
+
maxframe/dataframe/missing/fillna.py,sha256=dGSeq6OASn9mfPR1-kc0fqJaL4N8AVzD8u-9PHc6B0Y,8905
|
|
119
119
|
maxframe/dataframe/missing/checkna.py,sha256=k7T6a1-qASATtJzeOJ1LqpMRt9lA6vpoYGuUANZaJvY,6890
|
|
120
120
|
maxframe/dataframe/missing/__init__.py,sha256=kqtLysfyQQstx6Dsy0qEDAXdRaycU1IGVn7J-sshJO0,1813
|
|
121
121
|
maxframe/dataframe/missing/replace.py,sha256=sYFzkyChrev8Vl0NocDGTCdWTdHjXvzBzHbf6Bpb9EM,13340
|
|
@@ -128,7 +128,7 @@ maxframe/dataframe/extensions/tests/test_extensions.py,sha256=1YMaakSRbvr-A_-F8U
|
|
|
128
128
|
maxframe/dataframe/extensions/tests/__init__.py,sha256=FEFOVLi3o2GpZoedTtLYvbie0eQBehJIjtCrWca2ZHw,596
|
|
129
129
|
maxframe/dataframe/groupby/aggregation.py,sha256=BuhqZal6RLHkjvwJep86oT1a7rMqxxUAPxQ_dao6I6E,11953
|
|
130
130
|
maxframe/dataframe/groupby/fill.py,sha256=JF3NxyXigZqg8ecKtLSndDmNMX8S6g_ChQR9JAK036E,4721
|
|
131
|
-
maxframe/dataframe/groupby/cum.py,sha256=
|
|
131
|
+
maxframe/dataframe/groupby/cum.py,sha256=F5uX97hR1rMQG9YtvoR7MFFvP3zMDDv1GD9b2NqLcOI,3683
|
|
132
132
|
maxframe/dataframe/groupby/__init__.py,sha256=nZkz1OAdYRj8qwQkUAZDax0pfCsUH_fprwuksS97vuc,3361
|
|
133
133
|
maxframe/dataframe/groupby/getitem.py,sha256=kUcI9oIrjOcAHnho96Le9yEJxFydALsWbGpZfTtF8gY,3252
|
|
134
134
|
maxframe/dataframe/groupby/core.py,sha256=K1hg9jod6z3C65SYoidmEAd_k0Mear4l5IQuwNMjpxQ,6075
|
|
@@ -137,11 +137,11 @@ maxframe/dataframe/groupby/head.py,sha256=ZDkbSn3HuUR4GGkZJqo_fL-6KFJfs55aKXQkAh
|
|
|
137
137
|
maxframe/dataframe/groupby/sample.py,sha256=IdoyzT-V5309txYvM_iaYKupsULfozMGwm1K3oihTf4,6935
|
|
138
138
|
maxframe/dataframe/groupby/apply.py,sha256=gZVHN8nMXoy7BEHTBAVLQKtGicQ_jB3dsny8jEn0pUY,9484
|
|
139
139
|
maxframe/dataframe/groupby/tests/__init__.py,sha256=FEFOVLi3o2GpZoedTtLYvbie0eQBehJIjtCrWca2ZHw,596
|
|
140
|
-
maxframe/dataframe/groupby/tests/test_groupby.py,sha256=
|
|
140
|
+
maxframe/dataframe/groupby/tests/test_groupby.py,sha256=ctkAniUwunVsgCG-b6b2qKSCqHXFtYItr2ptoTrIB48,12362
|
|
141
141
|
maxframe/dataframe/datastore/__init__.py,sha256=Ujd4ix4UJ7Zq-sV2pXTRDvZkKUvtt8sr-FfiUoi6Kh4,784
|
|
142
142
|
maxframe/dataframe/datastore/core.py,sha256=hLGhqYxX73tq9sOFxMyYBRMawTnsVQqluW5FcE3YHfE,743
|
|
143
143
|
maxframe/dataframe/datastore/to_csv.py,sha256=xVfpEsicD5A5uXLSdCN08K8uGyWB4QxnRcAbgBVUzbs,7747
|
|
144
|
-
maxframe/dataframe/datastore/to_odps.py,sha256
|
|
144
|
+
maxframe/dataframe/datastore/to_odps.py,sha256=-X1GQfOfRePyASlG5vP_xAQoE3K_ECcZen5isWRZA3o,6416
|
|
145
145
|
maxframe/dataframe/datastore/tests/__init__.py,sha256=FEFOVLi3o2GpZoedTtLYvbie0eQBehJIjtCrWca2ZHw,596
|
|
146
146
|
maxframe/dataframe/datastore/tests/test_to_odps.py,sha256=EaFprN1mErrqqy54Rzbw6PQxPbBCgxDP0E055RIIH0g,1296
|
|
147
147
|
maxframe/dataframe/fetch/__init__.py,sha256=E3VjxLRKjtr-D__K-c0aRETvBG7CQRG1iEtH0Qghq0s,653
|
|
@@ -156,7 +156,7 @@ maxframe/dataframe/reduction/unique.py,sha256=Dhghnf9mvgS8p-ETJUlhfJajBEyVZPBp1I
|
|
|
156
156
|
maxframe/dataframe/reduction/std.py,sha256=PYeh6-yton9vUI8D-dTlnXsWKCi-uDpop4UExmay7Ec,1355
|
|
157
157
|
maxframe/dataframe/reduction/str_concat.py,sha256=wbb4Y4ZDyou_ixR6ukJ8wQw74nzI05tToNWaWSirbSA,1657
|
|
158
158
|
maxframe/dataframe/reduction/__init__.py,sha256=ZadA_lXtrr1nQyb6vJrv_eb82bXiiiDHIn93F4O9-AU,4190
|
|
159
|
-
maxframe/dataframe/reduction/core.py,sha256=
|
|
159
|
+
maxframe/dataframe/reduction/core.py,sha256=xoEiVQQtl1eLtJ4AY6xqy3tCkyi6WZwSLbcv-f8-B14,30395
|
|
160
160
|
maxframe/dataframe/reduction/all.py,sha256=h3Y04RJ-mTxAggX1-BIpuiyhNofQEkBzsAxKOX--kv0,1966
|
|
161
161
|
maxframe/dataframe/reduction/cummin.py,sha256=CA9wjhx_ZFfk6b3KbbDykWZiyXsfwLBUODKn36WuGug,1013
|
|
162
162
|
maxframe/dataframe/reduction/min.py,sha256=8Kh07yoTRWaCWGKxZ4a64_tlIljR8GsjlbwdsjNmPTw,1660
|
|
@@ -205,15 +205,15 @@ maxframe/dataframe/arithmetic/cos.py,sha256=I7faGLNqhY66zrKljTZ-b75c5y_-i7PRZIim
|
|
|
205
205
|
maxframe/dataframe/arithmetic/tan.py,sha256=ecKpsFWNl8eP2yAIc1eCpMLIx0e6nLIInOm2iVf4dN0,915
|
|
206
206
|
maxframe/dataframe/arithmetic/abs.py,sha256=qpKKyVJx296tnXDaqEJY_MHwYspUPGrSKxcNALy0AIc,983
|
|
207
207
|
maxframe/dataframe/arithmetic/__init__.py,sha256=DNekqWOuBpopzQTbRaDWN2fGwC8HmdQ9XrrV2xf3wc0,12478
|
|
208
|
-
maxframe/dataframe/arithmetic/core.py,sha256=
|
|
208
|
+
maxframe/dataframe/arithmetic/core.py,sha256=uJIU_dHoS178TSmJvy36GfjUMc_m_pCLnq2m2s61dAc,14059
|
|
209
209
|
maxframe/dataframe/arithmetic/floor.py,sha256=bM91bdHP-302gSlTeVphqy9I8JVa2mW_idfMpemD_Gc,925
|
|
210
|
-
maxframe/dataframe/arithmetic/around.py,sha256=
|
|
210
|
+
maxframe/dataframe/arithmetic/around.py,sha256=aeviUKYjPt-TnhIEEfRej4s2abABDLK38ePSgTcS8nA,3823
|
|
211
211
|
maxframe/dataframe/arithmetic/is_ufuncs.py,sha256=hEcMAXUMQSkem3xNxdgqIbyEmfG5Vd2VZ6NcPjvfU4Y,1736
|
|
212
212
|
maxframe/dataframe/arithmetic/ceil.py,sha256=2Kg7DhGutwqRpH88pvbY0mXz0n6fI0KB_EuMP_nVCTE,920
|
|
213
213
|
maxframe/dataframe/arithmetic/bitwise_or.py,sha256=BNYyKUshOkyQ1pnEPr4YV77ANRvV5VfY6QXuHs1oARk,1546
|
|
214
214
|
maxframe/dataframe/arithmetic/bitwise_and.py,sha256=G3IMIAmFz9HTcuNnVdSiWCKcSUdNKniR_f7wLhJ4ubM,1427
|
|
215
215
|
maxframe/dataframe/arithmetic/log10.py,sha256=yT9ziTGU0QogZLdwHiZA8VHqes2tKzHfKRsrrhEbEtg,925
|
|
216
|
-
maxframe/dataframe/arithmetic/docstring.py,sha256=
|
|
216
|
+
maxframe/dataframe/arithmetic/docstring.py,sha256=NlmLreMXi3Y7Q7U0tPnvJOIM0LtNw7n7cW3F_d5yT08,11074
|
|
217
217
|
maxframe/dataframe/arithmetic/truediv.py,sha256=KNMlFa7D8ui89ILKKg5QG1TmTYA3C3Gttv9UAq3UGK4,1808
|
|
218
218
|
maxframe/dataframe/arithmetic/exp2.py,sha256=cwyEZ7uyjbiqD-7Y9PqEDOI80hf6ReabtbGq6DLjwCg,920
|
|
219
219
|
maxframe/dataframe/arithmetic/expm1.py,sha256=XfDd6LQ1YzBq8mnTVFTWf3lBtIOMzaO4yc9b5ZRuIQU,925
|
|
@@ -236,39 +236,40 @@ maxframe/dataframe/arithmetic/not_equal.py,sha256=lvdiCA977jMpSSksJYvKntaCioD-4i
|
|
|
236
236
|
maxframe/dataframe/arithmetic/radians.py,sha256=pSq9S0KlV0Xx0vGSdxdol3348dSyYuxG4jMFbGFdQ6E,935
|
|
237
237
|
maxframe/dataframe/arithmetic/sin.py,sha256=zgWoijVpASlkZ7cnZZxKSSHUiLqQ0pKUAIOHEfCBubc,915
|
|
238
238
|
maxframe/dataframe/arithmetic/tests/__init__.py,sha256=FEFOVLi3o2GpZoedTtLYvbie0eQBehJIjtCrWca2ZHw,596
|
|
239
|
-
maxframe/dataframe/arithmetic/tests/test_arithmetic.py,sha256
|
|
239
|
+
maxframe/dataframe/arithmetic/tests/test_arithmetic.py,sha256=-FowcMCeazWtgBRW77VSdo9-JS3J0Js_FUMP1MW2JHw,25257
|
|
240
240
|
maxframe/dataframe/indexing/reset_index.py,sha256=uzGszHfkhwZgZtEaygy5UPrvHPNPXgWZaTOXdNxGBT8,13122
|
|
241
241
|
maxframe/dataframe/indexing/iat.py,sha256=ANURJ8qn_UitgM01gDPeaQOlSBxbk0pmN4Yr-iPRXM8,1127
|
|
242
242
|
maxframe/dataframe/indexing/loc.py,sha256=ZmiK3a2f-krkXFvNLSlzRRa6GWGiAAXk_3mWZC_MqdQ,14845
|
|
243
243
|
maxframe/dataframe/indexing/align.py,sha256=hEuoaNX4bI9LBWp_1kGG7GSs3PDF95tDXo7GX5nypGI,12085
|
|
244
|
-
maxframe/dataframe/indexing/rename.py,sha256=
|
|
244
|
+
maxframe/dataframe/indexing/rename.py,sha256=Gz0p9zVLsQ-I4cKg_Ok_mimzdCa8r5mS8shMBkM3KkQ,12463
|
|
245
245
|
maxframe/dataframe/indexing/setitem.py,sha256=PgVZr2A_joTHz9GUbnGfuSI28qSnwe-n84yKFJagLUc,5004
|
|
246
246
|
maxframe/dataframe/indexing/where.py,sha256=3h64jI_tXmWAu1ZvfeS58h8nUfBN7K7OZ0C22_5-_uk,8567
|
|
247
247
|
maxframe/dataframe/indexing/iloc.py,sha256=sP4hV9Wo3S4Iimxak5Q-EB_Vph2dCbbDsVS003jEeFI,17421
|
|
248
248
|
maxframe/dataframe/indexing/__init__.py,sha256=BdT5tBzjW8tESUPI3blrO7KxKzgZmf8_pQhvZzUU66o,3213
|
|
249
249
|
maxframe/dataframe/indexing/getitem.py,sha256=3LHjTcvU0PSTf_VI6x1MwirIiK_ynLcGb_dHdMPnVBk,7754
|
|
250
|
-
maxframe/dataframe/indexing/set_index.py,sha256=
|
|
250
|
+
maxframe/dataframe/indexing/set_index.py,sha256=Sa49Z0n3bwAM1OTJJPdTSCZb4qMZjyfhiEpi4mALviU,4195
|
|
251
251
|
maxframe/dataframe/indexing/at.py,sha256=cGzJ3eM_kVIYDPf24JQxbhrRNtb2urscMtV0XUKzWkw,2217
|
|
252
252
|
maxframe/dataframe/indexing/rename_axis.py,sha256=w5B67qlcsdjNhN6OZnov5L5ovJXpu_Oqpux0AP0elzk,6302
|
|
253
|
-
maxframe/dataframe/indexing/add_prefix_suffix.py,sha256
|
|
253
|
+
maxframe/dataframe/indexing/add_prefix_suffix.py,sha256=-PY64B6avq7XeYSyAcZW4ABidakzfAepd3llO_C0nGg,2970
|
|
254
254
|
maxframe/dataframe/indexing/insert.py,sha256=GG9VGNozKDdeREdtsQJ6WztFUwuYuBP-LW1Lv4RftN0,2911
|
|
255
|
-
maxframe/dataframe/indexing/sample.py,sha256=
|
|
255
|
+
maxframe/dataframe/indexing/sample.py,sha256=Dm3qqFa2nL0A24rSrqDs_4U1m9a-noWQMp_CNE-Suak,8171
|
|
256
256
|
maxframe/dataframe/indexing/set_axis.py,sha256=n5obYjkg-YKSOGHA0gfM25qUPGcGHBeeo-uyvhYCI34,5530
|
|
257
257
|
maxframe/dataframe/indexing/reindex.py,sha256=mrDBxDZwbaqhjwy_fWGRtWI6MhJ6O1sR1ANhCXuQz8A,19173
|
|
258
258
|
maxframe/dataframe/indexing/tests/__init__.py,sha256=FEFOVLi3o2GpZoedTtLYvbie0eQBehJIjtCrWca2ZHw,596
|
|
259
259
|
maxframe/dataframe/indexing/tests/test_indexing.py,sha256=AcvF_exYVA6pf2giNzSAYfjAODbf207UtKSpTG68ssQ,15611
|
|
260
260
|
maxframe/learn/__init__.py,sha256=ii-8fJO-ubA3wRej1S1jXsb62zrS5MaAWc2gqQAAHFw,632
|
|
261
|
+
maxframe/learn/core.py,sha256=JeKLITsz1WrKOTR6Air2lG28MtjamWtFnal4ynvprNw,756
|
|
261
262
|
maxframe/learn/utils/__init__.py,sha256=zpkZ-HBwv91vyMeBVs59J_u0uVQCXUkEzo_pW2h9q00,646
|
|
262
263
|
maxframe/learn/utils/core.py,sha256=_tskQMfdvr5VAV68fDzM0DSVF2S7SMDnNXA8j_gHmGI,1029
|
|
263
264
|
maxframe/learn/contrib/__init__.py,sha256=WvCqsncQZKtDURfK8ma9GoPHVVK02yW2ueom_kBMl44,632
|
|
264
265
|
maxframe/learn/contrib/utils.py,sha256=k5jlwY8pru_PD8olOBOsMcBLeo31NMx53TjJmSvbvy8,1662
|
|
265
|
-
maxframe/learn/contrib/xgboost/classifier.py,sha256=
|
|
266
|
-
maxframe/learn/contrib/xgboost/dmatrix.py,sha256=
|
|
267
|
-
maxframe/learn/contrib/xgboost/predict.py,sha256=
|
|
266
|
+
maxframe/learn/contrib/xgboost/classifier.py,sha256=Atb17PYxoczaR9tOAgjVm87QLPWS1ow2Twxlvh6HyZA,3850
|
|
267
|
+
maxframe/learn/contrib/xgboost/dmatrix.py,sha256=r-3JfQNwv8Qgi6zxwSVlxolv8K82paofCBaR1u860rs,4742
|
|
268
|
+
maxframe/learn/contrib/xgboost/predict.py,sha256=ZW738ey1yNBK-pemDnJb5KHLci2B2QIItlzmzEOqt48,4879
|
|
268
269
|
maxframe/learn/contrib/xgboost/__init__.py,sha256=kbYrokjDXjMBqRka5NTkUjU5zrNUoT_TkTyuW9G5s-0,899
|
|
269
|
-
maxframe/learn/contrib/xgboost/core.py,sha256=
|
|
270
|
-
maxframe/learn/contrib/xgboost/train.py,sha256=
|
|
271
|
-
maxframe/learn/contrib/xgboost/regressor.py,sha256=
|
|
270
|
+
maxframe/learn/contrib/xgboost/core.py,sha256=KHPi--bAbWcd4bX_Nfuh3k9Sl-e6BW9Ck7PyIS9veUU,8035
|
|
271
|
+
maxframe/learn/contrib/xgboost/train.py,sha256=q7QsONrLmvHGw2v5YB2L3S94UVfkLP2tWRIKIdVethA,4469
|
|
272
|
+
maxframe/learn/contrib/xgboost/regressor.py,sha256=0Wuyt2nxyVqp3AHl4aro0WdXe0YhtXIcbJPTdboy_AI,2313
|
|
272
273
|
maxframe/learn/contrib/xgboost/tests/test_core.py,sha256=0Q3A1EFW30vsQLl7bSTTuw-ldlLEO43ljVSJBb8j1LM,1406
|
|
273
274
|
maxframe/learn/contrib/xgboost/tests/__init__.py,sha256=FEFOVLi3o2GpZoedTtLYvbie0eQBehJIjtCrWca2ZHw,596
|
|
274
275
|
maxframe/learn/contrib/pytorch/run_script.py,sha256=Joh0gwukGf3kqfBYRxL34hQjbULT6s3vNnmBdJ6NZP0,3111
|
|
@@ -276,42 +277,41 @@ maxframe/learn/contrib/pytorch/__init__.py,sha256=koagbwLwH1VNLTWYx29ckatBChZ_f9
|
|
|
276
277
|
maxframe/learn/contrib/pytorch/run_function.py,sha256=oMDMVqDFQJ5d8DllZrqqRmBT2lx1cTmAv0hdQlO2GrY,3244
|
|
277
278
|
maxframe/learn/contrib/pytorch/tests/__init__.py,sha256=FEFOVLi3o2GpZoedTtLYvbie0eQBehJIjtCrWca2ZHw,596
|
|
278
279
|
maxframe/learn/contrib/pytorch/tests/test_pytorch.py,sha256=ztAli4QwNUDfvM7M2LulJItFNWlUDFc_MByDF2KAcTI,1402
|
|
279
|
-
maxframe/core/__init__.py,sha256=
|
|
280
|
+
maxframe/core/__init__.py,sha256=nHHLxzmvyJQC9870XzBjEQmOIzv1CZs2FIO8ntNgd34,1457
|
|
280
281
|
maxframe/core/mode.py,sha256=uRzQDTu471APFDOx12NkTgZiPB-YiCuPhmakhEtIz3M,3011
|
|
281
282
|
maxframe/core/base.py,sha256=3ZNLtl0jZWY5ZIwmIJF1-khF-DYxoeHxAMMiOCwpaBA,4535
|
|
282
|
-
maxframe/core/entity/tileables.py,sha256=
|
|
283
|
-
maxframe/core/entity/__init__.py,sha256=
|
|
283
|
+
maxframe/core/entity/tileables.py,sha256=nPBdaJz66t_UWqO0utp7P9DPs5WAlx3lM4TXbgGHsQU,11271
|
|
284
|
+
maxframe/core/entity/__init__.py,sha256=9erZEQzE07BfJrQJDcEyHPo_XCIi5bJkKW3NvKhJhRo,1075
|
|
284
285
|
maxframe/core/entity/core.py,sha256=t7Ex9Yb7A1h_XwyRG88Fx4ZOai-NQKi2luRVS_jFPEo,4018
|
|
285
286
|
maxframe/core/entity/utils.py,sha256=IuNgFmBQFRioAA1hgZe6nTEggOmDY-iooZqncQQrV28,942
|
|
286
287
|
maxframe/core/entity/executable.py,sha256=HKXHXdPIyxg9i-OWmJxIY3KfXwX0x3xN9QcR5Xhc7dQ,10938
|
|
287
|
-
maxframe/core/entity/output_types.py,sha256=
|
|
288
|
-
maxframe/core/entity/objects.py,sha256=
|
|
289
|
-
maxframe/core/entity/
|
|
290
|
-
maxframe/core/entity/
|
|
291
|
-
maxframe/core/graph/__init__.py,sha256=
|
|
292
|
-
maxframe/core/graph/core.cpython-311-darwin.so,sha256=
|
|
293
|
-
maxframe/core/graph/entity.py,sha256=
|
|
288
|
+
maxframe/core/entity/output_types.py,sha256=Jrro-S4iI7BfaSe9hTq3zIAxG-hBENMU-hlN-kL5d8o,2536
|
|
289
|
+
maxframe/core/entity/objects.py,sha256=EnS0F2ageFTEvNfylqp21LTfTv3Q3p0X0Ur6HgWr2co,3781
|
|
290
|
+
maxframe/core/entity/tests/__init__.py,sha256=FEFOVLi3o2GpZoedTtLYvbie0eQBehJIjtCrWca2ZHw,596
|
|
291
|
+
maxframe/core/entity/tests/test_objects.py,sha256=-HS2dux6OdmwtMY6GRxwASq2gPSRY5S9YwTqeG-dGaA,1349
|
|
292
|
+
maxframe/core/graph/__init__.py,sha256=tqUUWDOXp2KFjO7zv1dN_-ttE-ef09-S1GNt8EQ35Bk,765
|
|
293
|
+
maxframe/core/graph/core.cpython-311-darwin.so,sha256=nFPMQgQycoSJmHwPspSBsqUV2P4QmJ30UPCLC0Hvx2g,685824
|
|
294
|
+
maxframe/core/graph/entity.py,sha256=3ifzsEDIxzDjeM9MhlSwgz92GuaEEoCVWxEkEu2xIgE,4863
|
|
294
295
|
maxframe/core/graph/core.pyx,sha256=kyqE5-X9Tc82wU4N_zsf8jNthAHWHTVRNFQWNNbzgpM,15923
|
|
295
296
|
maxframe/core/graph/tests/__init__.py,sha256=FEFOVLi3o2GpZoedTtLYvbie0eQBehJIjtCrWca2ZHw,596
|
|
296
297
|
maxframe/core/graph/tests/test_graph.py,sha256=kZfe_SfMOoHjEfXvtVtn0RjK4lOd-tFasxSpfL4G1WE,7462
|
|
297
|
-
maxframe/core/graph/builder/__init__.py,sha256=
|
|
298
|
-
maxframe/core/graph/builder/
|
|
299
|
-
maxframe/core/graph/builder/
|
|
300
|
-
maxframe/core/graph/builder/
|
|
301
|
-
maxframe/core/graph/builder/base.py,sha256=_UQMQmqb-O4BxoDZVi-j4ns2HOExeJdUGLNANn-wR0g,2549
|
|
298
|
+
maxframe/core/graph/builder/__init__.py,sha256=TYHKq5Y8iTRWprw6CZosdtq-NGV7Sa1u1CI6adR9hgk,640
|
|
299
|
+
maxframe/core/graph/builder/utils.py,sha256=zSgVV7Y976VkyzoR-dJ5M0CrEdLx_mU2FE4OibuUOvg,1316
|
|
300
|
+
maxframe/core/graph/builder/tileable.py,sha256=1rZbjE2WSIBBH3tBcx3puGbaZ2KPBctoxir2lxI3acQ,1173
|
|
301
|
+
maxframe/core/graph/builder/base.py,sha256=W_HcLBNwK8NwOuMqYq0B49DCzV6PY7FW0k1FxMbX-VM,2509
|
|
302
302
|
maxframe/core/tests/__init__.py,sha256=FEFOVLi3o2GpZoedTtLYvbie0eQBehJIjtCrWca2ZHw,596
|
|
303
303
|
maxframe/core/tests/test_mode.py,sha256=2QYqkPl-sW1LKlJF1pxiuMpnAYrbGibZRXHrNcZTO3M,2432
|
|
304
304
|
maxframe/core/operator/fetch.py,sha256=88Sc1DYTR0-H-z8DiUP8ZfcNatuRecHksgG0rqDvKqo,1510
|
|
305
|
-
maxframe/core/operator/__init__.py,sha256=
|
|
305
|
+
maxframe/core/operator/__init__.py,sha256=0IwJltVfYPGSq1cYbHigQ5zY50K3BwIkl3p8llgEC0w,1071
|
|
306
306
|
maxframe/core/operator/core.py,sha256=T2YYIleKiFxmufpHF7ELOztlJsYO-Kn4KYhQhY4jRUc,9263
|
|
307
307
|
maxframe/core/operator/shuffle.py,sha256=A_w62UxXRKyDNESo4Q0UGmCpuFfPlQXWmPyQGHdpz3A,4746
|
|
308
|
-
maxframe/core/operator/
|
|
309
|
-
maxframe/core/operator/
|
|
310
|
-
maxframe/core/operator/base.py,sha256=
|
|
308
|
+
maxframe/core/operator/utils.py,sha256=CVVamZJwbnequxDZmYcPLt4rcfAn8s77xk5hlr8eXh4,1706
|
|
309
|
+
maxframe/core/operator/objects.py,sha256=lEicZmIsR2sgWsH3oAeeYMde8C0TYeu2vkAyGj8WUVM,1965
|
|
310
|
+
maxframe/core/operator/base.py,sha256=gMSjgfOBJe0tMkFRukyGnGSInLVHw7xlxASlczeuzQg,15187
|
|
311
311
|
maxframe/core/operator/tests/test_core.py,sha256=57aICnc5VLqdVK7icAORTWC81bSjBxeeVWIJcha9J_0,1691
|
|
312
312
|
maxframe/core/operator/tests/__init__.py,sha256=FEFOVLi3o2GpZoedTtLYvbie0eQBehJIjtCrWca2ZHw,596
|
|
313
|
-
maxframe/config/config.py,sha256=
|
|
314
|
-
maxframe/config/validators.py,sha256=
|
|
313
|
+
maxframe/config/config.py,sha256=XFJKAYeRyVx-7JhV_7kyk93HvjCwXIyKL7k1FyIeujA,14935
|
|
314
|
+
maxframe/config/validators.py,sha256=UjbxMKZcDG98-9uCQESm_V56d-VUD7kQGV0KJghVbj8,2511
|
|
315
315
|
maxframe/config/__init__.py,sha256=g5lN3nP2HTAXa6ExGxU1NwU1M9ulYPmAcsV-gU7nIW8,656
|
|
316
316
|
maxframe/config/tests/__init__.py,sha256=FEFOVLi3o2GpZoedTtLYvbie0eQBehJIjtCrWca2ZHw,596
|
|
317
317
|
maxframe/config/tests/test_validators.py,sha256=U_7yKSl0FdVdDwKU1EsnCzNWaOXi8xrIC08x7hb_O4c,1240
|
|
@@ -321,42 +321,48 @@ maxframe/serialization/core.pxd,sha256=eBrSXiAPlX83Kbwml5IKJvqsIT03lPCeS6is9HplL
|
|
|
321
321
|
maxframe/serialization/pandas.py,sha256=Fj0HZsnTyZqDW4pTiz2AX_Clly6NwjAbQoaMhYwCocs,7315
|
|
322
322
|
maxframe/serialization/core.pyi,sha256=a3CQxlJv5aYyy__VNKEq5XsaHE-n0MPKE_9CcWu8Q34,2142
|
|
323
323
|
maxframe/serialization/arrow.py,sha256=VnGxNLU9UV_cUPTze43bEFCIbYLAOZnp2pAwVJbAIzQ,3418
|
|
324
|
-
maxframe/serialization/__init__.py,sha256=
|
|
324
|
+
maxframe/serialization/__init__.py,sha256=LrwesIKJ6MR_mhxW7qRXJXohH9waubZMR9-YicGDMUs,936
|
|
325
325
|
maxframe/serialization/maxframe_objects.py,sha256=R9WEjbHL0Kr56OGkYDU9fcGi7gII6fGlXhi6IyihTsM,1365
|
|
326
326
|
maxframe/serialization/numpy.py,sha256=8_GSo45l_eNoMn4NAGEb9NLXY_9i4tf9KK4EzG0mKpA,3213
|
|
327
327
|
maxframe/serialization/scipy.py,sha256=hP0fAW0di9UgJrGtANB2S8hLDbFBtR8p5NDqAMt5rDI,2427
|
|
328
|
-
maxframe/serialization/core.cpython-311-darwin.so,sha256=
|
|
328
|
+
maxframe/serialization/core.cpython-311-darwin.so,sha256=OsOUMHPcoJ8ege2tHyYLPnd_Dxse_Hrsxb50rEA79ko,1176480
|
|
329
329
|
maxframe/serialization/core.pyx,sha256=ZLVh7W7LgUb4KPb7rtuezRL6sQC4GNb3hLndAeSbiyU,35198
|
|
330
330
|
maxframe/serialization/tests/test_serial.py,sha256=Wj_I6CBQMaOtE8WtqdUaBoU8FhBOihht6SfeHOJV-zU,12511
|
|
331
331
|
maxframe/serialization/tests/__init__.py,sha256=FEFOVLi3o2GpZoedTtLYvbie0eQBehJIjtCrWca2ZHw,596
|
|
332
332
|
maxframe/serialization/serializables/field.py,sha256=atVgX-9rsVG1fTev7vjQArVwIEaCRjXoSEjpQ3mh6bA,16015
|
|
333
333
|
maxframe/serialization/serializables/__init__.py,sha256=_wyFZF5QzSP32wSXlXHEPl98DN658I66WamP8XPJy0c,1351
|
|
334
|
-
maxframe/serialization/serializables/core.py,sha256=
|
|
334
|
+
maxframe/serialization/serializables/core.py,sha256=4eZdmtrrz10aT6rVhEfCWWP0_slHFFpIkIXmRdZgcos,15602
|
|
335
335
|
maxframe/serialization/serializables/field_type.py,sha256=Feh09hu8XyaxS5MaJ4za_pcvqJVuMkOeGxwQ9OuJw6I,14865
|
|
336
336
|
maxframe/serialization/serializables/tests/test_field_type.py,sha256=T3ebXbUkKveC9Pq1nIl85e4eYascFeJ52d0REHbz5jo,4381
|
|
337
337
|
maxframe/serialization/serializables/tests/__init__.py,sha256=FEFOVLi3o2GpZoedTtLYvbie0eQBehJIjtCrWca2ZHw,596
|
|
338
338
|
maxframe/serialization/serializables/tests/test_serializable.py,sha256=P6BCYvm-0HxlEHruyw-SIdVBywxQw16JUMws_lvqTk0,9867
|
|
339
|
-
maxframe/
|
|
340
|
-
maxframe/odpsio/
|
|
341
|
-
maxframe/odpsio/
|
|
342
|
-
maxframe/odpsio/
|
|
343
|
-
maxframe/odpsio/
|
|
344
|
-
maxframe/odpsio/
|
|
345
|
-
maxframe/odpsio/tests/
|
|
346
|
-
maxframe/odpsio/tests/
|
|
347
|
-
maxframe/odpsio/tests/
|
|
348
|
-
maxframe/odpsio/tests/
|
|
339
|
+
maxframe/io/__init__.py,sha256=FEFOVLi3o2GpZoedTtLYvbie0eQBehJIjtCrWca2ZHw,596
|
|
340
|
+
maxframe/io/odpsio/tableio.py,sha256=w__VRoxp8HEoPEactcJXd5FF7Qg5Hqul9LVmLLlJxj8,24117
|
|
341
|
+
maxframe/io/odpsio/arrow.py,sha256=2x2N9UvihtXRBA5Ym7tMxqpHQbWi-9hq2lJ_tatETiI,3926
|
|
342
|
+
maxframe/io/odpsio/__init__.py,sha256=VD_mvxljDKDfJHYuN3OpjJWzHqFT5DKykIvECahGu0w,902
|
|
343
|
+
maxframe/io/odpsio/volumeio.py,sha256=nESBAz9Bn77sKh8vTa52SknzZffcmKkrxhMv_kpZKP0,2055
|
|
344
|
+
maxframe/io/odpsio/schema.py,sha256=zMEDu5sOYEyzWxj8Hf58hWyoxdTOTGGQ768lIpqGf7M,12318
|
|
345
|
+
maxframe/io/odpsio/tests/test_tableio.py,sha256=HFSx2R7Bj4O1bGM-H9fMQkXjNUmvvT1SIUwsIcw6M2c,5606
|
|
346
|
+
maxframe/io/odpsio/tests/__init__.py,sha256=FEFOVLi3o2GpZoedTtLYvbie0eQBehJIjtCrWca2ZHw,596
|
|
347
|
+
maxframe/io/odpsio/tests/test_schema.py,sha256=Tum2qlGskOKddekngRa1nFhJc-HH60Uc8h-YKrDAPaE,11968
|
|
348
|
+
maxframe/io/odpsio/tests/test_arrow.py,sha256=SQ9EmI9_VOOC8u6Rg6nh3IPC2fPbLvJ9HwtpMNDRhL8,3106
|
|
349
|
+
maxframe/io/odpsio/tests/test_volumeio.py,sha256=JlKn_pDU5bCxoPvt7GUJYfCRJIVO1YgCiHPBXHxFer8,2868
|
|
350
|
+
maxframe/io/objects/__init__.py,sha256=PtpSp5t1rGJ1DD0IjQs6oSHkOxT2JDMLfCaDz8VUCZ8,754
|
|
351
|
+
maxframe/io/objects/core.py,sha256=r9X1Cu9FNUdarMFiTPWX_MPcE8AW5e_d_AsFWjdZDP8,4577
|
|
352
|
+
maxframe/io/objects/tensor.py,sha256=F0aObDLIi_2ND5x-uVogi2A29kIuyhKtZLyZqxI13iM,2673
|
|
353
|
+
maxframe/io/objects/tests/test_object_io.py,sha256=g5vi7Y8ZrR7jrp1FUwXT-uM6l57Kea5wkKZk7iovvAA,3092
|
|
354
|
+
maxframe/io/objects/tests/__init__.py,sha256=FEFOVLi3o2GpZoedTtLYvbie0eQBehJIjtCrWca2ZHw,596
|
|
349
355
|
maxframe/tests/test_utils.py,sha256=imfe7sN1_4EjWuT4qMYMwjOjgL0t5oewyhebBGPDBhY,11504
|
|
350
356
|
maxframe/tests/test_protocol.py,sha256=9DWr3z1AI2DUMnLyak91PKSfV_ILkOtwAZPCmM42kcg,6103
|
|
351
357
|
maxframe/tests/__init__.py,sha256=FEFOVLi3o2GpZoedTtLYvbie0eQBehJIjtCrWca2ZHw,596
|
|
352
|
-
maxframe/tests/utils.py,sha256=
|
|
358
|
+
maxframe/tests/utils.py,sha256=c3A_4pU7OO5OTfKorc7uOks3ppL1NB0jGupsiDi7b9s,4884
|
|
353
359
|
maxframe/tests/test_codegen.py,sha256=GMrnpSb2eyB_nmuv8-_p47Kw877ElKS3BP52SpqZNIQ,2208
|
|
354
360
|
maxframe/lib/wrapped_pickle.py,sha256=HJCb8ERK6clUVgPe529vduMmbMVqBlrQ3W8mH3tYcaE,3836
|
|
355
361
|
maxframe/lib/version.py,sha256=yQ6HkDOvU9X1rpI49auh-qku2g7gIiztgEH6v1urOrk,18321
|
|
356
362
|
maxframe/lib/compression.py,sha256=k9DSrl_dNBsn5azLjBdL5B4WZ6eNvmCrdMbcF1G7JSc,1442
|
|
357
363
|
maxframe/lib/__init__.py,sha256=CzfbLNqqm1yR1i6fDwCd4h1ptuKVDbURFVCb0ra7QNc,642
|
|
358
364
|
maxframe/lib/mmh3.pyi,sha256=AOp_XqbA5-NwepeeBeG0OFJj5tjEAFLzcViyRNZ0eVI,1494
|
|
359
|
-
maxframe/lib/mmh3.cpython-311-darwin.so,sha256=
|
|
365
|
+
maxframe/lib/mmh3.cpython-311-darwin.so,sha256=dP2Jj9PpSM-JHhMBSeDBTGSBBPy4Q6BFTGCopBNm3ug,119784
|
|
360
366
|
maxframe/lib/functools_compat.py,sha256=PMSkct9GIbzq-aBwTnggrOLNfLh4xQnYTIFMPblzCUA,2616
|
|
361
367
|
maxframe/lib/mmh3_src/mmh3module.cpp,sha256=9J9eA42eKWTl546fvfQPNuIM3B2jpWSADpgIw3tr2jg,11604
|
|
362
368
|
maxframe/lib/mmh3_src/MurmurHash3.h,sha256=lg5uXUFyMBge2BWRn0FgrqaCFCMfDWoTXD4PQtjHrMA,1263
|
|
@@ -404,17 +410,29 @@ maxframe/lib/tblib/__init__.py,sha256=c4aVldbxJdS-bFsSDcmDQy_mW0qAcMrb4pHS2tjYhY
|
|
|
404
410
|
maxframe/lib/tblib/cpython.py,sha256=FQ0f6WTQyQHoMRhgPqrA0y0Ygxlbj5IC53guxA4h9Cw,2418
|
|
405
411
|
maxframe/lib/tblib/decorators.py,sha256=bcllK3kVuPnj6SNZGmlJGxTK0ovdt7TJDXrhA4UE5sQ,1063
|
|
406
412
|
maxframe/tensor/array_utils.py,sha256=259vG4SjyhiheARCZeEnfJdZjoojyrELn41oRcyAELs,4943
|
|
407
|
-
maxframe/tensor/__init__.py,sha256=
|
|
408
|
-
maxframe/tensor/core.py,sha256=
|
|
409
|
-
maxframe/tensor/utils.py,sha256=
|
|
410
|
-
maxframe/tensor/operators.py,sha256=
|
|
411
|
-
maxframe/tensor/statistics/quantile.py,sha256=
|
|
413
|
+
maxframe/tensor/__init__.py,sha256=F4iZBp8sd20XNgSFX8Bl8y6wOpEA4bmQ0wnoN4F5rVY,4392
|
|
414
|
+
maxframe/tensor/core.py,sha256=ouSU9TbFFShyvdJkyh9h6AUio97SXphs4-lz_w-7_fk,17945
|
|
415
|
+
maxframe/tensor/utils.py,sha256=wCx2ZBk_zmS2lJgtuUUGdqRSkhhnLAyeB0DTlIGZUyg,22411
|
|
416
|
+
maxframe/tensor/operators.py,sha256=XiYTFYLuKDMjEy-DZs5HKmcwvNgfJX3sGzIttAqNG8c,3338
|
|
417
|
+
maxframe/tensor/statistics/quantile.py,sha256=GYs4dlBwvUTu4-PZ9PnM4JTjzpQkS_8oFcOT85or404,9467
|
|
412
418
|
maxframe/tensor/statistics/__init__.py,sha256=FEFOVLi3o2GpZoedTtLYvbie0eQBehJIjtCrWca2ZHw,596
|
|
413
419
|
maxframe/tensor/statistics/percentile.py,sha256=U7ssKDJbBVp6i1n1EP_qJ2HomIQJwt73asGrXire3ww,6047
|
|
414
420
|
maxframe/tensor/reshape/reshape.py,sha256=wufzBHgqVpmNPNmgr7lCuGbMkghfOUV1q4t1tH2USJg,6453
|
|
415
421
|
maxframe/tensor/reshape/__init__.py,sha256=ilMdv8u0POVi4zNzjKQ-iBRPak_tXgJ6aabv7_pHqKc,672
|
|
416
422
|
maxframe/tensor/reshape/tests/__init__.py,sha256=CzfbLNqqm1yR1i6fDwCd4h1ptuKVDbURFVCb0ra7QNc,642
|
|
417
423
|
maxframe/tensor/reshape/tests/test_reshape.py,sha256=MkXN_ibLMNn_4vc8Jsq39icqTIYV0H7-zrIJmuYvibo,1103
|
|
424
|
+
maxframe/tensor/misc/astype.py,sha256=zeLfyWkuc1LxMIiIO6ghZ_enR7IPgq0Hy4O18h8JQPk,4394
|
|
425
|
+
maxframe/tensor/misc/where.py,sha256=fMGBfppo4QToHX-B3rtTorstz83m8uWWhOQj6Qbu34U,4000
|
|
426
|
+
maxframe/tensor/misc/unique.py,sha256=EO7EYn0mHr9aZ7hVZxwiKNSPwbXvrpDWRWP5PksfgxY,6721
|
|
427
|
+
maxframe/tensor/misc/__init__.py,sha256=I4dwtIkgdnOkFLGp9chMZwDCteiKAAikygYz_b4RY2c,1149
|
|
428
|
+
maxframe/tensor/misc/transpose.py,sha256=fd8eee3jdfp-uCM4dKsFiS78FWeuszmrDb3fvUMo8dw,4005
|
|
429
|
+
maxframe/tensor/misc/atleast_3d.py,sha256=ONXluuYTLyaPwii8PF6IG_o5f6QRQRue6uxsPeou9mk,2392
|
|
430
|
+
maxframe/tensor/misc/ravel.py,sha256=pJkez1NHoLqVMBPm5aA8uMNFeWURTAJV_iU98Vqr-50,3173
|
|
431
|
+
maxframe/tensor/misc/atleast_2d.py,sha256=wunxdRTd_2ZfAZiMt7QhOEII_f_Z8lwSgy0ncMT85eI,1958
|
|
432
|
+
maxframe/tensor/misc/broadcast_to.py,sha256=p0hi128OWlj3lXmacvxMhZOjUCq8fiA3yjy9nESZXgE,2686
|
|
433
|
+
maxframe/tensor/misc/atleast_1d.py,sha256=1-IdLYOg5zGCqp_RZ1X3Eq1oTb6UusuHVGW7mW5ayNY,1872
|
|
434
|
+
maxframe/tensor/misc/tests/test_misc.py,sha256=syedkA0jMjevYouCL3vCMuWpJ-3hfOc28wKXqF_MMno,2843
|
|
435
|
+
maxframe/tensor/misc/tests/__init__.py,sha256=FEFOVLi3o2GpZoedTtLYvbie0eQBehJIjtCrWca2ZHw,596
|
|
418
436
|
maxframe/tensor/datasource/from_dataframe.py,sha256=X6cfwLT__VGZLoy3U3tjehPnO43CnyN4kK4edDtLFrA,2503
|
|
419
437
|
maxframe/tensor/datasource/zeros.py,sha256=vMJ44GeCPOxtnj-NnKvkbb4u3U_yxcEhEJa1-ADt1fM,5672
|
|
420
438
|
maxframe/tensor/datasource/from_dense.py,sha256=N2FVRhU9uh-w1W8W9zvpTQVxGgskSdHZbVh_rJjC6QA,1607
|
|
@@ -422,19 +440,21 @@ maxframe/tensor/datasource/scalar.py,sha256=GzKdbBLFdq9aeWrrtZ3BT5514fBAi9A-QJ5M
|
|
|
422
440
|
maxframe/tensor/datasource/empty.py,sha256=e6XYQvFsyfnGqIrU216_Q1M7cYxwkQSOoZiEhtOT8nc,5850
|
|
423
441
|
maxframe/tensor/datasource/__init__.py,sha256=qU_GFAuMa_U_zrV6HcE9fsgO16EXVsqhh9j5Fxe6HFY,1146
|
|
424
442
|
maxframe/tensor/datasource/core.py,sha256=VpjxIcWp_O00smfvDsRIQ48d3HOIJ81hkn78S3H2n_U,3411
|
|
425
|
-
maxframe/tensor/datasource/full.py,sha256=
|
|
443
|
+
maxframe/tensor/datasource/full.py,sha256=uCzq53CA7Bg7HUO72wTRkcckQ_hMh20584ZQZ1fxQ4U,6276
|
|
426
444
|
maxframe/tensor/datasource/arange.py,sha256=jqUF1P1Smu2Bl1j5uOe_MM1EPft8heJu8WSmDmyFiDc,5476
|
|
427
|
-
maxframe/tensor/datasource/array.py,sha256=
|
|
445
|
+
maxframe/tensor/datasource/array.py,sha256=uWK2gJSYMGTBIgXdF_-QZB17fPemyCvBoV40AVPwlqA,13054
|
|
428
446
|
maxframe/tensor/datasource/from_sparse.py,sha256=ki_cSjqrUccChg2uqlXy1xF10c4YANA4QP_UDl_LZnA,1546
|
|
429
447
|
maxframe/tensor/datasource/ones.py,sha256=ER4NJ53HuGlSsz-cRXz9YSwZkokdc2wkBKdB2G1BMX8,5009
|
|
430
|
-
maxframe/tensor/datasource/tests/test_datasource.py,sha256=
|
|
448
|
+
maxframe/tensor/datasource/tests/test_datasource.py,sha256=6NWN9OgA-MioLjqhzTNIeCIP9k9i3ziPYbeyxPygPwY,7653
|
|
431
449
|
maxframe/tensor/datasource/tests/__init__.py,sha256=FEFOVLi3o2GpZoedTtLYvbie0eQBehJIjtCrWca2ZHw,596
|
|
432
450
|
maxframe/tensor/rechunk/__init__.py,sha256=pQ4vh6rNzxjIkxrWTxXjAcTDmUw3961-H1f__-lJl6A,797
|
|
433
451
|
maxframe/tensor/rechunk/rechunk.py,sha256=ltvGlUQxzoHSE7bC6J6uQ8sO-YhuFpxmj8-ArJJXIoY,1392
|
|
434
|
-
maxframe/tensor/merge/
|
|
452
|
+
maxframe/tensor/merge/concatenate.py,sha256=qbmkhzS2_tbnXEuBJ2fnJFUObfqEKwYA6ucL7EjMlmI,3084
|
|
453
|
+
maxframe/tensor/merge/vstack.py,sha256=J3R7-eR0wVMg0silXbwj_PkCHghn8ts0mqMlD5CgJz4,2168
|
|
454
|
+
maxframe/tensor/merge/__init__.py,sha256=NCuoHVwBtVUQnl8-0ph9cT5ARRn3pTdqZt76-XSvpvs,686
|
|
435
455
|
maxframe/tensor/merge/stack.py,sha256=4ZMVqtJQ0nQtbtnJKTX0Z_fSUn8slLLSO56mFT-b0gE,4145
|
|
436
456
|
maxframe/tensor/merge/tests/__init__.py,sha256=FEFOVLi3o2GpZoedTtLYvbie0eQBehJIjtCrWca2ZHw,596
|
|
437
|
-
maxframe/tensor/merge/tests/test_merge.py,sha256=
|
|
457
|
+
maxframe/tensor/merge/tests/test_merge.py,sha256=PfZ883l7xHURs7F1PQl-jg3Kf8IN4qzBMlYv3K5_440,2210
|
|
438
458
|
maxframe/tensor/ufunc/ufunc.py,sha256=D39r6-KVwlPkRr9d3CLwHqO4dWgXsqRQOYZCBiKEEUE,7183
|
|
439
459
|
maxframe/tensor/ufunc/__init__.py,sha256=_GZckaiuuxNQdJS2tCMsgrxjEevJ0Irg4CTFDU_kQTI,795
|
|
440
460
|
maxframe/tensor/fetch/__init__.py,sha256=mGwv_bpJXkb_jgg1YCpOmLhaNU_rWBNZdPi5dr2HGNo,647
|
|
@@ -443,9 +463,9 @@ maxframe/tensor/reduction/nanprod.py,sha256=m7au8rYO8jgr4kYf0Tp5EizZUaspvrHgDJNF
|
|
|
443
463
|
maxframe/tensor/reduction/max.py,sha256=Z6TQSwaDcOmSstjKjntqKfinvF0XWNTGYDvvV-AIxgk,3979
|
|
444
464
|
maxframe/tensor/reduction/allclose.py,sha256=8C9E01aUZL-rGjlx_S1zN504peV_7vjjQA3DZSPElOI,2942
|
|
445
465
|
maxframe/tensor/reduction/nanmin.py,sha256=hq3TE7pM9HGakNEOIE9QPHG2O8soa2uPBrVsVHYsYyw,3947
|
|
446
|
-
maxframe/tensor/reduction/nanvar.py,sha256=
|
|
447
|
-
maxframe/tensor/reduction/count_nonzero.py,sha256=
|
|
448
|
-
maxframe/tensor/reduction/nanmean.py,sha256=
|
|
466
|
+
maxframe/tensor/reduction/nanvar.py,sha256=hRrorXczfi-wrQFjeSAmomVL5Dn1esXNsltglFA4l3k,5470
|
|
467
|
+
maxframe/tensor/reduction/count_nonzero.py,sha256=bnkLSm1mEVTXJmiT9gkqCeLbTbk8Am5vghtT64mx2Ak,2754
|
|
468
|
+
maxframe/tensor/reduction/nanmean.py,sha256=J63uIJxq9RA1RRd1mJc69IM0FBX4K86hrsXgIfZ69cQ,3971
|
|
449
469
|
maxframe/tensor/reduction/nancumsum.py,sha256=r47LTZ65-m6u1vr-zoxKw50Q3wOg2gwWy3ewHtV1jRg,3283
|
|
450
470
|
maxframe/tensor/reduction/nansum.py,sha256=2x-RMKHxN9ikE8tm455wpKtYT1i-lKtuE03mKQopzA0,4066
|
|
451
471
|
maxframe/tensor/reduction/std.py,sha256=PDVJRjr7G7gQQjywhfvbIVsfUAep1-cjjH49mi346XI,5135
|
|
@@ -455,8 +475,8 @@ maxframe/tensor/reduction/core.py,sha256=3uekPz3RdKS2HINqtLOY1Yzkk8BqMuKYlXBfY3O
|
|
|
455
475
|
maxframe/tensor/reduction/all.py,sha256=UX8WvzKd8s2M7OHzbirK63RH4XVRNmkU10tHNuq3W3w,3467
|
|
456
476
|
maxframe/tensor/reduction/nanargmin.py,sha256=ncJEvf2dZxF6URk4Yv3kadDnXjzevIJBD9Rz_PEckG8,2203
|
|
457
477
|
maxframe/tensor/reduction/min.py,sha256=U59kxhcL5JsYVoXRfUmCmY8e_MfBKU7WRIPBFCuxUSU,3980
|
|
458
|
-
maxframe/tensor/reduction/mean.py,sha256=
|
|
459
|
-
maxframe/tensor/reduction/var.py,sha256=
|
|
478
|
+
maxframe/tensor/reduction/mean.py,sha256=JSDPHYzfS4Z3sKVCN0BeERIap5qEKorLWKTXnWY3C0s,4379
|
|
479
|
+
maxframe/tensor/reduction/var.py,sha256=LQa7FZHAfD0mtR52qkfPYO9tV0oFDfF8yNeFO6a5pgE,6304
|
|
460
480
|
maxframe/tensor/reduction/nanmax.py,sha256=nce8mD6zIsC9LSQ0fiaRBG6gBL8tNbQpRCDDrP_HaqU,3950
|
|
461
481
|
maxframe/tensor/reduction/array_equal.py,sha256=bLbKT1tGSKfqp3L8-AzWEdhBYkEnzUHvyWHEfP9ouEk,1795
|
|
462
482
|
maxframe/tensor/reduction/sum.py,sha256=SupE9cxNTGCRZPdS9i-a40U4rRsi5ruc4FZsJJgLGJ4,4246
|
|
@@ -469,7 +489,7 @@ maxframe/tensor/reduction/nanstd.py,sha256=ZPHxKLowx2FrQS_DI5VDeU3SvyBzi53-_87nG
|
|
|
469
489
|
maxframe/tensor/reduction/nancumprod.py,sha256=_ri_LhT0lH4jPxFdSHh7gjAMRF9_0rNlCcAbPs_PpMg,3121
|
|
470
490
|
maxframe/tensor/reduction/argmin.py,sha256=OVR6chF48tQEpoTYbQGWGF6StqRFp9vmwNRtuToQdrg,3099
|
|
471
491
|
maxframe/tensor/reduction/tests/__init__.py,sha256=FEFOVLi3o2GpZoedTtLYvbie0eQBehJIjtCrWca2ZHw,596
|
|
472
|
-
maxframe/tensor/reduction/tests/test_reduction.py,sha256=
|
|
492
|
+
maxframe/tensor/reduction/tests/test_reduction.py,sha256=EbqJob7OysLfX7TRpL_owIAknwQmzbE7n83brxW7Aik,6178
|
|
473
493
|
maxframe/tensor/arithmetic/copysign.py,sha256=HficiUZ-cdCbkoG9Rs3iz54tgbrHLZUsFa36TFZDn7s,2505
|
|
474
494
|
maxframe/tensor/arithmetic/spacing.py,sha256=x_7pCRUX5wUBFsSMjH_RrkwKWx-303Mli0BbHi5BwJA,2313
|
|
475
495
|
maxframe/tensor/arithmetic/arctan.py,sha256=0neaMOGmcUwhTOV-z93UFSP4i0EDuDaWCb2Suj6kzFw,3562
|
|
@@ -518,7 +538,7 @@ maxframe/tensor/arithmetic/real.py,sha256=cAtf4ID5STaSaTNPdYw-ioSKIBO-09VoSWSnnv
|
|
|
518
538
|
maxframe/tensor/arithmetic/around.py,sha256=6gop_55BB3SVYvaxhZ6Y1qBVxScMVWfnv-C1BxkA_4M,3826
|
|
519
539
|
maxframe/tensor/arithmetic/nan_to_num.py,sha256=CA0q3CCh0Ya9EOlGDI9HgdxbW9agATThr-bY0hijdVQ,3249
|
|
520
540
|
maxframe/tensor/arithmetic/ceil.py,sha256=0u0u3pD2XF8aKxkJQZiPpGjntIgf5q6PmKbxgqAGmRo,2252
|
|
521
|
-
maxframe/tensor/arithmetic/isclose.py,sha256=
|
|
541
|
+
maxframe/tensor/arithmetic/isclose.py,sha256=0cb5-5HMg0j6X9U_iv7kNgtjR2S013eo0et__HU-U0I,3695
|
|
522
542
|
maxframe/tensor/arithmetic/maximum.py,sha256=sc4EdXDzZ_Dq50Ik5rh_Vg1hXfP-RS-YlfMDzFGzZGA,3694
|
|
523
543
|
maxframe/tensor/arithmetic/log10.py,sha256=kHkxvGYbn2JVYwYjQ2RbKN2VbtrzPCnhYT_7ESLUpsQ,3024
|
|
524
544
|
maxframe/tensor/arithmetic/frexp.py,sha256=yJ9us5ilLUkVxLnc9QB2PVhEaJGJIXDctaYNlv7yyZI,3146
|
|
@@ -570,7 +590,7 @@ maxframe/tensor/arithmetic/sin.py,sha256=Ux8mQS-pb3F7PCD_35Ghl7p2e2yF2jiS_1WC9zi
|
|
|
570
590
|
maxframe/tensor/arithmetic/reciprocal.py,sha256=q3TKbF209Kbv7HD0hM9AF7xlQ9zXHrpHaFc9dHFuplE,2375
|
|
571
591
|
maxframe/tensor/arithmetic/bitxor.py,sha256=l1bRVnzHSa7N7-nd2MzDxF33guNoml8mPB9t9_0QpMc,2908
|
|
572
592
|
maxframe/tensor/arithmetic/tests/__init__.py,sha256=CzfbLNqqm1yR1i6fDwCd4h1ptuKVDbURFVCb0ra7QNc,642
|
|
573
|
-
maxframe/tensor/arithmetic/tests/test_arithmetic.py,sha256=
|
|
593
|
+
maxframe/tensor/arithmetic/tests/test_arithmetic.py,sha256=gK17go0jF7l_dGCmhOqZxLPaiiu9oK5wvw98IZ7rilI,11421
|
|
574
594
|
maxframe/tensor/indexing/choose.py,sha256=TNsRP_1zoMnqfJyqk_RgPtRPFCisEXq5CMh3FUmPZ-8,7584
|
|
575
595
|
maxframe/tensor/indexing/nonzero.py,sha256=JN5TyPzS1LIIjIaieXsDkffCjuq-CPBUDG3qMvNsIWI,3646
|
|
576
596
|
maxframe/tensor/indexing/slice.py,sha256=VbalHoaXUGulPjskcQ4PoiZQhB2q3P1R8MrGKY2MqGw,1022
|
|
@@ -579,7 +599,7 @@ maxframe/tensor/indexing/__init__.py,sha256=v2uUjRm0rSDyxG9IVayCDo0gKY9OQnk1Z-4P
|
|
|
579
599
|
maxframe/tensor/indexing/getitem.py,sha256=0kdc45nf5IP-Bjb8zNdb2MzE1bdlaLSv9D6P4_Kd7wA,5548
|
|
580
600
|
maxframe/tensor/indexing/core.py,sha256=8iNHn9nObBoXyB6uhI3NHEFHMcmOn1WSPp5cC4utv2w,7022
|
|
581
601
|
maxframe/tensor/indexing/unravel_index.py,sha256=jQ3KnJ8UFg5K8uLsTzIUABQXPiTiG2Kkp5VO2yVy1H4,3223
|
|
582
|
-
maxframe/tensor/indexing/flatnonzero.py,sha256=
|
|
602
|
+
maxframe/tensor/indexing/flatnonzero.py,sha256=T32TDhjmaMCw90RdUZA33QsIlXrL3BrclEBcRBKw4KQ,1706
|
|
583
603
|
maxframe/tensor/indexing/fill_diagonal.py,sha256=L8F-C_g2h4fi_JX8wIU2mBOavZaLJZZCp7kwK-wIAmU,5305
|
|
584
604
|
maxframe/tensor/indexing/take.py,sha256=g03C9ehHqmEOxXUZEdQH5I810pPSstadRF61y6IcuyQ,4254
|
|
585
605
|
maxframe/tensor/indexing/compress.py,sha256=EBj2d4dtc60GSVBOhDWonSzzHGrD7QDJhOsMEvVuuKQ,4029
|
|
@@ -601,7 +621,7 @@ maxframe/tensor/random/logistic.py,sha256=X_o_rfdvdsNc8PWaaBnwqOpaMEHiJJ8dy5DYs_
|
|
|
601
621
|
maxframe/tensor/random/beta.py,sha256=Il-bnSvryGlWQmyk5GU_zLRQuerqX4iVRpA8zqNF3bk,3113
|
|
602
622
|
maxframe/tensor/random/choice.py,sha256=fwvKc8CKtoddoSzjqs9g7iC_haKMRVF9FchSJ3qPeq0,5958
|
|
603
623
|
maxframe/tensor/random/__init__.py,sha256=QSAef7wgESPJmYrliksHRFfgVim6GrIZUOye5n_DCGI,7011
|
|
604
|
-
maxframe/tensor/random/core.py,sha256=
|
|
624
|
+
maxframe/tensor/random/core.py,sha256=AIdcAFmr9yPd-uQCyJHv7GbXqo5rs3RuVdHQ59-0raY,7206
|
|
605
625
|
maxframe/tensor/random/multinomial.py,sha256=QZ2c9tYq99cj3QW60DNG7wkzENnt5Xfdedl7yUazVDs,4771
|
|
606
626
|
maxframe/tensor/random/exponential.py,sha256=QwHMgmsFypbmQ5JqU7BSlyKyhmZU4GNXy78AHUJzEec,3583
|
|
607
627
|
maxframe/tensor/random/pareto.py,sha256=pPhlJzH68JsmL900sIALlmEstLy1YQgdPUfe3IacEMw,5389
|
|
@@ -634,16 +654,6 @@ maxframe/tensor/random/wald.py,sha256=HQRsQet9FxxCzhHm1EQtkFd_MsexinSkJXU_TgNCpD
|
|
|
634
654
|
maxframe/tensor/random/binomial.py,sha256=-PM5464Z8opuP0eP7MMevy9QOGIAYSdkm1rbv-HeKOQ,5291
|
|
635
655
|
maxframe/tensor/random/tests/__init__.py,sha256=CzfbLNqqm1yR1i6fDwCd4h1ptuKVDbURFVCb0ra7QNc,642
|
|
636
656
|
maxframe/tensor/random/tests/test_random.py,sha256=2hGaik9A783PFuuxIrhCDZ2O-SYKwUh98LKPwf1psLs,4275
|
|
637
|
-
maxframe/tensor/base/astype.py,sha256=zeLfyWkuc1LxMIiIO6ghZ_enR7IPgq0Hy4O18h8JQPk,4394
|
|
638
|
-
maxframe/tensor/base/where.py,sha256=fMGBfppo4QToHX-B3rtTorstz83m8uWWhOQj6Qbu34U,4000
|
|
639
|
-
maxframe/tensor/base/unique.py,sha256=52OM0UvbxbgvpjSGcTdCRi3fJUzFA-GxZpn7RExJGEo,6738
|
|
640
|
-
maxframe/tensor/base/__init__.py,sha256=FMnuIAaGUObPZpXBnN-9eTSmmdq0Cdb-VI_JNHKVy3Q,1079
|
|
641
|
-
maxframe/tensor/base/transpose.py,sha256=yDfr1vD6doNlsuKuU94daE0IgIwGMuyBfXhKauQ1UaM,3414
|
|
642
|
-
maxframe/tensor/base/ravel.py,sha256=pJkez1NHoLqVMBPm5aA8uMNFeWURTAJV_iU98Vqr-50,3173
|
|
643
|
-
maxframe/tensor/base/broadcast_to.py,sha256=p0hi128OWlj3lXmacvxMhZOjUCq8fiA3yjy9nESZXgE,2686
|
|
644
|
-
maxframe/tensor/base/atleast_1d.py,sha256=rCw_Ik6Y4isiMuC2Kvs0F7nDdSvx9RPahoq_v6D66Jo,1918
|
|
645
|
-
maxframe/tensor/base/tests/__init__.py,sha256=FEFOVLi3o2GpZoedTtLYvbie0eQBehJIjtCrWca2ZHw,596
|
|
646
|
-
maxframe/tensor/base/tests/test_base.py,sha256=syedkA0jMjevYouCL3vCMuWpJ-3hfOc28wKXqF_MMno,2843
|
|
647
657
|
maxframe/remote/run_script.py,sha256=Z1j662AwDF9sr-z1xnPTlrfSTixi2RBZjccXEilfpGA,3556
|
|
648
658
|
maxframe/remote/__init__.py,sha256=D1nfsnjU_cTzwpo_0icFvEPgkFJeCsqv3IOg6_Ho68k,729
|
|
649
|
-
maxframe/remote/core.py,sha256=
|
|
659
|
+
maxframe/remote/core.py,sha256=Ydb2jAyOVJS32nivMfknbg6y_fwcocy2Lskec2_5_kk,6527
|