maxframe 1.1.1__cp39-cp39-win_amd64.whl → 1.2.0__cp39-cp39-win_amd64.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of maxframe might be problematic. Click here for more details.
- maxframe/__init__.py +1 -1
- maxframe/_utils.cp39-win_amd64.pyd +0 -0
- maxframe/_utils.pxd +1 -1
- maxframe/_utils.pyx +1 -1
- maxframe/codegen.py +14 -7
- maxframe/config/__init__.py +1 -1
- maxframe/config/config.py +10 -1
- maxframe/config/tests/__init__.py +1 -1
- maxframe/config/tests/test_config.py +1 -1
- maxframe/config/tests/test_validators.py +1 -1
- maxframe/config/validators.py +1 -1
- maxframe/conftest.py +1 -1
- maxframe/core/__init__.py +2 -1
- maxframe/core/accessor.py +44 -0
- maxframe/core/base.py +1 -1
- maxframe/core/entity/__init__.py +1 -1
- maxframe/core/entity/core.py +1 -1
- maxframe/core/entity/executable.py +1 -1
- maxframe/core/entity/objects.py +1 -1
- maxframe/core/entity/output_types.py +1 -1
- maxframe/core/entity/tests/__init__.py +1 -1
- maxframe/core/entity/tests/test_objects.py +1 -1
- maxframe/core/entity/tileables.py +1 -1
- maxframe/core/entity/utils.py +1 -1
- maxframe/core/graph/__init__.py +1 -1
- maxframe/core/graph/builder/__init__.py +1 -1
- maxframe/core/graph/builder/base.py +1 -1
- maxframe/core/graph/builder/tileable.py +1 -1
- maxframe/core/graph/builder/utils.py +1 -1
- maxframe/core/graph/core.cp39-win_amd64.pyd +0 -0
- maxframe/core/graph/core.pyx +1 -1
- maxframe/core/graph/entity.py +1 -1
- maxframe/core/graph/tests/__init__.py +1 -1
- maxframe/core/graph/tests/test_graph.py +1 -1
- maxframe/core/mode.py +1 -1
- maxframe/core/operator/__init__.py +1 -1
- maxframe/core/operator/base.py +1 -1
- maxframe/core/operator/core.py +1 -1
- maxframe/core/operator/fetch.py +1 -1
- maxframe/core/operator/objects.py +1 -1
- maxframe/core/operator/shuffle.py +1 -1
- maxframe/core/operator/tests/__init__.py +1 -1
- maxframe/core/operator/tests/test_core.py +1 -1
- maxframe/core/operator/utils.py +1 -1
- maxframe/core/tests/__init__.py +1 -1
- maxframe/core/tests/test_mode.py +1 -1
- maxframe/dataframe/__init__.py +3 -3
- maxframe/dataframe/accessors/__init__.py +15 -0
- maxframe/dataframe/accessors/datetime_/__init__.py +32 -0
- maxframe/dataframe/accessors/datetime_/accessor.py +67 -0
- maxframe/dataframe/{misc/datetimes.py → accessors/datetime_/core.py} +9 -9
- maxframe/dataframe/{plotting → accessors/datetime_}/tests/__init__.py +1 -1
- maxframe/dataframe/accessors/datetime_/tests/test_datetime_accessor.py +41 -0
- maxframe/dataframe/accessors/dict_/__init__.py +43 -0
- maxframe/dataframe/accessors/dict_/accessor.py +38 -0
- maxframe/dataframe/accessors/dict_/contains.py +81 -0
- maxframe/dataframe/accessors/dict_/getitem.py +144 -0
- maxframe/dataframe/accessors/dict_/length.py +72 -0
- maxframe/dataframe/accessors/dict_/remove.py +87 -0
- maxframe/dataframe/accessors/dict_/setitem.py +88 -0
- maxframe/dataframe/accessors/dict_/tests/__init__.py +13 -0
- maxframe/dataframe/accessors/dict_/tests/test_dict_accessor.py +130 -0
- maxframe/dataframe/{plotting → accessors/plotting}/__init__.py +4 -6
- maxframe/dataframe/{plotting → accessors/plotting}/core.py +3 -3
- maxframe/dataframe/accessors/plotting/tests/__init__.py +13 -0
- maxframe/dataframe/{plotting/tests/test_plotting.py → accessors/plotting/tests/test_plotting_accessor.py} +6 -6
- maxframe/dataframe/accessors/string_/__init__.py +32 -0
- maxframe/dataframe/{misc → accessors/string_}/accessor.py +4 -65
- maxframe/dataframe/{misc/string_.py → accessors/string_/core.py} +20 -20
- maxframe/dataframe/accessors/string_/tests/__init__.py +13 -0
- maxframe/dataframe/accessors/string_/tests/test_string_accessor.py +73 -0
- maxframe/dataframe/arithmetic/__init__.py +1 -1
- maxframe/dataframe/arithmetic/abs.py +1 -1
- maxframe/dataframe/arithmetic/add.py +1 -1
- maxframe/dataframe/arithmetic/arccos.py +1 -1
- maxframe/dataframe/arithmetic/arccosh.py +1 -1
- maxframe/dataframe/arithmetic/arcsin.py +1 -1
- maxframe/dataframe/arithmetic/arcsinh.py +1 -1
- maxframe/dataframe/arithmetic/arctan.py +1 -1
- maxframe/dataframe/arithmetic/arctanh.py +1 -1
- maxframe/dataframe/arithmetic/around.py +1 -1
- maxframe/dataframe/arithmetic/bitwise_and.py +1 -1
- maxframe/dataframe/arithmetic/bitwise_or.py +1 -1
- maxframe/dataframe/arithmetic/bitwise_xor.py +1 -1
- maxframe/dataframe/arithmetic/ceil.py +1 -1
- maxframe/dataframe/arithmetic/core.py +1 -1
- maxframe/dataframe/arithmetic/cos.py +1 -1
- maxframe/dataframe/arithmetic/cosh.py +1 -1
- maxframe/dataframe/arithmetic/degrees.py +1 -1
- maxframe/dataframe/arithmetic/docstring.py +1 -1
- maxframe/dataframe/arithmetic/equal.py +1 -1
- maxframe/dataframe/arithmetic/exp.py +1 -1
- maxframe/dataframe/arithmetic/exp2.py +1 -1
- maxframe/dataframe/arithmetic/expm1.py +1 -1
- maxframe/dataframe/arithmetic/floor.py +1 -1
- maxframe/dataframe/arithmetic/floordiv.py +1 -1
- maxframe/dataframe/arithmetic/greater.py +1 -1
- maxframe/dataframe/arithmetic/greater_equal.py +1 -1
- maxframe/dataframe/arithmetic/invert.py +1 -1
- maxframe/dataframe/arithmetic/is_ufuncs.py +1 -1
- maxframe/dataframe/arithmetic/less.py +1 -1
- maxframe/dataframe/arithmetic/less_equal.py +1 -1
- maxframe/dataframe/arithmetic/log.py +1 -1
- maxframe/dataframe/arithmetic/log10.py +1 -1
- maxframe/dataframe/arithmetic/log2.py +1 -1
- maxframe/dataframe/arithmetic/mod.py +1 -1
- maxframe/dataframe/arithmetic/multiply.py +1 -1
- maxframe/dataframe/arithmetic/negative.py +1 -1
- maxframe/dataframe/arithmetic/not_equal.py +1 -1
- maxframe/dataframe/arithmetic/power.py +1 -1
- maxframe/dataframe/arithmetic/radians.py +1 -1
- maxframe/dataframe/arithmetic/sin.py +1 -1
- maxframe/dataframe/arithmetic/sinh.py +1 -1
- maxframe/dataframe/arithmetic/sqrt.py +1 -1
- maxframe/dataframe/arithmetic/subtract.py +1 -1
- maxframe/dataframe/arithmetic/tan.py +1 -1
- maxframe/dataframe/arithmetic/tanh.py +1 -1
- maxframe/dataframe/arithmetic/tests/__init__.py +1 -1
- maxframe/dataframe/arithmetic/tests/test_arithmetic.py +1 -1
- maxframe/dataframe/arithmetic/truediv.py +1 -1
- maxframe/dataframe/arithmetic/trunc.py +1 -1
- maxframe/dataframe/arrays.py +1 -1
- maxframe/dataframe/core.py +1 -1
- maxframe/dataframe/datasource/__init__.py +1 -1
- maxframe/dataframe/datasource/core.py +1 -1
- maxframe/dataframe/datasource/dataframe.py +1 -1
- maxframe/dataframe/datasource/date_range.py +1 -1
- maxframe/dataframe/datasource/from_index.py +1 -1
- maxframe/dataframe/datasource/from_records.py +1 -1
- maxframe/dataframe/datasource/from_tensor.py +1 -1
- maxframe/dataframe/datasource/index.py +1 -1
- maxframe/dataframe/datasource/read_csv.py +1 -1
- maxframe/dataframe/datasource/read_odps_query.py +45 -16
- maxframe/dataframe/datasource/read_odps_table.py +1 -1
- maxframe/dataframe/datasource/read_parquet.py +1 -1
- maxframe/dataframe/datasource/series.py +1 -1
- maxframe/dataframe/datasource/tests/__init__.py +1 -1
- maxframe/dataframe/datasource/tests/test_datasource.py +55 -8
- maxframe/dataframe/datastore/__init__.py +1 -1
- maxframe/dataframe/datastore/core.py +1 -1
- maxframe/dataframe/datastore/tests/__init__.py +1 -1
- maxframe/dataframe/datastore/tests/test_to_odps.py +1 -1
- maxframe/dataframe/datastore/to_csv.py +1 -1
- maxframe/dataframe/datastore/to_odps.py +1 -1
- maxframe/dataframe/extensions/__init__.py +2 -2
- maxframe/dataframe/extensions/accessor.py +6 -22
- maxframe/dataframe/extensions/apply_chunk.py +86 -1
- maxframe/dataframe/extensions/flatjson.py +1 -1
- maxframe/dataframe/extensions/flatmap.py +1 -1
- maxframe/dataframe/extensions/reshuffle.py +1 -1
- maxframe/dataframe/extensions/tests/__init__.py +1 -1
- maxframe/dataframe/extensions/tests/test_apply_chunk.py +1 -1
- maxframe/dataframe/extensions/tests/test_extensions.py +1 -1
- maxframe/dataframe/fetch/__init__.py +1 -1
- maxframe/dataframe/fetch/core.py +1 -1
- maxframe/dataframe/groupby/__init__.py +1 -1
- maxframe/dataframe/groupby/aggregation.py +1 -1
- maxframe/dataframe/groupby/apply.py +1 -1
- maxframe/dataframe/groupby/core.py +1 -1
- maxframe/dataframe/groupby/cum.py +1 -1
- maxframe/dataframe/groupby/fill.py +1 -1
- maxframe/dataframe/groupby/getitem.py +1 -1
- maxframe/dataframe/groupby/head.py +1 -1
- maxframe/dataframe/groupby/sample.py +1 -1
- maxframe/dataframe/groupby/tests/__init__.py +1 -1
- maxframe/dataframe/groupby/tests/test_groupby.py +1 -1
- maxframe/dataframe/groupby/transform.py +1 -1
- maxframe/dataframe/indexing/__init__.py +1 -1
- maxframe/dataframe/indexing/add_prefix_suffix.py +1 -1
- maxframe/dataframe/indexing/align.py +1 -1
- maxframe/dataframe/indexing/at.py +1 -1
- maxframe/dataframe/indexing/getitem.py +1 -1
- maxframe/dataframe/indexing/iat.py +1 -1
- maxframe/dataframe/indexing/iloc.py +1 -1
- maxframe/dataframe/indexing/insert.py +1 -1
- maxframe/dataframe/indexing/loc.py +1 -1
- maxframe/dataframe/indexing/reindex.py +1 -1
- maxframe/dataframe/indexing/rename.py +1 -1
- maxframe/dataframe/indexing/rename_axis.py +1 -1
- maxframe/dataframe/indexing/reset_index.py +1 -1
- maxframe/dataframe/indexing/sample.py +1 -1
- maxframe/dataframe/indexing/set_axis.py +1 -1
- maxframe/dataframe/indexing/set_index.py +1 -1
- maxframe/dataframe/indexing/setitem.py +1 -1
- maxframe/dataframe/indexing/tests/__init__.py +1 -1
- maxframe/dataframe/indexing/tests/test_indexing.py +1 -1
- maxframe/dataframe/indexing/where.py +1 -1
- maxframe/dataframe/initializer.py +1 -1
- maxframe/dataframe/merge/__init__.py +1 -1
- maxframe/dataframe/merge/append.py +1 -1
- maxframe/dataframe/merge/concat.py +1 -1
- maxframe/dataframe/merge/merge.py +1 -1
- maxframe/dataframe/merge/tests/__init__.py +1 -1
- maxframe/dataframe/merge/tests/test_merge.py +1 -1
- maxframe/dataframe/misc/__init__.py +1 -16
- maxframe/dataframe/misc/_duplicate.py +1 -1
- maxframe/dataframe/misc/apply.py +74 -1
- maxframe/dataframe/misc/astype.py +1 -1
- maxframe/dataframe/misc/case_when.py +1 -1
- maxframe/dataframe/misc/check_monotonic.py +1 -1
- maxframe/dataframe/misc/cut.py +6 -4
- maxframe/dataframe/misc/describe.py +1 -1
- maxframe/dataframe/misc/diff.py +1 -1
- maxframe/dataframe/misc/drop.py +1 -1
- maxframe/dataframe/misc/drop_duplicates.py +7 -4
- maxframe/dataframe/misc/duplicated.py +1 -1
- maxframe/dataframe/misc/eval.py +1 -1
- maxframe/dataframe/misc/explode.py +1 -1
- maxframe/dataframe/misc/get_dummies.py +1 -1
- maxframe/dataframe/misc/isin.py +1 -1
- maxframe/dataframe/misc/map.py +1 -1
- maxframe/dataframe/misc/melt.py +1 -1
- maxframe/dataframe/misc/memory_usage.py +1 -1
- maxframe/dataframe/misc/pct_change.py +1 -1
- maxframe/dataframe/misc/pivot_table.py +1 -1
- maxframe/dataframe/misc/qcut.py +1 -1
- maxframe/dataframe/misc/select_dtypes.py +1 -1
- maxframe/dataframe/misc/shift.py +1 -1
- maxframe/dataframe/misc/stack.py +1 -1
- maxframe/dataframe/misc/tests/__init__.py +1 -1
- maxframe/dataframe/misc/tests/test_misc.py +1 -76
- maxframe/dataframe/misc/to_numeric.py +1 -1
- maxframe/dataframe/misc/transform.py +1 -1
- maxframe/dataframe/misc/transpose.py +1 -1
- maxframe/dataframe/misc/value_counts.py +1 -1
- maxframe/dataframe/missing/__init__.py +1 -1
- maxframe/dataframe/missing/checkna.py +1 -1
- maxframe/dataframe/missing/dropna.py +1 -1
- maxframe/dataframe/missing/fillna.py +1 -1
- maxframe/dataframe/missing/replace.py +1 -1
- maxframe/dataframe/missing/tests/__init__.py +1 -1
- maxframe/dataframe/missing/tests/test_missing.py +1 -1
- maxframe/dataframe/operators.py +1 -1
- maxframe/dataframe/reduction/__init__.py +1 -1
- maxframe/dataframe/reduction/aggregation.py +1 -1
- maxframe/dataframe/reduction/all.py +1 -1
- maxframe/dataframe/reduction/any.py +1 -1
- maxframe/dataframe/reduction/core.py +1 -1
- maxframe/dataframe/reduction/count.py +1 -1
- maxframe/dataframe/reduction/cummax.py +1 -1
- maxframe/dataframe/reduction/cummin.py +1 -1
- maxframe/dataframe/reduction/cumprod.py +1 -1
- maxframe/dataframe/reduction/cumsum.py +1 -1
- maxframe/dataframe/reduction/custom_reduction.py +1 -1
- maxframe/dataframe/reduction/kurtosis.py +1 -1
- maxframe/dataframe/reduction/max.py +1 -1
- maxframe/dataframe/reduction/mean.py +1 -1
- maxframe/dataframe/reduction/median.py +1 -1
- maxframe/dataframe/reduction/min.py +1 -1
- maxframe/dataframe/reduction/nunique.py +1 -1
- maxframe/dataframe/reduction/prod.py +1 -1
- maxframe/dataframe/reduction/reduction_size.py +1 -1
- maxframe/dataframe/reduction/sem.py +1 -1
- maxframe/dataframe/reduction/skew.py +1 -1
- maxframe/dataframe/reduction/std.py +1 -1
- maxframe/dataframe/reduction/str_concat.py +1 -1
- maxframe/dataframe/reduction/sum.py +1 -1
- maxframe/dataframe/reduction/tests/__init__.py +1 -1
- maxframe/dataframe/reduction/tests/test_reduction.py +1 -1
- maxframe/dataframe/reduction/unique.py +1 -1
- maxframe/dataframe/reduction/var.py +1 -1
- maxframe/dataframe/sort/__init__.py +1 -1
- maxframe/dataframe/sort/core.py +1 -1
- maxframe/dataframe/sort/sort_index.py +1 -1
- maxframe/dataframe/sort/sort_values.py +1 -1
- maxframe/dataframe/sort/tests/__init__.py +1 -1
- maxframe/dataframe/sort/tests/test_sort.py +1 -1
- maxframe/dataframe/statistics/__init__.py +1 -1
- maxframe/dataframe/statistics/corr.py +1 -1
- maxframe/dataframe/statistics/quantile.py +1 -1
- maxframe/dataframe/statistics/tests/__init__.py +1 -1
- maxframe/dataframe/statistics/tests/test_statistics.py +1 -1
- maxframe/dataframe/tests/__init__.py +1 -1
- maxframe/dataframe/tests/test_initializer.py +1 -1
- maxframe/dataframe/tests/test_utils.py +36 -2
- maxframe/dataframe/tseries/__init__.py +1 -1
- maxframe/dataframe/tseries/tests/__init__.py +1 -1
- maxframe/dataframe/tseries/tests/test_tseries.py +1 -1
- maxframe/dataframe/tseries/to_datetime.py +1 -1
- maxframe/dataframe/ufunc/__init__.py +1 -1
- maxframe/dataframe/ufunc/tensor.py +1 -1
- maxframe/dataframe/ufunc/ufunc.py +1 -1
- maxframe/dataframe/utils.py +22 -2
- maxframe/dataframe/window/__init__.py +1 -1
- maxframe/dataframe/window/aggregation.py +1 -1
- maxframe/dataframe/window/core.py +1 -1
- maxframe/dataframe/window/ewm.py +1 -1
- maxframe/dataframe/window/expanding.py +1 -1
- maxframe/dataframe/window/rolling.py +1 -1
- maxframe/dataframe/window/tests/__init__.py +1 -1
- maxframe/dataframe/window/tests/test_ewm.py +1 -1
- maxframe/dataframe/window/tests/test_expanding.py +1 -1
- maxframe/dataframe/window/tests/test_rolling.py +1 -1
- maxframe/env.py +1 -1
- maxframe/errors.py +5 -1
- maxframe/extension.py +5 -2
- maxframe/io/__init__.py +1 -1
- maxframe/io/objects/__init__.py +1 -1
- maxframe/io/objects/core.py +1 -1
- maxframe/io/objects/tensor.py +1 -1
- maxframe/io/objects/tests/__init__.py +1 -1
- maxframe/io/objects/tests/test_object_io.py +1 -1
- maxframe/io/odpsio/__init__.py +1 -1
- maxframe/io/odpsio/arrow.py +8 -4
- maxframe/io/odpsio/schema.py +75 -3
- maxframe/io/odpsio/tableio.py +10 -4
- maxframe/io/odpsio/tests/__init__.py +1 -1
- maxframe/io/odpsio/tests/test_arrow.py +46 -1
- maxframe/io/odpsio/tests/test_schema.py +19 -1
- maxframe/io/odpsio/tests/test_tableio.py +1 -1
- maxframe/io/odpsio/tests/test_volumeio.py +1 -1
- maxframe/io/odpsio/volumeio.py +1 -1
- maxframe/learn/__init__.py +1 -1
- maxframe/learn/contrib/__init__.py +1 -1
- maxframe/learn/contrib/graph/__init__.py +1 -1
- maxframe/learn/contrib/graph/connected_components.py +1 -1
- maxframe/learn/contrib/graph/tests/__init__.py +1 -1
- maxframe/learn/contrib/graph/tests/test_connected_components.py +1 -1
- maxframe/learn/contrib/llm/__init__.py +1 -1
- maxframe/learn/contrib/llm/core.py +1 -1
- maxframe/learn/contrib/llm/models/__init__.py +1 -1
- maxframe/learn/contrib/llm/models/dashscope.py +1 -1
- maxframe/learn/contrib/llm/multi_modal.py +1 -1
- maxframe/learn/contrib/llm/text.py +1 -1
- maxframe/learn/contrib/pytorch/__init__.py +1 -1
- maxframe/learn/contrib/pytorch/run_function.py +1 -1
- maxframe/learn/contrib/pytorch/run_script.py +1 -1
- maxframe/learn/contrib/pytorch/tests/__init__.py +1 -1
- maxframe/learn/contrib/pytorch/tests/test_pytorch.py +1 -1
- maxframe/learn/contrib/utils.py +1 -1
- maxframe/learn/contrib/xgboost/__init__.py +1 -1
- maxframe/learn/contrib/xgboost/classifier.py +1 -1
- maxframe/learn/contrib/xgboost/core.py +1 -1
- maxframe/learn/contrib/xgboost/dmatrix.py +5 -2
- maxframe/learn/contrib/xgboost/predict.py +1 -1
- maxframe/learn/contrib/xgboost/regressor.py +1 -1
- maxframe/learn/contrib/xgboost/tests/__init__.py +1 -1
- maxframe/learn/contrib/xgboost/tests/test_core.py +1 -1
- maxframe/learn/contrib/xgboost/train.py +1 -1
- maxframe/learn/core.py +1 -1
- maxframe/learn/utils/__init__.py +1 -1
- maxframe/learn/utils/core.py +1 -1
- maxframe/lib/__init__.py +1 -1
- maxframe/lib/aio/__init__.py +1 -1
- maxframe/lib/aio/_runners.py +1 -1
- maxframe/lib/aio/_threads.py +1 -1
- maxframe/lib/aio/base.py +1 -1
- maxframe/lib/aio/file.py +1 -1
- maxframe/lib/aio/isolation.py +1 -1
- maxframe/lib/aio/lru.py +1 -1
- maxframe/lib/aio/parallelism.py +1 -1
- maxframe/lib/aio/tests/__init__.py +1 -1
- maxframe/lib/aio/tests/test_aio_file.py +1 -1
- maxframe/lib/compression.py +1 -1
- maxframe/lib/cython/__init__.py +1 -1
- maxframe/lib/cython/libcpp.pxd +1 -1
- maxframe/lib/dtypes_extension/__init__.py +14 -0
- maxframe/lib/dtypes_extension/dtypes.py +91 -0
- maxframe/lib/dtypes_extension/tests/__init__.py +13 -0
- maxframe/lib/dtypes_extension/tests/test_dtypes.py +68 -0
- maxframe/lib/filesystem/__init__.py +1 -1
- maxframe/lib/filesystem/_glob.py +1 -1
- maxframe/lib/filesystem/_oss_lib/__init__.py +1 -1
- maxframe/lib/filesystem/_oss_lib/common.py +1 -1
- maxframe/lib/filesystem/_oss_lib/glob.py +1 -1
- maxframe/lib/filesystem/_oss_lib/handle.py +1 -1
- maxframe/lib/filesystem/arrow.py +1 -1
- maxframe/lib/filesystem/base.py +1 -1
- maxframe/lib/filesystem/core.py +1 -1
- maxframe/lib/filesystem/fsmap.py +1 -1
- maxframe/lib/filesystem/hdfs.py +1 -1
- maxframe/lib/filesystem/local.py +1 -1
- maxframe/lib/filesystem/oss.py +1 -1
- maxframe/lib/filesystem/tests/__init__.py +1 -1
- maxframe/lib/filesystem/tests/test_filesystem.py +6 -4
- maxframe/lib/filesystem/tests/test_oss.py +1 -1
- maxframe/lib/functools_compat.py +1 -1
- maxframe/lib/mmh3.cp39-win_amd64.pyd +0 -0
- maxframe/lib/mmh3.pyi +1 -1
- maxframe/lib/sparse/__init__.py +1 -1
- maxframe/lib/sparse/array.py +1 -1
- maxframe/lib/sparse/core.py +1 -1
- maxframe/lib/sparse/matrix.py +1 -1
- maxframe/lib/sparse/tests/__init__.py +1 -1
- maxframe/lib/sparse/tests/test_sparse.py +1 -1
- maxframe/lib/sparse/vector.py +1 -1
- maxframe/lib/tests/__init__.py +1 -1
- maxframe/lib/tests/test_wrapped_pickle.py +1 -1
- maxframe/lib/version.py +1 -1
- maxframe/lib/wrapped_pickle.py +1 -1
- maxframe/mixin.py +1 -1
- maxframe/opcodes.py +6 -1
- maxframe/protocol.py +1 -1
- maxframe/remote/__init__.py +1 -1
- maxframe/remote/core.py +1 -1
- maxframe/remote/run_script.py +1 -1
- maxframe/serialization/__init__.py +1 -1
- maxframe/serialization/arrow.py +1 -1
- maxframe/serialization/core.cp39-win_amd64.pyd +0 -0
- maxframe/serialization/core.pxd +1 -1
- maxframe/serialization/core.pyi +1 -1
- maxframe/serialization/core.pyx +9 -6
- maxframe/serialization/exception.py +1 -1
- maxframe/serialization/maxframe_objects.py +1 -1
- maxframe/serialization/numpy.py +1 -1
- maxframe/serialization/pandas.py +1 -1
- maxframe/serialization/scipy.py +1 -1
- maxframe/serialization/serializables/__init__.py +1 -1
- maxframe/serialization/serializables/core.py +95 -90
- maxframe/serialization/serializables/field.py +1 -1
- maxframe/serialization/serializables/field_type.py +1 -1
- maxframe/serialization/serializables/tests/__init__.py +1 -1
- maxframe/serialization/serializables/tests/test_field_type.py +1 -1
- maxframe/serialization/serializables/tests/test_serializable.py +1 -1
- maxframe/serialization/tests/__init__.py +1 -1
- maxframe/serialization/tests/test_serial.py +21 -3
- maxframe/session.py +1 -1
- maxframe/tensor/__init__.py +1 -1
- maxframe/tensor/arithmetic/__init__.py +1 -1
- maxframe/tensor/arithmetic/abs.py +1 -1
- maxframe/tensor/arithmetic/absolute.py +1 -1
- maxframe/tensor/arithmetic/add.py +1 -1
- maxframe/tensor/arithmetic/angle.py +1 -1
- maxframe/tensor/arithmetic/arccos.py +1 -1
- maxframe/tensor/arithmetic/arccosh.py +1 -1
- maxframe/tensor/arithmetic/arcsin.py +1 -1
- maxframe/tensor/arithmetic/arcsinh.py +1 -1
- maxframe/tensor/arithmetic/arctan.py +1 -1
- maxframe/tensor/arithmetic/arctan2.py +1 -1
- maxframe/tensor/arithmetic/arctanh.py +1 -1
- maxframe/tensor/arithmetic/around.py +1 -1
- maxframe/tensor/arithmetic/bitand.py +1 -1
- maxframe/tensor/arithmetic/bitor.py +1 -1
- maxframe/tensor/arithmetic/bitxor.py +1 -1
- maxframe/tensor/arithmetic/cbrt.py +1 -1
- maxframe/tensor/arithmetic/ceil.py +1 -1
- maxframe/tensor/arithmetic/clip.py +1 -1
- maxframe/tensor/arithmetic/conj.py +1 -1
- maxframe/tensor/arithmetic/copysign.py +1 -1
- maxframe/tensor/arithmetic/core.py +1 -1
- maxframe/tensor/arithmetic/cos.py +1 -1
- maxframe/tensor/arithmetic/cosh.py +1 -1
- maxframe/tensor/arithmetic/deg2rad.py +1 -1
- maxframe/tensor/arithmetic/degrees.py +1 -1
- maxframe/tensor/arithmetic/divide.py +1 -1
- maxframe/tensor/arithmetic/equal.py +1 -1
- maxframe/tensor/arithmetic/exp.py +1 -1
- maxframe/tensor/arithmetic/exp2.py +1 -1
- maxframe/tensor/arithmetic/expm1.py +1 -1
- maxframe/tensor/arithmetic/fabs.py +1 -1
- maxframe/tensor/arithmetic/fix.py +1 -1
- maxframe/tensor/arithmetic/float_power.py +1 -1
- maxframe/tensor/arithmetic/floor.py +1 -1
- maxframe/tensor/arithmetic/floordiv.py +1 -1
- maxframe/tensor/arithmetic/fmax.py +1 -1
- maxframe/tensor/arithmetic/fmin.py +1 -1
- maxframe/tensor/arithmetic/fmod.py +1 -1
- maxframe/tensor/arithmetic/frexp.py +1 -1
- maxframe/tensor/arithmetic/greater.py +1 -1
- maxframe/tensor/arithmetic/greater_equal.py +1 -1
- maxframe/tensor/arithmetic/hypot.py +1 -1
- maxframe/tensor/arithmetic/i0.py +1 -1
- maxframe/tensor/arithmetic/imag.py +1 -1
- maxframe/tensor/arithmetic/invert.py +1 -1
- maxframe/tensor/arithmetic/isclose.py +1 -1
- maxframe/tensor/arithmetic/iscomplex.py +1 -1
- maxframe/tensor/arithmetic/isfinite.py +1 -1
- maxframe/tensor/arithmetic/isinf.py +1 -1
- maxframe/tensor/arithmetic/isnan.py +1 -1
- maxframe/tensor/arithmetic/isreal.py +1 -1
- maxframe/tensor/arithmetic/ldexp.py +1 -1
- maxframe/tensor/arithmetic/less.py +1 -1
- maxframe/tensor/arithmetic/less_equal.py +1 -1
- maxframe/tensor/arithmetic/log.py +1 -1
- maxframe/tensor/arithmetic/log10.py +1 -1
- maxframe/tensor/arithmetic/log1p.py +1 -1
- maxframe/tensor/arithmetic/log2.py +1 -1
- maxframe/tensor/arithmetic/logaddexp.py +1 -1
- maxframe/tensor/arithmetic/logaddexp2.py +1 -1
- maxframe/tensor/arithmetic/logical_and.py +1 -1
- maxframe/tensor/arithmetic/logical_not.py +1 -1
- maxframe/tensor/arithmetic/logical_or.py +1 -1
- maxframe/tensor/arithmetic/logical_xor.py +1 -1
- maxframe/tensor/arithmetic/lshift.py +1 -1
- maxframe/tensor/arithmetic/maximum.py +1 -1
- maxframe/tensor/arithmetic/minimum.py +1 -1
- maxframe/tensor/arithmetic/mod.py +1 -1
- maxframe/tensor/arithmetic/modf.py +1 -1
- maxframe/tensor/arithmetic/multiply.py +1 -1
- maxframe/tensor/arithmetic/nan_to_num.py +1 -1
- maxframe/tensor/arithmetic/negative.py +1 -1
- maxframe/tensor/arithmetic/nextafter.py +1 -1
- maxframe/tensor/arithmetic/not_equal.py +1 -1
- maxframe/tensor/arithmetic/positive.py +1 -1
- maxframe/tensor/arithmetic/power.py +1 -1
- maxframe/tensor/arithmetic/rad2deg.py +1 -1
- maxframe/tensor/arithmetic/radians.py +1 -1
- maxframe/tensor/arithmetic/real.py +1 -1
- maxframe/tensor/arithmetic/reciprocal.py +1 -1
- maxframe/tensor/arithmetic/rint.py +1 -1
- maxframe/tensor/arithmetic/rshift.py +1 -1
- maxframe/tensor/arithmetic/setimag.py +1 -1
- maxframe/tensor/arithmetic/setreal.py +1 -1
- maxframe/tensor/arithmetic/sign.py +1 -1
- maxframe/tensor/arithmetic/signbit.py +1 -1
- maxframe/tensor/arithmetic/sin.py +1 -1
- maxframe/tensor/arithmetic/sinc.py +1 -1
- maxframe/tensor/arithmetic/sinh.py +1 -1
- maxframe/tensor/arithmetic/spacing.py +1 -1
- maxframe/tensor/arithmetic/sqrt.py +1 -1
- maxframe/tensor/arithmetic/square.py +1 -1
- maxframe/tensor/arithmetic/subtract.py +1 -1
- maxframe/tensor/arithmetic/tan.py +1 -1
- maxframe/tensor/arithmetic/tanh.py +1 -1
- maxframe/tensor/arithmetic/tests/__init__.py +1 -1
- maxframe/tensor/arithmetic/tests/test_arithmetic.py +1 -1
- maxframe/tensor/arithmetic/truediv.py +1 -1
- maxframe/tensor/arithmetic/trunc.py +1 -1
- maxframe/tensor/arithmetic/utils.py +1 -1
- maxframe/tensor/array_utils.py +1 -1
- maxframe/tensor/core.py +1 -1
- maxframe/tensor/datasource/__init__.py +1 -1
- maxframe/tensor/datasource/arange.py +1 -1
- maxframe/tensor/datasource/array.py +1 -1
- maxframe/tensor/datasource/core.py +1 -1
- maxframe/tensor/datasource/empty.py +1 -1
- maxframe/tensor/datasource/from_dataframe.py +1 -1
- maxframe/tensor/datasource/from_dense.py +1 -1
- maxframe/tensor/datasource/from_sparse.py +1 -1
- maxframe/tensor/datasource/full.py +1 -1
- maxframe/tensor/datasource/ones.py +1 -1
- maxframe/tensor/datasource/scalar.py +1 -1
- maxframe/tensor/datasource/tests/__init__.py +1 -1
- maxframe/tensor/datasource/tests/test_datasource.py +1 -1
- maxframe/tensor/datasource/zeros.py +1 -1
- maxframe/tensor/fetch/__init__.py +1 -1
- maxframe/tensor/fetch/core.py +1 -1
- maxframe/tensor/indexing/__init__.py +1 -1
- maxframe/tensor/indexing/choose.py +1 -1
- maxframe/tensor/indexing/compress.py +1 -1
- maxframe/tensor/indexing/core.py +1 -1
- maxframe/tensor/indexing/extract.py +1 -1
- maxframe/tensor/indexing/fill_diagonal.py +1 -1
- maxframe/tensor/indexing/flatnonzero.py +1 -1
- maxframe/tensor/indexing/getitem.py +1 -1
- maxframe/tensor/indexing/nonzero.py +1 -1
- maxframe/tensor/indexing/setitem.py +1 -1
- maxframe/tensor/indexing/slice.py +1 -1
- maxframe/tensor/indexing/take.py +1 -1
- maxframe/tensor/indexing/tests/__init__.py +1 -1
- maxframe/tensor/indexing/tests/test_indexing.py +1 -1
- maxframe/tensor/indexing/unravel_index.py +1 -1
- maxframe/tensor/merge/__init__.py +1 -1
- maxframe/tensor/merge/concatenate.py +1 -1
- maxframe/tensor/merge/stack.py +1 -1
- maxframe/tensor/merge/tests/__init__.py +1 -1
- maxframe/tensor/merge/tests/test_merge.py +1 -1
- maxframe/tensor/merge/vstack.py +1 -1
- maxframe/tensor/misc/__init__.py +1 -1
- maxframe/tensor/misc/astype.py +1 -1
- maxframe/tensor/misc/atleast_1d.py +1 -1
- maxframe/tensor/misc/atleast_2d.py +1 -1
- maxframe/tensor/misc/atleast_3d.py +1 -1
- maxframe/tensor/misc/broadcast_to.py +1 -1
- maxframe/tensor/misc/ravel.py +1 -1
- maxframe/tensor/misc/tests/__init__.py +1 -1
- maxframe/tensor/misc/tests/test_misc.py +1 -1
- maxframe/tensor/misc/transpose.py +1 -1
- maxframe/tensor/misc/unique.py +1 -1
- maxframe/tensor/misc/where.py +1 -1
- maxframe/tensor/operators.py +1 -1
- maxframe/tensor/random/__init__.py +1 -1
- maxframe/tensor/random/beta.py +1 -1
- maxframe/tensor/random/binomial.py +1 -1
- maxframe/tensor/random/bytes.py +1 -1
- maxframe/tensor/random/chisquare.py +1 -1
- maxframe/tensor/random/choice.py +1 -1
- maxframe/tensor/random/core.py +1 -1
- maxframe/tensor/random/dirichlet.py +1 -1
- maxframe/tensor/random/exponential.py +1 -1
- maxframe/tensor/random/f.py +1 -1
- maxframe/tensor/random/gamma.py +1 -1
- maxframe/tensor/random/geometric.py +1 -1
- maxframe/tensor/random/gumbel.py +1 -1
- maxframe/tensor/random/hypergeometric.py +1 -1
- maxframe/tensor/random/laplace.py +1 -1
- maxframe/tensor/random/logistic.py +1 -1
- maxframe/tensor/random/lognormal.py +1 -1
- maxframe/tensor/random/logseries.py +1 -1
- maxframe/tensor/random/multinomial.py +1 -1
- maxframe/tensor/random/multivariate_normal.py +1 -1
- maxframe/tensor/random/negative_binomial.py +1 -1
- maxframe/tensor/random/noncentral_chisquare.py +1 -1
- maxframe/tensor/random/noncentral_f.py +1 -1
- maxframe/tensor/random/normal.py +1 -1
- maxframe/tensor/random/pareto.py +1 -1
- maxframe/tensor/random/permutation.py +1 -1
- maxframe/tensor/random/poisson.py +1 -1
- maxframe/tensor/random/power.py +1 -1
- maxframe/tensor/random/rand.py +1 -1
- maxframe/tensor/random/randint.py +1 -1
- maxframe/tensor/random/randn.py +1 -1
- maxframe/tensor/random/random_integers.py +1 -1
- maxframe/tensor/random/random_sample.py +1 -1
- maxframe/tensor/random/rayleigh.py +1 -1
- maxframe/tensor/random/shuffle.py +1 -1
- maxframe/tensor/random/standard_cauchy.py +1 -1
- maxframe/tensor/random/standard_exponential.py +1 -1
- maxframe/tensor/random/standard_gamma.py +1 -1
- maxframe/tensor/random/standard_normal.py +1 -1
- maxframe/tensor/random/standard_t.py +1 -1
- maxframe/tensor/random/tests/__init__.py +1 -1
- maxframe/tensor/random/tests/test_random.py +1 -1
- maxframe/tensor/random/triangular.py +1 -1
- maxframe/tensor/random/uniform.py +1 -1
- maxframe/tensor/random/vonmises.py +1 -1
- maxframe/tensor/random/wald.py +1 -1
- maxframe/tensor/random/weibull.py +1 -1
- maxframe/tensor/random/zipf.py +1 -1
- maxframe/tensor/rechunk/__init__.py +1 -1
- maxframe/tensor/rechunk/rechunk.py +1 -1
- maxframe/tensor/reduction/__init__.py +1 -1
- maxframe/tensor/reduction/all.py +1 -1
- maxframe/tensor/reduction/allclose.py +1 -1
- maxframe/tensor/reduction/any.py +1 -1
- maxframe/tensor/reduction/argmax.py +1 -1
- maxframe/tensor/reduction/argmin.py +1 -1
- maxframe/tensor/reduction/array_equal.py +1 -1
- maxframe/tensor/reduction/core.py +1 -1
- maxframe/tensor/reduction/count_nonzero.py +1 -1
- maxframe/tensor/reduction/cumprod.py +1 -1
- maxframe/tensor/reduction/cumsum.py +1 -1
- maxframe/tensor/reduction/max.py +1 -1
- maxframe/tensor/reduction/mean.py +1 -1
- maxframe/tensor/reduction/min.py +1 -1
- maxframe/tensor/reduction/nanargmax.py +1 -1
- maxframe/tensor/reduction/nanargmin.py +1 -1
- maxframe/tensor/reduction/nancumprod.py +1 -1
- maxframe/tensor/reduction/nancumsum.py +1 -1
- maxframe/tensor/reduction/nanmax.py +1 -1
- maxframe/tensor/reduction/nanmean.py +1 -1
- maxframe/tensor/reduction/nanmin.py +1 -1
- maxframe/tensor/reduction/nanprod.py +1 -1
- maxframe/tensor/reduction/nanstd.py +1 -1
- maxframe/tensor/reduction/nansum.py +1 -1
- maxframe/tensor/reduction/nanvar.py +1 -1
- maxframe/tensor/reduction/prod.py +1 -1
- maxframe/tensor/reduction/std.py +1 -1
- maxframe/tensor/reduction/sum.py +1 -1
- maxframe/tensor/reduction/tests/__init__.py +1 -1
- maxframe/tensor/reduction/tests/test_reduction.py +1 -1
- maxframe/tensor/reduction/var.py +1 -1
- maxframe/tensor/reshape/__init__.py +1 -1
- maxframe/tensor/reshape/reshape.py +1 -1
- maxframe/tensor/reshape/tests/__init__.py +1 -1
- maxframe/tensor/reshape/tests/test_reshape.py +1 -1
- maxframe/tensor/statistics/__init__.py +1 -1
- maxframe/tensor/statistics/percentile.py +1 -1
- maxframe/tensor/statistics/quantile.py +1 -1
- maxframe/tensor/ufunc/__init__.py +1 -1
- maxframe/tensor/ufunc/ufunc.py +1 -1
- maxframe/tensor/utils.py +1 -1
- maxframe/tests/__init__.py +1 -1
- maxframe/tests/test_codegen.py +1 -1
- maxframe/tests/test_protocol.py +1 -1
- maxframe/tests/test_utils.py +1 -1
- maxframe/tests/utils.py +1 -1
- maxframe/typing_.py +1 -1
- maxframe/udf.py +6 -1
- maxframe/utils.py +8 -1
- {maxframe-1.1.1.dist-info → maxframe-1.2.0.dist-info}/METADATA +3 -2
- maxframe-1.2.0.dist-info/RECORD +697 -0
- {maxframe-1.1.1.dist-info → maxframe-1.2.0.dist-info}/WHEEL +1 -1
- maxframe_client/__init__.py +1 -1
- maxframe_client/clients/__init__.py +1 -1
- maxframe_client/clients/framedriver.py +1 -1
- maxframe_client/conftest.py +1 -1
- maxframe_client/fetcher.py +1 -1
- maxframe_client/session/__init__.py +1 -1
- maxframe_client/session/consts.py +1 -1
- maxframe_client/session/graph.py +1 -1
- maxframe_client/session/odps.py +2 -1
- maxframe_client/session/task.py +1 -1
- maxframe_client/session/tests/__init__.py +1 -1
- maxframe_client/session/tests/test_task.py +1 -1
- maxframe_client/tests/__init__.py +1 -1
- maxframe_client/tests/test_fetcher.py +1 -1
- maxframe_client/tests/test_session.py +1 -1
- maxframe-1.1.1.dist-info/RECORD +0 -675
- {maxframe-1.1.1.dist-info → maxframe-1.2.0.dist-info}/top_level.txt +0 -0
maxframe-1.1.1.dist-info/RECORD
DELETED
|
@@ -1,675 +0,0 @@
|
|
|
1
|
-
maxframe/__init__.py,sha256=RujkARDvD6mhFpR330UQ0UfogvIdae5EjR1euFpTiYA,1036
|
|
2
|
-
maxframe/_utils.cp39-win_amd64.pyd,sha256=KiNUDuyn-ke11GOsnqGm4uE78axEwTfUh27TRs34o-Q,305152
|
|
3
|
-
maxframe/_utils.pxd,sha256=_qHN-lCY1FQgDFIrrqA79Ys0SBdonp9kXRMS93xKSYk,1187
|
|
4
|
-
maxframe/_utils.pyx,sha256=_3p6aJEJ6WZYLcNZ6o4DxoxsxqadTlJXFlgDeFPxqUQ,17564
|
|
5
|
-
maxframe/codegen.py,sha256=8CvmD-1elhT9hK5O3jadhq7G-3AVf7Tb1MNOJcGJWVA,18267
|
|
6
|
-
maxframe/conftest.py,sha256=YDTh7eJqk19UhZE73-18oKPUxlT9ke7S-kUui4rfeJc,6489
|
|
7
|
-
maxframe/env.py,sha256=xY4wjMWIJ4qLsFAQ5F-X5CrVR7dDSWiryPXni0YSK5c,1435
|
|
8
|
-
maxframe/errors.py,sha256=nhQVjRbH5EsyLZhyAufvHpMhfDN6eR8vcrv4sjaI7p8,1000
|
|
9
|
-
maxframe/extension.py,sha256=XKgK2b42i-jfnLc0lBPiBMsGA6HMQ4a12mJc09tMAFc,2752
|
|
10
|
-
maxframe/mixin.py,sha256=QfX0KqVIWDlVDSFs0lwdzLexw7lS7W_IUuK7aY1Ib8c,3624
|
|
11
|
-
maxframe/opcodes.py,sha256=Drb7P_b6VLglt-6BHsEYHOsZONtxJgp2E9U9Ko7IQQQ,10947
|
|
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=bzzpmXVz7BioiNW2RxmKEad2E4X5mJpEfKYmLjGlLGA,5317
|
|
16
|
-
maxframe/utils.py,sha256=jCZkpT6OtjIlTYArmRiT-WDsh7sGQb_cxbyVGXBiK94,35817
|
|
17
|
-
maxframe/config/__init__.py,sha256=2VB189TzomdYUKOdSvyb5trVPOXVYX6bS1DzDv5U5YA,698
|
|
18
|
-
maxframe/config/config.py,sha256=2rqp6JPNrUW6FJAwmAxZal3512e8T3uKLupAldxWaMg,16804
|
|
19
|
-
maxframe/config/validators.py,sha256=vs82UJa4xdY7tvbM7U4vOtXDJHrfdAOTvDkbrFtuGLU,2599
|
|
20
|
-
maxframe/config/tests/__init__.py,sha256=29eM5D4knhYwe3TF42naTuC5b4Ym3VeH4rK8KpdLWNY,609
|
|
21
|
-
maxframe/config/tests/test_config.py,sha256=oi_7HOVIEDARpNnflDFAC5tkoP3Kk188VXU5Or-ewpI,3405
|
|
22
|
-
maxframe/config/tests/test_validators.py,sha256=kz9Yxiqvl_BJq2CT61JTzfpRyrjm6lFrjqIfqeld_yo,1274
|
|
23
|
-
maxframe/core/__init__.py,sha256=uNccOOfZ1aCxvUsz8ic5kObQkrBgfUv8ExU7OScyW1w,1508
|
|
24
|
-
maxframe/core/base.py,sha256=43qZ_sJFgW857qhT1jqgsjdAsBy9tzCeqeX62CPm4vM,4691
|
|
25
|
-
maxframe/core/mode.py,sha256=a-2AjLrIaqemN3pZPFhdfrPYXR7ryCLcsT1KJwWKPb0,3107
|
|
26
|
-
maxframe/core/entity/__init__.py,sha256=G3cRUyYuSNZ7HS13BLJAj7KBCaAqNSd2wx-MiHU0Hxc,1108
|
|
27
|
-
maxframe/core/entity/core.py,sha256=aFwjNMhTJ4ybr1WzmMVSTG211fzutzaATs14QoNh-JM,4170
|
|
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
|
|
32
|
-
maxframe/core/entity/utils.py,sha256=454RYVbTMVW_8KnfDqUPec4kz1p98izVTC2OrzhOkao,966
|
|
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.cp39-win_amd64.pyd,sha256=5De6CFYbv2NRoa9Fv-TcFrBuMJjvdAf4tRK017EPe4M,251392
|
|
37
|
-
maxframe/core/graph/core.pyx,sha256=J619C6xfVCF8NQ8oeinhICYSg-w5ecX-dnBI7NB-6n0,16390
|
|
38
|
-
maxframe/core/graph/entity.py,sha256=7DJtHi7Xum_Yp16caiQd2AMZd34PWDPy7kocjWhgl3o,5010
|
|
39
|
-
maxframe/core/graph/builder/__init__.py,sha256=fL_blRc623cJ5CQTiFG1d4OK8M97FcFqGbX9chwbUQs,655
|
|
40
|
-
maxframe/core/graph/builder/base.py,sha256=vfU9zeEQv-BP4f11CdIJD_opiU6uDjnEVknMJGUtzPw,2596
|
|
41
|
-
maxframe/core/graph/builder/tileable.py,sha256=ZgvTbndsd1TVA6iQK1xcwupTuZSsmeQSTgbd2hP0BiE,1207
|
|
42
|
-
maxframe/core/graph/builder/utils.py,sha256=656KxKPwE8Il8S8OefItfqkhHQ8kyfSjfqDag1Ie3UE,1353
|
|
43
|
-
maxframe/core/graph/tests/__init__.py,sha256=29eM5D4knhYwe3TF42naTuC5b4Ym3VeH4rK8KpdLWNY,609
|
|
44
|
-
maxframe/core/graph/tests/test_graph.py,sha256=nkVn_dLk0oT42HWJxnSjniC5ElXjsHxC1Jzlg1CKHcQ,7667
|
|
45
|
-
maxframe/core/operator/__init__.py,sha256=s2r2k2-5iP57gByVSg8K_fTj6iQPXOgSto0kW6bvOoM,1098
|
|
46
|
-
maxframe/core/operator/base.py,sha256=fRtCL6HsfbHPYrQCOnovt9oBYcS339VkRdFFaR7d2Xs,15786
|
|
47
|
-
maxframe/core/operator/core.py,sha256=cDzq0_9k7pfUiyAkaIq2eLaP6fAw7uRS-7bacon0Acg,9539
|
|
48
|
-
maxframe/core/operator/fetch.py,sha256=4g9kyJbIco7cDgbdUJOJNtC3NCploUU45jnateGYG8c,1563
|
|
49
|
-
maxframe/core/operator/objects.py,sha256=OylWHC78AIpxM4M3ns4MzqGF7HzTJaWU9QJv-B3zKzQ,2028
|
|
50
|
-
maxframe/core/operator/shuffle.py,sha256=fUp5dm6cOEL4JXVz2Vr33dzycQQwC5mNExO0-2GPwkE,4857
|
|
51
|
-
maxframe/core/operator/utils.py,sha256=91Doo94Yj7VPZBiu-0AEWs4eqGJwBqMxgWPokt09Qes,1761
|
|
52
|
-
maxframe/core/operator/tests/__init__.py,sha256=29eM5D4knhYwe3TF42naTuC5b4Ym3VeH4rK8KpdLWNY,609
|
|
53
|
-
maxframe/core/operator/tests/test_core.py,sha256=iqZk4AWubFLO24V_VeV6SEy5xrzBFLP9qKK6tKO0SGs,1755
|
|
54
|
-
maxframe/core/tests/__init__.py,sha256=29eM5D4knhYwe3TF42naTuC5b4Ym3VeH4rK8KpdLWNY,609
|
|
55
|
-
maxframe/core/tests/test_mode.py,sha256=fyRH-ksa6MogEs6kNhtXhCZyvhYqflgaXJYI3nSo-ps,2507
|
|
56
|
-
maxframe/dataframe/__init__.py,sha256=FqEhQAdEx5W8-P8mG3Wwzx-gJcScVpcqkaDAp6ejWgU,2323
|
|
57
|
-
maxframe/dataframe/arrays.py,sha256=rOvhxMQars9E3SOYSu0ygBuuRVY0QV6xzengnMqKs4s,29616
|
|
58
|
-
maxframe/dataframe/core.py,sha256=z96cEmBsCMalavN0GMzEU1iTF2zDiWomnNGq0y0BHA8,77441
|
|
59
|
-
maxframe/dataframe/initializer.py,sha256=f_gYxuwrTQL_-0FKMWUnX84jBsuRwv4Z7y-1Vf15ZA0,11150
|
|
60
|
-
maxframe/dataframe/operators.py,sha256=7u2v-yRl2wcTg8BmIXh-IFrj4TcKoegqf06gm-t0wGQ,7834
|
|
61
|
-
maxframe/dataframe/utils.py,sha256=WMw9j0yYq4Gh0o2dPQGWfZ5FfcvYTzZYyKRFfjvSWSM,48674
|
|
62
|
-
maxframe/dataframe/arithmetic/__init__.py,sha256=MPnITPuO7DDjAMTBawpennv6D0V9AnT6oF0nz2KUIqc,12837
|
|
63
|
-
maxframe/dataframe/arithmetic/abs.py,sha256=EgyzciSwjE_I3ZBuzeVJFVzBHsxn9MWzCtvHgyEl6ek,1016
|
|
64
|
-
maxframe/dataframe/arithmetic/add.py,sha256=wbmfAZgxjuP02ZUV4-VEsNhJlyo9tytXwkEx65ahuxI,1766
|
|
65
|
-
maxframe/dataframe/arithmetic/arccos.py,sha256=27-CptbireDh1qmv3prduqT4ZQdwPkjH96oLt9uvelk,958
|
|
66
|
-
maxframe/dataframe/arithmetic/arccosh.py,sha256=9KJD8GlDQX8sdlVJNUxH0qNHpfNV09y6eYmwUz8QdU0,963
|
|
67
|
-
maxframe/dataframe/arithmetic/arcsin.py,sha256=z1s2UUosWOjKxp3qkC2XKJ4MeK3l3txQ2JguFvq55zU,958
|
|
68
|
-
maxframe/dataframe/arithmetic/arcsinh.py,sha256=EbGXb8IrpHjBrGLDJxFpVgSUpJ3oiFgbzoVHKH4SzHo,963
|
|
69
|
-
maxframe/dataframe/arithmetic/arctan.py,sha256=bYEkgWV7Etqq8DjnSaXWdTn736NHW-R7Va4wy83DcL0,958
|
|
70
|
-
maxframe/dataframe/arithmetic/arctanh.py,sha256=USWdXHQU99W4PCsLpaen5kN3QlqaxMp-e9LIGnbIa4Y,963
|
|
71
|
-
maxframe/dataframe/arithmetic/around.py,sha256=L5Akz-F4F-6zNSp9VamH-VZ0OkmbVBDjtAIO9m2kP6Y,3963
|
|
72
|
-
maxframe/dataframe/arithmetic/bitwise_and.py,sha256=NWbfauXqEUW9N0mjy9SfdTMYpP6-Qjb1rFMM63OwSEw,1473
|
|
73
|
-
maxframe/dataframe/arithmetic/bitwise_or.py,sha256=a3HW12Wz_XTGJQU0yuhFm_USY4A4ex4aSNNKh6yMFxM,1596
|
|
74
|
-
maxframe/dataframe/arithmetic/bitwise_xor.py,sha256=jQmUMreUiOTlYraPEDhcdrYrtZisTRTX68Lll3uk818,1472
|
|
75
|
-
maxframe/dataframe/arithmetic/ceil.py,sha256=YnNA0N6GRd3GfJfmq3Yc5nu95vqIteKzf7pRQ_sQ9Wk,948
|
|
76
|
-
maxframe/dataframe/arithmetic/core.py,sha256=GJWdYOXmKhvessF1c7AiKl_-uHE6SQR-FzNfkgBnYNk,14409
|
|
77
|
-
maxframe/dataframe/arithmetic/cos.py,sha256=7eWAEOvO8RePY6Bs3FDoSFtL57fBJdvLJRslx8Or63o,943
|
|
78
|
-
maxframe/dataframe/arithmetic/cosh.py,sha256=X15rxbk0RymYTTG0ISUvtZCl2T3YIQvx-w3aTtMVjyc,948
|
|
79
|
-
maxframe/dataframe/arithmetic/degrees.py,sha256=AdkR27ECvXJxNtie2pdiTcSu_mlX5zuhnljO_DL9OzQ,963
|
|
80
|
-
maxframe/dataframe/arithmetic/docstring.py,sha256=JRxNuSzu5ZCUCCSN_VH1hNx21S9k6O83BLmY9z-0Rqw,12107
|
|
81
|
-
maxframe/dataframe/arithmetic/equal.py,sha256=f1XNB0hQEgyC0NrjRhqSq6OWEFaz0AdEbSEa5L46g_I,1575
|
|
82
|
-
maxframe/dataframe/arithmetic/exp.py,sha256=22_EHcKx3d0x880QqPQYY_x8rUqaRhgTqAgvPrSt0PM,943
|
|
83
|
-
maxframe/dataframe/arithmetic/exp2.py,sha256=3dRamSqFmgnRFVbjP3-8K4MX46uryNuZZwoif4zHsRI,948
|
|
84
|
-
maxframe/dataframe/arithmetic/expm1.py,sha256=MYVaTA7sDpaYeO9UqG1KBuQVQatOBdggD1Gg2zk1OZw,953
|
|
85
|
-
maxframe/dataframe/arithmetic/floor.py,sha256=Ojci1eQLgNXVFyqle1oirDFhofHGtFugtLHQgX-oOng,953
|
|
86
|
-
maxframe/dataframe/arithmetic/floordiv.py,sha256=gxiOirTCJVJQRdsGVMRrJ9oQS6MbdRf-Az8BhcY4pRg,1891
|
|
87
|
-
maxframe/dataframe/arithmetic/greater.py,sha256=jvg8ax5ejg6VYgmHmIJ55XX_EmevIxBn1l86-5b0hYI,1606
|
|
88
|
-
maxframe/dataframe/arithmetic/greater_equal.py,sha256=1krtzKHcihI9pHi_s5q2TYvcM-dzcCcMvQTesnCpYuU,1631
|
|
89
|
-
maxframe/dataframe/arithmetic/invert.py,sha256=RZrB4_t9vaoopPaAIynllhv58zNpQpa8KzaBm5972XU,1018
|
|
90
|
-
maxframe/dataframe/arithmetic/is_ufuncs.py,sha256=grYk2-AL6x4REVkGDPm2J3iHpKdIzIDNFoaTQWLlk3U,1798
|
|
91
|
-
maxframe/dataframe/arithmetic/less.py,sha256=3PXxUpy11Ou_fl6fuXLMJyxiZlyE_zJCoappk4lMTN8,1575
|
|
92
|
-
maxframe/dataframe/arithmetic/less_equal.py,sha256=pLK78jjNPOrmoOLULTAxKIJXNUp0_HC0csiQ0sGnvWs,1616
|
|
93
|
-
maxframe/dataframe/arithmetic/log.py,sha256=4aJL3Ie5hjoB5OeW61-uUpYuXY8q_OGIYsBTHFOj-xU,943
|
|
94
|
-
maxframe/dataframe/arithmetic/log10.py,sha256=qSrf78LGNTbve93PgMwBQCHrwb_pXTxPnwWj5hGZHc8,953
|
|
95
|
-
maxframe/dataframe/arithmetic/log2.py,sha256=6vlRaylM_P5Lb10bzcyQqeaK0W9jMa2qKc-r46kt99E,948
|
|
96
|
-
maxframe/dataframe/arithmetic/mod.py,sha256=5mH0nm3xb7-xqhtoC8JE8T0cJN_HUtz-SKqMPw22vKE,1762
|
|
97
|
-
maxframe/dataframe/arithmetic/multiply.py,sha256=Qen_WyhbAkKHhyzy_6SZ27g9Q0tQObcWs-jLy6Cz1kY,1793
|
|
98
|
-
maxframe/dataframe/arithmetic/negative.py,sha256=yKEeHZIVAGVI-5T6ghkAsp9tlmO2zuyZ8VCwm481NP8,1040
|
|
99
|
-
maxframe/dataframe/arithmetic/not_equal.py,sha256=mDXvV0I-mzcuDag5OLzXhSmcuj4JXzU6NVy7yVLSpSM,1591
|
|
100
|
-
maxframe/dataframe/arithmetic/power.py,sha256=4SnDtDhYd6t19v2w6vdq0aCYhvdaahyuOsfzZVACCQ4,1879
|
|
101
|
-
maxframe/dataframe/arithmetic/radians.py,sha256=xuKMlEGZspnraj6nh4GV4bP1NsRiDjtoZJ7Cz44lQhY,963
|
|
102
|
-
maxframe/dataframe/arithmetic/sin.py,sha256=13wADLxfMNecSTOHSEyMFpwPsFM0Rt78DpM9FAs32ZA,943
|
|
103
|
-
maxframe/dataframe/arithmetic/sinh.py,sha256=i73XkZtl5eCQU1bY1o1Zvt9DaTuEOU4beHPdhnIXR-0,948
|
|
104
|
-
maxframe/dataframe/arithmetic/sqrt.py,sha256=-LYJVIoETV74stLnFA2lL4GtWbewpu2d4eLWmcwqb-c,948
|
|
105
|
-
maxframe/dataframe/arithmetic/subtract.py,sha256=jaheNaqftVbtbmj2qDeyBBbTh6DCch-Vw3nxYmzKGpI,1844
|
|
106
|
-
maxframe/dataframe/arithmetic/tan.py,sha256=4uznHZllQ76UIJUD69SiHKIXJClAXH3AcsuJuGP4ZDw,943
|
|
107
|
-
maxframe/dataframe/arithmetic/tanh.py,sha256=mbGIJLCLPypcwbZhGdqfboFKVQ7RSy-B0lAVvBfQBmA,948
|
|
108
|
-
maxframe/dataframe/arithmetic/truediv.py,sha256=MpvDwQ4SZ6ugXF04oFv0kheMcx-EcgkXeIBiPjh6MQQ,1872
|
|
109
|
-
maxframe/dataframe/arithmetic/trunc.py,sha256=ji9K9VRxvDPfODJmZ_yKBY885YKTWwdGK99kx4ZEZ5U,953
|
|
110
|
-
maxframe/dataframe/arithmetic/tests/__init__.py,sha256=29eM5D4knhYwe3TF42naTuC5b4Ym3VeH4rK8KpdLWNY,609
|
|
111
|
-
maxframe/dataframe/arithmetic/tests/test_arithmetic.py,sha256=BLCpyMNnWo2LHHqtGWyLZTG2ThlRWkbzlrg7BeiqDF0,25881
|
|
112
|
-
maxframe/dataframe/datasource/__init__.py,sha256=SX8ZXJsvQYntLZiEk-X1LmbF6v6k-Kaueh0R04N2eCQ,655
|
|
113
|
-
maxframe/dataframe/datasource/core.py,sha256=1X32MxCU3Y5vxTVEIkNNXx29eIARyRCvnkVe7ThT0wI,2768
|
|
114
|
-
maxframe/dataframe/datasource/dataframe.py,sha256=P3kvDS_Jh6EGgJRVfh_rHVkVfMaHeGQ2U7rZT5Gr2Tk,2082
|
|
115
|
-
maxframe/dataframe/datasource/date_range.py,sha256=wmralVkR1F7vYKnOAQA34gXqHE6MwqUuKAgVodsk8f8,17731
|
|
116
|
-
maxframe/dataframe/datasource/from_index.py,sha256=c6ecX7miuig3-uZB3-aj68TkpUypzpaogZsUZSbTtBs,1911
|
|
117
|
-
maxframe/dataframe/datasource/from_records.py,sha256=ygpKOMXZnDdWzGxMxQ4KdGv-tJFT_yhpLGnDlS1rNLc,3549
|
|
118
|
-
maxframe/dataframe/datasource/from_tensor.py,sha256=mShHYi0fZcG7ZShFVgIezaphh8tSFqR9-nQMm5YKIhw,15146
|
|
119
|
-
maxframe/dataframe/datasource/index.py,sha256=X_NShW67nYJGxaWp3qOrvyInNkz9L-XHjbApU4fHoes,4518
|
|
120
|
-
maxframe/dataframe/datasource/read_csv.py,sha256=IvQihmpcZIdzSD7ziX92aTAHNyP5WnTgd2cZz_h43sQ,24668
|
|
121
|
-
maxframe/dataframe/datasource/read_odps_query.py,sha256=KRk2dAw_8XbrkYzB8AynVUP1PXTartRSOwfg2zgm1QY,13898
|
|
122
|
-
maxframe/dataframe/datasource/read_odps_table.py,sha256=fcH-ZkaO-Ln8QyvjZQNWCoUiKXk-hhTzaai-uQpHgE8,9667
|
|
123
|
-
maxframe/dataframe/datasource/read_parquet.py,sha256=SZPrWoax2mwMBNvRk_3lkS72pZLe-_X_GwQ1JROBMs4,14952
|
|
124
|
-
maxframe/dataframe/datasource/series.py,sha256=elQVupKETh-hUHI2fTu8TRxBE729Vyrmpjx17XlRV-8,1964
|
|
125
|
-
maxframe/dataframe/datasource/tests/__init__.py,sha256=29eM5D4knhYwe3TF42naTuC5b4Ym3VeH4rK8KpdLWNY,609
|
|
126
|
-
maxframe/dataframe/datasource/tests/test_datasource.py,sha256=D5OMUx2ZOKoFXcb-PWJ0cVx4M2gVhcfeDwMzmoBTYgg,17659
|
|
127
|
-
maxframe/dataframe/datastore/__init__.py,sha256=MmlHYvFacMReOHDQMXF-z2bCsLyrSHYBVwIlCsZGOK4,810
|
|
128
|
-
maxframe/dataframe/datastore/core.py,sha256=HCqrZN47RP-IC6zDqLX_RErDUAWkcTB58FHNU70V2b4,762
|
|
129
|
-
maxframe/dataframe/datastore/to_csv.py,sha256=sns4bBgNpq7Ihb-goNqaBRdiEtrG-V6jqhNkWGZ1YaE,7974
|
|
130
|
-
maxframe/dataframe/datastore/to_odps.py,sha256=HzIAYRRLJBtsUCHD3vcfXWBE4jAEsCzrGt3Nx34B-d8,6912
|
|
131
|
-
maxframe/dataframe/datastore/tests/__init__.py,sha256=29eM5D4knhYwe3TF42naTuC5b4Ym3VeH4rK8KpdLWNY,609
|
|
132
|
-
maxframe/dataframe/datastore/tests/test_to_odps.py,sha256=385SCJK_XkddV9dJrRqSOuaXurpGjWd_QwRSeGTOTNU,1344
|
|
133
|
-
maxframe/dataframe/extensions/__init__.py,sha256=E3W6k_foaFR-1J154fIbNP4lMGL__4PL__KMawlfjak,1929
|
|
134
|
-
maxframe/dataframe/extensions/accessor.py,sha256=0OA8YPL3rofSvdU0z_1kMLImahrvow_vhxdQDYODki0,1497
|
|
135
|
-
maxframe/dataframe/extensions/apply_chunk.py,sha256=TIy0S4Jnis819OsHnQQH6gwPtxpxjRgV9u8JAv7Gfjs,23141
|
|
136
|
-
maxframe/dataframe/extensions/flatjson.py,sha256=_tpPzvG4H2-yoL8ms6uI1RdlYOsoaJ0w-9Dciz0isuQ,4499
|
|
137
|
-
maxframe/dataframe/extensions/flatmap.py,sha256=nZDwn31zSswATS5F57-Ix5kUst2-Z2uJ4-cS93Xhas4,10240
|
|
138
|
-
maxframe/dataframe/extensions/reshuffle.py,sha256=3pQEg0xu6d_OA0Rl-9UCHwLEggnqfhQw-pqz3dSIPJs,2718
|
|
139
|
-
maxframe/dataframe/extensions/tests/__init__.py,sha256=29eM5D4knhYwe3TF42naTuC5b4Ym3VeH4rK8KpdLWNY,609
|
|
140
|
-
maxframe/dataframe/extensions/tests/test_apply_chunk.py,sha256=tl1g12hIax4iMqPgHa6VSBiur9Y0X6-6KkOb-O_TrVk,6037
|
|
141
|
-
maxframe/dataframe/extensions/tests/test_extensions.py,sha256=P7iX7jwru7ZOnLDNCYdWcwR8A5aHytDlCLrmWNrcqVA,4921
|
|
142
|
-
maxframe/dataframe/fetch/__init__.py,sha256=W1arTCAjD0v_bdVeIzpJMnil3h0Ucsn29zFWmgZcYck,668
|
|
143
|
-
maxframe/dataframe/fetch/core.py,sha256=27VANjpMm2rdCg1KPZxWZrKWNuNgSMzZrordI05mqWc,3424
|
|
144
|
-
maxframe/dataframe/groupby/__init__.py,sha256=SZ7cZmmb4UrkQFFlWFRVEhQQ6wuyOv6Yz2LMHTp6FM8,3527
|
|
145
|
-
maxframe/dataframe/groupby/aggregation.py,sha256=E83_VqKLdlGB9IY7SXCAh-KL9AYV9mX54g2yymPknqM,12340
|
|
146
|
-
maxframe/dataframe/groupby/apply.py,sha256=QtS95LW1Q1i0QINjHGTj1dxyDEmSRB-_Eet8bqOsBkU,9886
|
|
147
|
-
maxframe/dataframe/groupby/core.py,sha256=3I2_Sg336hdrBmJLJdagmQKT4rIn3wjahbPTqld5p7o,6255
|
|
148
|
-
maxframe/dataframe/groupby/cum.py,sha256=T5fVdcy8XzLjrTE7NNqkwVgydg_aKM8xhlcWCsjsHwM,3806
|
|
149
|
-
maxframe/dataframe/groupby/fill.py,sha256=twmIAWZx5xGmXVfikaASTqwreGjevbLxake1wUkRdls,4952
|
|
150
|
-
maxframe/dataframe/groupby/getitem.py,sha256=vPorFrW2C7c1rJNSMmwmODd5B67IN0o5wOTW5e2GRrs,3513
|
|
151
|
-
maxframe/dataframe/groupby/head.py,sha256=idlO3MCVKgHYmLsBrPMsUpxt3Zbha07r_ZJXJZy5P3k,3371
|
|
152
|
-
maxframe/dataframe/groupby/sample.py,sha256=bM7xrF4dzAM8lA0gtkglEfmys1og27dwCm9UiFayJTU,7149
|
|
153
|
-
maxframe/dataframe/groupby/transform.py,sha256=DL7S0NBYj8LgKAstoDKacVMdLmZhFFGWtCZv5W0Vbi8,9085
|
|
154
|
-
maxframe/dataframe/groupby/tests/__init__.py,sha256=29eM5D4knhYwe3TF42naTuC5b4Ym3VeH4rK8KpdLWNY,609
|
|
155
|
-
maxframe/dataframe/groupby/tests/test_groupby.py,sha256=y-UowOVTtZWx_iusKDiIWNzuMM-SFTOCbOyvujytWys,12754
|
|
156
|
-
maxframe/dataframe/indexing/__init__.py,sha256=AkjowbPJu6kM4fJF5baU6g6FA7n2ux5__f4_2budLSs,3297
|
|
157
|
-
maxframe/dataframe/indexing/add_prefix_suffix.py,sha256=YMHFXnVcFsRJfVIOHlTWkOGCqzxWAJam3SXmIRjKGKk,3076
|
|
158
|
-
maxframe/dataframe/indexing/align.py,sha256=-kV91o_-pq7rFsv0zgnGZuEyn8HqyUK_Ejv4VWF5fps,12434
|
|
159
|
-
maxframe/dataframe/indexing/at.py,sha256=7Igb4I9_9drZSCZITFRNL3Q-7EI_mtfklUrnNP0apHo,2300
|
|
160
|
-
maxframe/dataframe/indexing/getitem.py,sha256=eS8dnlMEP2zaYvzYZFlBNfwjD89UqT0MRIlNuDcAJQc,7958
|
|
161
|
-
maxframe/dataframe/indexing/iat.py,sha256=gc9V2Ps8fvBFIgJbYTY3ZJmH54rv-dunZzJsY3Lns1s,1164
|
|
162
|
-
maxframe/dataframe/indexing/iloc.py,sha256=O4lCMV2Q0GtSM3_FbKY6rl_1WUGcae-H2wHvCVUGUG8,17987
|
|
163
|
-
maxframe/dataframe/indexing/insert.py,sha256=bvKdAswI688hOIaL9EvU7LnbjpELUdv5QS7rogSn_5U,2997
|
|
164
|
-
maxframe/dataframe/indexing/loc.py,sha256=cCl5SfGEOdl_im6F50w1JS4aPqqz-SQwlqvdy_Wez78,15388
|
|
165
|
-
maxframe/dataframe/indexing/reindex.py,sha256=v4Rd85aNfh3onzcFqOhdUjiLrDv9QuNtGh-OaWpnG-4,19699
|
|
166
|
-
maxframe/dataframe/indexing/rename.py,sha256=eXPW-a16JWhSUheN_KE3kqV3W4CMBqEoVHCyJauHaa4,13331
|
|
167
|
-
maxframe/dataframe/indexing/rename_axis.py,sha256=ugKcve4Kp8EuSmokQFUL-mVhGQ1cd6IDZ3UauHPiFeQ,6511
|
|
168
|
-
maxframe/dataframe/indexing/reset_index.py,sha256=_NFQZTjHzc_IgiqC-aqFJUfjneyJUN42-ujxGPfBVnQ,13524
|
|
169
|
-
maxframe/dataframe/indexing/sample.py,sha256=XrgzEugAL_WXJc_OkrWAugXUOIaqg3_OwWBp-hMee9U,8391
|
|
170
|
-
maxframe/dataframe/indexing/set_axis.py,sha256=ECRV5rRfbsKAQ90nEZVWCtGyu_0hN8ZPTmWNRGIJ0zo,5724
|
|
171
|
-
maxframe/dataframe/indexing/set_index.py,sha256=sJmXxBh-veIbf0LohLo69FSB2FTuYc0qOsyO7WQFX4k,4323
|
|
172
|
-
maxframe/dataframe/indexing/setitem.py,sha256=N82AVPJ6iENXNJx7m662jPp2HH-Sb5QZvuOIoDlQJ7w,5134
|
|
173
|
-
maxframe/dataframe/indexing/where.py,sha256=puKc4XR45KmJxCar8AwWbjJouEqYxW5-SdAWLuwCZ44,8875
|
|
174
|
-
maxframe/dataframe/indexing/tests/__init__.py,sha256=29eM5D4knhYwe3TF42naTuC5b4Ym3VeH4rK8KpdLWNY,609
|
|
175
|
-
maxframe/dataframe/indexing/tests/test_indexing.py,sha256=F0tHjhVTZyGrE2khpxGIAvFagLCqy_3mf8psIrRwAYc,16099
|
|
176
|
-
maxframe/dataframe/merge/__init__.py,sha256=PpWljZpJd6NxW8dOBcyp2taaWyTfdW426y3UNg_B0Fo,1161
|
|
177
|
-
maxframe/dataframe/merge/append.py,sha256=9CgzHZEdnJjDwzuzdTMhodJAeOJJuUVjYT4RMFOW4nI,4973
|
|
178
|
-
maxframe/dataframe/merge/concat.py,sha256=btiTTO-9j1cieS5dDwaccaY4MlfR0GMVzaBj78Xjqpo,12127
|
|
179
|
-
maxframe/dataframe/merge/merge.py,sha256=Vz0lgj9qRdqNyNrw-pPBEXgyobzWx4zvjQZmzOqgdcE,31268
|
|
180
|
-
maxframe/dataframe/merge/tests/__init__.py,sha256=29eM5D4knhYwe3TF42naTuC5b4Ym3VeH4rK8KpdLWNY,609
|
|
181
|
-
maxframe/dataframe/merge/tests/test_merge.py,sha256=e2H0c6LGGExZRJUNSWnvb0fapoUIW-pRoeVjqrL8dcQ,11599
|
|
182
|
-
maxframe/dataframe/misc/__init__.py,sha256=Lq82VMR4qWhYD1lYTbj8Wr7ndOh0CNATdOtlOikuZRQ,5401
|
|
183
|
-
maxframe/dataframe/misc/_duplicate.py,sha256=EYNv1_sKm14d91Gm4_Buxo7b5Tuy93MOvaq1TTAUkis,1516
|
|
184
|
-
maxframe/dataframe/misc/accessor.py,sha256=XtbMV6QrYb2m9oAd8swkFoKAq5mxj_QO0LVLVw5uJB4,10303
|
|
185
|
-
maxframe/dataframe/misc/apply.py,sha256=HAoIgCDn2RlDSj7WWN4SEjhVDfQ6mO_oJGktrwZSpxg,24182
|
|
186
|
-
maxframe/dataframe/misc/astype.py,sha256=9CO4BEW98Flqk7HHWScjxRK8EdeTRgQDYcyRwEnyIB0,8033
|
|
187
|
-
maxframe/dataframe/misc/case_when.py,sha256=ApjsHykW53a61Rfe034S0wT1X6lzWk5zYJ7vIsaiQIc,5002
|
|
188
|
-
maxframe/dataframe/misc/check_monotonic.py,sha256=LDltdmPq90fZn8A0ucqpNy0uswKo2hJx59Y4EHSN9l4,2506
|
|
189
|
-
maxframe/dataframe/misc/cut.py,sha256=dOKWwd1D2CYU9LVQvfonMrD8E2eGeBONZvWN1ArCfMM,14288
|
|
190
|
-
maxframe/dataframe/misc/datetimes.py,sha256=zR99O-8EKKWt4UtNdPI22K8N9mP9XSs9lDQLBPEmFlo,2582
|
|
191
|
-
maxframe/dataframe/misc/describe.py,sha256=PaddhvhKVZDkG6WuWGWi3LL7Vg8uny_3WzlVbdKZseQ,4478
|
|
192
|
-
maxframe/dataframe/misc/diff.py,sha256=j6C0PNb4eufB7ZU-mAXNNIC8y1wzHd6MHS-IWTz606E,5701
|
|
193
|
-
maxframe/dataframe/misc/drop.py,sha256=UDP1EWpHPa0tkpjvNPIcstAiWoMainCMcvV7wefH7RA,13469
|
|
194
|
-
maxframe/dataframe/misc/drop_duplicates.py,sha256=Y6D7_xqOCMq9r5BGJIaVVAeXlhbniO6GqGTq_3LTYdM,8716
|
|
195
|
-
maxframe/dataframe/misc/duplicated.py,sha256=w5aXwtDn5_ZbvnB0oCOoTE7EJQ6cdSnhTjL8SMci0Tw,8826
|
|
196
|
-
maxframe/dataframe/misc/eval.py,sha256=3UuqaMW0Pe6CRh82XtKiNNuWeJOyz_hzhzRZ2zqpBLQ,25091
|
|
197
|
-
maxframe/dataframe/misc/explode.py,sha256=aWQObjpxgPCCm87Lc1cavqotETz6xVLm8HSsPhM3n5k,5182
|
|
198
|
-
maxframe/dataframe/misc/get_dummies.py,sha256=fkoGya2HUVMlJviEfCy1toedfa_gOro_E0xrl-azGDg,7295
|
|
199
|
-
maxframe/dataframe/misc/isin.py,sha256=mqce_GgIkT390glXJ4jq4JEcRYhpbJNkN6tqP-8x078,7148
|
|
200
|
-
maxframe/dataframe/misc/map.py,sha256=v1kfqFgAb9bzKeim00MRGsm11awgUT97oDerbFbJGc4,8503
|
|
201
|
-
maxframe/dataframe/misc/melt.py,sha256=LoqZ45-J8WvXixtFEbEF1UCtZy4-E6loFtVdFghgt0A,5282
|
|
202
|
-
maxframe/dataframe/misc/memory_usage.py,sha256=3d6g2lAW7R4BV_vpUpn2-BFs9cwbEW03UH-6AEhmue0,8137
|
|
203
|
-
maxframe/dataframe/misc/pct_change.py,sha256=-T22ebhiTy7psZS9xE1087xKDuznasaNwoGXs5yYZPc,2584
|
|
204
|
-
maxframe/dataframe/misc/pivot_table.py,sha256=5HmAdczDMJbznFq2omuBKjjib0WvTrohXGwCtHAMwOY,9782
|
|
205
|
-
maxframe/dataframe/misc/qcut.py,sha256=kcYhSf6m47u5zIEPgG98nE3hv57e6uuCuJs_dxpcszE,3841
|
|
206
|
-
maxframe/dataframe/misc/select_dtypes.py,sha256=qsrWW8BNBd-hAT1yIlrnbvBjfbzZyttzch7bxKgRkCg,3248
|
|
207
|
-
maxframe/dataframe/misc/shift.py,sha256=HCGKBuToksgu5LZR_k5eaQrdyrXCeqRZYbZs0J5-N6s,9191
|
|
208
|
-
maxframe/dataframe/misc/stack.py,sha256=a3eWRUnFQ4okGUEirsdIq9taLfcRTCKnLfcXHg-sce8,8200
|
|
209
|
-
maxframe/dataframe/misc/string_.py,sha256=AaEfHcPAJWZ8Ug-zbD0gjaBfuFXWfHDXbrHQ1Kaqes4,8322
|
|
210
|
-
maxframe/dataframe/misc/to_numeric.py,sha256=VxYijzFTiUD9Jc62fE24tZ3iB8EVb9cBqZwvQFt2bHA,6440
|
|
211
|
-
maxframe/dataframe/misc/transform.py,sha256=8ZWuyPc2zVR47vmlux8ULeqMlJM6S9sMmAM4K9cEQX8,11549
|
|
212
|
-
maxframe/dataframe/misc/transpose.py,sha256=SsKRuN9Pj36D6kntnsLfzBsFHjSCiV1cZuPJuKHgbGU,3772
|
|
213
|
-
maxframe/dataframe/misc/value_counts.py,sha256=EpgfnbPbndrTKgTE_xgZGW-uHZDw1MIWQUF40oGGWUI,5384
|
|
214
|
-
maxframe/dataframe/misc/tests/__init__.py,sha256=29eM5D4knhYwe3TF42naTuC5b4Ym3VeH4rK8KpdLWNY,609
|
|
215
|
-
maxframe/dataframe/misc/tests/test_misc.py,sha256=FoQc5iaMQZfytgGlE0pV0O5pmI424ugY7bYKVvCqDVo,16979
|
|
216
|
-
maxframe/dataframe/missing/__init__.py,sha256=DQDpYqjvXN6o6TF76wJIpf1fZICOEJskljzwDNjN80k,1866
|
|
217
|
-
maxframe/dataframe/missing/checkna.py,sha256=_Rd-HRX7lTzMV3myu745tzoTB8WIqDIJu2TcT1SfdB0,7113
|
|
218
|
-
maxframe/dataframe/missing/dropna.py,sha256=at89SeMZxHZdmSFOInwtz7ap4g9Vy_4W4OK_Bj6DWpc,8520
|
|
219
|
-
maxframe/dataframe/missing/fillna.py,sha256=GIOayBXUBSQf6Enf8IR2UuVOvru3lR2SlXhiTLonM_w,9180
|
|
220
|
-
maxframe/dataframe/missing/replace.py,sha256=g9KqENIuuaFW33KIFXTClngWcVu2ttrGa28UwbtQJ8o,13779
|
|
221
|
-
maxframe/dataframe/missing/tests/__init__.py,sha256=29eM5D4knhYwe3TF42naTuC5b4Ym3VeH4rK8KpdLWNY,609
|
|
222
|
-
maxframe/dataframe/missing/tests/test_missing.py,sha256=zhsgn-yonyXYhlFZtH2OpXtvN0NLxFOZpU_vCumTCqA,3223
|
|
223
|
-
maxframe/dataframe/plotting/__init__.py,sha256=FlSQds0Rdv7CXo_PJFWErMO5KccKrxdLJO58h1IL6uk,1433
|
|
224
|
-
maxframe/dataframe/plotting/core.py,sha256=fgMSAJldKXGjRzj_qfN9QK1kaThqnv8wybJHSu8Y4qg,2311
|
|
225
|
-
maxframe/dataframe/plotting/tests/__init__.py,sha256=29eM5D4knhYwe3TF42naTuC5b4Ym3VeH4rK8KpdLWNY,609
|
|
226
|
-
maxframe/dataframe/plotting/tests/test_plotting.py,sha256=AZ4-C_ASyt3mD29ytsYa0Ut6gA2028ugCKfP9aLK448,4254
|
|
227
|
-
maxframe/dataframe/reduction/__init__.py,sha256=lJjZ9-YUgk57jEJXLY4-qk9-RWUbDXydBFMD75rJQTY,4445
|
|
228
|
-
maxframe/dataframe/reduction/aggregation.py,sha256=lml0t38fQs6Eh8zhhz_UGJf-WCl9_P-JgeeBF3Ujb1g,13011
|
|
229
|
-
maxframe/dataframe/reduction/all.py,sha256=enpOWffBNXAEgFSaiZm0KPwU3izMvWd7M8smLwZjaeE,2044
|
|
230
|
-
maxframe/dataframe/reduction/any.py,sha256=PensVOfgCcxu7u7-1OuMcD6gov2c2kN01B57O3eoHw8,2048
|
|
231
|
-
maxframe/dataframe/reduction/core.py,sha256=Ys8mP0-p0zRzND8LtsZLeyBkTDeteJFoSqJCbS330BQ,31232
|
|
232
|
-
maxframe/dataframe/reduction/count.py,sha256=YLx9bFb2IdnBIkTyApRad0x1yub6TmqncP6TzGcOL_Q,1800
|
|
233
|
-
maxframe/dataframe/reduction/cummax.py,sha256=S2iUhfBL2lKwFKhFIYMQxlE26pYroEYKG3cqmG0gIAs,1043
|
|
234
|
-
maxframe/dataframe/reduction/cummin.py,sha256=EWz1CUCQoTwxluvvQPtcNxWdIISr3bBaZPttB104Pdc,1043
|
|
235
|
-
maxframe/dataframe/reduction/cumprod.py,sha256=7aScVDnVhF1eWu4-sUuNrStsCv7M0yhMiVtIUEMDtMc,1048
|
|
236
|
-
maxframe/dataframe/reduction/cumsum.py,sha256=TKecIobleeyX7zW1wiquFkDtbgz0aQqiraAh1A9O93g,1043
|
|
237
|
-
maxframe/dataframe/reduction/custom_reduction.py,sha256=poT0UAoySRNKDOxMBZjwIIp5uHEFZUwRb3sghKUULBc,1477
|
|
238
|
-
maxframe/dataframe/reduction/kurtosis.py,sha256=50aClQAc6LJeSVF9P79T7clRhW1UdsqFU4M6e6x2mnc,2944
|
|
239
|
-
maxframe/dataframe/reduction/max.py,sha256=5psQPVpG8svyQ5Up7DJd5-yVPN11z4esa96ZWUTImYM,1725
|
|
240
|
-
maxframe/dataframe/reduction/mean.py,sha256=AzbTXfFInxaS7SIgthHcSgB-23uzM98NgLQm7NMVsg0,1673
|
|
241
|
-
maxframe/dataframe/reduction/median.py,sha256=LhXp75W-qv3YJ-soflC4XePwR6hUa_fSTZJaF6G1Aj8,1649
|
|
242
|
-
maxframe/dataframe/reduction/min.py,sha256=-F_ud2r3dVUUHVb0tv-haqkbeOW9ZVocC3CpRHfpuZo,1725
|
|
243
|
-
maxframe/dataframe/reduction/nunique.py,sha256=zbPh31s9BrSrMZetbzjpqsBDrhHQRfjUZCFmeUUKDCA,3608
|
|
244
|
-
maxframe/dataframe/reduction/prod.py,sha256=vtQKxInxcvli9bAktbWSQ5WPMqxxh2DZw4mG7quwXck,2125
|
|
245
|
-
maxframe/dataframe/reduction/reduction_size.py,sha256=Xj94n9WMCoqpRySn0ZDew8fMKiwgxjc6oI-ChYxD900,1156
|
|
246
|
-
maxframe/dataframe/reduction/sem.py,sha256=YRD3B8OU4DN25SfVynb9B1fnelAUTY32PDwxAxXASXc,1932
|
|
247
|
-
maxframe/dataframe/reduction/skew.py,sha256=pI60wCXoeFgAuJHUngA3mlWB6I-V9vUVU4F7DxQjbaw,2627
|
|
248
|
-
maxframe/dataframe/reduction/std.py,sha256=Nfk2EOXphaVgP7Vdv4XZ_jAWbdiYk7m1oEyCcALa-6Q,1408
|
|
249
|
-
maxframe/dataframe/reduction/str_concat.py,sha256=cX9wPfUGYW6ZF-QfagD1jBI8wLMHPRHRuAEn6aRSHoU,1705
|
|
250
|
-
maxframe/dataframe/reduction/sum.py,sha256=IYWEg-lKO6yYHEkUkMOJehCPcXrcvhaJ36ScI8D9kDE,2126
|
|
251
|
-
maxframe/dataframe/reduction/unique.py,sha256=sQts0dpyES_AmWk7CPJeDW7RnGXQ88HpS-gBpRL7Uzw,3045
|
|
252
|
-
maxframe/dataframe/reduction/var.py,sha256=WMBKa3r4fc4CmzjpG7w4JEZDUueMIwt9INa5AuoIyAI,2080
|
|
253
|
-
maxframe/dataframe/reduction/tests/__init__.py,sha256=29eM5D4knhYwe3TF42naTuC5b4Ym3VeH4rK8KpdLWNY,609
|
|
254
|
-
maxframe/dataframe/reduction/tests/test_reduction.py,sha256=DG0LfdtEhKtJCs1Q9ROrTp-jy-wBQT9BPNlP9E09ONU,18119
|
|
255
|
-
maxframe/dataframe/sort/__init__.py,sha256=57j5S4NVcmcgI5pKlEWEio3qbtxdUCFA3B9sP1QJafU,1194
|
|
256
|
-
maxframe/dataframe/sort/core.py,sha256=FxwuboZE5yuAtCCj7EWntuk_ueaMdM25JZKrArHY_yQ,1260
|
|
257
|
-
maxframe/dataframe/sort/sort_index.py,sha256=R7PiCuI7kmoWX4EsmyJyqciettWi4CJl6_RMKZdxrmI,5565
|
|
258
|
-
maxframe/dataframe/sort/sort_values.py,sha256=Zw_JEA3VOukd9HSpxqBeIcMgU4qtjrbCQ3vC-7jwGng,9003
|
|
259
|
-
maxframe/dataframe/sort/tests/__init__.py,sha256=29eM5D4knhYwe3TF42naTuC5b4Ym3VeH4rK8KpdLWNY,609
|
|
260
|
-
maxframe/dataframe/sort/tests/test_sort.py,sha256=2KwQP4eyAL7rflYrbei9ocU5oum3NjiGurWirR2GzHg,2685
|
|
261
|
-
maxframe/dataframe/statistics/__init__.py,sha256=gC4z9SHj8mG1EECYiMNeGPNF3aie1AOw8UATmiLG-bo,1117
|
|
262
|
-
maxframe/dataframe/statistics/corr.py,sha256=ufSCKpITCR8HnKc7osxnxDwg8hvptrcKOjIeKsF4eB4,9763
|
|
263
|
-
maxframe/dataframe/statistics/quantile.py,sha256=8tX0kGx5ql1PRQp4KNdoIro9O67EQ3lgTS-fzOww-g8,11855
|
|
264
|
-
maxframe/dataframe/statistics/tests/__init__.py,sha256=29eM5D4knhYwe3TF42naTuC5b4Ym3VeH4rK8KpdLWNY,609
|
|
265
|
-
maxframe/dataframe/statistics/tests/test_statistics.py,sha256=rgPAFBWnE8d1CLVXR2odkEdUpTlabZQO433eVRr48RM,2888
|
|
266
|
-
maxframe/dataframe/tests/__init__.py,sha256=29eM5D4knhYwe3TF42naTuC5b4Ym3VeH4rK8KpdLWNY,609
|
|
267
|
-
maxframe/dataframe/tests/test_initializer.py,sha256=qvlKFDcS9jvuT-l2_v64VcAGWTYoPIpP72HQo8bMf3E,2060
|
|
268
|
-
maxframe/dataframe/tests/test_utils.py,sha256=WGHrVuRxxCAZz-SS5ifVky7zDO8oEzx8IOrISa3YAFg,1878
|
|
269
|
-
maxframe/dataframe/tseries/__init__.py,sha256=29eM5D4knhYwe3TF42naTuC5b4Ym3VeH4rK8KpdLWNY,609
|
|
270
|
-
maxframe/dataframe/tseries/to_datetime.py,sha256=PAtSgFLpes87BwC9zdyj-caJEIeqMFREwyTMWZ9pJEI,11625
|
|
271
|
-
maxframe/dataframe/tseries/tests/__init__.py,sha256=29eM5D4knhYwe3TF42naTuC5b4Ym3VeH4rK8KpdLWNY,609
|
|
272
|
-
maxframe/dataframe/tseries/tests/test_tseries.py,sha256=jpIutbUp5GOiSL7k4XgF7Z99Ia7VgHghJUdJY03nWX4,1019
|
|
273
|
-
maxframe/dataframe/ufunc/__init__.py,sha256=0oKXArwhdI6TvyMamPN_UuW7dwe9plKXAYJX9JG2TD8,916
|
|
274
|
-
maxframe/dataframe/ufunc/tensor.py,sha256=wZzmrGgGZ1w2EaYjjfc-J6vKe6W8SLP9yFNGUtMLXSc,1672
|
|
275
|
-
maxframe/dataframe/ufunc/ufunc.py,sha256=lvHUhekjNn8eJZRfJRwk922j6QLQvIfrNWs41hJ-Vq0,1703
|
|
276
|
-
maxframe/dataframe/window/__init__.py,sha256=bQsgFdk801ezvU3Z4i-V-JGIOX-JzwsQk2JPrIdgPUc,939
|
|
277
|
-
maxframe/dataframe/window/aggregation.py,sha256=gTkI4ysG3Qd-pHiTI-aUWnsaGMZuk_gUhD8pZ-tZYko,3890
|
|
278
|
-
maxframe/dataframe/window/core.py,sha256=NKWQIao5dOI_3jL2Rzkgo_wdi36VCBIMWG4eRe1237M,2274
|
|
279
|
-
maxframe/dataframe/window/ewm.py,sha256=csPVRhHOTk2VP_I7WOuQMG6vlZtPXSij6A3Pe7H-who,8038
|
|
280
|
-
maxframe/dataframe/window/expanding.py,sha256=aYcylGOQHo67CnavmA_s9I4ZCw8gM7MOso0AW-jKfn4,4067
|
|
281
|
-
maxframe/dataframe/window/rolling.py,sha256=czrpdXbenldL-9tYc8ndRBf7KlzIIfP4jwmM5V-fwO8,12418
|
|
282
|
-
maxframe/dataframe/window/tests/__init__.py,sha256=29eM5D4knhYwe3TF42naTuC5b4Ym3VeH4rK8KpdLWNY,609
|
|
283
|
-
maxframe/dataframe/window/tests/test_ewm.py,sha256=v1hM2ucFH_8aRn8AJqWEpvvVtSK9QQUCs911N0trbX8,2130
|
|
284
|
-
maxframe/dataframe/window/tests/test_expanding.py,sha256=LMZjcLQug84Nai47WWl7jF-tTHcM5uYfNomQOHvU-nI,1982
|
|
285
|
-
maxframe/dataframe/window/tests/test_rolling.py,sha256=eJYHh4MhKm_e9h4bCnK_d_aAYlKGQtFAbZTTEILe6gU,1771
|
|
286
|
-
maxframe/io/__init__.py,sha256=29eM5D4knhYwe3TF42naTuC5b4Ym3VeH4rK8KpdLWNY,609
|
|
287
|
-
maxframe/io/objects/__init__.py,sha256=QswbXcyRmPgMPdYyRFcm4maLAMDbOK0i-OUdHyyAn4Y,778
|
|
288
|
-
maxframe/io/objects/core.py,sha256=rhEYmS8Ty_cqJfjvTiPU-KaUVnr9DwPSIZEaPMZDH2U,4717
|
|
289
|
-
maxframe/io/objects/tensor.py,sha256=NQaYIItNYaeM0EcJ6TFejNWSSpXKSJjb6eI_ZKzXf6w,2749
|
|
290
|
-
maxframe/io/objects/tests/__init__.py,sha256=29eM5D4knhYwe3TF42naTuC5b4Ym3VeH4rK8KpdLWNY,609
|
|
291
|
-
maxframe/io/objects/tests/test_object_io.py,sha256=9SSR8XCDoFIuAj6kafRQ9fKW68pvg8pT2gmqFY8BIfk,3899
|
|
292
|
-
maxframe/io/odpsio/__init__.py,sha256=7n5ZtsGR4f7B8yA7YPQodd1g6ecvjg5P4baomogUgsA,940
|
|
293
|
-
maxframe/io/odpsio/arrow.py,sha256=PRZb1hMDcN1yRT8WmZNFI-YCwkj3kxyNryTwLgNsUyE,6073
|
|
294
|
-
maxframe/io/odpsio/schema.py,sha256=HRlz_RqiN86pW6kV2jh-fcrrwRPLfkZtWmUHTTVLVrs,13367
|
|
295
|
-
maxframe/io/odpsio/tableio.py,sha256=vDRJW5rELwSC2aB3L4LbCNMFtBE27ZG7SxpK97m6V5U,23116
|
|
296
|
-
maxframe/io/odpsio/volumeio.py,sha256=L-lp6vVGSASmpnsVtA1IC-j5iEOLXEUzXnr82bByveE,3035
|
|
297
|
-
maxframe/io/odpsio/tests/__init__.py,sha256=29eM5D4knhYwe3TF42naTuC5b4Ym3VeH4rK8KpdLWNY,609
|
|
298
|
-
maxframe/io/odpsio/tests/test_arrow.py,sha256=yeDWFzsm2IMS-k6jimlQ7uim5T6WW1Anuy8didaf4cs,3194
|
|
299
|
-
maxframe/io/odpsio/tests/test_schema.py,sha256=1eXjkUvzpNBcyaPhBbbTiIH-3LVi_ghYoVR25Fk8xqM,13622
|
|
300
|
-
maxframe/io/odpsio/tests/test_tableio.py,sha256=UYgK1uLLvtMLL1MquwMRnk02k5QlHyG3m0vACZ4msl8,5909
|
|
301
|
-
maxframe/io/odpsio/tests/test_volumeio.py,sha256=pqi3TFBW_bb66cp2aAcpgj8I2Iq7c6V-vQP1zxHzHiY,3684
|
|
302
|
-
maxframe/learn/__init__.py,sha256=1QzrFCJmdZFy0Nh1Ng3V6yY_NVvoSUdTIqcU-HIa1wk,649
|
|
303
|
-
maxframe/learn/core.py,sha256=jQVOXTFond0ia9IdvObCV5MBpIgjPuxFSzyeg5AB11A,782
|
|
304
|
-
maxframe/learn/contrib/__init__.py,sha256=OJjHCf0jCVDVIEZaI4m-dW-0EvGky1XOsUWDM-9iegs,681
|
|
305
|
-
maxframe/learn/contrib/utils.py,sha256=e4E-QLr7SAhCBTUX246SBpi9DtRNQAE-xOUxvNnFzZY,1714
|
|
306
|
-
maxframe/learn/contrib/graph/__init__.py,sha256=Hy6k8OzCgLRiLPgSElIj4O4r_mttA9AvhpmXPofmvFo,667
|
|
307
|
-
maxframe/learn/contrib/graph/connected_components.py,sha256=KJXeRsxWBP4piViSOhST3M4OO81jCf73acMRg9NA1no,7367
|
|
308
|
-
maxframe/learn/contrib/graph/tests/__init__.py,sha256=29eM5D4knhYwe3TF42naTuC5b4Ym3VeH4rK8KpdLWNY,609
|
|
309
|
-
maxframe/learn/contrib/graph/tests/test_connected_components.py,sha256=HLBJ6m7V8KHkOjsUhjePdUbnvykVGpgdiegvGpyLBpM,1662
|
|
310
|
-
maxframe/learn/contrib/llm/__init__.py,sha256=Qzg4KdiX4_J6TeK5sqFVflsft3MrVGgtfwhpU0ZQDv8,664
|
|
311
|
-
maxframe/learn/contrib/llm/core.py,sha256=Rxc4MOLs2RCjae4PurcPcKc3D5xH5ZOF6SE7YCNAIIw,2060
|
|
312
|
-
maxframe/learn/contrib/llm/multi_modal.py,sha256=PfOqxUP203yGS30ihvFi32LnOmlknOglmxW91PLKkjg,1488
|
|
313
|
-
maxframe/learn/contrib/llm/text.py,sha256=zepjRsbN2wC4l8MnXAqcXrqSTGGtHDbGvG8wPlBtfLQ,1464
|
|
314
|
-
maxframe/learn/contrib/llm/models/__init__.py,sha256=7D9JZSIHuOW99WjOg1M10JGLqj6pCNR1_uoBUlzDqE8,674
|
|
315
|
-
maxframe/learn/contrib/llm/models/dashscope.py,sha256=uIurDki5v8t6GBPeHluUtHPhOhrmckQD8A11ogTDRBg,2371
|
|
316
|
-
maxframe/learn/contrib/pytorch/__init__.py,sha256=a60NZy-COXEFgyC0uXJRBZGi-Vd9HZcqX62bKAMPKaM,703
|
|
317
|
-
maxframe/learn/contrib/pytorch/run_function.py,sha256=aQQhy2Bc6EEe-NVZb17hK4I9_TqIM1uI3fIMihY3TSQ,3354
|
|
318
|
-
maxframe/learn/contrib/pytorch/run_script.py,sha256=FOBXdJ9Q5QOirGGXq8_XwpwrTpDEmWt45-9n4VR_ixI,3213
|
|
319
|
-
maxframe/learn/contrib/pytorch/tests/__init__.py,sha256=29eM5D4knhYwe3TF42naTuC5b4Ym3VeH4rK8KpdLWNY,609
|
|
320
|
-
maxframe/learn/contrib/pytorch/tests/test_pytorch.py,sha256=GHP-oD5uMU8LD90Jt2cHbYRDdM5efjzsjpeBkc3t_qE,1444
|
|
321
|
-
maxframe/learn/contrib/xgboost/__init__.py,sha256=vk9xZO_FUwyVCrcLP1dbEz6JCZQBEHsmhGr1uQ45FAI,925
|
|
322
|
-
maxframe/learn/contrib/xgboost/classifier.py,sha256=iJtEryJbi06gOeWzy9tguhDUGjD2LquUHtCjgaGXW24,3996
|
|
323
|
-
maxframe/learn/contrib/xgboost/core.py,sha256=p6SXqBzWjY5VzqkqOoMu-O9TBcQ3UHlddcsbEoTBXaE,8276
|
|
324
|
-
maxframe/learn/contrib/xgboost/dmatrix.py,sha256=acXkK8Ab6vT1DVb3ZtpeUdzNfVbOtrsCSdXrluQGN70,4889
|
|
325
|
-
maxframe/learn/contrib/xgboost/predict.py,sha256=aRtTMF1OODvrh9kQnDJK0mx0bLTZEVKB1O-nt6eVZ6M,3877
|
|
326
|
-
maxframe/learn/contrib/xgboost/regressor.py,sha256=0_GNVJFfkYmXJtG1eIUrwLOtr6HNNfkjKoBymLvd388,2384
|
|
327
|
-
maxframe/learn/contrib/xgboost/train.py,sha256=Mp0t7kyNGYgn6uKJf9Nesof5VuoUe6mg7g1sFpFZwfY,4660
|
|
328
|
-
maxframe/learn/contrib/xgboost/tests/__init__.py,sha256=29eM5D4knhYwe3TF42naTuC5b4Ym3VeH4rK8KpdLWNY,609
|
|
329
|
-
maxframe/learn/contrib/xgboost/tests/test_core.py,sha256=qNSXaB1t1vpoCD6RfpnFjJZHS8ShW9O_uz0ucXXlfpE,1449
|
|
330
|
-
maxframe/learn/utils/__init__.py,sha256=w2_QpDZ9J5BcSgbqu8P2RlkVRWC2gLowfgsaDPtz_Pg,661
|
|
331
|
-
maxframe/learn/utils/core.py,sha256=WNDISxPFsWmjkwHwEvjVGCkAOkIftqzEQFPA_KWr7FY,1058
|
|
332
|
-
maxframe/lib/__init__.py,sha256=_PB28W40qku6YiT8fJYqdmEdRMQfelOwGeksCOZJfCc,657
|
|
333
|
-
maxframe/lib/compression.py,sha256=QQpNK79iUC9zck74I0HKMhapSRnLBXtTRyS91taEVIc,1497
|
|
334
|
-
maxframe/lib/functools_compat.py,sha256=2LTrkSw5i-z5E9XCtZzfg9-0vPrYxicKvDjnnNrAL1Q,2697
|
|
335
|
-
maxframe/lib/mmh3.cp39-win_amd64.pyd,sha256=LIc2of9AIzhDTKf6WnEh6WALf6014ng-itzq7TPG2ws,17920
|
|
336
|
-
maxframe/lib/mmh3.pyi,sha256=pkzO6SUUukCty3X-WFsuokWBtIPWyxEa06ypF9liruI,1537
|
|
337
|
-
maxframe/lib/version.py,sha256=VOVZu3KHS53YUsb_vQsT7AyHwcCWAgc-3bBqV5ANcbQ,18941
|
|
338
|
-
maxframe/lib/wrapped_pickle.py,sha256=Akx-qhMMJJ6VVzQYrcVO_umFjx0IR-Yzb1XqyOS1Mio,3976
|
|
339
|
-
maxframe/lib/aio/__init__.py,sha256=xzIYnV42_7CYuDTTv8svscIXQeJMF0nn8AXMbpv173M,963
|
|
340
|
-
maxframe/lib/aio/_runners.py,sha256=zhDC92KxrYxLEufo5Hk8QU-mTVOxNL7IM9pZXas_nDg,5367
|
|
341
|
-
maxframe/lib/aio/_threads.py,sha256=cDaEKg5STncq9QTPUUwehJ722vgueqBoB1C-NeoHN8E,1363
|
|
342
|
-
maxframe/lib/aio/base.py,sha256=Ol0MnkcsBRfsQdZWceYfaWVtNOuiHzY8EYo2Zh0QFvM,2240
|
|
343
|
-
maxframe/lib/aio/file.py,sha256=uy2LM_U8-Snpf45yZqUQRR_0hZT5UXZnwq0qENpMI6k,2097
|
|
344
|
-
maxframe/lib/aio/isolation.py,sha256=wIliQ1qFtGV_cZ4stE21QHKUVtq7j88m7ZuZF8Ye2iE,2861
|
|
345
|
-
maxframe/lib/aio/lru.py,sha256=hZ0QY8VWhZr06B11YqjEONKcjySP7oKaa-p9evwnxZY,7133
|
|
346
|
-
maxframe/lib/aio/parallelism.py,sha256=Q3dXir6wr5vG2SmVSz0n6BdH7d5mhMTohfeFs5JDTtU,1272
|
|
347
|
-
maxframe/lib/aio/tests/__init__.py,sha256=29eM5D4knhYwe3TF42naTuC5b4Ym3VeH4rK8KpdLWNY,609
|
|
348
|
-
maxframe/lib/aio/tests/test_aio_file.py,sha256=6A4vKuhskd7RxHvHh40FYtv_fUbzZl6RWxSZ3bNLwbM,1713
|
|
349
|
-
maxframe/lib/cython/__init__.py,sha256=29eM5D4knhYwe3TF42naTuC5b4Ym3VeH4rK8KpdLWNY,609
|
|
350
|
-
maxframe/lib/cython/libcpp.pxd,sha256=Mk1_rVhs6n9PeqI-uQ2mU-IWvUwvbJpDSRcNmLiDpQA,1130
|
|
351
|
-
maxframe/lib/filesystem/__init__.py,sha256=b1a3mOvdsyR6o7hysERuuHUUINCg0W6u681hPnaVrHs,855
|
|
352
|
-
maxframe/lib/filesystem/_glob.py,sha256=F16FvyK_plcE0fefxJ-I-xNuqJyBSJMXmaKGpJUtO3E,6708
|
|
353
|
-
maxframe/lib/filesystem/arrow.py,sha256=ECuWn_s8BPqbUuKonLuwK81hhMjVv0cpxGH0HovadPg,8647
|
|
354
|
-
maxframe/lib/filesystem/base.py,sha256=vWUbkdwfJ9zRphD3QlpBCy4KWQKNFNRN8xKjXaQRlDI,6897
|
|
355
|
-
maxframe/lib/filesystem/core.py,sha256=qJvf-O7JI6_1KEz3q8TiEtiJJCpF7QnmOq1W2KT20qE,3027
|
|
356
|
-
maxframe/lib/filesystem/fsmap.py,sha256=JyII5cEfN0kgIRfDno4allI_f-64poFtwGD3x34aS-A,5426
|
|
357
|
-
maxframe/lib/filesystem/hdfs.py,sha256=JP62U15jUFCbXiNUJHRN99eLko7c6-nqblPJ4MgiSPY,1096
|
|
358
|
-
maxframe/lib/filesystem/local.py,sha256=35lUVlOd1nSejfbO4fDdqWGcPIgE_l-OTtlPJ1nJXh0,3700
|
|
359
|
-
maxframe/lib/filesystem/oss.py,sha256=5d-waZptW3FTFvd00OgtyQXHJyGUsHTMytWWsHczWDw,5174
|
|
360
|
-
maxframe/lib/filesystem/_oss_lib/__init__.py,sha256=29eM5D4knhYwe3TF42naTuC5b4Ym3VeH4rK8KpdLWNY,609
|
|
361
|
-
maxframe/lib/filesystem/_oss_lib/common.py,sha256=OL9EeTNjHJ2b8q5jBUIOheRIMPtySmrtMypJHk9k-mo,6813
|
|
362
|
-
maxframe/lib/filesystem/_oss_lib/glob.py,sha256=U7mm9B71VQ4-L-l8F5GB2O8z_8y2L8GGa7i9a2zOMIY,4984
|
|
363
|
-
maxframe/lib/filesystem/_oss_lib/handle.py,sha256=V8ZmJncVUfvscle5-ocH1nqkwZTlTV9Nqx4orNW5opE,4998
|
|
364
|
-
maxframe/lib/filesystem/tests/__init__.py,sha256=29eM5D4knhYwe3TF42naTuC5b4Ym3VeH4rK8KpdLWNY,609
|
|
365
|
-
maxframe/lib/filesystem/tests/test_filesystem.py,sha256=NLzhGxgWdHvZkeDiCatNti8Fmj6w2IAMkXk0D1VjNsM,7571
|
|
366
|
-
maxframe/lib/filesystem/tests/test_oss.py,sha256=08YjJms5fP6QWhhOLZQmQ4F37dIXbSssEtk5XjkR1b4,6076
|
|
367
|
-
maxframe/lib/mmh3_src/MurmurHash3.cpp,sha256=3aoHr2GNYsXizcf4DosqiMmZvy8l9Jxt3pAkYHr90Cg,8435
|
|
368
|
-
maxframe/lib/mmh3_src/MurmurHash3.h,sha256=JgEfh0M_o4gHt2mtzv9sQIQyEqs8ZutkDaPO2L3UwGU,1306
|
|
369
|
-
maxframe/lib/mmh3_src/mmh3module.cpp,sha256=bEBXHjhQuXceV6MFyNvs-YG4WUKt5Us_kmgrOKQw7Qk,11991
|
|
370
|
-
maxframe/lib/sparse/__init__.py,sha256=qLhZhAboHmYKwA1KtIY7ghl1qm3jZ4Uhh9YcWn1I_ps,18919
|
|
371
|
-
maxframe/lib/sparse/array.py,sha256=ZivM_8mlaUs6gbiV7lEJgLaWSnENa1zLnTxt1cbLdlA,54465
|
|
372
|
-
maxframe/lib/sparse/core.py,sha256=HZqTRHykQQyBvzNPg8B70S9YZPF1oCyB6ZhqZgv7Gro,2248
|
|
373
|
-
maxframe/lib/sparse/matrix.py,sha256=PRCE6kb-CsAry6iPU_yq4MiydjERejRjvdcms2YkfeY,7395
|
|
374
|
-
maxframe/lib/sparse/vector.py,sha256=mcjcQbMDtBXKj2J0_dh1BjeTWGUZNtPr0PQiDgv67Jw,4959
|
|
375
|
-
maxframe/lib/sparse/tests/__init__.py,sha256=_PB28W40qku6YiT8fJYqdmEdRMQfelOwGeksCOZJfCc,657
|
|
376
|
-
maxframe/lib/sparse/tests/test_sparse.py,sha256=De1A9gkk4pY4_cYDLXQdlGpDXTKe8B5Ij-qKFKcMSvo,15785
|
|
377
|
-
maxframe/lib/tblib/LICENSE,sha256=UV8te2W7BnvQ7rMYp9I2IjrJ7C79BfoIV82EXAK2ACU,1350
|
|
378
|
-
maxframe/lib/tblib/__init__.py,sha256=6QQyWUaDhJwfGikR0g8ij-seILLevfOjBBedxmfwaD4,10205
|
|
379
|
-
maxframe/lib/tblib/cpython.py,sha256=KY4eqJ5Oohbq2xHfWitd7p80S8SkMhiB0OWFRpulJQA,2501
|
|
380
|
-
maxframe/lib/tblib/decorators.py,sha256=377HT3gnD9B2dcxw75pHM17--ABkcgi_GQGmdA_MiJI,1107
|
|
381
|
-
maxframe/lib/tblib/pickling_support.py,sha256=D9A0eX7gJeyqhXWxJJZ1GRwwcc5lj86wBRh0tmo6GHk,3025
|
|
382
|
-
maxframe/lib/tests/__init__.py,sha256=29eM5D4knhYwe3TF42naTuC5b4Ym3VeH4rK8KpdLWNY,609
|
|
383
|
-
maxframe/lib/tests/test_wrapped_pickle.py,sha256=WV0EJQ1hTSp8xjuosWWtEO7PeiBqdDUYgStxp72_c94,1575
|
|
384
|
-
maxframe/remote/__init__.py,sha256=Yu1ZDLICbehNfd1ur7_2bnIn2VFIsTxH_cILCbHAeZY,747
|
|
385
|
-
maxframe/remote/core.py,sha256=ELCUvg-_ZdTax_exFqm6-XWUXukT5qalKYBeDB-mV0k,6733
|
|
386
|
-
maxframe/remote/run_script.py,sha256=k93-vaFLUanWoBRai4-78DX_SLeZ8_rbbxcCtOIXZO8,3677
|
|
387
|
-
maxframe/serialization/__init__.py,sha256=UmDfKNohvk3StL-87QYmQTcQ2g6dRHSk49VFQS73VB0,963
|
|
388
|
-
maxframe/serialization/arrow.py,sha256=OMeDjLcPgagqzokG7g3Vhwm6Xw1j-Kph1V2QsIwi6dw,3513
|
|
389
|
-
maxframe/serialization/core.cp39-win_amd64.pyd,sha256=aYOw3-KDHkK_3ltxoUElM4cjwYCs7r1gybVhe_UcNoo,411136
|
|
390
|
-
maxframe/serialization/core.pxd,sha256=KioRiFhr5DTuqXnS2imJ3djWfSv2IAmhnz-kAFPgU6A,1548
|
|
391
|
-
maxframe/serialization/core.pyi,sha256=ELDG44v8O7A7RfURExMfVEJENuaEYHTwgJ-vzlH2Vh4,2206
|
|
392
|
-
maxframe/serialization/core.pyx,sha256=TKEAyaJJAUV20vR_uI93jA6B8mhTt7uoOtMdw0vL5q4,36686
|
|
393
|
-
maxframe/serialization/exception.py,sha256=noFTo9iwQje8Q0XnJV21J6bkbYahyoFLQSdl-OXNRIs,3079
|
|
394
|
-
maxframe/serialization/maxframe_objects.py,sha256=ZHyvxIALoPuB_y3CRc70hZXyfdj4IhaKMXUEYLXHQag,1404
|
|
395
|
-
maxframe/serialization/numpy.py,sha256=ENrFKl24mtYyO1vZRLwHvMD0r4z_UI7J2-yNlmfWSdk,3304
|
|
396
|
-
maxframe/serialization/pandas.py,sha256=PMp999KR9xnTFSgRTgepbsD7nGfObNwaYeK4UGJ_T4U,8725
|
|
397
|
-
maxframe/serialization/scipy.py,sha256=fGwQ5ZreymrMT8g7TneATfFdKFF7YPNZQqgWgMa3J8M,2498
|
|
398
|
-
maxframe/serialization/serializables/__init__.py,sha256=rlQhIaSAVzz4KYkc5shEHFZDPd6WDMPkxalU76yjJ3M,1406
|
|
399
|
-
maxframe/serialization/serializables/core.py,sha256=1YjMfOi3kOCcOaiax1v8ScfXn7gwol70JwXcouaMj5w,17972
|
|
400
|
-
maxframe/serialization/serializables/field.py,sha256=DVott3HAbne4UvN-heSFS9gSl0wCxV5RssS738FCjzk,16639
|
|
401
|
-
maxframe/serialization/serializables/field_type.py,sha256=NtzY4Zi87futV3Er3tD1qK8UpI7MXOC09h2Uipq9RRA,15525
|
|
402
|
-
maxframe/serialization/serializables/tests/__init__.py,sha256=29eM5D4knhYwe3TF42naTuC5b4Ym3VeH4rK8KpdLWNY,609
|
|
403
|
-
maxframe/serialization/serializables/tests/test_field_type.py,sha256=uG87-bdG8xGmjrubEHCww1ZKmRupSvnNKnZoV2SnwYM,4502
|
|
404
|
-
maxframe/serialization/serializables/tests/test_serializable.py,sha256=CfzLa635DR-9xMdNaGhWohzoICFs3pyKCljPYDQEkr4,10568
|
|
405
|
-
maxframe/serialization/tests/__init__.py,sha256=29eM5D4knhYwe3TF42naTuC5b4Ym3VeH4rK8KpdLWNY,609
|
|
406
|
-
maxframe/serialization/tests/test_serial.py,sha256=D1cCXylizxdQm6tBwVSVDs7v8ZZJokv7jHN_-nrqf7U,12956
|
|
407
|
-
maxframe/tensor/__init__.py,sha256=3XN24f4B0eBroWt7XW33_vJCXlbcJj83zgnmAJpz1dQ,4910
|
|
408
|
-
maxframe/tensor/array_utils.py,sha256=xr_Ng-4dETJFjsMfWi5gbTPM9mRmPvRWj8QY2WKjmCg,5129
|
|
409
|
-
maxframe/tensor/core.py,sha256=YE1if5ofQft725nhsfRFCF_S1xxjf7xk_ETfznGZzP0,18538
|
|
410
|
-
maxframe/tensor/operators.py,sha256=bmnL2EIIC28tlTB5SwQc5sunIkhPz8KBvSQHxbACqZg,3455
|
|
411
|
-
maxframe/tensor/utils.py,sha256=6HENWGkcwHe7t8IOAyyJ4m7pZt--S1Q1IOfz0oUZt6A,23109
|
|
412
|
-
maxframe/tensor/arithmetic/__init__.py,sha256=SUlcG0Mf9ddgxAdydenuJ9eY5yVu0TgKfpBujI3OX4w,9695
|
|
413
|
-
maxframe/tensor/arithmetic/abs.py,sha256=WQO9CxiI-u_gtXNOX1AIcL4Dak-NliK0YDjdOi9sHtc,2248
|
|
414
|
-
maxframe/tensor/arithmetic/absolute.py,sha256=GSIA5UySoSbGlgcjK8sChurEMATFz2cwdfJ7wAjqotc,2278
|
|
415
|
-
maxframe/tensor/arithmetic/add.py,sha256=v5EB6daYuHiUVk4dsz_gy5JP6IbAWHNtNhbW9Ng-KeU,2649
|
|
416
|
-
maxframe/tensor/arithmetic/angle.py,sha256=YuwJxmQn9oIP4crRj7bOHonvQXBkXH4TewZH2IydzPM,2209
|
|
417
|
-
maxframe/tensor/arithmetic/arccos.py,sha256=05Hu1QnKH6cIcocTT8PCrkhIqF2KDKXgFvZpuHMJLjY,3616
|
|
418
|
-
maxframe/tensor/arithmetic/arccosh.py,sha256=GM0Rx5vfSvWw4lpfC-bJq-cWZN7ZALoFWmfETCHw4SQ,3115
|
|
419
|
-
maxframe/tensor/arithmetic/arcsin.py,sha256=wdTgGTFlehZGCOd_c-p6FHiMW244qIYeTbQdZwZsbG8,3338
|
|
420
|
-
maxframe/tensor/arithmetic/arcsinh.py,sha256=26weERPCynvD51LawXIzYeAghlriXoRxXXJvqSDbric,3117
|
|
421
|
-
maxframe/tensor/arithmetic/arctan.py,sha256=49RvRUbdBOgcvsX2P4vhn0avyw1goK4kPGXf1mgE9dg,3668
|
|
422
|
-
maxframe/tensor/arithmetic/arctan2.py,sha256=yZR4nHxDH_ZOJYsgJJjQpAlUHtbPLByLAOBcGWYxsj8,4571
|
|
423
|
-
maxframe/tensor/arithmetic/arctanh.py,sha256=3o2OsOlgor_-cwe4Jw8ear_DDgWpllr_DQ4FAPyn2zs,3095
|
|
424
|
-
maxframe/tensor/arithmetic/around.py,sha256=8bnCk97xojI2489dak8V2bukVeF31QOZ5qpLtU4CZAw,3940
|
|
425
|
-
maxframe/tensor/arithmetic/bitand.py,sha256=Cb4RnKd-uTlrEaN7wcGEKzcIx2WRpU4SOYdpo9Z24kE,3012
|
|
426
|
-
maxframe/tensor/arithmetic/bitor.py,sha256=ZwGv0pfNPE8NGHRKHF-H8EasdaDvMADbXqB6-0wbYG0,3414
|
|
427
|
-
maxframe/tensor/arithmetic/bitxor.py,sha256=Hmda4KuTjMuSOeMFZHVdL0M-bgvYbehoka1yG5Sbrr0,3003
|
|
428
|
-
maxframe/tensor/arithmetic/cbrt.py,sha256=uolTX40jnt_WBhgRVjz8AuQ2t9yih-4_eOdnwFHUyQs,2181
|
|
429
|
-
maxframe/tensor/arithmetic/ceil.py,sha256=zaQNzczwhxUdUDi96HWzTydNAcUJ-X3Ka7WuiEuhzc4,2323
|
|
430
|
-
maxframe/tensor/arithmetic/clip.py,sha256=gsZ4DLuerSwN_gRklkoWmJq5s6H-GRNcy8Ev6rbeUPI,5680
|
|
431
|
-
maxframe/tensor/arithmetic/conj.py,sha256=dsPV0ZfX9Hjgdo8TWquTgRu029WQ1-Kxlp-tyndmZbc,2301
|
|
432
|
-
maxframe/tensor/arithmetic/copysign.py,sha256=go1nI6uhb8H9s8YfDymEKFhvraxsyLwa8S8QbHCG__g,2583
|
|
433
|
-
maxframe/tensor/arithmetic/core.py,sha256=_Dr3i2Asje4_YEa8Dybrv5sL7iORuKJrPEbkYKwSc0Q,17859
|
|
434
|
-
maxframe/tensor/arithmetic/cos.py,sha256=77jTvcUGMKcO0hOh8tEu7cV-XnD0TV2V6lvexBsaB7U,2815
|
|
435
|
-
maxframe/tensor/arithmetic/cosh.py,sha256=YpOstp-lf9XK_PnTfcFiCEroVbhdvo5vT5GaYy-NXu8,2290
|
|
436
|
-
maxframe/tensor/arithmetic/deg2rad.py,sha256=yWBUkEDi7Qqeo96kc93EyQTMfde6SdYTuema5RsuYkM,2243
|
|
437
|
-
maxframe/tensor/arithmetic/degrees.py,sha256=GtWfQbCCYRFXIMQqWEHDHDwBGAxT7PRMTKzY4i3d0M0,2452
|
|
438
|
-
maxframe/tensor/arithmetic/divide.py,sha256=cT3PTsUwky0bbH9alZvetgXzuwz6YAOss2wgktLs64Y,3824
|
|
439
|
-
maxframe/tensor/arithmetic/equal.py,sha256=NGlvHKLw_6m1Hjv67TQAENGb5RLtpLy_RrPQ1FybxeQ,2469
|
|
440
|
-
maxframe/tensor/arithmetic/exp.py,sha256=gSLz0MFy1iUz-1R5xfKgRMC_jalvaIFW21FnQrZGiS0,3889
|
|
441
|
-
maxframe/tensor/arithmetic/exp2.py,sha256=bKDzo_rLM4WfIWjhvY7B0z-GFulqJeQxOWCb7Mo7AWI,2064
|
|
442
|
-
maxframe/tensor/arithmetic/expm1.py,sha256=_Poo3vLtzmO-AylMLY-NnL_wntYUK2OkSoxFUHZV6-Q,2500
|
|
443
|
-
maxframe/tensor/arithmetic/fabs.py,sha256=9sxs7WmquTSdHlpcluNd8X1NCJraQ_8XWw30ZOfPuDY,2504
|
|
444
|
-
maxframe/tensor/arithmetic/fix.py,sha256=7rJMj4V3-i_IKzedFID6T2NqW1EfiAPCyt8V8fDisFc,1829
|
|
445
|
-
maxframe/tensor/arithmetic/float_power.py,sha256=xFQaZxCzr1iMu-zV-w1bgITFDjWQK4FV2qpOkvncHVE,3467
|
|
446
|
-
maxframe/tensor/arithmetic/floor.py,sha256=42ursQ803rRxeYFGhBWbvBuW52UzO6wKZB1sO_WkqsQ,2519
|
|
447
|
-
maxframe/tensor/arithmetic/floordiv.py,sha256=qT8i0TqVgoNSPxsHdBCJxY-jwwnqOzB5VtT60Ocd-OY,3081
|
|
448
|
-
maxframe/tensor/arithmetic/fmax.py,sha256=eoe8M6RpsH08Tgw3xU-QhED3Kn-uYVGMtaP8Tg0A3DY,3679
|
|
449
|
-
maxframe/tensor/arithmetic/fmin.py,sha256=nzIgoIxbH0f4JR6mnJlFHSxxstvOd1hzkCLhrFuJGIQ,3673
|
|
450
|
-
maxframe/tensor/arithmetic/fmod.py,sha256=FF2r3ZcsuEApApj4SZfeYxylgJv7a5cCo3viQ0cqt9w,3311
|
|
451
|
-
maxframe/tensor/arithmetic/frexp.py,sha256=jYdkTA0163J2CmBfVHqX6U4Reoj5oL3MhEMqSIjMlsQ,3238
|
|
452
|
-
maxframe/tensor/arithmetic/greater.py,sha256=irwpqVNJW7UNdBXpEr8GkafIZ2Vyedbub3i_2EHmFmo,2532
|
|
453
|
-
maxframe/tensor/arithmetic/greater_equal.py,sha256=ac9hgIfjHG_BSXiBZRLbnzeBMT-SUGHHoLk2apaRr54,2373
|
|
454
|
-
maxframe/tensor/arithmetic/hypot.py,sha256=mm0RQsKrLaC2rzW-qVNT_De_YKueNKB5lhD1mht46iQ,2598
|
|
455
|
-
maxframe/tensor/arithmetic/i0.py,sha256=FlsRK-63SoNbN0R8qCUGYbD0LfdfetBBzZndya3LYg0,3000
|
|
456
|
-
maxframe/tensor/arithmetic/imag.py,sha256=lCSlPCVL5HKalujl8ae4Msgtilgy9xiESt4GFjWY4gU,1835
|
|
457
|
-
maxframe/tensor/arithmetic/invert.py,sha256=DSFgIzY5xJCVmRXzjyADiNnAgc9RpYVzNwWOf1bQiTQ,3572
|
|
458
|
-
maxframe/tensor/arithmetic/isclose.py,sha256=1p_gcUJmk1xtrofAVR4-yVqrKggywqQkdzLBrgOlK_I,3811
|
|
459
|
-
maxframe/tensor/arithmetic/iscomplex.py,sha256=lSUunn3RZiZlrIHiSNx21siVR0BID9-_8ZfueEIxXvc,1768
|
|
460
|
-
maxframe/tensor/arithmetic/isfinite.py,sha256=JycutXOjf5YE9w9RFt65zFccgYc1uhdRFJ03fMpom5A,3704
|
|
461
|
-
maxframe/tensor/arithmetic/isinf.py,sha256=Yc97fOv6aD-YjrWzs3zHKSI1DR3pDXlRhnK3jQd1nHQ,3565
|
|
462
|
-
maxframe/tensor/arithmetic/isnan.py,sha256=nmr0-_warccVdCLZx5NTxhlnOFJveFYnHuyqwxJVYP4,2771
|
|
463
|
-
maxframe/tensor/arithmetic/isreal.py,sha256=Hb2bvSFzcsUa3LvYuoWAxU87f4Jy7XVt4Upq_V3rlwk,1713
|
|
464
|
-
maxframe/tensor/arithmetic/ldexp.py,sha256=22laubiGinn6in6b5BB8sQjIcenXsKdw_tnNzhtSgxM,3264
|
|
465
|
-
maxframe/tensor/arithmetic/less.py,sha256=b9n-We_Q7Djn8sn9v3UsFIGgQT5KRrTBeUk2oFLYmrk,2334
|
|
466
|
-
maxframe/tensor/arithmetic/less_equal.py,sha256=q3bvDwH-FJWBWMbG1hJXS8O_42zWPqGJ4QdKTka2UJI,2362
|
|
467
|
-
maxframe/tensor/arithmetic/log.py,sha256=p3wNR7asY2PVSwqWjvMwJabKkOD-zVV6uQPDe0OuvLA,3242
|
|
468
|
-
maxframe/tensor/arithmetic/log10.py,sha256=z1LP854dAA8DASfQNuVaAt7ta8Hir-os1FFChbD5n3M,3109
|
|
469
|
-
maxframe/tensor/arithmetic/log1p.py,sha256=0B6_2pzpplNifMQo-egyZikMSKY-iloE8l80YS39pRg,3334
|
|
470
|
-
maxframe/tensor/arithmetic/log2.py,sha256=chX_CoHdohpW1yxkrrdMyht5Pkg7wOv0QaYhp3ReMCU,2951
|
|
471
|
-
maxframe/tensor/arithmetic/logaddexp.py,sha256=1yUwr4Sy2-6HTWJ6Dwr1YSalqOag_WraYAM6H82j8kY,2809
|
|
472
|
-
maxframe/tensor/arithmetic/logaddexp2.py,sha256=FzBhscnfa28hY-2Sg24HqmN_WMbQKeRxzD_GBec81B4,2823
|
|
473
|
-
maxframe/tensor/arithmetic/logical_and.py,sha256=QjsQZhysh6SAZVC-547oCmHMCdRRGdok4b2L-taK6HM,2651
|
|
474
|
-
maxframe/tensor/arithmetic/logical_not.py,sha256=AxOh90L4tryNFwUBZ_Q-6wlyLrYXx3C3mhinuisvVEs,2417
|
|
475
|
-
maxframe/tensor/arithmetic/logical_or.py,sha256=kFKlFOXFzAk9gj4noJM5KhpzX9MWElHIY6JNqR4mDWk,2671
|
|
476
|
-
maxframe/tensor/arithmetic/logical_xor.py,sha256=h9ikpZ8EgMBC3U7mCgdyamm5m6Lp411_5IKAarATpt0,2978
|
|
477
|
-
maxframe/tensor/arithmetic/lshift.py,sha256=u1rDqrChG_KHKqB-nkriBZdtRoQY9UHPFeZfwlZjXqU,2716
|
|
478
|
-
maxframe/tensor/arithmetic/maximum.py,sha256=E9f9kDtizbGomUbEbZ4JwUK1CQWUJy_BNpMrbU1gwz0,3802
|
|
479
|
-
maxframe/tensor/arithmetic/minimum.py,sha256=1DcIRj8-pAq8Q7RJ0vp5Ayhl1peFVO-86LNj9Y9Rx_g,3803
|
|
480
|
-
maxframe/tensor/arithmetic/mod.py,sha256=9qWp7f9nr5P_HeGgOQ2rGEKPHXY-1c-Bqz8yhh2Lh2w,3349
|
|
481
|
-
maxframe/tensor/arithmetic/modf.py,sha256=I8HFH45GiDk2A9nkuEQUYYWqPXorH6vfjt7mDTXrM9A,2666
|
|
482
|
-
maxframe/tensor/arithmetic/multiply.py,sha256=mn1Gg9n0gtxpJqWMEBKU-iF-NTUjZpzp1fZP-WqAx_Y,2562
|
|
483
|
-
maxframe/tensor/arithmetic/nan_to_num.py,sha256=H51LvO1zBoIrpqlcVncf4RtVNNhX-9CNQjGWoRgATto,3348
|
|
484
|
-
maxframe/tensor/arithmetic/negative.py,sha256=kB-YBcHoFfxABk9ERpr-DfatFIs-FtLJyREWkmIeShU,2153
|
|
485
|
-
maxframe/tensor/arithmetic/nextafter.py,sha256=mpu9yXp8P9fQPK64zW2Ujy4JK3ONSX0TnHnuo1NBsBw,2398
|
|
486
|
-
maxframe/tensor/arithmetic/not_equal.py,sha256=vzFK8_4O5u5c4hPjEwSw6ftMhDk0mLw_sPj5S_3GVss,2346
|
|
487
|
-
maxframe/tensor/arithmetic/positive.py,sha256=k5aLZrYCO_TvYvRIwggHw2xlcNIwKs2SjImNrZqFvMo,1359
|
|
488
|
-
maxframe/tensor/arithmetic/power.py,sha256=82UOga1uTdVDAiL31GPuYYVcY_wjTPKuEDUocN7IWUU,3309
|
|
489
|
-
maxframe/tensor/arithmetic/rad2deg.py,sha256=WhIa6gOIcdmQNxAxAS_emw2RV7hhyN4sCOq57QCftzk,2173
|
|
490
|
-
maxframe/tensor/arithmetic/radians.py,sha256=UIx6yxbA7OJCJftFQ0CYSTtQjDVC1zY1exUXjvbIRpI,2457
|
|
491
|
-
maxframe/tensor/arithmetic/real.py,sha256=pe3G4jZN8eDsOVBscu3QzxKZfKO_AUQNUBwLqc3DE9U,1901
|
|
492
|
-
maxframe/tensor/arithmetic/reciprocal.py,sha256=UWcFfmCU3CfH7Uq-9dw4Q4Ij1tFeHAtuzrkp8mfT7no,2451
|
|
493
|
-
maxframe/tensor/arithmetic/rint.py,sha256=0kEZWSylXIZFEeBuQzxXGdtYPlbh7D-kkHieNEUE3oI,2183
|
|
494
|
-
maxframe/tensor/arithmetic/rshift.py,sha256=Lmwe7N2lRPmFffDm-5jvLky00iaLBd_wzs8C4acayOM,2636
|
|
495
|
-
maxframe/tensor/arithmetic/setimag.py,sha256=b5LWSwFpLx_2HrlLTg-xf4MobG2j9ptfY6MZMmbsvWc,973
|
|
496
|
-
maxframe/tensor/arithmetic/setreal.py,sha256=CHOej0CZ4n90L6Nm-w2aOG7jnhqGI1TG49gKrLrhA7M,973
|
|
497
|
-
maxframe/tensor/arithmetic/sign.py,sha256=lvYO-9t8U7HMMsgNlLDwoJnwWLneKkZ8O0Un-NRplk0,2632
|
|
498
|
-
maxframe/tensor/arithmetic/signbit.py,sha256=cEqqG56iDx1gEZlwFWbAZwFRM6nfJk7167dY3TiD7rw,2177
|
|
499
|
-
maxframe/tensor/arithmetic/sin.py,sha256=Su70NHGkFIQPZ-oEOogB3RSUxlnUIt4y7wCcQ9-0hms,3418
|
|
500
|
-
maxframe/tensor/arithmetic/sinc.py,sha256=ET7lhcvFCfFA4y5Jh_gnXH7hQYgE0dHuA8Zs_D9x-Wo,3589
|
|
501
|
-
maxframe/tensor/arithmetic/sinh.py,sha256=WD3UahqycanZK_chAezi4uXw0fGIr4hhae9AyCsbO6k,3010
|
|
502
|
-
maxframe/tensor/arithmetic/spacing.py,sha256=CQW6bf24fvLjx9wAI1zboDqLP6ZOSW4T_iVMKMJGYic,2385
|
|
503
|
-
maxframe/tensor/arithmetic/sqrt.py,sha256=fgcnp64dY6DwaNIkSPPAoJZVUw2QL7NlnC2FkVO1M7w,2886
|
|
504
|
-
maxframe/tensor/arithmetic/square.py,sha256=8AnK2byZFE4iiy21S7jiXzlPyny5bWFjFvT0aAS3vtE,2157
|
|
505
|
-
maxframe/tensor/arithmetic/subtract.py,sha256=uJhw7qi6UP19RVkGE6BZV-U55R7wzJFM6qDX48wNJUM,2576
|
|
506
|
-
maxframe/tensor/arithmetic/tan.py,sha256=qKUUen1MEHa9YeUS37FqDCdKOra_dVYvD_iDli2_TjA,2931
|
|
507
|
-
maxframe/tensor/arithmetic/tanh.py,sha256=_bztqK0fTaGT_NMyh7qh0tQmdHXrh3b8rvGgrpNYe_A,3137
|
|
508
|
-
maxframe/tensor/arithmetic/truediv.py,sha256=xrsN8Z-q6msst9S8-469XQFgrs7T4RTkaymrPrneLsU,3451
|
|
509
|
-
maxframe/tensor/arithmetic/trunc.py,sha256=3z8jme9ZpPU8TqNo2ioViqJa7ThNK9KOVX1wl-R0a7M,2375
|
|
510
|
-
maxframe/tensor/arithmetic/utils.py,sha256=Kc3xqbIK9uRhHhDKFwAj-mW7SRljajfK9UOMyXyCHCY,2304
|
|
511
|
-
maxframe/tensor/arithmetic/tests/__init__.py,sha256=_PB28W40qku6YiT8fJYqdmEdRMQfelOwGeksCOZJfCc,657
|
|
512
|
-
maxframe/tensor/arithmetic/tests/test_arithmetic.py,sha256=zyvizXBapZcauwf64awWMzmNQeWR6VK0aSq1WwdbfBw,11839
|
|
513
|
-
maxframe/tensor/datasource/__init__.py,sha256=xtrdcuP6yTc_T19ITPsJTknoqTT-XudlhSlffrScjsY,1178
|
|
514
|
-
maxframe/tensor/datasource/arange.py,sha256=tjNF_huiWTtqtN6YBBtn0tvP9Pnebf6LNXRmAsYqRQk,5632
|
|
515
|
-
maxframe/tensor/datasource/array.py,sha256=21R-mH1a4PLwlby9M4YMXBS31DT1BVvbKUUhE23Mop0,13472
|
|
516
|
-
maxframe/tensor/datasource/core.py,sha256=LzuHtRWCNny1y-IzGylelWZ6rejS31LdT4E7qs_uIQs,3520
|
|
517
|
-
maxframe/tensor/datasource/empty.py,sha256=GpK-DHUfJp9M46wUrGt5lf-YbDDveubwntDjTVYnmMw,6019
|
|
518
|
-
maxframe/tensor/datasource/from_dataframe.py,sha256=iJY2cw2yA6YKnqRLyB0XdvpdemHHzpU7q2SA1sYo6mo,2573
|
|
519
|
-
maxframe/tensor/datasource/from_dense.py,sha256=txyxNBD0oXr3Ama9me2ay1_ASuDu1QK3w6ATebMzNCU,1661
|
|
520
|
-
maxframe/tensor/datasource/from_sparse.py,sha256=le-Wfno7Z8XY71TLwEOhO80fkvKXwKXbDgsrOfmDM8s,1593
|
|
521
|
-
maxframe/tensor/datasource/full.py,sha256=cWS5GSEV-82s0IU1GMHTrAlydVGQ-Zxk2uCs5vxgOfc,6462
|
|
522
|
-
maxframe/tensor/datasource/ones.py,sha256=0UuYAwMLGfjF-O_90vkwsMqQlAAfJ98TdxbfgC1y6Fk,5182
|
|
523
|
-
maxframe/tensor/datasource/scalar.py,sha256=g2dsnmOEzV30I0UK3ytMtkiosdfH3NJ6wacZuxBpmbk,1196
|
|
524
|
-
maxframe/tensor/datasource/zeros.py,sha256=DJZK_kraSn820O17GSHLFHV43x1JL3Gt_HdlN0p5o7k,5860
|
|
525
|
-
maxframe/tensor/datasource/tests/__init__.py,sha256=29eM5D4knhYwe3TF42naTuC5b4Ym3VeH4rK8KpdLWNY,609
|
|
526
|
-
maxframe/tensor/datasource/tests/test_datasource.py,sha256=mCyjktnCHuR2w796nHAzQ_fVR95fRqY57Zome2Wjuss,7931
|
|
527
|
-
maxframe/tensor/fetch/__init__.py,sha256=udOT7c7dIbszchvIkCLAWp7SE-GUIE6vl85wWFuaJl0,662
|
|
528
|
-
maxframe/tensor/fetch/core.py,sha256=nyK5dFqDSrM1vi_xgk_yh4GRLUp-FxvjgdbqFxlS_Hg,1872
|
|
529
|
-
maxframe/tensor/indexing/__init__.py,sha256=IF7jK7ZqwWi8nhKY2IRXVzLYacqdeyc4iUFGvzx09Mg,1658
|
|
530
|
-
maxframe/tensor/indexing/choose.py,sha256=pBchjT5PPNnOLbAVJMlYeeBki0IbAf7-By8CBe44aq0,7780
|
|
531
|
-
maxframe/tensor/indexing/compress.py,sha256=2i-mhWB7-Z7y8luWBJ_2Fhci7IP0kNGr8s-SGUTMz7Y,4153
|
|
532
|
-
maxframe/tensor/indexing/core.py,sha256=85E1kSDogs7p57vE1O-ZYx4XhpEE21tmt1-mOey5ejs,7212
|
|
533
|
-
maxframe/tensor/indexing/extract.py,sha256=KHqEVMKwxIlm2RYVSVhZX5Jo7yymKTIgzNT6y8Ilodc,2139
|
|
534
|
-
maxframe/tensor/indexing/fill_diagonal.py,sha256=V3_kMu5Cvund5a4GYTG5617ryNu0cHjWp3FfAU_d3yY,5488
|
|
535
|
-
maxframe/tensor/indexing/flatnonzero.py,sha256=v0Od1T6pn6vfoDeEG40lJ7h4OD8cPIlzDTDHMcR50IA,1766
|
|
536
|
-
maxframe/tensor/indexing/getitem.py,sha256=v_NyhKc78Cj0YZZQ12XDS4l4rXVavLV1brqcAXNjUPM,5800
|
|
537
|
-
maxframe/tensor/indexing/nonzero.py,sha256=qeTEj7oiqf2CYBDlL1aKG19lPPFXvHkMq0A-4Dmvz4A,3766
|
|
538
|
-
maxframe/tensor/indexing/setitem.py,sha256=u7YbeJQmWnhu13H8k5ohw89YQRcPnY-9Ni0zJxzfJJo,4484
|
|
539
|
-
maxframe/tensor/indexing/slice.py,sha256=J49_6hcI0Z1MFfgtKFrnhraTJAs6cLcvMV-63pGHKLQ,1051
|
|
540
|
-
maxframe/tensor/indexing/take.py,sha256=OCuIrhqO74CIojaoOc45McoQiJEjxvN1zens4RQVx-E,4384
|
|
541
|
-
maxframe/tensor/indexing/unravel_index.py,sha256=FMmoEYrDHZAtx_HHC21W3KZfkqwxNZUObXP3HVSJgGw,3326
|
|
542
|
-
maxframe/tensor/indexing/tests/__init__.py,sha256=_PB28W40qku6YiT8fJYqdmEdRMQfelOwGeksCOZJfCc,657
|
|
543
|
-
maxframe/tensor/indexing/tests/test_indexing.py,sha256=uatTFiNkYnyqibYa2-NleUWyFRnlK0mN1AG0tBqFCts,6886
|
|
544
|
-
maxframe/tensor/merge/__init__.py,sha256=mzXzvbNObPYmvWY3PCu3yFvV82Tqqaxav5DX_Iv2UN8,703
|
|
545
|
-
maxframe/tensor/merge/concatenate.py,sha256=RRyP-fqUGfMeP3Zo2wgfZcnF-u8dCCIOpr_0jI5Fft8,3314
|
|
546
|
-
maxframe/tensor/merge/stack.py,sha256=lZJs8M1JYBdYXnalj6-6ltdJKKslZ1Z-ydkzvGlzzkY,4277
|
|
547
|
-
maxframe/tensor/merge/vstack.py,sha256=T9lGknzxA62FQJUEoPieZ7iFjCcvgkqfR8zFD9ZMG2Y,2342
|
|
548
|
-
maxframe/tensor/merge/tests/__init__.py,sha256=29eM5D4knhYwe3TF42naTuC5b4Ym3VeH4rK8KpdLWNY,609
|
|
549
|
-
maxframe/tensor/merge/tests/test_merge.py,sha256=tI4xeJPpME68buemIzTga9mTQiMoqFc9v4__Hi40kzg,2291
|
|
550
|
-
maxframe/tensor/misc/__init__.py,sha256=C6VvY-dnO0_8Z1ArbzhT0I0ClFNT2LGfSgPJdICUexo,1185
|
|
551
|
-
maxframe/tensor/misc/astype.py,sha256=fzj0o3pJMVaSEEKMR-JBsd2FktlSa9ABtpt-fcWKio0,4513
|
|
552
|
-
maxframe/tensor/misc/atleast_1d.py,sha256=XG-8Yxjo0_HD_hRWMoGtaqhgVrIXOR3g1leH_6ib9mk,1944
|
|
553
|
-
maxframe/tensor/misc/atleast_2d.py,sha256=9F5m9DyDJ63nPFhrCqTTHszz36pgU0_VM6nJLmLx9QM,2028
|
|
554
|
-
maxframe/tensor/misc/atleast_3d.py,sha256=XkpSZ_haJJz0wanww5HB4Xhhx3QK8xtbleWvC7ARkBE,2477
|
|
555
|
-
maxframe/tensor/misc/broadcast_to.py,sha256=V-OB8YSbMfkMP2JpbiIQ0A9PrC-OHfaWzrntf5AOEwo,2775
|
|
556
|
-
maxframe/tensor/misc/ravel.py,sha256=P9SCDU-UUHzd1HqZbodBSgKjtjiOFkyfLV_G9LFnz_U,3265
|
|
557
|
-
maxframe/tensor/misc/transpose.py,sha256=e_VAfFPAmde8mzJTovSPWx53vUlgnYtYbEa4bYZst_4,4149
|
|
558
|
-
maxframe/tensor/misc/unique.py,sha256=wweWA7Qg-MwRsJwXQc_-4BuDAYBQkRgVw-B38z6hNTQ,6926
|
|
559
|
-
maxframe/tensor/misc/where.py,sha256=cSg1mDhiOBB4F0Soh_uVw3yeSve9pfEhPSIDadc-wto,4127
|
|
560
|
-
maxframe/tensor/misc/tests/__init__.py,sha256=29eM5D4knhYwe3TF42naTuC5b4Ym3VeH4rK8KpdLWNY,609
|
|
561
|
-
maxframe/tensor/misc/tests/test_misc.py,sha256=i9TneozyHCHDhO438U285KS6tdh0Zks8mgkRm3fsHxk,2957
|
|
562
|
-
maxframe/tensor/random/__init__.py,sha256=KKshGsQFlScwgZU-lS_yy1CPsEcufVlKyZSz1CUxzU4,7179
|
|
563
|
-
maxframe/tensor/random/beta.py,sha256=8-t9NxQrDOTpm5Q_ip_HWnARX_T69tfyJeRv-FobFXw,3200
|
|
564
|
-
maxframe/tensor/random/binomial.py,sha256=BsjD4yRX_IvfexgqZFQMb0jceD46xj4cmKXbpla5eL8,5428
|
|
565
|
-
maxframe/tensor/random/bytes.py,sha256=PmmPFGnhq_FCbkcSYQWNTw1jehvDLmRCzPgEukAgo7w,1093
|
|
566
|
-
maxframe/tensor/random/chisquare.py,sha256=buOfihHGKTsH_Uv8BuWb6_0L0dJukSFrjNlsaWBKy1I,3864
|
|
567
|
-
maxframe/tensor/random/choice.py,sha256=dLM_5Vw5ov_2P-82tcHwQtMPE02VmQScAsY5zbTZ4K4,6144
|
|
568
|
-
maxframe/tensor/random/core.py,sha256=hLmTHK6my3_1JADRny018C3yGPycsO0JWcALQ_XZwMg,7440
|
|
569
|
-
maxframe/tensor/random/dirichlet.py,sha256=s89z_s5qevE0DdezLeI1pdoBFclDBQy-ulSAMDyy_TE,4507
|
|
570
|
-
maxframe/tensor/random/exponential.py,sha256=82kMZBn1N_XdHdggUUWecPYjx91SAYvPtArErwqD66g,3677
|
|
571
|
-
maxframe/tensor/random/f.py,sha256=5grVBKXHDhmc-N4wuwNpC7sF92uTXd1zfCQEVzCPLSo,5226
|
|
572
|
-
maxframe/tensor/random/gamma.py,sha256=U6JIwM1MnFQ5zTj7D8ecCmcvtT6Y-aMdaA56UD9wmMs,4747
|
|
573
|
-
maxframe/tensor/random/geometric.py,sha256=eSrgGHhLpYKygM8WstEoVJjK2GPn5NY-1O6Dd-Y8e0Q,3443
|
|
574
|
-
maxframe/tensor/random/gumbel.py,sha256=qjb2j44-Ni-jtYZHq5NPP6BnSk4j-peRk_HcYngRHl0,6488
|
|
575
|
-
maxframe/tensor/random/hypergeometric.py,sha256=ZI0M5Olg_b560ZIjhJg2f25x4cg2KkSYLlPhgZGGbkc,5781
|
|
576
|
-
maxframe/tensor/random/laplace.py,sha256=MKh5WBi-MZLjPWG5jeLrjFx9LM20tiU1tCuPYMQJPhY,5140
|
|
577
|
-
maxframe/tensor/random/logistic.py,sha256=uZY2UP42k53CEtMdHezfHbTsOduwPYp8GOhjaU-yWvw,4857
|
|
578
|
-
maxframe/tensor/random/lognormal.py,sha256=lfBCeAFIvb3HDYwZVvju6ogmvHKNXuXgMHbCvLp3aLs,6214
|
|
579
|
-
maxframe/tensor/random/logseries.py,sha256=eSAXY8RhjPDg3CgvembPcOeK2betk-3FUSgUQVIXh9o,4559
|
|
580
|
-
maxframe/tensor/random/multinomial.py,sha256=D59feCBL3Ja05ZnxGGUfZoyyPON22lwso1hma_FwQsk,4904
|
|
581
|
-
maxframe/tensor/random/multivariate_normal.py,sha256=r-XnzWXEHHarlvpq26xKhQF_Es6T32y0ksor1wfdPno,6958
|
|
582
|
-
maxframe/tensor/random/negative_binomial.py,sha256=73v0EoKjd6LWUY_-lGHqeS8PGhlMBu-NzeaX8Cjtz9Y,4964
|
|
583
|
-
maxframe/tensor/random/noncentral_chisquare.py,sha256=bWmdUW2X6rUMgmDORjc7zpRoHnlnURYJafcfXJ0AV9U,5069
|
|
584
|
-
maxframe/tensor/random/noncentral_f.py,sha256=NxK7GLF5q4vnuFnC_aeWcILDrYq6syBTwABhsHE8yJY,5136
|
|
585
|
-
maxframe/tensor/random/normal.py,sha256=3D91VmtzOGnPJOVMMlNnAzVyRB3lZbqsEyP6v2mKb8A,5352
|
|
586
|
-
maxframe/tensor/random/pareto.py,sha256=f7mTRo0aadBsZKuPcV_q2GCAYKM2_KnjAObL2OV7-rA,5529
|
|
587
|
-
maxframe/tensor/random/permutation.py,sha256=XmGryrsfmwZD5DXPfytTQ0ZQYJqrqnilMiwERuDHU4E,3523
|
|
588
|
-
maxframe/tensor/random/poisson.py,sha256=tdpCHVrZj0S0jumT5QpCXlDNVBKIY4oK5G5uooXv8O4,3997
|
|
589
|
-
maxframe/tensor/random/power.py,sha256=dmhedXTG_i5yP_wqKinmolbiRYfjPLi8nCx-d9fmscc,4987
|
|
590
|
-
maxframe/tensor/random/rand.py,sha256=QAItn-64OTl4Vs19kco4nonomeY4-PNmvgv1L7itj_w,2620
|
|
591
|
-
maxframe/tensor/random/randint.py,sha256=9KJcue5x4IpgV48v_w5EQa1ZqGXuwxrf--aLf55eNIY,4340
|
|
592
|
-
maxframe/tensor/random/randn.py,sha256=bqau8tYPkEdYNMotP-8kJhHTXrTvOQVeItsGpwBq15s,3437
|
|
593
|
-
maxframe/tensor/random/random_integers.py,sha256=8TKfVGOJdYDtnKVxvpdvEM7vPnPQn3Up8_Xn78o5kx0,4483
|
|
594
|
-
maxframe/tensor/random/random_sample.py,sha256=4OtgXkAyZowq4oLQkTYqxapXMg7tYEjg0KuMIo5PQTs,3091
|
|
595
|
-
maxframe/tensor/random/rayleigh.py,sha256=UvNO-nPh1Y6EnvfYvi-JurXdKhuJp3iCI4RtPeqqgiY,4066
|
|
596
|
-
maxframe/tensor/random/shuffle.py,sha256=Ei2gJi2aIa0ggWNAw5szI6QLtPewXNU8wKb8yP9lB9I,1823
|
|
597
|
-
maxframe/tensor/random/standard_cauchy.py,sha256=Sp7hQ0DzPpX_aZ-2rOyRmQEOX-dU060hR22h8iLYPZc,3966
|
|
598
|
-
maxframe/tensor/random/standard_exponential.py,sha256=AMbbIcN6HiASbkPMg03hmtqF_6AZld_bJ6eb1mho3y0,2510
|
|
599
|
-
maxframe/tensor/random/standard_gamma.py,sha256=6WZfCnNw_xffnkecC3IJbL8a2NjwbZxhXIqb19t6k7s,4369
|
|
600
|
-
maxframe/tensor/random/standard_normal.py,sha256=ydyD-MIdf72ZIUeI6tr54KWax0mnDvrzdzirWtUS9bc,2627
|
|
601
|
-
maxframe/tensor/random/standard_t.py,sha256=t7hoxDuu-d5BEpKOqoMr7yDKOooxWSFSvp4C-MGDyFI,5054
|
|
602
|
-
maxframe/tensor/random/triangular.py,sha256=rz1NvJTQqtQzWwUqQaSZrkWGVmE3MH3fJ_0FxXZcPtU,4467
|
|
603
|
-
maxframe/tensor/random/uniform.py,sha256=o58gO3kUg3hqWHtIKOBJcXVCNxD31DZKqXsCl_bnNOk,4830
|
|
604
|
-
maxframe/tensor/random/vonmises.py,sha256=GbKJpEOd2-E04OX465n-Xq8NrQ1Kti020tlvJueiw8k,4930
|
|
605
|
-
maxframe/tensor/random/wald.py,sha256=-6EhlEM50XXGfQ5oh7TTfknO5yKqLdw9S6xKq3T45HA,4484
|
|
606
|
-
maxframe/tensor/random/weibull.py,sha256=CaLaUKsoTz1dTlh9wu85kjg6fPgsSYZolSY2Nk0v6Ow,5035
|
|
607
|
-
maxframe/tensor/random/zipf.py,sha256=tGCZGEmLThA9mmGHIEEFeoDcOuA4X6fAck0Nz8qwstk,4213
|
|
608
|
-
maxframe/tensor/random/tests/__init__.py,sha256=_PB28W40qku6YiT8fJYqdmEdRMQfelOwGeksCOZJfCc,657
|
|
609
|
-
maxframe/tensor/random/tests/test_random.py,sha256=Vqviidfs5ROpluwAdwJRs1hYlX-IKhvjDKH-LwhKbt4,4442
|
|
610
|
-
maxframe/tensor/rechunk/__init__.py,sha256=JHX-J-yybnUmywM7k-uDgLx7Bt2nstx8kfNn3gDF0jo,823
|
|
611
|
-
maxframe/tensor/rechunk/rechunk.py,sha256=9myAlmM7tfJGQ2Z0ZXwjssv0GMl5QMExjbrjwemO6Kg,1435
|
|
612
|
-
maxframe/tensor/reduction/__init__.py,sha256=cbA4XcJ-TJ6Ix8W3CjCBZYKyDhEuXP9Ab3xmcn8shys,2384
|
|
613
|
-
maxframe/tensor/reduction/all.py,sha256=DOE7MYnpaiPf6h7C4nGJ1uANOqI9-LmZhNz7OkhTArI,3570
|
|
614
|
-
maxframe/tensor/reduction/allclose.py,sha256=voEJugbqyIIYTgPcuyWsGrZUiURqzgGcvv7VVIvhKCQ,3030
|
|
615
|
-
maxframe/tensor/reduction/any.py,sha256=Lw5ZyXdBuNKkAKTeuJFUPrgJgbIBP29RtlNxtyHkGY4,3676
|
|
616
|
-
maxframe/tensor/reduction/argmax.py,sha256=UqPBCgnyLFpIjaNPWxcyLGynpOzYnaVj23PQy4_2wQg,3212
|
|
617
|
-
maxframe/tensor/reduction/argmin.py,sha256=Gy_O7kEcJosGQImqkR5S7N5ygs-bXnYcpljj3TSe5Ho,3202
|
|
618
|
-
maxframe/tensor/reduction/array_equal.py,sha256=1otUnsacNdSgkdP1hHs3NcAdqtJNyY3F1oOVItrmv70,1859
|
|
619
|
-
maxframe/tensor/reduction/core.py,sha256=NwASayI1P1uCCFCyNltH-cVezefW3Th2qS6viSuSKMQ,5257
|
|
620
|
-
maxframe/tensor/reduction/count_nonzero.py,sha256=zhaiKDQxWR5WTNwwqn8piRuBGYwOq-Oe0Uv7rdSPyPA,2836
|
|
621
|
-
maxframe/tensor/reduction/cumprod.py,sha256=zitvIvh2Sb4iL7yL2Spenoe7NQndV9LJ4qrejd_ul48,3369
|
|
622
|
-
maxframe/tensor/reduction/cumsum.py,sha256=IUOvbrVEgjDOdd3nsxnDy3Fx0eJC0EfOGt0PIfik_PM,3592
|
|
623
|
-
maxframe/tensor/reduction/max.py,sha256=8B5k9n89orftEYLI_Lwl10O0zbN6vq5SxUpX0W9L7Bo,4099
|
|
624
|
-
maxframe/tensor/reduction/mean.py,sha256=X-DeUsX_6jbJLAgeLqfFghNnVz-CPzvTr6SD_LvkrQI,4503
|
|
625
|
-
maxframe/tensor/reduction/min.py,sha256=YRHJ-leK2wF6ZJT7WgepMhIofw9JQ62PxRw8JqJTaFU,4100
|
|
626
|
-
maxframe/tensor/reduction/nanargmax.py,sha256=Nwiin8tWykaaOjtNF7DGMNuIFZXAts_v4XO68ODM9FI,2563
|
|
627
|
-
maxframe/tensor/reduction/nanargmin.py,sha256=rgOcOEbbJyvGwAYFSJkQSfY8yjdqtaOg5d7gL5FijLE,2279
|
|
628
|
-
maxframe/tensor/reduction/nancumprod.py,sha256=e9l343oVsXra2Goiai3Qbwnqe1Fq8BEATa0475_DNdo,3212
|
|
629
|
-
maxframe/tensor/reduction/nancumsum.py,sha256=Q8sNfx8d8sfKQhOWBI5dOJfORua_HzUydwauX4Lu8LI,3377
|
|
630
|
-
maxframe/tensor/reduction/nanmax.py,sha256=l8GplMV1eZwsgYt2esxPCj7ou3DgODzi3N1Vbbxjz7o,4061
|
|
631
|
-
maxframe/tensor/reduction/nanmean.py,sha256=PJCx-oVyL-gCBIuyxrIKcqQKP5z5ro9XIBapMQ6IMe8,4078
|
|
632
|
-
maxframe/tensor/reduction/nanmin.py,sha256=vxq-g_ffwI6fLZ9rVdGoaGAq87w4pvLas_NKZsfLiYQ,4058
|
|
633
|
-
maxframe/tensor/reduction/nanprod.py,sha256=1of1DIP390_12QA0xKCXSvAxYrddJC52h7KmsLwTvyQ,3408
|
|
634
|
-
maxframe/tensor/reduction/nanstd.py,sha256=6aOed5RQ4-N2IfQjWZKVoQ34GN6O9_LVeGoUwa5d1hU,5017
|
|
635
|
-
maxframe/tensor/reduction/nansum.py,sha256=3gjbgh6Qw29HxLNdyn8MzxekFlyr3l377EZwNFgla4g,4181
|
|
636
|
-
maxframe/tensor/reduction/nanvar.py,sha256=ZvC3EnhvaSbCe3P9RDelCqjMiWFjmze5RBEGS5bTi4A,5621
|
|
637
|
-
maxframe/tensor/reduction/prod.py,sha256=PfTHhIYDVsPtTSRQ2wZQ2WY7wbbuIh8YoEFR7kTJdzU,4536
|
|
638
|
-
maxframe/tensor/reduction/std.py,sha256=s4wvtnRUCw9EfKZrdefClxnKLjM6gzZqYuxOrg6Tgck,5269
|
|
639
|
-
maxframe/tensor/reduction/sum.py,sha256=ehfqbdEafd5ASliWR5DL689q_VH7Isk7ozlrWBdamDk,4371
|
|
640
|
-
maxframe/tensor/reduction/var.py,sha256=MKl5pe9t7g20atW5XFdFChr1Qxb1ReeViIaHwoRGCpM,6482
|
|
641
|
-
maxframe/tensor/reduction/tests/__init__.py,sha256=29eM5D4knhYwe3TF42naTuC5b4Ym3VeH4rK8KpdLWNY,609
|
|
642
|
-
maxframe/tensor/reduction/tests/test_reduction.py,sha256=k2pXfAfowBDzEgMvldflUzhFUMWIkiP2fznZp7q9Bkw,6370
|
|
643
|
-
maxframe/tensor/reshape/__init__.py,sha256=h_yXSMgSS3hGdLmnyWUUqXshEz4rLiEYDTlZbDBuj0w,689
|
|
644
|
-
maxframe/tensor/reshape/reshape.py,sha256=3vfmYigJcfODwg4av9lcMDM4mQ4TsNQT0qmbdcsg4zc,6641
|
|
645
|
-
maxframe/tensor/reshape/tests/__init__.py,sha256=_PB28W40qku6YiT8fJYqdmEdRMQfelOwGeksCOZJfCc,657
|
|
646
|
-
maxframe/tensor/reshape/tests/test_reshape.py,sha256=hkYCagnIg85vV8moLIHVA-WAya7r9ga16Y8WJoCmK28,1140
|
|
647
|
-
maxframe/tensor/statistics/__init__.py,sha256=29eM5D4knhYwe3TF42naTuC5b4Ym3VeH4rK8KpdLWNY,609
|
|
648
|
-
maxframe/tensor/statistics/percentile.py,sha256=VvMIKNSawT2WaoyJofoBEvmli2w-7TkG9V0Au9Bg3Eo,6222
|
|
649
|
-
maxframe/tensor/statistics/quantile.py,sha256=2QshmOurJLJPHBhsyYz9brBWkcEzjzTjo2Wju_LD21o,9755
|
|
650
|
-
maxframe/tensor/ufunc/__init__.py,sha256=8QUi-cPvvbsD7i7LOeZ9sc0v1XXd7lt-XV5pQKbVZJs,821
|
|
651
|
-
maxframe/tensor/ufunc/ufunc.py,sha256=XRtGlhdrW7H--mrc8fTBOlUP0mzKpd9tdRtCuLDymtc,7383
|
|
652
|
-
maxframe/tests/__init__.py,sha256=29eM5D4knhYwe3TF42naTuC5b4Ym3VeH4rK8KpdLWNY,609
|
|
653
|
-
maxframe/tests/test_codegen.py,sha256=h3TKqP4zghxTn1twH7gR9jOe6NKXdCC1B4u0chlUrpY,2277
|
|
654
|
-
maxframe/tests/test_protocol.py,sha256=JkvsgGnbVSLu3VsUd_XT_qstcHPnKLzmoDBEXetaWT8,6281
|
|
655
|
-
maxframe/tests/test_utils.py,sha256=5Z2cym1tlpnF73f4I3WC1eBocsbNEDGzDErJL_fKWx8,11868
|
|
656
|
-
maxframe/tests/utils.py,sha256=lrUZul-tUjc-S7HtJDZs5PcrsA4Xecd96xZmNQ1WX-A,5532
|
|
657
|
-
maxframe_client/__init__.py,sha256=hIVOnxj6AoN2zIMxQCzRb10k0LSoYS_DrQevXO9KPBg,705
|
|
658
|
-
maxframe_client/conftest.py,sha256=UWWMYjmohHL13hLl4adb0gZPLRdBVOYVvsFo6VZruI0,658
|
|
659
|
-
maxframe_client/fetcher.py,sha256=cIt1R2k0YV5IKxDQ276x5Dzwk3vFKFyDH3nzRzb6SH0,9445
|
|
660
|
-
maxframe_client/clients/__init__.py,sha256=29eM5D4knhYwe3TF42naTuC5b4Ym3VeH4rK8KpdLWNY,609
|
|
661
|
-
maxframe_client/clients/framedriver.py,sha256=GdF_VGr2n4QZTbHy-p_IAaUrHLD1t7DYA-g3BtnylAA,4678
|
|
662
|
-
maxframe_client/session/__init__.py,sha256=9zFCd3zkSADESAFc4SPoQ2nkvRwsIhhpNNO2TtSaWbU,854
|
|
663
|
-
maxframe_client/session/consts.py,sha256=USDwwz79zFjhlp2MGz5Th6cCuZaYRLAo491tUanZdDs,1430
|
|
664
|
-
maxframe_client/session/graph.py,sha256=CEavpl_zmz_nZ2TXI4moRxpdYsMZMokV63889qI6l_4,4501
|
|
665
|
-
maxframe_client/session/odps.py,sha256=HlJ25wt0DLzMrhQVt-izEfrfSEejGMD8D08_x4Xcdto,25586
|
|
666
|
-
maxframe_client/session/task.py,sha256=6uljv5T-VEGKoWDA-E7iSaQMkimQON2vBaunTNLl8HQ,12347
|
|
667
|
-
maxframe_client/session/tests/__init__.py,sha256=29eM5D4knhYwe3TF42naTuC5b4Ym3VeH4rK8KpdLWNY,609
|
|
668
|
-
maxframe_client/session/tests/test_task.py,sha256=pzluiWktDx5e7XfJKsasNMAJk83l5RIGbrphwy__yAU,4815
|
|
669
|
-
maxframe_client/tests/__init__.py,sha256=29eM5D4knhYwe3TF42naTuC5b4Ym3VeH4rK8KpdLWNY,609
|
|
670
|
-
maxframe_client/tests/test_fetcher.py,sha256=lYtn4NuntN-_A7rMd10e2y_CEUp7zelTij441NTFP6M,4265
|
|
671
|
-
maxframe_client/tests/test_session.py,sha256=Rn144kIFfJ-ppWNgQ8psLTo0Z_zOk7q3xZCtdiaK_OM,11542
|
|
672
|
-
maxframe-1.1.1.dist-info/METADATA,sha256=SjFIBOd43-2F8ZPWIvamXD2pDQUA9ciTHsW_FevDxK8,3126
|
|
673
|
-
maxframe-1.1.1.dist-info/WHEEL,sha256=EfPXSsrLwp9clrn29v9vbmPfEm-IfFzseSJd0ZtI9XA,99
|
|
674
|
-
maxframe-1.1.1.dist-info/top_level.txt,sha256=64x-fc2q59c_vXwNUkehyjF1vb8JWqFSdYmUqIFqoTM,31
|
|
675
|
-
maxframe-1.1.1.dist-info/RECORD,,
|