maxframe 2.0.0b2__cp38-cp38-win_amd64.whl → 2.2.0__cp38-cp38-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.

Files changed (391) hide show
  1. maxframe/__init__.py +1 -0
  2. maxframe/_utils.cp38-win_amd64.pyd +0 -0
  3. maxframe/_utils.pyx +14 -1
  4. maxframe/codegen/core.py +6 -6
  5. maxframe/codegen/spe/core.py +1 -1
  6. maxframe/codegen/spe/dataframe/__init__.py +1 -0
  7. maxframe/codegen/spe/dataframe/accessors/base.py +18 -0
  8. maxframe/codegen/spe/dataframe/accessors/dict_.py +25 -130
  9. maxframe/codegen/spe/dataframe/accessors/list_.py +12 -48
  10. maxframe/codegen/spe/dataframe/accessors/struct_.py +28 -0
  11. maxframe/codegen/spe/dataframe/arithmetic.py +7 -2
  12. maxframe/codegen/spe/dataframe/groupby.py +88 -0
  13. maxframe/codegen/spe/dataframe/indexing.py +99 -4
  14. maxframe/codegen/spe/dataframe/merge.py +34 -1
  15. maxframe/codegen/spe/dataframe/misc.py +9 -33
  16. maxframe/codegen/spe/dataframe/reduction.py +14 -9
  17. maxframe/codegen/spe/dataframe/reshape.py +46 -0
  18. maxframe/codegen/spe/dataframe/sort.py +30 -17
  19. maxframe/codegen/spe/dataframe/tests/accessors/test_dict.py +9 -15
  20. maxframe/codegen/spe/dataframe/tests/accessors/test_list.py +4 -7
  21. maxframe/codegen/spe/dataframe/tests/accessors/test_struct.py +75 -0
  22. maxframe/codegen/spe/dataframe/tests/indexing/test_iloc.py +20 -1
  23. maxframe/codegen/spe/dataframe/tests/indexing/test_loc.py +35 -0
  24. maxframe/codegen/spe/dataframe/tests/misc/test_misc.py +0 -32
  25. maxframe/codegen/spe/dataframe/tests/test_groupby.py +81 -18
  26. maxframe/codegen/spe/dataframe/tests/test_merge.py +27 -1
  27. maxframe/codegen/spe/dataframe/tests/test_reshape.py +79 -0
  28. maxframe/codegen/spe/dataframe/tests/test_sort.py +20 -0
  29. maxframe/codegen/spe/learn/contrib/tests/test_xgboost.py +2 -1
  30. maxframe/codegen/spe/learn/metrics/__init__.py +1 -1
  31. maxframe/codegen/spe/learn/metrics/_ranking.py +76 -0
  32. maxframe/codegen/spe/learn/metrics/pairwise.py +51 -0
  33. maxframe/codegen/spe/learn/metrics/tests/test_pairwise.py +36 -0
  34. maxframe/codegen/spe/learn/metrics/tests/test_ranking.py +59 -0
  35. maxframe/codegen/spe/tensor/__init__.py +3 -0
  36. maxframe/codegen/spe/tensor/fft.py +74 -0
  37. maxframe/codegen/spe/tensor/linalg.py +29 -2
  38. maxframe/codegen/spe/tensor/misc.py +79 -25
  39. maxframe/codegen/spe/tensor/spatial.py +45 -0
  40. maxframe/codegen/spe/tensor/statistics.py +44 -0
  41. maxframe/codegen/spe/tensor/tests/test_fft.py +64 -0
  42. maxframe/codegen/spe/tensor/tests/test_linalg.py +15 -1
  43. maxframe/codegen/spe/tensor/tests/test_misc.py +52 -2
  44. maxframe/codegen/spe/tensor/tests/test_spatial.py +33 -0
  45. maxframe/codegen/spe/tensor/tests/test_statistics.py +15 -1
  46. maxframe/codegen/spe/tests/test_spe_codegen.py +6 -12
  47. maxframe/codegen/spe/utils.py +2 -0
  48. maxframe/config/config.py +70 -9
  49. maxframe/config/tests/test_validators.py +13 -1
  50. maxframe/config/validators.py +49 -0
  51. maxframe/conftest.py +44 -17
  52. maxframe/core/accessor.py +2 -2
  53. maxframe/core/entity/core.py +5 -0
  54. maxframe/core/entity/tileables.py +1 -1
  55. maxframe/core/graph/core.cp38-win_amd64.pyd +0 -0
  56. maxframe/core/graph/entity.py +1 -2
  57. maxframe/core/operator/base.py +9 -2
  58. maxframe/core/operator/core.py +10 -2
  59. maxframe/core/operator/utils.py +13 -0
  60. maxframe/dataframe/__init__.py +10 -3
  61. maxframe/dataframe/accessors/__init__.py +1 -1
  62. maxframe/dataframe/accessors/compat.py +45 -0
  63. maxframe/dataframe/accessors/datetime_/__init__.py +4 -1
  64. maxframe/dataframe/accessors/dict_/contains.py +7 -16
  65. maxframe/dataframe/accessors/dict_/core.py +48 -0
  66. maxframe/dataframe/accessors/dict_/getitem.py +17 -21
  67. maxframe/dataframe/accessors/dict_/length.py +7 -16
  68. maxframe/dataframe/accessors/dict_/remove.py +6 -18
  69. maxframe/dataframe/accessors/dict_/setitem.py +8 -18
  70. maxframe/dataframe/accessors/dict_/tests/test_dict_accessor.py +62 -22
  71. maxframe/dataframe/accessors/list_/__init__.py +2 -2
  72. maxframe/dataframe/accessors/list_/core.py +48 -0
  73. maxframe/dataframe/accessors/list_/getitem.py +12 -19
  74. maxframe/dataframe/accessors/list_/length.py +7 -16
  75. maxframe/dataframe/accessors/list_/tests/test_list_accessor.py +11 -9
  76. maxframe/dataframe/accessors/string_/__init__.py +4 -1
  77. maxframe/dataframe/accessors/struct_/__init__.py +37 -0
  78. maxframe/dataframe/accessors/struct_/accessor.py +39 -0
  79. maxframe/dataframe/accessors/struct_/core.py +43 -0
  80. maxframe/dataframe/accessors/struct_/dtypes.py +53 -0
  81. maxframe/dataframe/accessors/struct_/field.py +123 -0
  82. maxframe/dataframe/accessors/struct_/tests/__init__.py +13 -0
  83. maxframe/dataframe/accessors/struct_/tests/test_struct_accessor.py +91 -0
  84. maxframe/dataframe/arithmetic/__init__.py +14 -4
  85. maxframe/dataframe/arithmetic/between.py +106 -0
  86. maxframe/dataframe/arithmetic/dot.py +237 -0
  87. maxframe/dataframe/arithmetic/{around.py → round.py} +11 -7
  88. maxframe/dataframe/core.py +63 -118
  89. maxframe/dataframe/datasource/__init__.py +18 -0
  90. maxframe/dataframe/datasource/from_dict.py +124 -0
  91. maxframe/dataframe/datasource/from_index.py +1 -1
  92. maxframe/dataframe/datasource/from_records.py +77 -0
  93. maxframe/dataframe/datasource/from_tensor.py +109 -41
  94. maxframe/dataframe/datasource/read_csv.py +2 -3
  95. maxframe/dataframe/datasource/tests/test_datasource.py +37 -0
  96. maxframe/dataframe/datastore/__init__.py +5 -1
  97. maxframe/dataframe/datastore/to_csv.py +29 -41
  98. maxframe/dataframe/datastore/to_odps.py +30 -4
  99. maxframe/dataframe/extensions/__init__.py +20 -4
  100. maxframe/dataframe/extensions/apply_chunk.py +32 -6
  101. maxframe/dataframe/extensions/cartesian_chunk.py +153 -0
  102. maxframe/dataframe/extensions/collect_kv.py +126 -0
  103. maxframe/dataframe/extensions/extract_kv.py +177 -0
  104. maxframe/dataframe/extensions/map_reduce.py +263 -0
  105. maxframe/dataframe/extensions/rebalance.py +62 -0
  106. maxframe/dataframe/extensions/tests/test_apply_chunk.py +9 -2
  107. maxframe/dataframe/extensions/tests/test_extensions.py +54 -0
  108. maxframe/dataframe/extensions/tests/test_map_reduce.py +135 -0
  109. maxframe/dataframe/groupby/__init__.py +12 -1
  110. maxframe/dataframe/groupby/aggregation.py +78 -45
  111. maxframe/dataframe/groupby/apply.py +1 -1
  112. maxframe/dataframe/groupby/apply_chunk.py +18 -2
  113. maxframe/dataframe/groupby/core.py +96 -12
  114. maxframe/dataframe/groupby/cum.py +4 -25
  115. maxframe/dataframe/groupby/expanding.py +264 -0
  116. maxframe/dataframe/groupby/fill.py +1 -1
  117. maxframe/dataframe/groupby/getitem.py +12 -5
  118. maxframe/dataframe/groupby/head.py +11 -1
  119. maxframe/dataframe/groupby/rank.py +136 -0
  120. maxframe/dataframe/groupby/rolling.py +206 -0
  121. maxframe/dataframe/groupby/shift.py +114 -0
  122. maxframe/dataframe/groupby/tests/test_groupby.py +0 -5
  123. maxframe/dataframe/indexing/__init__.py +20 -1
  124. maxframe/dataframe/indexing/droplevel.py +195 -0
  125. maxframe/dataframe/indexing/filter.py +169 -0
  126. maxframe/dataframe/indexing/get_level_values.py +76 -0
  127. maxframe/dataframe/indexing/iat.py +45 -0
  128. maxframe/dataframe/indexing/iloc.py +152 -12
  129. maxframe/dataframe/indexing/insert.py +1 -1
  130. maxframe/dataframe/indexing/loc.py +287 -7
  131. maxframe/dataframe/indexing/reindex.py +14 -5
  132. maxframe/dataframe/indexing/rename.py +6 -0
  133. maxframe/dataframe/indexing/rename_axis.py +2 -2
  134. maxframe/dataframe/indexing/reorder_levels.py +143 -0
  135. maxframe/dataframe/indexing/reset_index.py +33 -6
  136. maxframe/dataframe/indexing/sample.py +8 -0
  137. maxframe/dataframe/indexing/setitem.py +3 -3
  138. maxframe/dataframe/indexing/swaplevel.py +185 -0
  139. maxframe/dataframe/indexing/take.py +99 -0
  140. maxframe/dataframe/indexing/truncate.py +140 -0
  141. maxframe/dataframe/indexing/where.py +0 -11
  142. maxframe/dataframe/indexing/xs.py +148 -0
  143. maxframe/dataframe/merge/__init__.py +12 -1
  144. maxframe/dataframe/merge/append.py +97 -98
  145. maxframe/dataframe/merge/combine_first.py +120 -0
  146. maxframe/dataframe/merge/compare.py +387 -0
  147. maxframe/dataframe/merge/concat.py +183 -0
  148. maxframe/dataframe/merge/update.py +271 -0
  149. maxframe/dataframe/misc/__init__.py +16 -10
  150. maxframe/dataframe/misc/_duplicate.py +10 -4
  151. maxframe/dataframe/misc/apply.py +1 -1
  152. maxframe/dataframe/misc/check_unique.py +51 -0
  153. maxframe/dataframe/misc/clip.py +145 -0
  154. maxframe/dataframe/misc/describe.py +175 -9
  155. maxframe/dataframe/misc/drop_duplicates.py +2 -2
  156. maxframe/dataframe/misc/duplicated.py +2 -2
  157. maxframe/dataframe/misc/get_dummies.py +5 -1
  158. maxframe/dataframe/misc/isin.py +2 -2
  159. maxframe/dataframe/misc/map.py +94 -0
  160. maxframe/dataframe/misc/tests/test_misc.py +13 -2
  161. maxframe/dataframe/misc/to_numeric.py +3 -0
  162. maxframe/dataframe/misc/transform.py +12 -5
  163. maxframe/dataframe/misc/transpose.py +13 -1
  164. maxframe/dataframe/misc/valid_index.py +115 -0
  165. maxframe/dataframe/misc/value_counts.py +38 -4
  166. maxframe/dataframe/missing/checkna.py +13 -6
  167. maxframe/dataframe/missing/dropna.py +5 -0
  168. maxframe/dataframe/missing/fillna.py +1 -1
  169. maxframe/dataframe/missing/replace.py +7 -4
  170. maxframe/dataframe/reduction/__init__.py +29 -15
  171. maxframe/dataframe/reduction/aggregation.py +38 -9
  172. maxframe/dataframe/reduction/all.py +2 -2
  173. maxframe/dataframe/reduction/any.py +2 -2
  174. maxframe/dataframe/reduction/argmax.py +100 -0
  175. maxframe/dataframe/reduction/argmin.py +100 -0
  176. maxframe/dataframe/reduction/core.py +65 -18
  177. maxframe/dataframe/reduction/count.py +13 -9
  178. maxframe/dataframe/reduction/cov.py +166 -0
  179. maxframe/dataframe/reduction/cummax.py +2 -2
  180. maxframe/dataframe/reduction/cummin.py +2 -2
  181. maxframe/dataframe/reduction/cumprod.py +2 -2
  182. maxframe/dataframe/reduction/cumsum.py +2 -2
  183. maxframe/dataframe/reduction/custom_reduction.py +2 -2
  184. maxframe/dataframe/reduction/idxmax.py +185 -0
  185. maxframe/dataframe/reduction/idxmin.py +185 -0
  186. maxframe/dataframe/reduction/kurtosis.py +37 -30
  187. maxframe/dataframe/reduction/max.py +2 -2
  188. maxframe/dataframe/reduction/mean.py +9 -7
  189. maxframe/dataframe/reduction/median.py +2 -2
  190. maxframe/dataframe/reduction/min.py +2 -2
  191. maxframe/dataframe/reduction/nunique.py +9 -8
  192. maxframe/dataframe/reduction/prod.py +18 -13
  193. maxframe/dataframe/reduction/reduction_size.py +2 -2
  194. maxframe/dataframe/reduction/sem.py +13 -9
  195. maxframe/dataframe/reduction/skew.py +31 -27
  196. maxframe/dataframe/reduction/str_concat.py +10 -7
  197. maxframe/dataframe/reduction/sum.py +18 -14
  198. maxframe/dataframe/reduction/unique.py +20 -3
  199. maxframe/dataframe/reduction/var.py +16 -12
  200. maxframe/dataframe/reshape/__init__.py +38 -0
  201. maxframe/dataframe/{misc → reshape}/pivot.py +1 -0
  202. maxframe/dataframe/{misc → reshape}/pivot_table.py +1 -0
  203. maxframe/dataframe/reshape/unstack.py +114 -0
  204. maxframe/dataframe/sort/__init__.py +8 -0
  205. maxframe/dataframe/sort/argsort.py +62 -0
  206. maxframe/dataframe/sort/core.py +1 -0
  207. maxframe/dataframe/sort/nlargest.py +238 -0
  208. maxframe/dataframe/sort/nsmallest.py +228 -0
  209. maxframe/dataframe/statistics/__init__.py +3 -3
  210. maxframe/dataframe/statistics/corr.py +1 -0
  211. maxframe/dataframe/statistics/quantile.py +2 -2
  212. maxframe/dataframe/tests/test_typing.py +104 -0
  213. maxframe/dataframe/tests/test_utils.py +66 -2
  214. maxframe/dataframe/typing_.py +185 -0
  215. maxframe/dataframe/utils.py +95 -26
  216. maxframe/dataframe/window/aggregation.py +8 -4
  217. maxframe/dataframe/window/core.py +14 -1
  218. maxframe/dataframe/window/ewm.py +1 -3
  219. maxframe/dataframe/window/expanding.py +37 -35
  220. maxframe/dataframe/window/rolling.py +49 -39
  221. maxframe/dataframe/window/tests/test_expanding.py +1 -7
  222. maxframe/dataframe/window/tests/test_rolling.py +1 -1
  223. maxframe/env.py +7 -4
  224. maxframe/errors.py +2 -2
  225. maxframe/io/odpsio/schema.py +9 -3
  226. maxframe/io/odpsio/tableio.py +7 -2
  227. maxframe/io/odpsio/tests/test_schema.py +198 -83
  228. maxframe/learn/__init__.py +10 -2
  229. maxframe/learn/cluster/__init__.py +15 -0
  230. maxframe/learn/cluster/_kmeans.py +782 -0
  231. maxframe/learn/contrib/llm/core.py +2 -0
  232. maxframe/learn/contrib/xgboost/core.py +86 -1
  233. maxframe/learn/contrib/xgboost/train.py +5 -2
  234. maxframe/learn/core.py +66 -0
  235. maxframe/learn/linear_model/_base.py +58 -1
  236. maxframe/learn/linear_model/_lin_reg.py +1 -1
  237. maxframe/learn/metrics/__init__.py +6 -0
  238. maxframe/learn/metrics/_classification.py +145 -0
  239. maxframe/learn/metrics/_ranking.py +477 -0
  240. maxframe/learn/metrics/_scorer.py +60 -0
  241. maxframe/learn/metrics/pairwise/__init__.py +21 -0
  242. maxframe/learn/metrics/pairwise/core.py +77 -0
  243. maxframe/learn/metrics/pairwise/cosine.py +115 -0
  244. maxframe/learn/metrics/pairwise/euclidean.py +176 -0
  245. maxframe/learn/metrics/pairwise/haversine.py +96 -0
  246. maxframe/learn/metrics/pairwise/manhattan.py +80 -0
  247. maxframe/learn/metrics/pairwise/pairwise.py +127 -0
  248. maxframe/learn/metrics/pairwise/pairwise_distances_topk.py +121 -0
  249. maxframe/learn/metrics/pairwise/rbf_kernel.py +51 -0
  250. maxframe/learn/metrics/tests/__init__.py +13 -0
  251. maxframe/learn/metrics/tests/test_scorer.py +26 -0
  252. maxframe/learn/utils/__init__.py +1 -1
  253. maxframe/learn/utils/checks.py +1 -2
  254. maxframe/learn/utils/core.py +59 -0
  255. maxframe/learn/utils/extmath.py +37 -0
  256. maxframe/learn/utils/odpsio.py +193 -0
  257. maxframe/learn/utils/validation.py +2 -2
  258. maxframe/lib/compat.py +40 -0
  259. maxframe/lib/dtypes_extension/__init__.py +16 -1
  260. maxframe/lib/dtypes_extension/_fake_arrow_dtype.py +604 -0
  261. maxframe/lib/dtypes_extension/blob.py +304 -0
  262. maxframe/lib/dtypes_extension/dtypes.py +40 -0
  263. maxframe/lib/dtypes_extension/tests/test_blob.py +88 -0
  264. maxframe/lib/dtypes_extension/tests/test_dtypes.py +16 -1
  265. maxframe/lib/dtypes_extension/tests/test_fake_arrow_dtype.py +75 -0
  266. maxframe/lib/filesystem/_oss_lib/common.py +122 -50
  267. maxframe/lib/filesystem/_oss_lib/glob.py +1 -1
  268. maxframe/lib/filesystem/_oss_lib/handle.py +21 -25
  269. maxframe/lib/filesystem/base.py +1 -1
  270. maxframe/lib/filesystem/core.py +1 -1
  271. maxframe/lib/filesystem/oss.py +115 -46
  272. maxframe/lib/filesystem/tests/test_oss.py +74 -36
  273. maxframe/lib/mmh3.cp38-win_amd64.pyd +0 -0
  274. maxframe/lib/wrapped_pickle.py +10 -0
  275. maxframe/opcodes.py +33 -15
  276. maxframe/protocol.py +12 -0
  277. maxframe/serialization/__init__.py +11 -2
  278. maxframe/serialization/arrow.py +38 -13
  279. maxframe/serialization/blob.py +32 -0
  280. maxframe/serialization/core.cp38-win_amd64.pyd +0 -0
  281. maxframe/serialization/core.pyx +39 -1
  282. maxframe/serialization/exception.py +2 -4
  283. maxframe/serialization/numpy.py +11 -0
  284. maxframe/serialization/pandas.py +46 -9
  285. maxframe/serialization/serializables/core.py +2 -2
  286. maxframe/serialization/tests/test_serial.py +29 -2
  287. maxframe/tensor/__init__.py +38 -8
  288. maxframe/tensor/arithmetic/__init__.py +19 -10
  289. maxframe/tensor/arithmetic/iscomplexobj.py +53 -0
  290. maxframe/tensor/arithmetic/tests/test_arithmetic.py +6 -0
  291. maxframe/tensor/core.py +3 -2
  292. maxframe/tensor/datasource/tests/test_datasource.py +2 -1
  293. maxframe/tensor/extensions/__init__.py +2 -0
  294. maxframe/tensor/extensions/apply_chunk.py +3 -3
  295. maxframe/tensor/extensions/rebalance.py +65 -0
  296. maxframe/tensor/fft/__init__.py +32 -0
  297. maxframe/tensor/fft/core.py +168 -0
  298. maxframe/tensor/fft/fft.py +112 -0
  299. maxframe/tensor/fft/fft2.py +118 -0
  300. maxframe/tensor/fft/fftfreq.py +80 -0
  301. maxframe/tensor/fft/fftn.py +123 -0
  302. maxframe/tensor/fft/fftshift.py +79 -0
  303. maxframe/tensor/fft/hfft.py +112 -0
  304. maxframe/tensor/fft/ifft.py +114 -0
  305. maxframe/tensor/fft/ifft2.py +115 -0
  306. maxframe/tensor/fft/ifftn.py +123 -0
  307. maxframe/tensor/fft/ifftshift.py +73 -0
  308. maxframe/tensor/fft/ihfft.py +93 -0
  309. maxframe/tensor/fft/irfft.py +118 -0
  310. maxframe/tensor/fft/irfft2.py +62 -0
  311. maxframe/tensor/fft/irfftn.py +114 -0
  312. maxframe/tensor/fft/rfft.py +116 -0
  313. maxframe/tensor/fft/rfft2.py +63 -0
  314. maxframe/tensor/fft/rfftfreq.py +87 -0
  315. maxframe/tensor/fft/rfftn.py +113 -0
  316. maxframe/tensor/indexing/fill_diagonal.py +1 -7
  317. maxframe/tensor/linalg/__init__.py +7 -0
  318. maxframe/tensor/linalg/_einsumfunc.py +1025 -0
  319. maxframe/tensor/linalg/cholesky.py +117 -0
  320. maxframe/tensor/linalg/einsum.py +339 -0
  321. maxframe/tensor/linalg/lstsq.py +100 -0
  322. maxframe/tensor/linalg/matrix_norm.py +75 -0
  323. maxframe/tensor/linalg/norm.py +249 -0
  324. maxframe/tensor/linalg/solve.py +72 -0
  325. maxframe/tensor/linalg/solve_triangular.py +2 -2
  326. maxframe/tensor/linalg/vector_norm.py +113 -0
  327. maxframe/tensor/misc/__init__.py +24 -1
  328. maxframe/tensor/misc/argwhere.py +72 -0
  329. maxframe/tensor/misc/array_split.py +46 -0
  330. maxframe/tensor/misc/broadcast_arrays.py +57 -0
  331. maxframe/tensor/misc/copyto.py +130 -0
  332. maxframe/tensor/misc/delete.py +104 -0
  333. maxframe/tensor/misc/dsplit.py +68 -0
  334. maxframe/tensor/misc/ediff1d.py +74 -0
  335. maxframe/tensor/misc/expand_dims.py +85 -0
  336. maxframe/tensor/misc/flip.py +90 -0
  337. maxframe/tensor/misc/fliplr.py +64 -0
  338. maxframe/tensor/misc/flipud.py +68 -0
  339. maxframe/tensor/misc/hsplit.py +85 -0
  340. maxframe/tensor/misc/insert.py +139 -0
  341. maxframe/tensor/misc/moveaxis.py +83 -0
  342. maxframe/tensor/misc/result_type.py +88 -0
  343. maxframe/tensor/misc/roll.py +124 -0
  344. maxframe/tensor/misc/rollaxis.py +77 -0
  345. maxframe/tensor/misc/shape.py +89 -0
  346. maxframe/tensor/misc/split.py +190 -0
  347. maxframe/tensor/misc/tile.py +109 -0
  348. maxframe/tensor/misc/vsplit.py +74 -0
  349. maxframe/tensor/reduction/array_equal.py +2 -1
  350. maxframe/tensor/sort/__init__.py +2 -0
  351. maxframe/tensor/sort/argpartition.py +98 -0
  352. maxframe/tensor/sort/partition.py +228 -0
  353. maxframe/tensor/spatial/__init__.py +15 -0
  354. maxframe/tensor/spatial/distance/__init__.py +17 -0
  355. maxframe/tensor/spatial/distance/cdist.py +421 -0
  356. maxframe/tensor/spatial/distance/pdist.py +398 -0
  357. maxframe/tensor/spatial/distance/squareform.py +153 -0
  358. maxframe/tensor/special/__init__.py +159 -21
  359. maxframe/tensor/special/airy.py +55 -0
  360. maxframe/tensor/special/bessel.py +199 -0
  361. maxframe/tensor/special/core.py +65 -4
  362. maxframe/tensor/special/ellip_func_integrals.py +155 -0
  363. maxframe/tensor/special/ellip_harm.py +55 -0
  364. maxframe/tensor/special/err_fresnel.py +223 -0
  365. maxframe/tensor/special/gamma_funcs.py +303 -0
  366. maxframe/tensor/special/hypergeometric_funcs.py +69 -0
  367. maxframe/tensor/special/info_theory.py +189 -0
  368. maxframe/tensor/special/misc.py +21 -0
  369. maxframe/tensor/statistics/__init__.py +6 -0
  370. maxframe/tensor/statistics/corrcoef.py +77 -0
  371. maxframe/tensor/statistics/cov.py +222 -0
  372. maxframe/tensor/statistics/digitize.py +126 -0
  373. maxframe/tensor/statistics/histogram.py +520 -0
  374. maxframe/tensor/statistics/median.py +85 -0
  375. maxframe/tensor/statistics/ptp.py +89 -0
  376. maxframe/tensor/utils.py +3 -3
  377. maxframe/tests/test_utils.py +43 -1
  378. maxframe/tests/utils.py +0 -2
  379. maxframe/typing_.py +2 -0
  380. maxframe/udf.py +27 -2
  381. maxframe/utils.py +193 -19
  382. {maxframe-2.0.0b2.dist-info → maxframe-2.2.0.dist-info}/METADATA +3 -2
  383. {maxframe-2.0.0b2.dist-info → maxframe-2.2.0.dist-info}/RECORD +391 -236
  384. maxframe_client/fetcher.py +35 -4
  385. maxframe_client/session/odps.py +7 -2
  386. maxframe_client/tests/test_fetcher.py +76 -3
  387. maxframe_client/tests/test_session.py +4 -1
  388. /maxframe/dataframe/{misc → reshape}/melt.py +0 -0
  389. /maxframe/dataframe/{misc → reshape}/stack.py +0 -0
  390. {maxframe-2.0.0b2.dist-info → maxframe-2.2.0.dist-info}/WHEEL +0 -0
  391. {maxframe-2.0.0b2.dist-info → maxframe-2.2.0.dist-info}/top_level.txt +0 -0
@@ -1,71 +1,76 @@
1
- maxframe/__init__.py,sha256=6Y3yW67GtpKOGqMC1prt4yxqUTc0twHA3yjMEH-5WTw,1036
2
- maxframe/_utils.cp38-win_amd64.pyd,sha256=XQ2fcffes2ncaamGwlKsTv-2apHOSM4mVTaeuCkv4gM,308736
1
+ maxframe/__init__.py,sha256=EbxQluyN0it4t6o-EFyY8OxEiJ65aj-u9DLEmzi-50w,1089
2
+ maxframe/_utils.cp38-win_amd64.pyd,sha256=qTlCB-NvaANe4oYz7HAqrRMttpIuj_ZttH2JGURXhnI,312320
3
3
  maxframe/_utils.pxd,sha256=ckEN1J8rXAtNYW7CictnSVYamH-sQx-uIuWrQts_OT4,1187
4
4
  maxframe/_utils.pyi,sha256=qwxGcqDyM19BufUweKHcupBlW767nUz7oxQQEiHc39k,937
5
- maxframe/_utils.pyx,sha256=JI3Qzyj6aBsIBxUWf1Fwsk8cZDREW-WjVMg9mY-ATuA,17576
6
- maxframe/conftest.py,sha256=FaxbhApynyJUymU9koEV-GT55hUHATPH2A5AkT9BYRE,7400
7
- maxframe/env.py,sha256=RF1qOlKddv7pQS77J2rc_bIUnpOj7U6_BLefPsppwDk,1489
8
- maxframe/errors.py,sha256=yHkOri5hrRfffDonOqR91FXrTPt4QiEzgkuN5V7dJLM,1296
5
+ maxframe/_utils.pyx,sha256=gHcEQZJau7EeJO4vGbYnTz2jjYZnl2OfRtMfpy2cPdw,17887
6
+ maxframe/conftest.py,sha256=EzeaiLTWlqls92yAnL0rHReOXfkXKyFMmZZek_2mMuo,8130
7
+ maxframe/env.py,sha256=D7z8odY4533G8xSqSIOqHIOE3LfwUa0-eDxT3hzHvLA,1636
8
+ maxframe/errors.py,sha256=pE0QE9brAZ_zlcjRXSLP6PPdCwD3c_w23I8tyS3kZXE,1255
9
9
  maxframe/extension.py,sha256=Azk5sfD9491axgBTvgSd2G-WIe0Fpu-x4e_V4SwCvLY,3046
10
10
  maxframe/mixin.py,sha256=OiKXnTmY10icHNJwNxBwIfrjbTvjg82gLB4GUOe721E,5802
11
- maxframe/opcodes.py,sha256=BsoWgYmWwE3F6i2xwNDBruLKZEKht0pKUpyXdoStIag,11770
12
- maxframe/protocol.py,sha256=KPFAEz2f4NjhD6Rf6PVb3Y9gfGvmvjaorPS65_Y8nlg,20981
11
+ maxframe/opcodes.py,sha256=fgLKeEfbUKrcPmDS99jjMFwZJbJ_FBW8nPwsyo5GA50,12119
12
+ maxframe/protocol.py,sha256=cvWNP9xRQU7P1G9zmKBFrDEIze8aCRVtZarRQyIozOs,21498
13
13
  maxframe/session.py,sha256=d0adlfeAZ9VloRSCp-SQj9q6qNEKyrV7_Z5XpeNzkAY,36034
14
14
  maxframe/sperunner.py,sha256=BJmUE1aJcWIAQGeuWieWc_3NUx-IOgY8ObAxpLE2CO4,5737
15
- maxframe/typing_.py,sha256=ncVNpaqtO4zEzDA5yHa-OazpzTG8D8ZLule6wXIgPW0,1220
16
- maxframe/udf.py,sha256=EL12dm2jUZKRgwyJv1WBN4lhO1gh2nY4RobGUQtQKBc,7750
17
- maxframe/utils.py,sha256=95wCTKCu_btwbXVR1C40e0cg_wr-9otlY7xN6H4bS3k,48425
15
+ maxframe/typing_.py,sha256=Psiq3OtG6gBng_p3nKFD78FYQsZOP2pcNA7u93doLoA,1305
16
+ maxframe/udf.py,sha256=DGztfEr8TCMA92KLnh8T2AvnY8LIQCrRUot4CAJGQyo,8630
17
+ maxframe/utils.py,sha256=lsPEv6HixFSsLg8HOIVE4SPTQkyex8TXdL2Ldn0sInI,54165
18
18
  maxframe/codegen/__init__.py,sha256=lVXVYKiVKkMKugTcwg5zDzClQkxaKbCY719X8gD3lPA,892
19
- maxframe/codegen/core.py,sha256=VHU-4tIpHCaabfl0qzj4TGcEyoc23Mm8FPTWyPhc0_w,20811
19
+ maxframe/codegen/core.py,sha256=eMXE9f_3_TxvI0mNHhhDbuXpCbVc2NqB7eUmds1AzNk,20805
20
20
  maxframe/codegen/spe/__init__.py,sha256=_Y9BcvEg3wSdwTAATA2Tnh2HmvMY1haEJV7_z0PehK8,704
21
- maxframe/codegen/spe/core.py,sha256=yMyjGICKCtTCwxXcDzZp1SPebJFQ3Ry7UwDYzrY3Df8,10852
21
+ maxframe/codegen/spe/core.py,sha256=Ga7dKgXm_Ynnu9gn_tf0jRjuiftGFDDxrLld4Y-ukkI,10854
22
22
  maxframe/codegen/spe/objects.py,sha256=Oq1A8RilasBGNR9A4wHFNFDD9HGPrL1nuwPNA9Z7CKw,1069
23
23
  maxframe/codegen/spe/remote.py,sha256=6ys6Elyr8rkLRd_HVp08aCbbp0wsPnDjgBmnLQ1Mf94,1283
24
- maxframe/codegen/spe/utils.py,sha256=mwH9e57ann9iQqBL-YDTJ8AL3cSJ7muDnXgW7CQfCwc,2065
25
- maxframe/codegen/spe/dataframe/__init__.py,sha256=S6Q86BQjMZQJgredqCahTy543j2TRMJTqbCb4forWQg,933
26
- maxframe/codegen/spe/dataframe/arithmetic.py,sha256=4Sq0XtpcNrZJDlCdstJ-cCGxqFePY1-qxyWN7iTIO1c,3487
24
+ maxframe/codegen/spe/utils.py,sha256=-XbB0rdLhIRUXZp5geO8ki3HtrcVeIBmYPPWB-4g-Vg,2154
25
+ maxframe/codegen/spe/dataframe/__init__.py,sha256=TZuRJHtLLvpkhGrzwu9My76jpT1ljeFZgEQKsvAtluM,947
26
+ maxframe/codegen/spe/dataframe/arithmetic.py,sha256=MLE02OZd-a8zLg-pQHnwhHXgAWZ5dggJbmDCP5NcJ0o,3632
27
27
  maxframe/codegen/spe/dataframe/datasource.py,sha256=P9IH6glVW2DVGqS0B9mg1SnQNJVPSIksTvPJze-7oQE,6940
28
28
  maxframe/codegen/spe/dataframe/datastore.py,sha256=u0PLR435RBkpcvcenFaAoeixUOmjfRStCnuJIYEopdE,8315
29
29
  maxframe/codegen/spe/dataframe/extensions.py,sha256=DDt3NfADH71rU1FktjGy7I9G5tYEqTqmWJRrzZxS_1E,2842
30
30
  maxframe/codegen/spe/dataframe/fetch.py,sha256=tgukXQ3L6qGUqV9n308pEUH3DFrXQUJHR8WYzl6hrZQ,1077
31
- maxframe/codegen/spe/dataframe/groupby.py,sha256=KYWNdAxsUZBoDqk30tg41uoq_roWaheDISj1YRhNOnE,9749
32
- maxframe/codegen/spe/dataframe/indexing.py,sha256=wOBrgVzH7l9ViyQycqDtygKEbxnqQvlPau-ID8NSHFM,9782
33
- maxframe/codegen/spe/dataframe/merge.py,sha256=rFkcP599DAcDqtZ-lhh18JwTSOuekurhsRxJcSIIx5E,2834
34
- maxframe/codegen/spe/dataframe/misc.py,sha256=kfoxJe97JkzlVepiTDej_gRBDVDvN_SL6DTqW82bp9w,11533
31
+ maxframe/codegen/spe/dataframe/groupby.py,sha256=WG5CorH6k3ST0ZQke-w0h4mknB3hKakJKkSaa2laHmU,13815
32
+ maxframe/codegen/spe/dataframe/indexing.py,sha256=22u2RwG_ZmKq9-7tGpSk3fAPzLBkUdKuj7LieAPZaRc,13383
33
+ maxframe/codegen/spe/dataframe/merge.py,sha256=SasLD2KkTdPI8HKjDt5cEGml3OACzEoKzH7ahbFVtls,4066
34
+ maxframe/codegen/spe/dataframe/misc.py,sha256=k0DShdn5YpQ1Y8PGOrKenn0FyRHat4SZ8JmdhawL7jc,10790
35
35
  maxframe/codegen/spe/dataframe/missing.py,sha256=-LmaTgMJcZq0_eB8FRYJp_QFJaVEgeQL7xhVrF-MSrw,2876
36
- maxframe/codegen/spe/dataframe/reduction.py,sha256=wfbUmEo_ptqzqW3HURxKs4APZQqhCnhGzYjP4PqHajI,5414
37
- maxframe/codegen/spe/dataframe/sort.py,sha256=rywFr1szkvF55QZQQBrnI7Nb7a834oGG3Gw8s5t_SCY,2864
36
+ maxframe/codegen/spe/dataframe/reduction.py,sha256=qc8rGkTGBt9i_7fSWrwdcyDbCh7WZ4yI7uetA2pJqL4,5534
37
+ maxframe/codegen/spe/dataframe/reshape.py,sha256=NeAGhqKeqjt4OQbuFsDPyNde7GUjiLmiC6QU2M6XM7s,1606
38
+ maxframe/codegen/spe/dataframe/sort.py,sha256=VOmQAxGnyFdEpLryi3JIslZlDZnn6ImojMQ8KD1ngHE,3542
38
39
  maxframe/codegen/spe/dataframe/statistics.py,sha256=Bi0yqyYqSjjhWiTOK_oOtWIfQdg71sD5jiOcPhFWYFU,1833
39
40
  maxframe/codegen/spe/dataframe/tseries.py,sha256=8xH8CHG1BH76IB_dYoWNN9zvCXnp1YtdLHMdbpBYa5w,1862
40
41
  maxframe/codegen/spe/dataframe/udf.py,sha256=JVmc-jNH3qOp8f19wGe97m2tJAnYWHrQLgSXyUAhmbU,2189
41
42
  maxframe/codegen/spe/dataframe/value_counts.py,sha256=ciDxQaYAQCq1F_6jWJCqaD_ooCfK-CdFR6fo4NcaTn8,1385
42
43
  maxframe/codegen/spe/dataframe/window.py,sha256=-WJRFmPbnd7CXxseTtRyd5aXU9QmjPn5LTDup1OvfXA,3012
43
44
  maxframe/codegen/spe/dataframe/accessors/__init__.py,sha256=E7QXUrFvzcCmEgfsa_0TvZd6Vnd9voBKgx_YlqZbYo8,645
44
- maxframe/codegen/spe/dataframe/accessors/base.py,sha256=oPQCfyQHR5K_qctYbnPLs7Gj2ySyZYMgeIHVtMyWpfw,2232
45
- maxframe/codegen/spe/dataframe/accessors/dict_.py,sha256=NC0TTUbHCJ7E_TliRV8F0k_F2WZnB5A-Upawurc83Vg,7605
46
- maxframe/codegen/spe/dataframe/accessors/list_.py,sha256=3MHyoK1UiP0Ga3JuHuUGkUcfugbHXtp3uWOg7Yyq2Rg,3183
45
+ maxframe/codegen/spe/dataframe/accessors/base.py,sha256=rIVN1BIoMA2TY1YTPt9RpHMiLfPkQAOQKDJBFGOKXbE,2956
46
+ maxframe/codegen/spe/dataframe/accessors/dict_.py,sha256=8Z1vKQbLxteYQYzxmDRNthgNt0cqIHIqjYithpB3MTA,2710
47
+ maxframe/codegen/spe/dataframe/accessors/list_.py,sha256=vMksUPxwcfx6MDgn3XINUKsTqTrQGdY6RPzwo--RYsA,1434
48
+ maxframe/codegen/spe/dataframe/accessors/struct_.py,sha256=prWc0shgOTVTeL7UNC51QArLPbnCRadgNYD7hsyiE_Y,1028
47
49
  maxframe/codegen/spe/dataframe/tests/__init__.py,sha256=4LpNXO11JAdLjSut3p036oEEXlDEB-6AURW9oci5W5Y,609
48
50
  maxframe/codegen/spe/dataframe/tests/test_arithmetic.py,sha256=-s64wIhtIQSVMhcbvhEXGPcKGxrV45GNcSGjYUDjlZE,2712
49
51
  maxframe/codegen/spe/dataframe/tests/test_datasource.py,sha256=xMBUXRrl2s6lpIlSox0pgcUb0Le2cnCImGWQ1bh7adw,7320
50
52
  maxframe/codegen/spe/dataframe/tests/test_datastore.py,sha256=h2vXGT0hTxXc1Pm6kDYMbZTxfe-uwVDNuKUiY-IxWXQ,7207
51
53
  maxframe/codegen/spe/dataframe/tests/test_extensions.py,sha256=973u9nYIS83Z5s-JgN82ZZjflUrO7LHKO-HOI4chyLk,3170
52
- maxframe/codegen/spe/dataframe/tests/test_groupby.py,sha256=TXnKxqfQwgzF9PPQ_AclavLUbbYodX33J_JvO3sEF4o,8094
53
- maxframe/codegen/spe/dataframe/tests/test_merge.py,sha256=LFIoEsjTL3yRqMxh4eRzuHKV2i8MfKcE1QExBt0gPsQ,13349
54
+ maxframe/codegen/spe/dataframe/tests/test_groupby.py,sha256=L_l4XoqOr9fRkbW06_2lU1JpXlM9XHSFGX8jmHQY6sg,10779
55
+ maxframe/codegen/spe/dataframe/tests/test_merge.py,sha256=SYomowjwdmIcgip1-Ht-CMsnOORLTFLQ0QS_T0GxEBI,14107
54
56
  maxframe/codegen/spe/dataframe/tests/test_reduction.py,sha256=LorydGqWX2CBaiAxt246Mve5efTryqnre8luYrrmrYk,3511
55
- maxframe/codegen/spe/dataframe/tests/test_sort.py,sha256=c_EefmTGAeSccVWW4zlpYTvce7MOM-NkC6BX1ybJJGM,5435
57
+ maxframe/codegen/spe/dataframe/tests/test_reshape.py,sha256=qXvIoCzhPV622eW_G21nzPyX1mP9tdPyRBii6L0HPDs,2358
58
+ maxframe/codegen/spe/dataframe/tests/test_sort.py,sha256=9O9uRPJ0SuKAN3Dpm1VFAL1-kNRBKwD3Ek7aoZtO9qw,6204
56
59
  maxframe/codegen/spe/dataframe/tests/test_statistics.py,sha256=c-niNErZQYeJKBZoFhf9-uP8PtTICZFQNcJt-cuUtvw,2341
57
60
  maxframe/codegen/spe/dataframe/tests/test_tseries.py,sha256=9eXXtQ0fZJO9tkB75b6jJv_g68nlS4eiyRmBsp-bf-w,1263
58
61
  maxframe/codegen/spe/dataframe/tests/test_value_counts.py,sha256=ncKiENxBZPOIbQYju9D8_44p4qkmUtEXCdVFhLHp_SI,2070
59
62
  maxframe/codegen/spe/dataframe/tests/test_window.py,sha256=qQyYtcP94NEtMBGNqE8jjq9_hAGWhaf5wZqbdYdkpF8,2344
60
63
  maxframe/codegen/spe/dataframe/tests/accessors/__init__.py,sha256=4LpNXO11JAdLjSut3p036oEEXlDEB-6AURW9oci5W5Y,609
61
64
  maxframe/codegen/spe/dataframe/tests/accessors/test_base.py,sha256=n23pvnurRQsMZ4HS759axoycC_Gqr3URYTb1WfXVc0A,1299
62
- maxframe/codegen/spe/dataframe/tests/accessors/test_dict.py,sha256=TvyPmLDM32PrfqfeRnQkLLnVQr4ArVzacOAV_DMLsag,9200
63
- maxframe/codegen/spe/dataframe/tests/accessors/test_list.py,sha256=W_WOTiGVnni2wjvlkSt8CnmmWsTZ-JwlHEcjNjCFdV0,3973
65
+ maxframe/codegen/spe/dataframe/tests/accessors/test_dict.py,sha256=4hoSYwCTdOyYpgtH9zZHhQD9YlUmBgZxbPhBFF4mZCY,8955
66
+ maxframe/codegen/spe/dataframe/tests/accessors/test_list.py,sha256=XwE5Ykm9cMGdb_rsNqCM6kMYRL4XvVWvUpqVkw5yTD4,3889
67
+ maxframe/codegen/spe/dataframe/tests/accessors/test_struct.py,sha256=Bpy0-wiqsOyZ_uJsCVdZS1rcduxskfMd9KU3JY9GlMQ,2452
64
68
  maxframe/codegen/spe/dataframe/tests/indexing/__init__.py,sha256=4LpNXO11JAdLjSut3p036oEEXlDEB-6AURW9oci5W5Y,609
65
69
  maxframe/codegen/spe/dataframe/tests/indexing/conftest.py,sha256=ys7q2jGF62Zm3O7pWIyBh1OjzkTBAubxRn6Gqeiy2fM,1539
66
70
  maxframe/codegen/spe/dataframe/tests/indexing/test_getitem.py,sha256=8nkvqXooZJKXX6Y6AkakcCYuqUnBlAPKGYe-jm3dfzg,4595
67
- maxframe/codegen/spe/dataframe/tests/indexing/test_iloc.py,sha256=96-McaIsGvlmn12rspj23El5cahSILCjDtWnRW2iUHw,2773
71
+ maxframe/codegen/spe/dataframe/tests/indexing/test_iloc.py,sha256=JH991rz8tjyyjeglxyWXsefpjE95N9kV0GSgyqEsClY,3429
68
72
  maxframe/codegen/spe/dataframe/tests/indexing/test_indexing.py,sha256=fACnQJDSZdU61oc12KKMqFueByo9cyCULrw_rETLetk,1486
73
+ maxframe/codegen/spe/dataframe/tests/indexing/test_loc.py,sha256=9XTHXY3FzHpWg7fCB3A0Pr5gthWeUMwLSdZabwFHPxU,1373
69
74
  maxframe/codegen/spe/dataframe/tests/indexing/test_rename.py,sha256=xi7sWNmmMK0C2nu-UcJifdLitYVAHba3D7EWQQbiko0,1918
70
75
  maxframe/codegen/spe/dataframe/tests/indexing/test_reset_index.py,sha256=hnxnRyeSCqnnOLjhWsnBEx150sp69R7RVzjV34Mj7Z0,3200
71
76
  maxframe/codegen/spe/dataframe/tests/indexing/test_sample.py,sha256=4xt5WyUYjceXCjZbE6mVdPkheacdUAi-FETA7IXkqLc,1766
@@ -75,7 +80,7 @@ maxframe/codegen/spe/dataframe/tests/indexing/test_setitem.py,sha256=qq1stT3M99S
75
80
  maxframe/codegen/spe/dataframe/tests/misc/__init__.py,sha256=4LpNXO11JAdLjSut3p036oEEXlDEB-6AURW9oci5W5Y,609
76
81
  maxframe/codegen/spe/dataframe/tests/misc/test_apply.py,sha256=radsAddmK-FHMzcspgRPn53ncgsCEb7kam0irRJYciw,4513
77
82
  maxframe/codegen/spe/dataframe/tests/misc/test_drop_duplicates.py,sha256=CtKeFLjJjzfafe1HY7CjXtGkhTqwDcUa3LJCdsoMDP0,2712
78
- maxframe/codegen/spe/dataframe/tests/misc/test_misc.py,sha256=7LnJUZqPL1uXJGYU90DYd11UtS8wA2mlEKObnovQy4I,7536
83
+ maxframe/codegen/spe/dataframe/tests/misc/test_misc.py,sha256=dFbwxlk0Bm_BsRlUovfQCeYCPk8aZD6BDTnjEkvaBV4,6513
79
84
  maxframe/codegen/spe/dataframe/tests/missing/__init__.py,sha256=4LpNXO11JAdLjSut3p036oEEXlDEB-6AURW9oci5W5Y,609
80
85
  maxframe/codegen/spe/dataframe/tests/missing/test_checkna.py,sha256=3_NmbWnlMh8eZKOKonzRnfCh_8uE2LssJE6zCQrXJ4E,3034
81
86
  maxframe/codegen/spe/dataframe/tests/missing/test_dropna.py,sha256=9ss9fF7jCOIDyrjWokflE6eVVeY9qQ8OF9vVglIXl9w,1768
@@ -91,11 +96,15 @@ maxframe/codegen/spe/learn/contrib/tests/__init__.py,sha256=4LpNXO11JAdLjSut3p03
91
96
  maxframe/codegen/spe/learn/contrib/tests/test_lightgbm.py,sha256=7M9eoRrwakgQr0fO88N-tIfoKVn4Tj6t0-LQS1GoiJ4,4582
92
97
  maxframe/codegen/spe/learn/contrib/tests/test_models.py,sha256=Zf1DPcR8FLfuLb7orubQLSzVmH7iGSqYVsXnxL9tjYA,1403
93
98
  maxframe/codegen/spe/learn/contrib/tests/test_pytorch.py,sha256=L2fcmQzfaDMvmtrV-r_87R9gj1VdR4UVtKfleuDhKCU,1617
94
- maxframe/codegen/spe/learn/contrib/tests/test_xgboost.py,sha256=ZimP93NBpGh24zbD78FRFehS8eF3I41cxgHn0dlHUHc,3718
95
- maxframe/codegen/spe/learn/metrics/__init__.py,sha256=fB5tWH0wzdHx44b6E0UikblKFwZ7yB0O2hgyd5DMLE8,642
99
+ maxframe/codegen/spe/learn/contrib/tests/test_xgboost.py,sha256=-upWBKgtrXrxy8dmoDT9Hbk-AR38r3aNuOnLP08612Q,3765
100
+ maxframe/codegen/spe/learn/metrics/__init__.py,sha256=yH6Sz4jNfLkhudJIQiURJVIkZ9mX8JWiHUn3pty8ApQ,662
96
101
  maxframe/codegen/spe/learn/metrics/_classification.py,sha256=d9c0BnANBwkylfuc5r1Lx51JcBN_RaMrF5SwZmL5XIQ,4369
102
+ maxframe/codegen/spe/learn/metrics/_ranking.py,sha256=oBngMWH4cjf1KjcW-KM9u83NsYIKT3amiiOmtLPu6JA,2952
103
+ maxframe/codegen/spe/learn/metrics/pairwise.py,sha256=9XBJ2kDAlNXNRQ2bbblgH1at7XTXvqGUz_8u_aarwjU,1742
97
104
  maxframe/codegen/spe/learn/metrics/tests/__init__.py,sha256=4LpNXO11JAdLjSut3p036oEEXlDEB-6AURW9oci5W5Y,609
98
105
  maxframe/codegen/spe/learn/metrics/tests/test_classification.py,sha256=znwXqV5d67n5UHyuBZhpv7qbpTpUofLVSp-f62uNuTI,3461
106
+ maxframe/codegen/spe/learn/metrics/tests/test_pairwise.py,sha256=WByS3PPSpwlAGGxJybxeQipl3q824qGDvqXV5tHYlG4,1288
107
+ maxframe/codegen/spe/learn/metrics/tests/test_ranking.py,sha256=8VXTUE-jg2ScFetm1RyDz_Oa2Y9yIajE_-lhC3rjRWU,2021
99
108
  maxframe/codegen/spe/learn/model_selection/__init__.py,sha256=4LpNXO11JAdLjSut3p036oEEXlDEB-6AURW9oci5W5Y,609
100
109
  maxframe/codegen/spe/learn/model_selection/tests/__init__.py,sha256=4LpNXO11JAdLjSut3p036oEEXlDEB-6AURW9oci5W5Y,609
101
110
  maxframe/codegen/spe/learn/model_selection/tests/test_split.py,sha256=f1cwzZ89H_oLLYogPZiKXrwrHtx_EAgmHtYkTRl6qjQ,1705
@@ -117,65 +126,69 @@ maxframe/codegen/spe/learn/utils/tests/test_multiclass.py,sha256=-_aSKwrhqH7ChNB
117
126
  maxframe/codegen/spe/learn/utils/tests/test_shuffle.py,sha256=11Bnq0T193PrzKJFeCJTWx6TSHO1zA87xgtvqeu-AoA,1987
118
127
  maxframe/codegen/spe/learn/utils/tests/test_sparsefuncs.py,sha256=t0iZM5nVRZ2Aiwbzxw6LQgk-UbqoARz6WtHDlxPie1Q,1201
119
128
  maxframe/codegen/spe/learn/utils/tests/test_validation.py,sha256=nbWmQaS-HF2NqlJvi6P50Gi9ix0Fy4hixmxkmtu0y7A,1616
120
- maxframe/codegen/spe/tensor/__init__.py,sha256=KY9Ith3U2IGdI4gyc858WW25HVGGWGd7mRUWv9ybYww,802
129
+ maxframe/codegen/spe/tensor/__init__.py,sha256=Gy3mkRfGm9V_qhlRmfTMeqdZP0e9131EMawCGCZGhmA,843
121
130
  maxframe/codegen/spe/tensor/arithmetic.py,sha256=T4QurE14_yfcUL1fW3ImwXX99UfG9emXhyzknmxao6I,3757
122
131
  maxframe/codegen/spe/tensor/core.py,sha256=PdH-2OmfkUS5gN5cVA6JH49nJcJZEsHMvuWkuOfx2fk,1572
123
132
  maxframe/codegen/spe/tensor/datasource.py,sha256=HLc652ygG5-DfjTGxBBl6iTzbreg9BJ_kiJMHzhewTM,6415
124
133
  maxframe/codegen/spe/tensor/extensions.py,sha256=qNQgtzfnZdaR8dSq6bT7kKlryS7mHiQPPrI0ec5xTQk,1544
125
134
  maxframe/codegen/spe/tensor/fetch.py,sha256=gJPvVEC9ZACjAOByH7SZop7WzSsZUDcf5Mga-lknf10,1062
135
+ maxframe/codegen/spe/tensor/fft.py,sha256=aAVx4QKSsZ5jt8i9b2W00BBZ9LKRGdwudNdRLY-sfrg,3440
126
136
  maxframe/codegen/spe/tensor/indexing.py,sha256=9hqPejqDII269n1pOJkWtN2R_VqJqTB36ZoTmvGleRE,2412
127
- maxframe/codegen/spe/tensor/linalg.py,sha256=GQPuA0-AtHE-yurYT3iFySmD9A2nAxrHRJh8llbeCGg,2344
137
+ maxframe/codegen/spe/tensor/linalg.py,sha256=dpNJxQvca2YWLYHpsW-HbftaSQAFDDIl1lpHPC2aThs,3419
128
138
  maxframe/codegen/spe/tensor/merge.py,sha256=gBnwFM6ZCJnpmTt1-Fd-VxaZBBH7hsi1J9Wm-4l3f0c,1415
129
- maxframe/codegen/spe/tensor/misc.py,sha256=a2ORzyVJLceVck9D2DLBmn7pAKc-9BX5SR2TgsWUvVo,4183
139
+ maxframe/codegen/spe/tensor/misc.py,sha256=8WRjEu1vp0RlRTYUUJScx0HccQF6y7Di_NfhONf2IHg,6100
130
140
  maxframe/codegen/spe/tensor/random.py,sha256=J-QUve_fKakLO1C_QDUHSIFvpF4NXpKpbLd43vs0TP4,1305
131
141
  maxframe/codegen/spe/tensor/reduction.py,sha256=GZ8JXmFtv_rVYSTdXKNSvT1ste2aK23z5DAxpngmotY,1525
132
142
  maxframe/codegen/spe/tensor/reshape.py,sha256=L7wO5jQqETQsEGoWcClvUcEIzXTAmlgsY7Il7gBOJGg,895
133
143
  maxframe/codegen/spe/tensor/sort.py,sha256=Xk_tttAe7hI_dWxA3gayi1gggeaPKuwVRLPGC7fQduo,1650
144
+ maxframe/codegen/spe/tensor/spatial.py,sha256=QoWEJ8GSiR56ZapCwklxWaksaJ9Y7651YUHN5YIWiRA,1434
134
145
  maxframe/codegen/spe/tensor/special.py,sha256=eexQMEuMdjAx9Tq0SI-gSr0hiw8321mj7tAe9jXPQwo,1296
135
- maxframe/codegen/spe/tensor/statistics.py,sha256=AbZPQf27WwVxmdFsadZC9hzbdHFqp9AOOdaaxVXxLgc,884
146
+ maxframe/codegen/spe/tensor/statistics.py,sha256=rhtbR9-NT67Z_4pU_bnXtOhh-gabpgF6ZREXExK2So8,2467
136
147
  maxframe/codegen/spe/tensor/tests/__init__.py,sha256=4LpNXO11JAdLjSut3p036oEEXlDEB-6AURW9oci5W5Y,609
137
148
  maxframe/codegen/spe/tensor/tests/test_arithmetic.py,sha256=ybyUYEkV6OHpOWzpguA4SGi76mxXWUy5HiPUBoP4voQ,3335
138
149
  maxframe/codegen/spe/tensor/tests/test_datasource.py,sha256=8Vbvlhu2u7vwSVuMVJRXDGWI5VgYlEuWf5CRCCQfnGU,3473
139
150
  maxframe/codegen/spe/tensor/tests/test_extensions.py,sha256=RMulU-l7IXSHmm0_vOp0XEN2HVHY3XFC1cGXBDzA9nE,1426
151
+ maxframe/codegen/spe/tensor/tests/test_fft.py,sha256=YPalVLTE9HUrPgDBFS2sonI88PpzD86jAW610ze022M,2052
140
152
  maxframe/codegen/spe/tensor/tests/test_indexing.py,sha256=iuHMPejK2JRjZhW3gEJNiC2tIY99gA1v2JqMX253DjI,1525
141
- maxframe/codegen/spe/tensor/tests/test_linalg.py,sha256=KlYwfUh5cusRwvttdxFBoea77IFX66jS6NJGMS3A9OE,1444
153
+ maxframe/codegen/spe/tensor/tests/test_linalg.py,sha256=r6nhA5HmnSQrNyX38FqLkCrKQVu1SylFyzjjGj55T7E,1893
142
154
  maxframe/codegen/spe/tensor/tests/test_merge.py,sha256=ZcHP5FtRY58Hv5rc_IowecoTzk5KBlAIA-FzZR8djuc,1107
143
- maxframe/codegen/spe/tensor/tests/test_misc.py,sha256=vUJ3j3TEXGictx-Gsm4Se736Aikm0mUNp4mHF6eDxXs,3304
155
+ maxframe/codegen/spe/tensor/tests/test_misc.py,sha256=zgt95Or2vDZkhkGDQzb59T8-wkwLE6otfjv2d0cfClY,4836
144
156
  maxframe/codegen/spe/tensor/tests/test_random.py,sha256=SpA2pACTzZeWtgA1heOBjpKrVyh5sEdJX95kt01tdtI,1949
145
157
  maxframe/codegen/spe/tensor/tests/test_reduction.py,sha256=HrsiVTOdjgmqd9KZBwf73qYO_0uF-DQ4hxH6GqfGlu0,2097
146
158
  maxframe/codegen/spe/tensor/tests/test_reshape.py,sha256=aocidOiIIM_me1j1bIuFza1UkNJ25kU_WmSQ1m1hoIA,1504
147
159
  maxframe/codegen/spe/tensor/tests/test_sort.py,sha256=m2NG6LU5OJ2JgIdTLyAwgkoayqnEq9UrNx4gaXGIYag,1932
160
+ maxframe/codegen/spe/tensor/tests/test_spatial.py,sha256=So5g4maZBSOlq8p0w4ipf1fTKjxJ-hZDCgawBp0L6O8,1223
148
161
  maxframe/codegen/spe/tensor/tests/test_special.py,sha256=km8seyy-WaZSW12tY--n9coIwzIsC_EiMc9-AmeFXVA,1079
149
- maxframe/codegen/spe/tensor/tests/test_statistics.py,sha256=TvAuLLwPJ1q6JUiZaF8FWjIJ7ZZ07hMzdwJi_pHpvgk,1146
162
+ maxframe/codegen/spe/tensor/tests/test_statistics.py,sha256=bF43Fo4k6FR7BYpSpesuPTJTFp-1RjYHiqG5xJ2ZF9c,1578
150
163
  maxframe/codegen/spe/tests/__init__.py,sha256=4LpNXO11JAdLjSut3p036oEEXlDEB-6AURW9oci5W5Y,609
151
164
  maxframe/codegen/spe/tests/test_remote.py,sha256=jYW3I00ZupJ1aUI0nGoObrhrPS-TxORXOvo1PHf_qFo,1060
152
- maxframe/codegen/spe/tests/test_spe_codegen.py,sha256=z49xwbPj056FkHZwV7mHc8pH6hazyGh9Dv3jg-fZgT0,4383
165
+ maxframe/codegen/spe/tests/test_spe_codegen.py,sha256=N8hGdrgijdap6lmLvgqmMh7UyXtebTNbnOnjhrBF2K4,4341
153
166
  maxframe/codegen/tests/__init__.py,sha256=4LpNXO11JAdLjSut3p036oEEXlDEB-6AURW9oci5W5Y,609
154
167
  maxframe/codegen/tests/test_codegen.py,sha256=byLlIGVFEHkQo1kYTXzhZKrgzfvmVnjOVC8uAirTO7o,2196
155
168
  maxframe/config/__init__.py,sha256=16nesh8iIn5JthkjUlRR2SRB0R5MU6FHdN71mpRzEMw,671
156
- maxframe/config/config.py,sha256=5Z_PmHrYpmQV53QJ32lVGfQCYeQcg63rVOQXPe-_3zw,18026
157
- maxframe/config/validators.py,sha256=wDflf-6cvliM5OBiInm_xpIT4MslIBUI6t_OFAi-H9w,2709
169
+ maxframe/config/config.py,sha256=aDuVhlHcpy2w3iI7kbD8DVC-1hYjqCrL88-ChFUTtpE,19644
170
+ maxframe/config/validators.py,sha256=4dJw3LwafqaXUk6huHQhiJfld1OF1CpguclGyUhM2ik,4130
158
171
  maxframe/config/tests/__init__.py,sha256=4LpNXO11JAdLjSut3p036oEEXlDEB-6AURW9oci5W5Y,609
159
172
  maxframe/config/tests/test_config.py,sha256=k-ARyl0DiBP_ecNWgzQbOsziGQNTGfmITcZljFf6T0I,3333
160
- maxframe/config/tests/test_validators.py,sha256=3V4zWHbgLmOF0dOsP91z_S6qmUcRFpuWy-nCieNiyDI,1274
173
+ maxframe/config/tests/test_validators.py,sha256=JlU8_b6V64QxNdnqPX_lQTzlyNq3C7kZHPEMQbV9-gY,1615
161
174
  maxframe/core/__init__.py,sha256=Zu1qm30BTGoI5erjljAViucy6HNqLPO1ghvs6FE2EDw,1590
162
- maxframe/core/accessor.py,sha256=ghmMSiH_PK4JJ63BlCu5xb85FU94nGhNYCqTc4zMTMQ,1527
175
+ maxframe/core/accessor.py,sha256=e7qkQ8oXK-_dKRZYs2pce5y-V0tWyEQquZdKbJ5Wrdc,1588
163
176
  maxframe/core/base.py,sha256=LNHcoT5T02MhYAgPXPTVz5HdVHpKFDPD_Z-7NednVjc,4691
164
177
  maxframe/core/context.py,sha256=Y5NntQoHbFdwE5MCbHoGExkHRQBeXc6wUNoUY-gyoWw,2666
165
178
  maxframe/core/mode.py,sha256=fpvJAQ6if77EiM0SlNq0JEnBwkzFQTgzX3d8wOrlus0,3107
166
179
  maxframe/core/entity/__init__.py,sha256=EHuteCnoOq7HsM4vTBENcThUFYOZjbZgk2y-z9lMOek,1130
167
- maxframe/core/entity/core.py,sha256=AHAG37BvYe_s7Y4fpEbMvAguUJ0ihhVNjyqbE5ah2u8,3991
180
+ maxframe/core/entity/core.py,sha256=QkT6os09sIa4sA09ygZ2kMTp5Zoea6TzP1eiHq-wObE,4101
168
181
  maxframe/core/entity/executable.py,sha256=xojyy3u8MTQHX7WFPieoquMvlFenHLcZvDlLMuhlu04,11293
169
182
  maxframe/core/entity/objects.py,sha256=IteCK82VH7Ob6kyemyJt5NmUt7czFCfnaClE4VgHCu0,4240
170
183
  maxframe/core/entity/output_types.py,sha256=S1p3gegOdAfAOWS8W_FDAYcTnmLWh3_QrtzQYdQKakU,2851
171
- maxframe/core/entity/tileables.py,sha256=LZk_dnBk9QQ0vegovnBuJ19zJmVdeJXeBytYbQBUm7o,11762
184
+ maxframe/core/entity/tileables.py,sha256=CBs3BxdAi83A42nbpl8qiQHMneLvLTTddN9CK3sdCzY,11800
172
185
  maxframe/core/entity/utils.py,sha256=9SFooWpBjBnIwiLid3XzeUymZnQjYZSG-vghULFQUQI,1484
173
186
  maxframe/core/entity/tests/__init__.py,sha256=4LpNXO11JAdLjSut3p036oEEXlDEB-6AURW9oci5W5Y,609
174
187
  maxframe/core/entity/tests/test_objects.py,sha256=ER3qvVndy5q-tlF6Qc0Z0AF_ylvTITIDvD4Qest3y2w,1465
175
188
  maxframe/core/graph/__init__.py,sha256=AwNyGKu1kwXx0Tl8xGJ_pQkpOW6EvKMCCO0PIU_6MIg,895
176
- maxframe/core/graph/core.cp38-win_amd64.pyd,sha256=p4Lwy6B-ot-_MlOLEIYvdw6QUlVobmugOPUCclfZk1k,251904
189
+ maxframe/core/graph/core.cp38-win_amd64.pyd,sha256=gdii_WzPfqBsMioFES9INbZitNp8Zpp3ZwJoA354Nio,252416
177
190
  maxframe/core/graph/core.pyx,sha256=yv-P9NAqwXPdq_bvWOT137pdMEdLzoNpS42rx7o6wjI,16582
178
- maxframe/core/graph/entity.py,sha256=RRpIRCZMKjLf2PLdBeDV10UIlIcrqakECuXqfM7SS6c,5354
191
+ maxframe/core/graph/entity.py,sha256=JFv5SK1k4EXQXJxBTSmcL1hIeuCiT3-wFk6GVlNG-Ww,5313
179
192
  maxframe/core/graph/builder/__init__.py,sha256=NjIcWQ1ZtEbRJalz8XH1UKaQLpsvOqouRPeRBaul5cA,655
180
193
  maxframe/core/graph/builder/base.py,sha256=dSceBH6ra5t_khrlHBpYSO1R9Goe0pdqvNzKWzNoDEI,2712
181
194
  maxframe/core/graph/builder/tileable.py,sha256=OA-ljojBSA-t8VTkxAqmq_33Bb2qVAWsQcK8nwLcW48,1207
@@ -183,53 +196,64 @@ maxframe/core/graph/builder/utils.py,sha256=URYL-xfwQqpJVf91FtB9dheAvFd1RfSQst_4
183
196
  maxframe/core/graph/tests/__init__.py,sha256=4LpNXO11JAdLjSut3p036oEEXlDEB-6AURW9oci5W5Y,609
184
197
  maxframe/core/graph/tests/test_graph.py,sha256=msKwsorW-eXcUqgFc-9ajGIOSdXM3FzR4cz1V4-TttY,7667
185
198
  maxframe/core/operator/__init__.py,sha256=2BXhNc--aZIWJ3PD7WK8L5bS1MzOpjhHQFsduyLyy5k,1121
186
- maxframe/core/operator/base.py,sha256=Umx9hPSLQyna53-L6Juv-2okJ3F-tnIIx04abozezKs,16629
187
- maxframe/core/operator/core.py,sha256=XSyYbCUwkBHwMaFt14BhCIIGj16bGcb_WuiUCOKVRfc,10321
199
+ maxframe/core/operator/base.py,sha256=LLMxeUe2n4yER_mgzvGcJKFBks6cUp7z8_vRbAtGcjU,16940
200
+ maxframe/core/operator/core.py,sha256=7kWB7pOMpX0OkT4phq535eLAUMPP6aH6GnPjsGJPzRs,10553
188
201
  maxframe/core/operator/fetch.py,sha256=5txzLzOjKTCocBTTnCovDWZs95z1J8vfA8LhKbwlYdo,1411
189
202
  maxframe/core/operator/objects.py,sha256=h8MlCWuS8hxcPnhfTCeVNzkmWh-pogic_oP1YAfhQ9w,1438
190
203
  maxframe/core/operator/shuffle.py,sha256=3vdk9DMGkE-YwEjC73faUw8Mi7HHRv5qt1exrGli9UI,1846
191
- maxframe/core/operator/utils.py,sha256=ejUrdYNVEDHSdgmBagWRMfIVAiJ_lBDaW8xf-iBFBuU,1761
204
+ maxframe/core/operator/utils.py,sha256=njtjwqBHXF_JmW0hHEMDo7oBQDF2PeHxABCSlSiRgEM,2043
192
205
  maxframe/core/operator/tests/__init__.py,sha256=4LpNXO11JAdLjSut3p036oEEXlDEB-6AURW9oci5W5Y,609
193
206
  maxframe/core/operator/tests/test_core.py,sha256=lM-SyMKNkwqBWdYmBIIULs9eE7qs8-_BqytyRamucWY,1755
194
207
  maxframe/core/tests/__init__.py,sha256=4LpNXO11JAdLjSut3p036oEEXlDEB-6AURW9oci5W5Y,609
195
208
  maxframe/core/tests/test_mode.py,sha256=8MN3zXFAkiaxSKhEc_ToY1C91dKBHJIYNvW7nVmqSJ0,2507
196
- maxframe/dataframe/__init__.py,sha256=9x6NfLzu4TReNEfz0YgND_Fck4odtCaE4h-exrw1CJg,2356
209
+ maxframe/dataframe/__init__.py,sha256=WXWxuYXUkdmz3VPmtjUtmZRXKSA3hBAqtL3iKWU4MRw,2512
197
210
  maxframe/dataframe/arrays.py,sha256=ZHt3mIEA4plITmP-NyLAe7MGSxBOCSI8fw_gcTKU1SM,29616
198
- maxframe/dataframe/core.py,sha256=dwJMCFgDoB94xUeM6f9QM3-AqwzFFrNEnJDcfL7l-tA,77741
211
+ maxframe/dataframe/core.py,sha256=awUeoq6KqFGs6nU659qMidsDPJu5VbAR7RsUveqfnrw,75776
199
212
  maxframe/dataframe/initializer.py,sha256=SiTh1ibIILZf-E3cSZ8bfgNuFd-YpckdWDphUGpMPJE,11150
200
213
  maxframe/dataframe/operators.py,sha256=qONH6TL7DNHkGxhKMU2LP4kQz6tTiuzoIYVcryYwp3Y,6821
201
- maxframe/dataframe/utils.py,sha256=9cW9FpyZpglWmcd-B1OmN53Q3c5Mr7ewTv2mZqqGBoU,55860
202
- maxframe/dataframe/accessors/__init__.py,sha256=3WuzauK-nPHEpLyICK0tY-F6OdWZ7EaQdORBAoaHD3o,669
203
- maxframe/dataframe/accessors/datetime_/__init__.py,sha256=WlnK71KZrVpXqwDWJ9-cRE18ZnAOGKPlmO2jnL8uytw,1116
214
+ maxframe/dataframe/typing_.py,sha256=dAS2vxd5VPf8yFORBV4lrb3GqRnVFcLtHI3KtxrB0DI,5961
215
+ maxframe/dataframe/utils.py,sha256=yWlR9kfCF3SyQAHkWxAtYyiWIdAdew4VQdrlq1XDDzY,58303
216
+ maxframe/dataframe/accessors/__init__.py,sha256=vARWvA6GASCM-rQPBhwdMYcHt12tK_fNVCAIvx_q8l0,678
217
+ maxframe/dataframe/accessors/compat.py,sha256=tHCtBGAAr5RyEpRX5SwxmrzcBeNrxDSV3eyCalnRCKs,1535
218
+ maxframe/dataframe/accessors/datetime_/__init__.py,sha256=zXfqOCYzLc2pEaVtIiYyJJ8_6dP_irodagKRxsOnJcE,1231
204
219
  maxframe/dataframe/accessors/datetime_/accessor.py,sha256=OEfGjmItzC-AlgFpaQUrfgVncwqdJ6QiH_OKIAj2xis,2289
205
220
  maxframe/dataframe/accessors/datetime_/core.py,sha256=v-R1i3FEEBU_K4CQonOhWTNzokEtQWUlQkng3Nuntdw,2686
206
221
  maxframe/dataframe/accessors/datetime_/tests/__init__.py,sha256=4LpNXO11JAdLjSut3p036oEEXlDEB-6AURW9oci5W5Y,609
207
222
  maxframe/dataframe/accessors/datetime_/tests/test_datetime_accessor.py,sha256=P6oBRAdTlrFtSee7tApVeNlrUEP5Otdq6UC-Su5NWG0,1436
208
223
  maxframe/dataframe/accessors/dict_/__init__.py,sha256=RtTuqfKlvo-644LWf3OsdyJ-pVFs1vvv1vQQdoYKrgs,1546
209
224
  maxframe/dataframe/accessors/dict_/accessor.py,sha256=FdyYWhYuzbCXSkwmhv89fzmo0wS72xCAFddkNmJg6dc,1347
210
- maxframe/dataframe/accessors/dict_/contains.py,sha256=-QYue1nRqFDEK7L6PtnqcJcrGzH8Lrki49ySNjZShYE,2608
211
- maxframe/dataframe/accessors/dict_/getitem.py,sha256=5xC9YhxuAOIOPOfqUyrx3D4rvnisa7gAKAu19EKsnFo,4539
212
- maxframe/dataframe/accessors/dict_/length.py,sha256=HBFa-GcBUauNnDrvhAwivhXDlOZTXNbm8pwKtXjdnlE,2280
213
- maxframe/dataframe/accessors/dict_/remove.py,sha256=RHZ_2P8qyqUiZkXSTzWKn1orv8qKL-RKux8HHYIsGKA,3073
214
- maxframe/dataframe/accessors/dict_/setitem.py,sha256=zHfUXH4qZCRjYCNazSSpsNjWiA7MfLVoSZ-DZ3WJa9E,3042
225
+ maxframe/dataframe/accessors/dict_/contains.py,sha256=d4_LZKanf-3NcpG73sVoS_9fMw4Ybm_H02trPo1hFMk,2348
226
+ maxframe/dataframe/accessors/dict_/core.py,sha256=clM3L8Pt9SDZUetdCmzFK77iMBPeLyqIIG6S686NhTU,1862
227
+ maxframe/dataframe/accessors/dict_/getitem.py,sha256=V7_CKBBFzc_u4PMX7z46G7edKliv0UF4tJDYaEfG-r0,4507
228
+ maxframe/dataframe/accessors/dict_/length.py,sha256=DEV62WcjfrjEsu-QSqGRa7jO7GIeOZgqCVDhXH7IIKQ,1990
229
+ maxframe/dataframe/accessors/dict_/remove.py,sha256=UOrZW87bMilqeq6vFzk7spuBdPddFVm9MxJ7J25cPAQ,2776
230
+ maxframe/dataframe/accessors/dict_/setitem.py,sha256=b3GbvMzdqYDCsUpmTpbSkiscrES8Qq5Nm_0nZHI9n20,2759
215
231
  maxframe/dataframe/accessors/dict_/tests/__init__.py,sha256=4LpNXO11JAdLjSut3p036oEEXlDEB-6AURW9oci5W5Y,609
216
- maxframe/dataframe/accessors/dict_/tests/test_dict_accessor.py,sha256=FXKY_egcj7OP4M5bQr1v_sqn5GLxockA3dV0QXHmIJk,4043
217
- maxframe/dataframe/accessors/list_/__init__.py,sha256=DU9NWAtG5km6fuu9OPOCYtxjyYqQjJe62K4Wdw0strA,1285
232
+ maxframe/dataframe/accessors/dict_/tests/test_dict_accessor.py,sha256=XATQiijtjKmJGXsOH___BbyTJFfJTG_EE8z7LVRXayw,5386
233
+ maxframe/dataframe/accessors/list_/__init__.py,sha256=CGd5JyWc4GXH3-l_9x380Wgp275yiDMSZ74l-UksNec,1285
218
234
  maxframe/dataframe/accessors/list_/accessor.py,sha256=JhxueXfQhFM-hSWFZZ9KVpoP5imiylSze_k8S-ajf2M,1348
219
- maxframe/dataframe/accessors/list_/getitem.py,sha256=wgMJ38gtwInlsiio2z6Po69YI1-GsC51oHQkYfMaa7Q,3879
220
- maxframe/dataframe/accessors/list_/length.py,sha256=LRw4FImg7iEGrWbH4IyOIoesm18pJ-g2K3QAYg3mRxc,2207
235
+ maxframe/dataframe/accessors/list_/core.py,sha256=CrXAS7k346vG1GnohI506LNexnYRFEzyaXrvF31Y7Z8,1862
236
+ maxframe/dataframe/accessors/list_/getitem.py,sha256=E-asaOtkeRvVBr8zxMi02qqfoKTG5lQrMl9CLBaVrtQ,3765
237
+ maxframe/dataframe/accessors/list_/length.py,sha256=EuNO4uneh3a92z3BoUMXUZVQGUOyMXkRRBxUZmrrv9Y,1917
221
238
  maxframe/dataframe/accessors/list_/tests/__init__.py,sha256=4LpNXO11JAdLjSut3p036oEEXlDEB-6AURW9oci5W5Y,609
222
- maxframe/dataframe/accessors/list_/tests/test_list_accessor.py,sha256=Yzop_LU3bWoguD9EXM7dpV-3du4hXnpRavQ8vxR6IPM,2460
239
+ maxframe/dataframe/accessors/list_/tests/test_list_accessor.py,sha256=PKESUgHdALklz9VXHumFOnkco1pSeedjE_3R-QqUZVM,2544
223
240
  maxframe/dataframe/accessors/plotting/__init__.py,sha256=l5Q-Q7IaStM4sM9lcHP2B0EF8FajwZahvbBDiw6rY2w,1428
224
241
  maxframe/dataframe/accessors/plotting/core.py,sha256=rGzHc_MXEdTTJMQXO8cspf9eY4Otccj5unjNooCRbAo,2313
225
242
  maxframe/dataframe/accessors/plotting/tests/__init__.py,sha256=4LpNXO11JAdLjSut3p036oEEXlDEB-6AURW9oci5W5Y,609
226
243
  maxframe/dataframe/accessors/plotting/tests/test_plotting_accessor.py,sha256=UGCrKUU4ax2GQvXGxPnHD7gqePXHWz9t5JAierTw_IY,4259
227
- maxframe/dataframe/accessors/string_/__init__.py,sha256=9aDca_a61YUSAZ2MwT2bByDSD-UTgNbO7Y2oylKwhoQ,1106
244
+ maxframe/dataframe/accessors/string_/__init__.py,sha256=BJEzPdHvMquYK_A9_jWrbCtpY-iAtwvFvqwzvoZ0gMU,1215
228
245
  maxframe/dataframe/accessors/string_/accessor.py,sha256=2vsY1MBoxILuWr1hlqSZaps6029h_aYTFzNC3qUhOek,8269
229
246
  maxframe/dataframe/accessors/string_/core.py,sha256=jn_HQw1J1QeVu637h2wVufqZy0thXi95C6swfjNcu-c,8417
230
247
  maxframe/dataframe/accessors/string_/tests/__init__.py,sha256=4LpNXO11JAdLjSut3p036oEEXlDEB-6AURW9oci5W5Y,609
231
248
  maxframe/dataframe/accessors/string_/tests/test_string_accessor.py,sha256=5W5ajKUz6n1kWAIR_JHB7y-IFTWtenlbf8dOlOqsy5E,2549
232
- maxframe/dataframe/arithmetic/__init__.py,sha256=IM3Z2tT4LPJa3j30CVXDJ9TftQGy3DVxjTHoH7zBuyY,12837
249
+ maxframe/dataframe/accessors/struct_/__init__.py,sha256=hQenQXf_xpxvr739ztP9kE3jD5aE2TNTS4r4ni48DjQ,1247
250
+ maxframe/dataframe/accessors/struct_/accessor.py,sha256=d1JWRFnj_KPRfaNXj2VPEI09bJsw6kTupD0oOPDn5nE,1356
251
+ maxframe/dataframe/accessors/struct_/core.py,sha256=hwatF6l7_awJrMcWfNrI78URy9tqj5KnghbphCAUqSI,1739
252
+ maxframe/dataframe/accessors/struct_/dtypes.py,sha256=9qNSQQm4zg6jcOVH3JUks68dTtiN4B0kmDHki5EWBm4,1750
253
+ maxframe/dataframe/accessors/struct_/field.py,sha256=TFSREs0Ac5qGD5VztgkZJLJ8_-AbKHNFuMkGbJu145k,3880
254
+ maxframe/dataframe/accessors/struct_/tests/__init__.py,sha256=4LpNXO11JAdLjSut3p036oEEXlDEB-6AURW9oci5W5Y,609
255
+ maxframe/dataframe/accessors/struct_/tests/test_struct_accessor.py,sha256=q-B7vCin1c_VMh1XwR5q0A4tPRWB2hJOfJt2WVsxwX8,2828
256
+ maxframe/dataframe/arithmetic/__init__.py,sha256=Etg4cgEnS3L1PmtgIjb0lqQIh8WBXHSBangRBdAPX38,13189
233
257
  maxframe/dataframe/arithmetic/abs.py,sha256=gu1hUmtP5h2ps-X7cB_e2Iyq2xYpj1jT_UzG8S0TvxA,1016
234
258
  maxframe/dataframe/arithmetic/add.py,sha256=b_nSJ19j5qGrHeWN0yjBNbWOncF3Qmr1EGmRwHQQKao,1766
235
259
  maxframe/dataframe/arithmetic/arccos.py,sha256=wupyUmd6-A5tH1wdunMg1kMO447Tqn1RW0ZyFwfE90A,958
@@ -238,7 +262,7 @@ maxframe/dataframe/arithmetic/arcsin.py,sha256=DIf56tRsfSJJijzxW1k7bR5aS47yMpZCn
238
262
  maxframe/dataframe/arithmetic/arcsinh.py,sha256=BlQG8Of4USnyrBy42tD7qC29ODN1GYyhcGpqdTLWDjw,963
239
263
  maxframe/dataframe/arithmetic/arctan.py,sha256=vM8ca7eQ6F-4NbpdE7MdMoV2yJoTSk-rKc7-C0HzrUM,958
240
264
  maxframe/dataframe/arithmetic/arctanh.py,sha256=d5hluAcPUs6fZLi-ICaO7G-H7919CCStBM1FhQejlXk,963
241
- maxframe/dataframe/arithmetic/around.py,sha256=JisS-xM1cq3bXTr7uAORB6rB-bxB3fTbnYd4kaFNEfg,3963
265
+ maxframe/dataframe/arithmetic/between.py,sha256=FidPSBWbKVlvinWQ1ce9bYEqU3GQ3gTHvHvsf0bnHT4,3110
242
266
  maxframe/dataframe/arithmetic/bitwise_and.py,sha256=kh_FY_fNcYDvlxRibhJijcNRigkXbHnqxPGKcL-ZN3s,1473
243
267
  maxframe/dataframe/arithmetic/bitwise_or.py,sha256=HQnBswMZgP6XU3R2iV4ds9mFGOxspacWNC8koqFQyB0,1596
244
268
  maxframe/dataframe/arithmetic/bitwise_xor.py,sha256=o5MtjompxrDICBW7HSQl7Tx5jpjwWQu4ewpEB5HpyLo,1472
@@ -248,6 +272,7 @@ maxframe/dataframe/arithmetic/cos.py,sha256=PWDxbtPjwjBRy0rF52utgGHB5Qf1O3P4r7nZ
248
272
  maxframe/dataframe/arithmetic/cosh.py,sha256=Ui5lYjYt_mniSNtiYcbxYhFUYWBVKlIK7Z_YtbUXdsI,948
249
273
  maxframe/dataframe/arithmetic/degrees.py,sha256=arJKiQ2o0VbIR8IsVKmi5z2_FlPT5hnorG-IZLJqqKI,963
250
274
  maxframe/dataframe/arithmetic/docstring.py,sha256=N9HJeR_CL9JoBDmqg1dRQqk1PVRRtuFxaYH8R3UCi0g,12107
275
+ maxframe/dataframe/arithmetic/dot.py,sha256=w6yk41fyEfk9Hmv-B9BjQjZvSbkbfkTMP4fLO3eYiJ8,7352
251
276
  maxframe/dataframe/arithmetic/equal.py,sha256=e0z17h6jgPyvAbkBq1w33foxFToBlg0XbTG8U8R4vj0,1575
252
277
  maxframe/dataframe/arithmetic/exp.py,sha256=_PRE96Lrm0YVskh0LjXTGo-lOPZNa8NKX1Nn8m5NkYA,943
253
278
  maxframe/dataframe/arithmetic/exp2.py,sha256=6tRKMvqZsNpE0NN0fMlgiANF_6aHi2rQ3DZdTnhvb-M,948
@@ -269,6 +294,7 @@ maxframe/dataframe/arithmetic/negative.py,sha256=B4KcbnUj49PyCIil9x23QKLAR9ONAiQ
269
294
  maxframe/dataframe/arithmetic/not_equal.py,sha256=otvXJqF2sGX_vEIaKHp-XEwnPD1SW59BIvmL-81ds_8,1591
270
295
  maxframe/dataframe/arithmetic/power.py,sha256=IcVB9B4gfiEHOeygKlniYOkvymT23Go0kpvxLnhrIao,1879
271
296
  maxframe/dataframe/arithmetic/radians.py,sha256=RlDjhTLxMG1W1p1oioabl1peJqYc6in9ReRoiVHeeeo,963
297
+ maxframe/dataframe/arithmetic/round.py,sha256=fyMbmZxEdOZ1R62_atWS1oIrcU4zONgrwWBAY0qNnI4,4030
272
298
  maxframe/dataframe/arithmetic/sin.py,sha256=u7TDCIVYE3J7DmEwwNuWKXfL76ZaHEyES0eHqvOdvow,943
273
299
  maxframe/dataframe/arithmetic/sinh.py,sha256=mYLjFaZ3wk78WIeuR-0g1lFxE0vWLHlMxSleQfaY8mE,948
274
300
  maxframe/dataframe/arithmetic/sqrt.py,sha256=dFhYA0ECH3ZWJTMAr6gnrGGMPFsckPTT9om7x7a5zf4,948
@@ -279,160 +305,196 @@ maxframe/dataframe/arithmetic/truediv.py,sha256=QKVcc2Y6L1ICDnUj5ahVkwbVCLxsFYen
279
305
  maxframe/dataframe/arithmetic/trunc.py,sha256=D_d4GYsEPBdrdfRL1XLFvMrZ6bL1OIGL-uSP3tiExL4,953
280
306
  maxframe/dataframe/arithmetic/tests/__init__.py,sha256=4LpNXO11JAdLjSut3p036oEEXlDEB-6AURW9oci5W5Y,609
281
307
  maxframe/dataframe/arithmetic/tests/test_arithmetic.py,sha256=iRi8KxX1Ib22GooXrZ8ekNXcito1bQ8Ib0KuTSUYPoM,26120
282
- maxframe/dataframe/datasource/__init__.py,sha256=7iDCTWD3y45JIYXu7fXGsHekb2cGabmy-b9bN77RJPM,655
308
+ maxframe/dataframe/datasource/__init__.py,sha256=elYqORyXXmb_08ZPxEBYT-qvdUqHdLTM4zVLhZsEqGU,1198
283
309
  maxframe/dataframe/datasource/core.py,sha256=XusQhEHiASWT2ONuDniAlwlMYyt_Albs9n7xnlL_RSw,3046
284
310
  maxframe/dataframe/datasource/dataframe.py,sha256=_EJaT_b1i6XIZpyqSudAPdOS4n3l_S5aRcKOMov26NQ,2082
285
311
  maxframe/dataframe/datasource/date_range.py,sha256=_4pPmk8bcvwkR0UBkM9X7e2re3JGvpH6PvgjfKwtGT0,18039
286
- maxframe/dataframe/datasource/from_index.py,sha256=F77x6f5ovuxpTDLzCwXVprBLq0Vc9RYE9OuFQYhjJ2c,2022
287
- maxframe/dataframe/datasource/from_records.py,sha256=Warf6NQvlRZBSUQ_qPStRI9SrwiPBKv1BmN1srfRLMI,3813
288
- maxframe/dataframe/datasource/from_tensor.py,sha256=A9SUA-TjSxJqwIilHkIMQj12S7H5UU9mcQsjq5nh0E0,15589
312
+ maxframe/dataframe/datasource/from_dict.py,sha256=EfyiHopZfg60BvMgNqb9VnY4BHmVrVZKnL9XKCON4bA,4362
313
+ maxframe/dataframe/datasource/from_index.py,sha256=FYUZvQBSawnZFmY3aCV7_H2CM20U_W-D1A62DoWy9GQ,2017
314
+ maxframe/dataframe/datasource/from_records.py,sha256=R19uYkmFASDDGYgt82LnnkVbMqrE5v7W1FyKXkVsj78,6412
315
+ maxframe/dataframe/datasource/from_tensor.py,sha256=5syh18LYy-NXXBhmbtxhxH5HUOcK0fJ3jjfyigKwdNw,18436
289
316
  maxframe/dataframe/datasource/index.py,sha256=LUOaSY3jScY65h4TSryXMfQJGdUWWXmnoS1IP9ah5aw,4518
290
- maxframe/dataframe/datasource/read_csv.py,sha256=rJWM-VTk231fh8UhIUmweP1fZRJjfPNn-Iec1_PYcz8,24926
317
+ maxframe/dataframe/datasource/read_csv.py,sha256=troDOZ9zLg1ktE9bF2BLBCKZ-Ow9IkLgRukk1mrb6E8,24919
291
318
  maxframe/dataframe/datasource/read_odps_query.py,sha256=6EA6Hni85bVw82Sk7K3PNwarGB5oOmrUhAeHeF2-4-c,18152
292
319
  maxframe/dataframe/datasource/read_odps_table.py,sha256=bwb07XfFDQTwKbXVqfPAhlpEq0pQjdJlmNCqYq2KqMo,10262
293
320
  maxframe/dataframe/datasource/read_parquet.py,sha256=JcXzF89JtUBB00G96_0wnEdu054edmZ-jn7Xc244IFU,15195
294
321
  maxframe/dataframe/datasource/series.py,sha256=9GmE-UVQ_eeFI53UuWiF6rQSqQ1mp4RkBVRWIhKNw2k,1964
295
322
  maxframe/dataframe/datasource/tests/__init__.py,sha256=4LpNXO11JAdLjSut3p036oEEXlDEB-6AURW9oci5W5Y,609
296
- maxframe/dataframe/datasource/tests/test_datasource.py,sha256=bjNMlhdqzjqtrdpUroYqtcO1AKrN5gleGUA-CRYtSB8,22078
297
- maxframe/dataframe/datastore/__init__.py,sha256=KbGUgDoSvqGe_6Jm89Mh3KxU2N4mmMrn4prA4Jk933g,810
323
+ maxframe/dataframe/datasource/tests/test_datasource.py,sha256=uYiU3iVM36XDrLReUWuzJkxEKElIxOP7dg_Rv2Ucm6M,23494
324
+ maxframe/dataframe/datastore/__init__.py,sha256=N1SNy3NYyukTQj85btUVvDRvtXsgBh-pSCkP0FoFNtY,932
298
325
  maxframe/dataframe/datastore/core.py,sha256=uNAcFyUgjn_LxUHk7IjqRlAWNeru77Ub-dZ15M5WDjA,762
299
- maxframe/dataframe/datastore/to_csv.py,sha256=VVKPr3Ja3oyE5Z2T1tPoH-wNhng4QyKvxFGoTslZg1s,8090
300
- maxframe/dataframe/datastore/to_odps.py,sha256=SVGfltALyFldcpkSw6ynPYkBu4cDPYy3Kn9e_roiQS8,8603
326
+ maxframe/dataframe/datastore/to_csv.py,sha256=bfiLkkO-PVbo1OLeDAIgOJE_HZhVYp4umGioZnhpQnU,8129
327
+ maxframe/dataframe/datastore/to_odps.py,sha256=I1pRsnhCozpX7mKpr_TWEgxsy8aOFjJOYZaJBuBMElg,9837
301
328
  maxframe/dataframe/datastore/tests/__init__.py,sha256=4LpNXO11JAdLjSut3p036oEEXlDEB-6AURW9oci5W5Y,609
302
329
  maxframe/dataframe/datastore/tests/test_to_odps.py,sha256=biPyEnfSF8IeoUuI2T7dLYoY4C-l3iU-McghOL6vIIA,3088
303
- maxframe/dataframe/extensions/__init__.py,sha256=zqyUgCoY-KOpOVfRvLeGbh_dXSYI8RtfoTfSAnU8-LE,1997
330
+ maxframe/dataframe/extensions/__init__.py,sha256=eEJP1SY7V217C688w5vzkvZ4vbCWvqA9v3eh9NoalLo,2813
304
331
  maxframe/dataframe/extensions/accessor.py,sha256=9OkIrawtEl-_kKG_j6_3EKsuXForPseXAVMDlFZBRqA,1066
305
- maxframe/dataframe/extensions/apply_chunk.py,sha256=j6b-1FyQNrgrIu8JE1zIUiCtPSF6aN96n6eFwjHBhAE,24207
332
+ maxframe/dataframe/extensions/apply_chunk.py,sha256=kTNjL-pOnvCWvJqiwYdmz86BoUrK62vHtcHgsrX734U,25088
333
+ maxframe/dataframe/extensions/cartesian_chunk.py,sha256=HcMPRmP39Ll7xKoOYHPaSXK-fNjLY-kpqCSpbYRF4R4,5441
334
+ maxframe/dataframe/extensions/collect_kv.py,sha256=cwyWkLhK6R3RokMZxKE3-iPlwTyuNLYe2MKeZ3A_xUw,4360
335
+ maxframe/dataframe/extensions/extract_kv.py,sha256=8FvTTB7vybEnxWCY8FjrWb6_AMqjP4bK_ZG3YBW0p_k,6440
306
336
  maxframe/dataframe/extensions/flatjson.py,sha256=nQLC1iuNOp5p-psLfcfox4p-2APQPQxyODGyTpjGuxY,4544
307
337
  maxframe/dataframe/extensions/flatmap.py,sha256=mAVAREjA2fmjqAO9ZWNg9UyLE10x2LI-8SXYn3-fsMM,10847
338
+ maxframe/dataframe/extensions/map_reduce.py,sha256=aW7XCNvLFH9vjYcCjyvUUbYrufJ_6quELvLqFBJGmSQ,9206
339
+ maxframe/dataframe/extensions/rebalance.py,sha256=a1BWVdJKYbhsyvl1g60H3Isx8xQ64W7xN9u-j2uyw8k,2270
308
340
  maxframe/dataframe/extensions/reshuffle.py,sha256=ICsXOCTCS_dmusMatU_o6_mOown3qFdnBoqq3d4D1n8,2718
309
341
  maxframe/dataframe/extensions/tests/__init__.py,sha256=4LpNXO11JAdLjSut3p036oEEXlDEB-6AURW9oci5W5Y,609
310
- maxframe/dataframe/extensions/tests/test_apply_chunk.py,sha256=XzZ2wqgzxrM-6sPGU2zLDiNRKtFZXCQyOLqN16vQIVs,6035
311
- maxframe/dataframe/extensions/tests/test_extensions.py,sha256=0A8zL_uyZ805eVe3BazJNAnBxWYvcsZvnT4pV-pyp5U,4923
342
+ maxframe/dataframe/extensions/tests/test_apply_chunk.py,sha256=p5ipoIyWTdaqK8tVqFisT88057k2R_4qQPxeX6H93qU,6304
343
+ maxframe/dataframe/extensions/tests/test_extensions.py,sha256=tad4Okv4F0O6MCs-tD5vTHSkbDIQWTNVUDnHJT8C92U,6633
344
+ maxframe/dataframe/extensions/tests/test_map_reduce.py,sha256=WyoLxmytj_fafxLJ-XdD-UPXdHid2bLmaKaESkKL3uk,4497
312
345
  maxframe/dataframe/fetch/__init__.py,sha256=q9Eu7odmT29Xp2iPsNdOp46T-w2_4LxT4pb26sXhTKc,668
313
346
  maxframe/dataframe/fetch/core.py,sha256=_g0LTJr-p5Z5AIHbgB3ibLcdP7NPlhs5KDd5s43RLf8,3841
314
- maxframe/dataframe/groupby/__init__.py,sha256=ECJSoCi-RYbxKHZ3xhEHzHQi9y-O-uGsly9uLd9eQ0Y,3905
315
- maxframe/dataframe/groupby/aggregation.py,sha256=JO4F1Bl3lwgFdecLCFcR61tMm4EmpswYmR-GnNXKiE4,13821
316
- maxframe/dataframe/groupby/apply.py,sha256=1gpexJDVlpUSxA-ijj5rMN0mGS5Rk_SNhcp7AI4kmYs,8696
317
- maxframe/dataframe/groupby/apply_chunk.py,sha256=LHMA28F5DWXHPi5DJ7QAPn5RNQAiY_kixXh6ZYOafa4,14264
318
- maxframe/dataframe/groupby/core.py,sha256=t49qTZiKIEmHfme23HeY8zpXgza3bTdU_E9VxYWaLUo,8721
319
- maxframe/dataframe/groupby/cum.py,sha256=unzOfw0d1so-0cNf2e2iQ0cOOetARK2UH2N0xWGfuN8,3806
347
+ maxframe/dataframe/groupby/__init__.py,sha256=jS5Vmu5dZMK5R5jAL7QKqXUQmKoit_d8ke5Nb8UuOlk,4258
348
+ maxframe/dataframe/groupby/aggregation.py,sha256=D91sGyc1MpqDON7sQWKSj8nzDOyw6I9wGmwE7SpyGQ4,15255
349
+ maxframe/dataframe/groupby/apply.py,sha256=gIjelt61SJcItNbw2xgXwwl_jbW3fn1BX38uN9sQNXQ,8696
350
+ maxframe/dataframe/groupby/apply_chunk.py,sha256=EAWW8X3ECuAfaipjFgDvYZ31MVoI8PVy4rMaSHiLUoA,14853
351
+ maxframe/dataframe/groupby/core.py,sha256=wOvai-vok5rvtBppHF_57n5MrxYXYvA6kER10D4U1eY,11891
352
+ maxframe/dataframe/groupby/cum.py,sha256=RDc-Rlqkr6wUEvdQS0N756RCODfghPKt__MvqxruOQE,3411
353
+ maxframe/dataframe/groupby/expanding.py,sha256=jMvoAzACKzDmf7eBJ8bb376ya4ezuBtiOqspTdAcuKs,7156
320
354
  maxframe/dataframe/groupby/extensions.py,sha256=IPjoLxFGTDzpdRAqiif9Y-qDytAu0JpSYbHKXfJBnks,941
321
- maxframe/dataframe/groupby/fill.py,sha256=i21rxWRn5HeOtR7YCeuV243Y5VvwxM_xf8OvXNBWWjA,5034
322
- maxframe/dataframe/groupby/getitem.py,sha256=Oego1g611FFTD6vn2yXD8FIjJ6JBj9-mD_0iZWdMTJU,3513
323
- maxframe/dataframe/groupby/head.py,sha256=i2K2fcOTfrhYHUmKENde-VqtCmekS52_tvsiiEJ06kw,3371
355
+ maxframe/dataframe/groupby/fill.py,sha256=d92Q2Nyq2edqEWxphSLCXycUc1xtUsH1SEu1dE-uoS8,5050
356
+ maxframe/dataframe/groupby/getitem.py,sha256=iqfhfAe46x0Voh-RvZPB4EzJyvjDq_thqBfHl0YYdog,3748
357
+ maxframe/dataframe/groupby/head.py,sha256=OCgcpjMpQ8vDXtsdwITYllDanh4fKlpdreNF0t-4yQ0,3780
358
+ maxframe/dataframe/groupby/rank.py,sha256=Jrip1youVsTq_4YGzHBrpaD-A_QQEgAj0OMNDs1hOO4,5167
359
+ maxframe/dataframe/groupby/rolling.py,sha256=Qv8DKTYV9ZDyumUVD9mJ_oVkKnHO-yuG4-xnMM1CZdA,6933
324
360
  maxframe/dataframe/groupby/sample.py,sha256=SSYQHc44VS6pTyhBVbMCjaNE61Cq_WMglT4iw4B8rIo,7221
361
+ maxframe/dataframe/groupby/shift.py,sha256=q-bfMqxlz3bYc7Jfo1tPBEBLJiRgks-7Ip-AQSmivGY,3229
325
362
  maxframe/dataframe/groupby/transform.py,sha256=ClJ5zMD1cWjTgWroB0LebNiqIYOXr62pGF0PzbRXeVk,8837
326
363
  maxframe/dataframe/groupby/tests/__init__.py,sha256=4LpNXO11JAdLjSut3p036oEEXlDEB-6AURW9oci5W5Y,609
327
- maxframe/dataframe/groupby/tests/test_groupby.py,sha256=zXNvsGQSQyKbkRBr5WnoHRLN4o67cA4QxrGC53i9oHg,12736
328
- maxframe/dataframe/indexing/__init__.py,sha256=4imqvsyjImWlF1ok6vgceEhLbur9Me4KqqjFALOjTwE,3297
364
+ maxframe/dataframe/groupby/tests/test_groupby.py,sha256=QSuDezIZ21TcloISt9ctpU84EaeYYe7pZH-q1ukUgxM,12523
365
+ maxframe/dataframe/indexing/__init__.py,sha256=h1K1oNAPQ-tAgKr9Ao-bGkpImBNORAxQDxt1ywRRqrg,4231
329
366
  maxframe/dataframe/indexing/add_prefix_suffix.py,sha256=BktGLizrnQ6Ccq_PHJ-Ga4dAiaBQuYXBNMhEfFwrv5k,3076
330
367
  maxframe/dataframe/indexing/align.py,sha256=Pq68HmHdpJXgNkhaz2WVgylcUdl_9RG6gjwWv3owZSk,12509
331
368
  maxframe/dataframe/indexing/at.py,sha256=96TI3VkkKBh9RKvWjd3aYHAWLvXkOHcUL0dvlsSzLC0,2300
369
+ maxframe/dataframe/indexing/droplevel.py,sha256=P8BOtyBH71wmNkP3dN8VK-Pa1kEkghXfANQaPPZM-FE,6239
370
+ maxframe/dataframe/indexing/filter.py,sha256=ZJpSZniz5lltxn9TB7bDIu6tRxmOasWgB_v3SfZ7XaI,6226
371
+ maxframe/dataframe/indexing/get_level_values.py,sha256=9tZmbytS1YVAkfI9L7EzNT_o-d-lQcUwiw0e7xo6h2o,2564
332
372
  maxframe/dataframe/indexing/getitem.py,sha256=ZhQesfrUtpIFDRMaq2lnY5RSd2jsKxmA5u-ydrMdSW4,8042
333
- maxframe/dataframe/indexing/iat.py,sha256=YIuk6nvBuUU37BWtMUe5ZTAMIFJUnAVYv-riCRv68Mk,1164
334
- maxframe/dataframe/indexing/iloc.py,sha256=BrkIHjNkV2BipqlgkW_l5393J5tVBl7Qy8U5JBwTUiQ,18240
335
- maxframe/dataframe/indexing/insert.py,sha256=XM478NoYQzxPoZFMs-G4p9jsZtElYG1qf7B33JxfhcY,3114
336
- maxframe/dataframe/indexing/loc.py,sha256=8zEAAmcpjF0xEHHLA6PUmGRExeK4GPn1HO59s-jPczY,15464
337
- maxframe/dataframe/indexing/reindex.py,sha256=vTucXNQ-UX-eU860K0_aWcitbFcTh-pL9bOgMVyq5ww,19510
338
- maxframe/dataframe/indexing/rename.py,sha256=XiXi65OLCYcc43aPvqOauzv6Uy00BN_0z650ubzvXbk,13331
339
- maxframe/dataframe/indexing/rename_axis.py,sha256=rcfpkoZLGtny_idSwdOC9W0QA5IpoyBOULlmtO3hj58,6795
340
- maxframe/dataframe/indexing/reset_index.py,sha256=G6KcFTbaasWTXfKvtnABUpM_GLNzR4OEURWtyC7XdGQ,13476
341
- maxframe/dataframe/indexing/sample.py,sha256=SSITIjqAaEIb7AhKkyEbKKVZ50W3F6cbzIv-LYJ3q2I,8502
373
+ maxframe/dataframe/indexing/iat.py,sha256=S_Msxj-oC4-2yf7U_rFs_iXrgn5SJtsgkza7z-VqJgE,2326
374
+ maxframe/dataframe/indexing/iloc.py,sha256=OvhfT8q2KW9Gsc0OhipYLbtYWA5q9OXx7TuPlsrXQU0,22350
375
+ maxframe/dataframe/indexing/insert.py,sha256=8ZozDZz-tn8pOlomwqDtHNwHGLNEjRjtYLJAXmlP3AM,3113
376
+ maxframe/dataframe/indexing/loc.py,sha256=quRzOdXxR2Vx5Gl1BeKLxYiZIVM7bGRoSu0j8533o9c,24629
377
+ maxframe/dataframe/indexing/reindex.py,sha256=1IGOVGy9WtwB3ZUuuJb85p0IzJhA3j4DntsRJ8Yw4JI,19890
378
+ maxframe/dataframe/indexing/rename.py,sha256=WOHOyU_iaMR-PHkDSUPa8RYBI4N5DGaNnZQNbPhBjE8,13558
379
+ maxframe/dataframe/indexing/rename_axis.py,sha256=89OpOFrC43osfNPiGkpSSlo8Up8UWPPCo9P-dHqVQB0,6727
380
+ maxframe/dataframe/indexing/reorder_levels.py,sha256=rFXUey21USSDRHIT8q2QZjkUwMnIyV8nhvhsLhIJGsQ,4622
381
+ maxframe/dataframe/indexing/reset_index.py,sha256=pDFfB9ATEFHbsJYun5uwy9phPWt1x7C6QlxI7SuojsM,14552
382
+ maxframe/dataframe/indexing/sample.py,sha256=v1LQteILMEahIo94MkNby5dR8rwOaUM2lqntYHib0BU,8801
342
383
  maxframe/dataframe/indexing/set_axis.py,sha256=3tFwmij_eAIWPCOr45QytuOM6Mxku5ul21oJAwp9q-I,5820
343
384
  maxframe/dataframe/indexing/set_index.py,sha256=NbOpr4adgNx6MIM46d4xplhrtAq2RmE3t0mveYMQTUs,4323
344
- maxframe/dataframe/indexing/setitem.py,sha256=XzItLjEvwh7avwlImr5mDR7_sJIHeKlDUVDwvdzVYG4,5228
345
- maxframe/dataframe/indexing/where.py,sha256=07Q8mTMrAXTYXWMcHKjUZijaeRiHCmKZXaW7pP_fofU,8963
385
+ maxframe/dataframe/indexing/setitem.py,sha256=9kkugjpQfL041yi1Kcv6R14xjqjSWe1vZBEz6C5L81c,5298
386
+ maxframe/dataframe/indexing/swaplevel.py,sha256=8nIXlYFnENfYDPaI46zP_ikyKx1XcRxi0S0PzBDylfE,6705
387
+ maxframe/dataframe/indexing/take.py,sha256=8tgkww4ueJ-q56NPVX62KVYITOJr-5a25elZ0bRFUvc,3611
388
+ maxframe/dataframe/indexing/truncate.py,sha256=tSuL_5zMwX0R7KPefAo1ttiQCaaws-YFMFG7cfAeMtU,4395
389
+ maxframe/dataframe/indexing/where.py,sha256=JYWVHwzI52z47qWpP6H1G1cpQvxBaMs6Ho_gg6b54G4,8503
390
+ maxframe/dataframe/indexing/xs.py,sha256=nP6_gkOOzXOuLrEmcpvpVQigDhFf65-NeDXOQIIXNQY,4954
346
391
  maxframe/dataframe/indexing/tests/__init__.py,sha256=4LpNXO11JAdLjSut3p036oEEXlDEB-6AURW9oci5W5Y,609
347
392
  maxframe/dataframe/indexing/tests/test_indexing.py,sha256=9vjCrHEW3yJxVLMUZ2aKnHgb-9pY7ILQz27ZQwWKDfA,16099
348
- maxframe/dataframe/merge/__init__.py,sha256=-jy3XeGFdEvPsuZi3zfxLF5Y0nVK3jA8ISVMftGzRzU,1135
349
- maxframe/dataframe/merge/append.py,sha256=GahlHZYsn2mtKMhOgcGbpofxzhfzjh_hTUG7kRuuqhw,4973
350
- maxframe/dataframe/merge/concat.py,sha256=nsF0Ra9jMcRX8RwSKZ46iYK3AVFjwa3G9JiKT-da2Vk,11599
393
+ maxframe/dataframe/merge/__init__.py,sha256=qsmL4zA1mMCyGIV_jhSKDCFMdrO6k7vgsoNMGgTIK5k,1648
394
+ maxframe/dataframe/merge/append.py,sha256=jpWjMPsNi2A6sccglUzTv1BcegjFPRVeVMkVhnCaCxs,3598
395
+ maxframe/dataframe/merge/combine_first.py,sha256=-5o_7EJRAo2q7wZfZ6HxnQAwyBUwBHoFn1h-6So77Is,3809
396
+ maxframe/dataframe/merge/compare.py,sha256=6QDT21PTDqvntDuvD9QuSI5EardaDmNUZddcOTyE0EA,11917
397
+ maxframe/dataframe/merge/concat.py,sha256=6LWhqeT9Mabc8aTOJwEQXSHSRx6TvJ9Rgk4AvN8HA00,18069
351
398
  maxframe/dataframe/merge/merge.py,sha256=DZr3JtN_SgPqi7kuvQLZJozYCOUtix3n6U1rB7PaTbw,30670
399
+ maxframe/dataframe/merge/update.py,sha256=JDGWYkxIPhDgXlrJi1aZA7XpXlukkr4lCRHFi_qJOvs,8146
352
400
  maxframe/dataframe/merge/tests/__init__.py,sha256=4LpNXO11JAdLjSut3p036oEEXlDEB-6AURW9oci5W5Y,609
353
401
  maxframe/dataframe/merge/tests/test_merge.py,sha256=RSSYcqSB5aqjPHyk7slUpxLvGoN2Q_LkkfmESmwSbEo,13355
354
- maxframe/dataframe/misc/__init__.py,sha256=tFb6W2_A3BoGmAVlzemEVUdtU_e7i2Sq1mpRwcr0-S8,4979
355
- maxframe/dataframe/misc/_duplicate.py,sha256=-dR2s0aPWXFIv9T0m-PeE5srH0OJ3L4h1UsdgIQ1RyI,1634
356
- maxframe/dataframe/misc/apply.py,sha256=SmlBb3bKbOVNv1oLfxBpCTr-1qY-i8Bh9l0JR3lUmnE,24867
402
+ maxframe/dataframe/misc/__init__.py,sha256=7LOe97gd8yDIxBUKVXuK4a9fZvBlXb744P7-M8W2niE,5384
403
+ maxframe/dataframe/misc/_duplicate.py,sha256=PkK-5Hbe8gZazfKq_wqdajZyxVRWTsRJ0hcOCNK9x5I,1809
404
+ maxframe/dataframe/misc/apply.py,sha256=93bMAaiIKwpLF0fCXix08C7XEf7frLtal0TXEojQuWg,24883
357
405
  maxframe/dataframe/misc/astype.py,sha256=fxgBonaj5ybTZ2Grgy94X3n9ftK50OR7H8ImZRqhnTc,8110
358
406
  maxframe/dataframe/misc/case_when.py,sha256=m3KQNZhdPD2q-80CcSIKhFyuYKD4JtS2-H_kuiuaEiA,5128
359
407
  maxframe/dataframe/misc/check_monotonic.py,sha256=v8UA6vci4LkFNoVTK8pDb7IPKXtaHKEMGmgl7mMqEjo,2506
408
+ maxframe/dataframe/misc/check_unique.py,sha256=3vu77NobhbzB_fZcGy6HDB0BWXV2OJI41T-4xLxynrM,1380
409
+ maxframe/dataframe/misc/clip.py,sha256=BSZ4MPYhAVxvfl-rRzIWA9Z79nhDMa0zDhrHsQGJhHY,4788
360
410
  maxframe/dataframe/misc/cut.py,sha256=6-tNY7WheRZ2kBX28exyNaq-uLZCZTtTNDfBfMXbKXo,14436
361
- maxframe/dataframe/misc/describe.py,sha256=oSbm5hCTHkvz2-5b6q42wwTzXHhM-EK10bOyggLnbQo,4597
411
+ maxframe/dataframe/misc/describe.py,sha256=D5O2hb3hhZiVoFhxaYB6qGRLeXfRjwuvNgfOdTGZrPw,10321
362
412
  maxframe/dataframe/misc/diff.py,sha256=iUHG2GZ8lyCmgSF5TKOyiWNaMQuTUKJE3Z_TdjHypx0,5701
363
413
  maxframe/dataframe/misc/drop.py,sha256=bjc0G0dZ_oTPZ34pnIZtLHTD8kMeINJ7vQo9GivC2nA,13492
364
- maxframe/dataframe/misc/drop_duplicates.py,sha256=whaghpL0YAKuSkTfbQTM8M0Fv-lqLYc6OEhIIHqft8c,8940
365
- maxframe/dataframe/misc/duplicated.py,sha256=38FDeOilNVe5_C9rU80bgGQ8ulxbDZSA63OVFNJv8-c,8826
414
+ maxframe/dataframe/misc/drop_duplicates.py,sha256=0XnnIcMxgijOCBsHU08fek6B0u_7d8USkLSy70eoFLk,8938
415
+ maxframe/dataframe/misc/duplicated.py,sha256=4RTrTSrpRpTu-PcwgMOLjODTmeRshHc6c7TWShxc1CY,8824
366
416
  maxframe/dataframe/misc/eval.py,sha256=QLrm2IoB4ihVQNtWPb6XYoRHy2Kxv-sL118za_GCEyQ,25043
367
417
  maxframe/dataframe/misc/explode.py,sha256=_Z1DVOmQ3-kytbUaUOXBUtd9nqCtxu__X7AUHPrr8rc,5182
368
- maxframe/dataframe/misc/get_dummies.py,sha256=Sug9x_JFihm7Dj3I-qcg63tZH8F7gkiu2su8kh-SXYg,7889
369
- maxframe/dataframe/misc/isin.py,sha256=zRCrBB0FLaAfMC-y3ZLYClux0dPYWJGIqtAYzuiq8KE,7231
370
- maxframe/dataframe/misc/map.py,sha256=gzGxyZ9zkgtymSAV_wbgRsgQvmcOW7WERZPkN4cj4po,9084
371
- maxframe/dataframe/misc/melt.py,sha256=IFFVwxtQ_VkrfCmJkjeDWsZQDeEcho_qZN4g0DMyBTk,5639
418
+ maxframe/dataframe/misc/get_dummies.py,sha256=WO9md7gfBah6j-4_RGda5afxDyTkog7OOnVf7JZyiVs,8043
419
+ maxframe/dataframe/misc/isin.py,sha256=xeiLZeexq--3lredxQ2JrixYndhQLbpRknQkdltCQiQ,7286
420
+ maxframe/dataframe/misc/map.py,sha256=hJGvpLu4QVs7MBatAmyqnTyspdnGPBg_PBuW6fmASH8,11851
372
421
  maxframe/dataframe/misc/memory_usage.py,sha256=Y3aXu020mGVt02LDOHQndC38WEz3h4P6ICBRTRWv6BU,8137
373
422
  maxframe/dataframe/misc/pct_change.py,sha256=QqnfdWFCMX5JJzzbBDPhllruhKHRmMyX5zG_83rB-zg,2584
374
- maxframe/dataframe/misc/pivot.py,sha256=bus18qgJxj8zQQZnHXN5pS7ZaMeBQpLmNe9NvXFWD3o,7976
375
- maxframe/dataframe/misc/pivot_table.py,sha256=gsHrurN6MTg9jjGkLWwF-55YAfnukbLDMmEW6YE1zn0,10344
376
423
  maxframe/dataframe/misc/qcut.py,sha256=1Br0gy9aEX7WJVH-WrnghNrofrUVrQftavwLvAN_9Hc,3841
377
424
  maxframe/dataframe/misc/rechunk.py,sha256=t_kC4OoRcRG4-nvBiBzbGx9RWqejjmbKKg6Mp2QUH5I,2015
378
425
  maxframe/dataframe/misc/select_dtypes.py,sha256=427Uisn1SGCHUSs_mXvZHVv7QcTIGUuQy3IGVBcQGmU,3248
379
426
  maxframe/dataframe/misc/shift.py,sha256=ZmZRSSSo-xYwz44biGTRlIe_uGGqCa0Y3V40atS6wF0,9287
380
- maxframe/dataframe/misc/stack.py,sha256=DIkfGxsLiN1CnMSm_x1a1o0aDZLGYoOb96X5E5FAnrY,8289
381
- maxframe/dataframe/misc/to_numeric.py,sha256=stvfycjsm6XeNz04aAC0LOl6BRcmQB3l-wfx5KboZe0,6440
382
- maxframe/dataframe/misc/transform.py,sha256=phzNOx-JpNLAezrDRGcaFVNnwK9UGS9dBWCE753zLUs,11283
383
- maxframe/dataframe/misc/transpose.py,sha256=8SLGhzgOvIi1-mMfPTL7wEZIXu_NiYXnvAmSYHDzTww,3772
384
- maxframe/dataframe/misc/value_counts.py,sha256=3N4X7TSbKBVgiFwNLiLTQ3AtEievzNTHa9Whj0VmdNw,5486
427
+ maxframe/dataframe/misc/to_numeric.py,sha256=3l3Kz7RqHW2DHFIVl69ibIvL6ArXLGd4EiEKhZ5Bx8U,6503
428
+ maxframe/dataframe/misc/transform.py,sha256=ww6fknVQawaAgBc0tjHDEoexvCAmJ5RE-8M-jmd5cYU,11479
429
+ maxframe/dataframe/misc/transpose.py,sha256=glmrZP6ojLvHZqszcT76KQAanskmuafLwNAeUO2L40I,4135
430
+ maxframe/dataframe/misc/valid_index.py,sha256=x_YOiDC1d-hg224GBk3m6n6dn9e91C23Z3AMbCZWPVs,2734
431
+ maxframe/dataframe/misc/value_counts.py,sha256=64gALSoBIMC8i03m18oG6hIx_Ot8hpHilI4yg6h-yLA,6375
385
432
  maxframe/dataframe/misc/tests/__init__.py,sha256=4LpNXO11JAdLjSut3p036oEEXlDEB-6AURW9oci5W5Y,609
386
- maxframe/dataframe/misc/tests/test_misc.py,sha256=7x2ZcCkxyc1e6I4PFkPQzybZM9Ja6L3L7PevlMAewMg,20453
433
+ maxframe/dataframe/misc/tests/test_misc.py,sha256=BkK4DsJnkDk3XjIc7nEssvPDu-HikncySCgtU32F3nI,20788
387
434
  maxframe/dataframe/missing/__init__.py,sha256=6MeY8HvRUJEQu_a15Cmt2Q8_a3G6kg6ti9LA3olZr7Q,1866
388
- maxframe/dataframe/missing/checkna.py,sha256=kq5Bve_rcy32IWhIzXTaLVyU6a09p3x3-Jo4SB-gWLg,7113
389
- maxframe/dataframe/missing/dropna.py,sha256=JMl7tHdFNmq-UZnOjI5NNjfSI0Z4GZRIGwLIEkva8Xs,8834
390
- maxframe/dataframe/missing/fillna.py,sha256=S8_4wnOQC6-Iwrcc7gN4H---Oyf7OkyrAW50uv3mE_I,9441
391
- maxframe/dataframe/missing/replace.py,sha256=kvrFi7gJ2mfiwQiW5ZDnr4oCLF3zght6SkSP9dSSUJM,13893
435
+ maxframe/dataframe/missing/checkna.py,sha256=fyRiACwIdSsLs4zBeqMrj_gJDktMpfW8Hc0RhVL25QI,7469
436
+ maxframe/dataframe/missing/dropna.py,sha256=qjLVIlIYWZaWM3nHFbD7MJ4JG9CNRF7-f8N1rPwpQ-Y,9014
437
+ maxframe/dataframe/missing/fillna.py,sha256=ggYj3KI2k-EG5ZTdm2C5mMjkWKCsna2C02QCJXfefUY,9457
438
+ maxframe/dataframe/missing/replace.py,sha256=sU7TxBkOiis5urFT_T9ixYGktr5gmWe8rX-i6lP3ayc,14048
392
439
  maxframe/dataframe/missing/tests/__init__.py,sha256=4LpNXO11JAdLjSut3p036oEEXlDEB-6AURW9oci5W5Y,609
393
440
  maxframe/dataframe/missing/tests/test_missing.py,sha256=LUSuQmhAtGceWGRWBbv9kxYRHqS4cPr6G-J8cwR8RLs,3217
394
- maxframe/dataframe/reduction/__init__.py,sha256=vWzViXiIiaOx0Yu2kWYkelVwYGGsv4OfUPLrFHKmXKI,4445
395
- maxframe/dataframe/reduction/aggregation.py,sha256=sPds9Xn_ZVZ8861jGjAPYaPGkkUgUtgf6owdZel-6lQ,17297
396
- maxframe/dataframe/reduction/all.py,sha256=_g8SKDcjwjLOZJmlBXy6jAGexJvG-A-jNwg9G3fKJk4,2044
397
- maxframe/dataframe/reduction/any.py,sha256=eTAF8iEkcICIkRCiICB7LL5Tjf01L_QKAbcNscYJF3M,2048
398
- maxframe/dataframe/reduction/core.py,sha256=-mEAvplbK7oJMZiqlmy8Qz4iThGrubVLWtMgUP6W6fY,31877
399
- maxframe/dataframe/reduction/count.py,sha256=1L55Exc7cO8a55s7r3AZP85aHtbL1RCK3HQQvhD-l-A,1800
400
- maxframe/dataframe/reduction/cummax.py,sha256=d8b1RxCiadkHtX7E-2hIe8vKdo1wFp8TQvfVilaLTmg,1043
401
- maxframe/dataframe/reduction/cummin.py,sha256=4OXs4ZGXyONlV_94qt3qSq1z674-S-BI1lT7ituFTs8,1043
402
- maxframe/dataframe/reduction/cumprod.py,sha256=F3YODmHpG6bxXmb8XGmjvHXFRUkuXyfcg1TOueWBBmM,1048
403
- maxframe/dataframe/reduction/cumsum.py,sha256=CNyjRfbmFh0VCqAFrJrCyIq4-vo5j9n2FkpvQqzcmb4,1043
404
- maxframe/dataframe/reduction/custom_reduction.py,sha256=5eXhi50SA9_udeRTlcia0ZM4OUVClWphWtEyZhQyqdE,1477
405
- maxframe/dataframe/reduction/kurtosis.py,sha256=tr26wVZ_bKV7O2upuK8HpD-7DalblSLPyCAqC48x4S8,2944
406
- maxframe/dataframe/reduction/max.py,sha256=_fpWa2x_sjPYXGweqIKWr2OCE3F1Evu92O25Cc4VzXc,1725
407
- maxframe/dataframe/reduction/mean.py,sha256=MqgK5PxsZ-lpGZlAiIyobKkilN-i_gdLIoKky7-Disg,1673
408
- maxframe/dataframe/reduction/median.py,sha256=ZFw-ULaxQh2eKRLwMxJU9a3mksCITlsZb--8Q2OLE6c,1649
409
- maxframe/dataframe/reduction/min.py,sha256=mvPPCVXK8H2AzfJxnwzhxRNIp6pwYUmthxrOMpf5yn8,1725
410
- maxframe/dataframe/reduction/nunique.py,sha256=Uejilql8X7UTjZIQ8yTa6K7j91OPjk2y4Fo9k-kdKTg,3608
411
- maxframe/dataframe/reduction/prod.py,sha256=knmn4AuCxtj1NvJYuw-Oj0hQA2-8Ou75HHkMRitbpig,2125
412
- maxframe/dataframe/reduction/reduction_size.py,sha256=EDEm7PLKuXI18W05Y2TObxDNL4iV5SU9Q2VIPdeC07k,1156
413
- maxframe/dataframe/reduction/sem.py,sha256=qzLPN1Eizneb09KxuoY503qMEpMzfDq1UM6W5VO-CHw,1932
414
- maxframe/dataframe/reduction/skew.py,sha256=60mqE6C4DdSsexqeL7SXxCJ1hkXcs1_yl2eO0INLE5A,2627
441
+ maxframe/dataframe/reduction/__init__.py,sha256=_wXnldMAezZrrBVqUxsCEO2sKi1XuO7bbsdZzYDsEAo,5070
442
+ maxframe/dataframe/reduction/aggregation.py,sha256=yd_qTOKtCr1jLBunkK5tfyLb_26wMGDK5hsSByw5C0c,18264
443
+ maxframe/dataframe/reduction/all.py,sha256=kivgJrnomBJ3udq16DHVvyhbqYVxO4s3y_xOG0jaJMQ,2028
444
+ maxframe/dataframe/reduction/any.py,sha256=hop1p9vtjRJQ_m8GGsln2UV6Ob-Y9HDHHY0NOGVX90g,2032
445
+ maxframe/dataframe/reduction/argmax.py,sha256=QV_HTWaSfLxmEee5BL_ODMJ9qPyR1j_Lb5foGb7PgHU,3288
446
+ maxframe/dataframe/reduction/argmin.py,sha256=ohHCP3yzMI8wZjsqJZQU7Y0C8jXHoDJgmkQ3NqBjEDY,3288
447
+ maxframe/dataframe/reduction/core.py,sha256=1ZPO7Q-V6sg05xqBPoqVlB9MY8Hy9QStudMN9nJupTI,33658
448
+ maxframe/dataframe/reduction/count.py,sha256=bJQLtsXuxKSr7GW9oP5RjlFbMOqJYWmpl1ZKlnrXUzI,2046
449
+ maxframe/dataframe/reduction/cov.py,sha256=90UGZO6rbyKESJbsCiytkHULW0EuhqYB_SE7Gy71Fqc,6376
450
+ maxframe/dataframe/reduction/cummax.py,sha256=vzOFasCORPSWRGgycq_qPzSliCItjOaRArCGqDvnKYA,1027
451
+ maxframe/dataframe/reduction/cummin.py,sha256=r2VLs8z45yHMiTMajlr7h2maO5XH8emg59uIvezHU3k,1027
452
+ maxframe/dataframe/reduction/cumprod.py,sha256=jCxM6BRyRLi5IEVvyN95Ml6glqLOIhvhYL-Rl56MuZY,1032
453
+ maxframe/dataframe/reduction/cumsum.py,sha256=L9DRjWL6bTbOkpG-6ZR7t-BkkXRn6sFz0wshqUgHxyk,1027
454
+ maxframe/dataframe/reduction/custom_reduction.py,sha256=42y4xDreb_MHH75DyRlKlk1KfFH-Z4r1Jd2u03uaLWg,1461
455
+ maxframe/dataframe/reduction/idxmax.py,sha256=ZRD2NkN0X9-7WwlZKWEDm2RSvUICJQLYlHKtI3XxGUM,5503
456
+ maxframe/dataframe/reduction/idxmin.py,sha256=0HSS1z7GEia_Yjhv5RVi-WPmiYqXYjOwHE8Ja0A-4Sk,5506
457
+ maxframe/dataframe/reduction/kurtosis.py,sha256=v_nCMxVTd8BiPTy6LxKBRqPsmIAXv8rT-O_DgHoTUq0,3181
458
+ maxframe/dataframe/reduction/max.py,sha256=Owjr2TBEY8BhYH2eHbk8CMELkOSp-pJleU7NSHJZ8Ig,1709
459
+ maxframe/dataframe/reduction/mean.py,sha256=2sFUolpZJlkiAtIzuuPxesXBSD1kxOZQR6O8S9V_APQ,1842
460
+ maxframe/dataframe/reduction/median.py,sha256=5xCAGdii1eNFgQfzAgiIqhRUcLu80QCzaV-8ge4x-_M,1633
461
+ maxframe/dataframe/reduction/min.py,sha256=WW2MLCX6xNF1CymhNNRU-H_Y7IvNFzTQkKchmT_8IUU,1709
462
+ maxframe/dataframe/reduction/nunique.py,sha256=lGprHAEDrDQ4jJnivnz_EN8NcT7jZiaPaf1YZWBTT7o,3794
463
+ maxframe/dataframe/reduction/prod.py,sha256=vt9XcqqJSbb5hlpEQpJP87eZD43ClQ1CNgdgUGDlB4U,2354
464
+ maxframe/dataframe/reduction/reduction_size.py,sha256=HzXinySqYpusFYnp9agdSx18A4rsrbSaYczhxgd0mn4,1140
465
+ maxframe/dataframe/reduction/sem.py,sha256=H9zDjkbygQ6daQ6cuaJSv09PXxrhcvk_knZ4_VO5MZU,2156
466
+ maxframe/dataframe/reduction/skew.py,sha256=oThGgpLwle5YL5gKrhYabYTWTCpJ_Vop_eUk98jeEEg,2798
415
467
  maxframe/dataframe/reduction/std.py,sha256=FEIYOOy_RWvKy5J4PxWrcyHdCXM1vhzCzcJbGkUs3BY,1408
416
- maxframe/dataframe/reduction/str_concat.py,sha256=D6Zg0Nn3zte6maia2d0tEDS4YTcdPJCxulLERLywouU,1705
417
- maxframe/dataframe/reduction/sum.py,sha256=pHoFT1rx_kI6EEAzywuNHqw1-IFQQaWSxPJlRgHC48o,2126
418
- maxframe/dataframe/reduction/unique.py,sha256=HezZnCRH5Tuwk9lSxDYDi5Q2qZaKNwviYpYwxU_KoSs,4708
419
- maxframe/dataframe/reduction/var.py,sha256=3lxeX6F5cWZBzcly6x8fVXmDrj79D7VG606A_kslADs,2080
468
+ maxframe/dataframe/reduction/str_concat.py,sha256=giI41Xc5uHB4r91lbrXweEZG1_dVDEv9Rp1H8G6BqFA,1848
469
+ maxframe/dataframe/reduction/sum.py,sha256=pWgNro8qZRRDyhpnojtecaW25kWxubA7_Gpgn4tviSQ,2342
470
+ maxframe/dataframe/reduction/unique.py,sha256=Pv-MhxlWCrCbBsEejczkfEpG-KDYTUVfVHHScX7cZz8,5054
471
+ maxframe/dataframe/reduction/var.py,sha256=5iQ0xcWIksADtgf71-F1JWelBF0iqWWlKN2n86ObX5Q,2304
420
472
  maxframe/dataframe/reduction/tests/__init__.py,sha256=4LpNXO11JAdLjSut3p036oEEXlDEB-6AURW9oci5W5Y,609
421
473
  maxframe/dataframe/reduction/tests/test_reduction.py,sha256=7d-JvUT4uIr3IELkc_0pCcSVtTXyyFocA_i-jYZngwk,19250
422
- maxframe/dataframe/sort/__init__.py,sha256=-RklhcFXmM4jroF3Uwv1jKYWtkvpyiXNqPULFu-Ywj8,1194
423
- maxframe/dataframe/sort/core.py,sha256=EV_0wRwwatjWJxCSs-bndm8oNBoYKSULzaJmjmroRV8,1260
474
+ maxframe/dataframe/reshape/__init__.py,sha256=2zEAjIYzUIHMHBUyGn5eESyQUq57EvQovyMLcoJrYHk,1155
475
+ maxframe/dataframe/reshape/melt.py,sha256=IFFVwxtQ_VkrfCmJkjeDWsZQDeEcho_qZN4g0DMyBTk,5639
476
+ maxframe/dataframe/reshape/pivot.py,sha256=YLglgSzIE-nVG0uvUm_1qScqHVf1-FGQmQgPZV6SCdg,8031
477
+ maxframe/dataframe/reshape/pivot_table.py,sha256=KyfNPXoTLlaSqTG7Ukbk7vF9edBrCOl0mVGkzLzirwQ,10410
478
+ maxframe/dataframe/reshape/stack.py,sha256=DIkfGxsLiN1CnMSm_x1a1o0aDZLGYoOb96X5E5FAnrY,8289
479
+ maxframe/dataframe/reshape/unstack.py,sha256=bqloID1uQnjC7HwwevKFznn9zcv-TDqSKkjR6YMEcNM,3951
480
+ maxframe/dataframe/sort/__init__.py,sha256=L2s7t-OPCD80BB6ya_HPQwJpFz1qHo40P2rBGC9oL8E,1599
481
+ maxframe/dataframe/sort/argsort.py,sha256=nH5aVE0WqZZERjSlnuCHb2Ej6xzuAXZx6Q3kDX0Wds4,2193
482
+ maxframe/dataframe/sort/core.py,sha256=qsxEJiUoyvGXv5MznWWhC2u9z0Mkx3xR4dkMXcgJaGI,1318
483
+ maxframe/dataframe/sort/nlargest.py,sha256=ieoZQKXstmxCfFJdR-EPOEW04i739tKXu9q9U-5GjPE,8192
484
+ maxframe/dataframe/sort/nsmallest.py,sha256=GyrYThfMdfqgrgGMoWWMXVhS4JK8C9vHEM8XMErq-Fk,7789
424
485
  maxframe/dataframe/sort/sort_index.py,sha256=-K5_EGDspBpZrIOpeZPoQuaKpEbOK91sjdgdR3TqxpE,5565
425
486
  maxframe/dataframe/sort/sort_values.py,sha256=hvUvy-e8xV-8UIhTaUXeHo5mjaNb009dUT0-WKDXTsc,9003
426
487
  maxframe/dataframe/sort/tests/__init__.py,sha256=4LpNXO11JAdLjSut3p036oEEXlDEB-6AURW9oci5W5Y,609
427
488
  maxframe/dataframe/sort/tests/test_sort.py,sha256=pCxHG5WJ4N7rk25nxRkkWS--j1GmBg04z9va1KlyK34,2685
428
- maxframe/dataframe/statistics/__init__.py,sha256=1ICpYa5QWI7JGl-YiA9HND2Zrkv33Xd_5ET3gj_h7Bg,1117
429
- maxframe/dataframe/statistics/corr.py,sha256=uPNF7LFUvco0KLV9rKWBl6S7xSnEGikLkVbDs7GgCWw,9856
430
- maxframe/dataframe/statistics/quantile.py,sha256=6UafIlsbWfDXNWo6-Z_LOmsxMUDMvC9gHX4TmopRiBk,11948
489
+ maxframe/dataframe/statistics/__init__.py,sha256=Xl2XKL9OGut6GP25SIKtxfYq1fr8wlmIb5KlpY_PbHg,1117
490
+ maxframe/dataframe/statistics/corr.py,sha256=EscKC9t3nUtFvhFOW6vS6HqXjL7vJVqeg-KnVGOT_40,9898
491
+ maxframe/dataframe/statistics/quantile.py,sha256=2TO6pB9ZHZL2B4LEM6xmExFydF01qqgf_0Nq0DBA5zk,11948
431
492
  maxframe/dataframe/statistics/tests/__init__.py,sha256=4LpNXO11JAdLjSut3p036oEEXlDEB-6AURW9oci5W5Y,609
432
493
  maxframe/dataframe/statistics/tests/test_statistics.py,sha256=EgObO0EeNbw-H_Y6CAGWYswyQBHh7nEOPf8T26aBafE,2888
433
494
  maxframe/dataframe/tests/__init__.py,sha256=4LpNXO11JAdLjSut3p036oEEXlDEB-6AURW9oci5W5Y,609
434
495
  maxframe/dataframe/tests/test_initializer.py,sha256=OyC8odxqZlOIMvz2dzhne-0-82wchp4Ti0-drGm9Kd0,2060
435
- maxframe/dataframe/tests/test_utils.py,sha256=TPse4YJdfWPUgDucXKHpEqlT3qIixLTI1nlI1I5SC_4,3113
496
+ maxframe/dataframe/tests/test_typing.py,sha256=_pJg3-YqFzs1DnRJ25ER52PApI0FYBz6opOzy2qyJuE,3395
497
+ maxframe/dataframe/tests/test_utils.py,sha256=VzKUtlaqTKNkRxRxavYK9n3yOylWSsoTwuqo224pDe8,5433
436
498
  maxframe/dataframe/tseries/__init__.py,sha256=4LpNXO11JAdLjSut3p036oEEXlDEB-6AURW9oci5W5Y,609
437
499
  maxframe/dataframe/tseries/to_datetime.py,sha256=UBx8ayibVzmZb0OAAbkpErfRGbPRd_IGwPlrvNdJsMQ,11725
438
500
  maxframe/dataframe/tseries/tests/__init__.py,sha256=4LpNXO11JAdLjSut3p036oEEXlDEB-6AURW9oci5W5Y,609
@@ -441,15 +503,15 @@ maxframe/dataframe/ufunc/__init__.py,sha256=kEWEf887PkENrw2Ua3Rrl0U2HIxPmxe4gZJy
441
503
  maxframe/dataframe/ufunc/tensor.py,sha256=FN151gfgAYE6XjnIlzVik3wYGe3jWtvwwhfta4DeGgk,1672
442
504
  maxframe/dataframe/ufunc/ufunc.py,sha256=uyw2zb9Qtt8-y2kWffoElmyN232UQ9ZRql2afuj2MWk,1705
443
505
  maxframe/dataframe/window/__init__.py,sha256=Y1EmErhxp5aSWnLFadSNEpvE7pAQgggjvP_1kXnwgME,939
444
- maxframe/dataframe/window/aggregation.py,sha256=rm89zzL-x3sGUJYeVK-vV_OvFLq9lBQHhm_JmVf-ujo,3890
445
- maxframe/dataframe/window/core.py,sha256=P9R-NicSgb32LhpLBHSe3PZc5rBV3g6QK5flIytSGzI,2274
446
- maxframe/dataframe/window/ewm.py,sha256=lnJDOURJe1mF4Ehq5QPwQeT9hYCFdzXgXW_CW1Ojp0A,8038
447
- maxframe/dataframe/window/expanding.py,sha256=GzYS6bL5HiiKtHiG-ab2KnVuFcB88GhVVWusgSIDGRI,4067
448
- maxframe/dataframe/window/rolling.py,sha256=OYyoQ-vbGvGrI52k3t41mzPcDFlT0wXnSzrkZyy1tVs,12537
506
+ maxframe/dataframe/window/aggregation.py,sha256=ZyphrF-lbSzyroRHrpdLL9gylgw7iA1l5glb8lxS7IM,3994
507
+ maxframe/dataframe/window/core.py,sha256=-BeMOYqRgpSeBFhCxd7BlPefM4Vfs5NsH3irEfmEWrE,2960
508
+ maxframe/dataframe/window/ewm.py,sha256=Hv9tHvlF-aqvvKGIXAh_qRimVEt6WON4uVEtCOiJHwQ,7999
509
+ maxframe/dataframe/window/expanding.py,sha256=J-jMPAq992qnI6pd815E-nzjGwMHMplxvCb-mFzC3EI,4239
510
+ maxframe/dataframe/window/rolling.py,sha256=CSGaNzgxFIt-sgCc-IToDO6UDs4YhWxAA5O7DmN8NpI,13200
449
511
  maxframe/dataframe/window/tests/__init__.py,sha256=4LpNXO11JAdLjSut3p036oEEXlDEB-6AURW9oci5W5Y,609
450
512
  maxframe/dataframe/window/tests/test_ewm.py,sha256=yJhYVg8fufOx8_u7S7Y6ubTBhzBiyLTYQHmVsE6pCJM,2130
451
- maxframe/dataframe/window/tests/test_expanding.py,sha256=3HnbUh5ELF2NKhfiVEcV6wGXEw0zb2Eqh_pP5f7fU6g,1982
452
- maxframe/dataframe/window/tests/test_rolling.py,sha256=48qEq43M4ZQH-lxFnc8SvamFzw2BJaNM7utDOoQchqE,1771
513
+ maxframe/dataframe/window/tests/test_expanding.py,sha256=9ZdECGdwAhEk1N4RBhtvHtfB1C_DOH4UMvcjyCVgCZg,1839
514
+ maxframe/dataframe/window/tests/test_rolling.py,sha256=UpP2ELEe4YUMo7CLZ1r3L5x9pMrtaGke-euQ-eqsOo4,1802
453
515
  maxframe/io/__init__.py,sha256=4LpNXO11JAdLjSut3p036oEEXlDEB-6AURW9oci5W5Y,609
454
516
  maxframe/io/objects/__init__.py,sha256=wq8AHIuxvoIqoVOIVZ7DIPeDqmoh4yB0zsC-iVghYSI,778
455
517
  maxframe/io/objects/core.py,sha256=iadSP56p1GPZxl9udhPGfwuog6Npi7YqJ1XI5ltU4fo,5459
@@ -458,16 +520,18 @@ maxframe/io/objects/tests/__init__.py,sha256=4LpNXO11JAdLjSut3p036oEEXlDEB-6AURW
458
520
  maxframe/io/objects/tests/test_object_io.py,sha256=87ftkGDQWE4XqDPlgpz7feIzdKLWKlFqfdjbzmbh32Y,2670
459
521
  maxframe/io/odpsio/__init__.py,sha256=mGMCS99Gsdl5_pYBQYpXekRrY_4eM2waP9OG0wTQSb4,940
460
522
  maxframe/io/odpsio/arrow.py,sha256=As_x8HrdXrJMvf1Uk4UJoEAODwA_zpRusEQaCl0-ATk,6805
461
- maxframe/io/odpsio/schema.py,sha256=2P7olzWL1QwqzucFqL-fUe2ANrgdxy3fOtk7LYxewqM,17307
462
- maxframe/io/odpsio/tableio.py,sha256=_pCW_--WaH9vNs_u1f9ijHQIJUIaSKjTDSb73WPIj_4,25553
523
+ maxframe/io/odpsio/schema.py,sha256=cKNurBta9CA9zrZ9skkpum9KlZI_YAl6MFDTelVti00,17615
524
+ maxframe/io/odpsio/tableio.py,sha256=XotV2AVs9HkkzIp5FgVrLKOMUdR1ctODn3oTC1z7X7Q,25714
463
525
  maxframe/io/odpsio/volumeio.py,sha256=FErxOK2oYs09mLAguE5XS9KqKbip2Ruuhp6NMRFdZFM,3483
464
526
  maxframe/io/odpsio/tests/__init__.py,sha256=4LpNXO11JAdLjSut3p036oEEXlDEB-6AURW9oci5W5Y,609
465
527
  maxframe/io/odpsio/tests/test_arrow.py,sha256=sHubxnSLpRp1WdK0LMVG_5LzYgZ7XPwK4lLl8XEpRg0,4582
466
- maxframe/io/odpsio/tests/test_schema.py,sha256=udqOedPalRexlUcdvIYUL0rLCKk1P5wqGKusQN6I0ds,18951
528
+ maxframe/io/odpsio/tests/test_schema.py,sha256=vMqQbC2fAzoZUkIRJ2BDun_rV-F9evx43oKckEgaExo,23501
467
529
  maxframe/io/odpsio/tests/test_tableio.py,sha256=MD_NE8bVn2og8BZSb9UOngZEJQiCgc3AeG2UN1SmVpw,7323
468
530
  maxframe/io/odpsio/tests/test_volumeio.py,sha256=bxI5WOEE558jE5gGZCakzCv2BvzZq8UZDs3Q2bM_bz4,2414
469
- maxframe/learn/__init__.py,sha256=6461tNiEVUPehmLk5RJo_f4Z9DduUG04IePiEkp4PJY,713
470
- maxframe/learn/core.py,sha256=cwm5EdVNSvbL0EPCzR318HjHG8TYeXKG9wgJh0Ig1z8,10429
531
+ maxframe/learn/__init__.py,sha256=q8wFw1bJbEjwCaTil1COrbS9ig67FxLdIUKfeAjPND4,832
532
+ maxframe/learn/core.py,sha256=FPe4WDnIBXMI5A7yqxtnnnWW9tEsrZtNaUB9DtyjXX8,12346
533
+ maxframe/learn/cluster/__init__.py,sha256=91BXfrUkoClWUP9cX5uhWtnOmC18jnxpYa5bRzkdCpw,649
534
+ maxframe/learn/cluster/_kmeans.py,sha256=pAXLhB4YCA9qMIdN0vN4SbpvybQdyjQilZ2CdVw087s,27840
471
535
  maxframe/learn/contrib/__init__.py,sha256=zMShuxOubDzh94IvRLSwULLHJQGKBWZGyXGqRq2frww,693
472
536
  maxframe/learn/contrib/models.py,sha256=MamERXWLwUiTueKSrWNCVJ2aidU1F1-0OrIuESv9eZ0,3625
473
537
  maxframe/learn/contrib/utils.py,sha256=NkvJsTktz4_7kLHo0viiUihB6Jzh0hxgxmVS_UjtHns,3491
@@ -486,7 +550,7 @@ maxframe/learn/contrib/lightgbm/regressor.py,sha256=DDdgQN81BHna_GD-IfhOAQxr6VrP
486
550
  maxframe/learn/contrib/lightgbm/tests/__init__.py,sha256=4LpNXO11JAdLjSut3p036oEEXlDEB-6AURW9oci5W5Y,609
487
551
  maxframe/learn/contrib/lightgbm/tests/test_callback.py,sha256=chJzk4R97itBKF15LHz2TRPxjJhmTZvgiySiDecbnjQ,2111
488
552
  maxframe/learn/contrib/llm/__init__.py,sha256=Ikv8Bw62gQNCaVVu8VfaTmZQEvCCqNO2SBeJXXaEYpk,666
489
- maxframe/learn/contrib/llm/core.py,sha256=HdHJOTt5ONZIqOJd6o-269BGMjtRNCvMTgEbriBWCfc,2798
553
+ maxframe/learn/contrib/llm/core.py,sha256=jdA35-giPXwTvfm0cxjbQCxZzbtIfWC23dn4uaMYjiE,2905
490
554
  maxframe/learn/contrib/llm/multi_modal.py,sha256=a6fy8K0j9luOMR0JnU6yjlzuzqDNv8mE7_1lezTNmGc,5541
491
555
  maxframe/learn/contrib/llm/text.py,sha256=ZGhx6dyMNWZTy-wlpfQMs8Rm0JdALSTyP9NMR1ASRj4,9646
492
556
  maxframe/learn/contrib/llm/models/__init__.py,sha256=xdT-QE7V6VbAciHW7ubViTMTG0XCuIbCVY7SIIYzFlc,676
@@ -500,23 +564,36 @@ maxframe/learn/contrib/pytorch/tests/test_pytorch.py,sha256=WgA-VI-XlpwaSdD-zpMV
500
564
  maxframe/learn/contrib/xgboost/__init__.py,sha256=ChqbAiGx91jbI4H0MQloiXx2hWGmSte_IO34t2YRLT8,1084
501
565
  maxframe/learn/contrib/xgboost/callback.py,sha256=MtPt83a_WoJLW6obhBrLAPzv-5uJGOFZ4_rS-klCqBQ,2776
502
566
  maxframe/learn/contrib/xgboost/classifier.py,sha256=9ipyolx8DX4gYOXeqo_EFcqRyGxZmNBfBa_ZtroSz5Q,4128
503
- maxframe/learn/contrib/xgboost/core.py,sha256=-QEtSRdx4vmYr6mG4zBh-bUYKb1YFGcwe5BHfIVr8zU,12578
567
+ maxframe/learn/contrib/xgboost/core.py,sha256=xweb3QiZTlW57ZuRMDxe_Ob-f1VkIhEvwjw_1C5k4t8,15523
504
568
  maxframe/learn/contrib/xgboost/dmatrix.py,sha256=aa4_PUm-ogKQEZxx1vLxFvYGZcey9zgr7704eSBVUfE,5363
505
569
  maxframe/learn/contrib/xgboost/predict.py,sha256=Duo9fIAjAEkD3-PliVBTesqJbFL9nws65YWe9Q_baDk,4317
506
570
  maxframe/learn/contrib/xgboost/regressor.py,sha256=qIJmZJPhhegc3h2wjsCfNj9pGUPNGpzJlWFzowMouT8,2972
507
- maxframe/learn/contrib/xgboost/train.py,sha256=rLxor77Z4_wqFlqBIOsJEGp2TAioqjm5CVHUsDQTFAM,5925
571
+ maxframe/learn/contrib/xgboost/train.py,sha256=hE8b4U-Ygu2hTbUnR1seEnbkB-pl7pvf314Lboah4Nc,6115
508
572
  maxframe/learn/contrib/xgboost/tests/__init__.py,sha256=4LpNXO11JAdLjSut3p036oEEXlDEB-6AURW9oci5W5Y,609
509
573
  maxframe/learn/contrib/xgboost/tests/test_callback.py,sha256=U-_aORr2-jrwpxpcmDkQ9lYHk5pfeMN85172pd7eTTk,1583
510
574
  maxframe/learn/contrib/xgboost/tests/test_core.py,sha256=0ZI07rGLA_yO_bKO4OXv_0_nwB-l0sI3JCxjQko0Qaw,1449
511
575
  maxframe/learn/datasets/__init__.py,sha256=YzqTqa-PoyyJdsPS2fWnR46xN6jboOxR4KYNaBHJb24,740
512
576
  maxframe/learn/datasets/samples_generator.py,sha256=wLByrFvr0Kj3ESFJe_5r5dqrc4bzFL7balLRexmJids,22613
513
577
  maxframe/learn/linear_model/__init__.py,sha256=Xr5oT7sWxl4A6AtQiBT-hz95kQgCatWtshmF1Qt6-a8,651
514
- maxframe/learn/linear_model/_base.py,sha256=UOKbiaDL_DWMMOQ1ejKiIjzg_-eXS-SGBYlGm19uX4A,5493
515
- maxframe/learn/linear_model/_lin_reg.py,sha256=FIrTID75NcQOL7v6mTKYs5Z-DupeVdOOW2mpj9S85_M,6422
516
- maxframe/learn/metrics/__init__.py,sha256=26VLOBmUQ0191A5EGmgIYXza_31PVJhAgT4PXlrama4,878
578
+ maxframe/learn/linear_model/_base.py,sha256=z7ZtxeX4FMMm-U9O7BG74UTQch1T4U8brZekHtum7I8,7223
579
+ maxframe/learn/linear_model/_lin_reg.py,sha256=SsuBdkgIBfHgCfbBLu0Rz-eowxVhdfxoSrbmWn-URgo,6455
580
+ maxframe/learn/metrics/__init__.py,sha256=rpYHHEbJLy7hlQ6LLXBF_jFwVdB4anej7WjpJRFvwhw,1037
517
581
  maxframe/learn/metrics/_check_targets.py,sha256=ajUJqXOTzyv9Hlk09GJydPP7H7Cmw5GFHYtLWwipemU,3172
518
- maxframe/learn/metrics/_classification.py,sha256=K1w1hBnzIkV4J5rB6y0XEDi5qR10Z4MayWtfwcDCPho,42796
582
+ maxframe/learn/metrics/_classification.py,sha256=48U6cVfk3jWOionmbnTTd6HYiC8eear3-m7eJWS-r70,47826
583
+ maxframe/learn/metrics/_ranking.py,sha256=CsYCmIzLSpUEu_EklKvDfmeWH1O2NT4kNBnCp-4GGE0,18627
519
584
  maxframe/learn/metrics/_regression.py,sha256=DJJVtsirl-OMij35QDLdNUK9NMYC70FMrssjxgSDXDw,9077
585
+ maxframe/learn/metrics/_scorer.py,sha256=p0ywRfJHemKUyCPEy29hpOS5zBoohxnTTZB-OnOTCwE,1806
586
+ maxframe/learn/metrics/pairwise/__init__.py,sha256=8W5BHXr9iNc8dakDDFuXl4Aw0FKQd68QzC0K9SEgikg,969
587
+ maxframe/learn/metrics/pairwise/core.py,sha256=osAH86tr0HeN4FRZC1O2SLZB2PoaeHfjisp1pJ25SqI,2660
588
+ maxframe/learn/metrics/pairwise/cosine.py,sha256=r2zeG9dyn2cd7g7TWBdu5nuEHhB10tG6hEzQAbb2LS8,3586
589
+ maxframe/learn/metrics/pairwise/euclidean.py,sha256=UyGBCrveMGwVoBU8vMTUVpcXFo0DaguiXWmHpfkO_-U,6310
590
+ maxframe/learn/metrics/pairwise/haversine.py,sha256=oQKjOZoZnUQCaBgK5olM9z2HpCSu6DmZxyAGP4bCJ40,3439
591
+ maxframe/learn/metrics/pairwise/manhattan.py,sha256=X9sOosz7ewqtrWhRE1A61-LuZOmrxJvC064DIeGy_YE,2562
592
+ maxframe/learn/metrics/pairwise/pairwise.py,sha256=WVEm0ExLuLPvwMQG0eXLufIkwqlmT4Yey4-uVWc0QmA,3877
593
+ maxframe/learn/metrics/pairwise/pairwise_distances_topk.py,sha256=amtMTzuy2M-pMexkB4A1Lk9DnDzJ_IsEr7qBI1bK508,3521
594
+ maxframe/learn/metrics/pairwise/rbf_kernel.py,sha256=3zjgkwbBQiSbbqeRHNNY5TCVipjA7kqCyaypBxLJdKE,1519
595
+ maxframe/learn/metrics/tests/__init__.py,sha256=4LpNXO11JAdLjSut3p036oEEXlDEB-6AURW9oci5W5Y,609
596
+ maxframe/learn/metrics/tests/test_scorer.py,sha256=6ybwLl-yqUExhTl1sGKjaS33DkSzoj5UdV6_1SXU7pA,877
520
597
  maxframe/learn/model_selection/__init__.py,sha256=HsniD8ZJ065to5myNfj61niEN5w-377tIqom6URkBIM,656
521
598
  maxframe/learn/model_selection/_split.py,sha256=E9ZojZ2E7b6xw2bVFEjw9LmHtrphvyXGwcc8doOz_ns,16587
522
599
  maxframe/learn/model_selection/tests/__init__.py,sha256=4LpNXO11JAdLjSut3p036oEEXlDEB-6AURW9oci5W5Y,609
@@ -530,23 +607,24 @@ maxframe/learn/preprocessing/_data/utils.py,sha256=3lYrIyIXBUgWDfARHrqDl53FduolR
530
607
  maxframe/learn/preprocessing/_label/__init__.py,sha256=yOWCM1whXO7p_191LX0A_1S-4NqPEzJkPszBnlUtX9s,732
531
608
  maxframe/learn/preprocessing/_label/_label_binarizer.py,sha256=C6S8Q8psg829nJkVoyvXLQa8PSR9ldTF73Z-F3aRsAQ,19988
532
609
  maxframe/learn/preprocessing/_label/_label_encoder.py,sha256=nhJwHmyajfwyARUfwvII08yY-ufz_3hrBEVk0kLRykE,5672
533
- maxframe/learn/utils/__init__.py,sha256=FBisI0K2p0U3LzBaLNzlZaRq0DhEjXf-SEOMF3Y7IYg,834
610
+ maxframe/learn/utils/__init__.py,sha256=3MRslSIAWVZ4N-m6Mf4J0YVg92tecp3jUUKO58JgEww,847
534
611
  maxframe/learn/utils/_encode.py,sha256=iqvRXVapbp3Ut_NWaUtyHw6W8s-0hh6ItJpjpFOlTGI,10018
535
- maxframe/learn/utils/checks.py,sha256=-1J_1R84FaiIOB92mR1b_nMnpuw_xvM8vC9z8c_mo5g,5274
536
- maxframe/learn/utils/core.py,sha256=lG6sx7ogNJEo9lUvPVgGNOMa4MNuqorjmIMohQmlKz8,1696
537
- maxframe/learn/utils/extmath.py,sha256=biUZAqY08yCbBnYe9P0DZravOiQAB4LyZOXIsfh4vD0,6665
612
+ maxframe/learn/utils/checks.py,sha256=Jbdrt1UO9K7F2GsitxOqjNCKeBehlQdnUumrVzErV3s,5219
613
+ maxframe/learn/utils/core.py,sha256=t6hLw3dkxKOePlmPhM0X35aXfMJ5eKX1yE7_JiinmN8,3628
614
+ maxframe/learn/utils/extmath.py,sha256=MAFJuYjuRi1mFQQNQeOvaJQGbazyswaaRRcMxpet0fk,7581
538
615
  maxframe/learn/utils/multiclass.py,sha256=lq9cap8f5hVlRzdFNyQuAfRpiaqEO7is1pWaqpda3zU,9334
616
+ maxframe/learn/utils/odpsio.py,sha256=Q1XsgvSMfpNy4weYF4wQ3CS1O9ylYjfTTo-bc4phIUI,7792
539
617
  maxframe/learn/utils/shuffle.py,sha256=x64KVCvrpQrTq9sqDm8-xuh6BbmGw2SwIuUpkCw7ybM,4435
540
618
  maxframe/learn/utils/sparsefuncs.py,sha256=6_qzQMarQqRk8N5ay7sZtAViawLv7P76SaLgTW0TYiU,2831
541
- maxframe/learn/utils/validation.py,sha256=AGllGoL7yZerS7VC-Plv7mIIqdmQZbA5dBcdmBuX3G4,27850
619
+ maxframe/learn/utils/validation.py,sha256=gIQL7QuGzQYeSQa2_P_EfTlbZ-j074jvv9Z5l8y1sxo,27850
542
620
  maxframe/lib/__init__.py,sha256=4LpNXO11JAdLjSut3p036oEEXlDEB-6AURW9oci5W5Y,609
543
- maxframe/lib/compat.py,sha256=vqM6avpMK_UpbxYwslJWq_-7jdnvJ-SplxeOauG9Nzk,4881
621
+ maxframe/lib/compat.py,sha256=AhEBLH36Gz-ljROS2JEf8PfrptKuXwD3N70iQMx5hBw,5996
544
622
  maxframe/lib/compression.py,sha256=8F0QEOlrgrFz8Yzeyap4ud3PYe1I5LUWUHWvQg1YKq0,1497
545
623
  maxframe/lib/functools_compat.py,sha256=1a-R_fcKQo7gUZnyk6L-qt_Ozhm3Gb0y86Fd3ROeTcw,2697
546
- maxframe/lib/mmh3.cp38-win_amd64.pyd,sha256=QGowFRPXxeS1-Eeeyo7d0EmT7NrKoEPIYHSKHCQECyM,17920
624
+ maxframe/lib/mmh3.cp38-win_amd64.pyd,sha256=SqKLDIx8I2AWhB--qqbRr0tFp8pBpF6d-qultXu82WA,17920
547
625
  maxframe/lib/mmh3.pyi,sha256=ad6KZrDA7dznE5Qv0lnGB32rw1Zl2DBwNIH0BI_bFQU,1537
548
626
  maxframe/lib/version.py,sha256=NqxzCX2pLHIMTj-7HTA6xU3iyd_DVeqyyW1n-Rk8MCQ,18941
549
- maxframe/lib/wrapped_pickle.py,sha256=Yazeydh6vOAd4ibsv_tn_8LgAC7kVkoResQYFW8RXNw,3976
627
+ maxframe/lib/wrapped_pickle.py,sha256=bgKCRXGul4eleqvqDQi-3Vyn60Emcto6fNXI2aUuBVQ,4381
550
628
  maxframe/lib/aio/__init__.py,sha256=j45XJga8B4YUKCOwFkqn7Wq8In3MNtLHpPEjG0Hs8so,963
551
629
  maxframe/lib/aio/_runners.py,sha256=wo4EfFJJ4B3RkilV_iClAx0ySRaiG8IcnTMfaORqiL4,5367
552
630
  maxframe/lib/aio/_threads.py,sha256=uqIMyQWxlXgYzdtInMoOl3i-blXYT-mcxikNmssfpcc,1363
@@ -559,26 +637,30 @@ maxframe/lib/aio/tests/__init__.py,sha256=4LpNXO11JAdLjSut3p036oEEXlDEB-6AURW9oc
559
637
  maxframe/lib/aio/tests/test_aio_file.py,sha256=WnU2jQMZ1jVPT8l9m3h4lytLUDhAHTIa9_mTMHpo224,1713
560
638
  maxframe/lib/cython/__init__.py,sha256=4LpNXO11JAdLjSut3p036oEEXlDEB-6AURW9oci5W5Y,609
561
639
  maxframe/lib/cython/libcpp.pxd,sha256=lNA9YvEGLS0xMarsmvllh2qMdPxu-_Tl2ymT2EQw14c,1130
562
- maxframe/lib/dtypes_extension/__init__.py,sha256=sO6wef7yir_E-En40NTcd-dHl4dP9QWmWv0Ya4NYXHI,686
563
- maxframe/lib/dtypes_extension/dtypes.py,sha256=q5V6tvS7cC-N-e2gtfRiuh1TKXdcm0eCbjJbS6FQrJE,2219
640
+ maxframe/lib/dtypes_extension/__init__.py,sha256=USqhyrH55UilZFVQbkiCZ5vnOLKj0ECIDCg81GoRDQs,885
641
+ maxframe/lib/dtypes_extension/_fake_arrow_dtype.py,sha256=rj6zzkRsg3Q8MbLYDgvPSfhUgPEFBXQ1OrkLzSSIhmw,22163
642
+ maxframe/lib/dtypes_extension/blob.py,sha256=g9Fw6V5960r7MAigo1bxCxKMbCKqxty5nFkimRF4vB0,9288
643
+ maxframe/lib/dtypes_extension/dtypes.py,sha256=IK0NkkXusvjLbrlQOhWxPlqxWHoH2hh4C9OEnOdUbDE,3267
564
644
  maxframe/lib/dtypes_extension/tests/__init__.py,sha256=4LpNXO11JAdLjSut3p036oEEXlDEB-6AURW9oci5W5Y,609
565
- maxframe/lib/dtypes_extension/tests/test_dtypes.py,sha256=dpqCS6qfyXb8w5paTjx52pQgaWZ5xbb4FcDShV5gbU4,1426
645
+ maxframe/lib/dtypes_extension/tests/test_blob.py,sha256=Ts1R1L2pD8aXvYKM6ajYPMAseSk_eMIOIr0PzTTtnwM,3104
646
+ maxframe/lib/dtypes_extension/tests/test_dtypes.py,sha256=JcuOrQIraUMqUuWaZQaZ0Tt3jcEYmDzITMReeVLo25Q,1871
647
+ maxframe/lib/dtypes_extension/tests/test_fake_arrow_dtype.py,sha256=lsZvbvukLEUCcKz4vr0iurpt0NVmSZ2g1ALip_UjQJQ,2717
566
648
  maxframe/lib/filesystem/__init__.py,sha256=1LjZ5ZPdXZHKaJ5TZY34dnoLgYMy1qiB3DcE5k9YjaU,855
567
649
  maxframe/lib/filesystem/_glob.py,sha256=H1wRnnhFAK6PqshJf6ALo0jxVZ9em1zhi3d9Q5rXpLk,6708
568
650
  maxframe/lib/filesystem/arrow.py,sha256=QKH1gtjx-0jUyBNMKBF0nLJZCKuOwDIGko8biBBgQkQ,8647
569
- maxframe/lib/filesystem/base.py,sha256=zT3zMZr3tg08jpn_e8NZysZIp1aKdnm30RY3rhNAYow,6897
570
- maxframe/lib/filesystem/core.py,sha256=Ein0lutQrxeXbzl0ESlN6lWJk1D-_VPyjzxs2heks_c,3027
651
+ maxframe/lib/filesystem/base.py,sha256=iESlE27rOlNrgy4MfAvXh-sB8JH_i3Ls6rAUH9h7rI0,6862
652
+ maxframe/lib/filesystem/core.py,sha256=VKwhMXcjQH95RPiKco8nIOe1780wYN9xhPTcgkIgDWw,3008
571
653
  maxframe/lib/filesystem/fsmap.py,sha256=uZoFQuI2XbNaUOBlDfPRgB5SL9ZtlHhDQxJ3mGvQztg,5426
572
654
  maxframe/lib/filesystem/hdfs.py,sha256=RGEnP-REb1TmkHYqy-qqAd_E22lWoNezgFY_uVrNsu8,1096
573
655
  maxframe/lib/filesystem/local.py,sha256=N8CF6yJhW1cj-qlxPxFM5vVEgVoie5oP9evS2fFSvjo,3700
574
- maxframe/lib/filesystem/oss.py,sha256=11w2BhSvgIGAdFIZ5cJigx4SZlnwKpD0gn8c3NxnG_I,5174
656
+ maxframe/lib/filesystem/oss.py,sha256=Zm3e_ZC0nqLXChWBco3VeqRR6WogNCgYzkPJR4YCFbA,7818
575
657
  maxframe/lib/filesystem/_oss_lib/__init__.py,sha256=4LpNXO11JAdLjSut3p036oEEXlDEB-6AURW9oci5W5Y,609
576
- maxframe/lib/filesystem/_oss_lib/common.py,sha256=-Jv3GisWDK5-ZA_ei7uS7a5hS6l0llECu079NsopWnA,6813
577
- maxframe/lib/filesystem/_oss_lib/glob.py,sha256=3raGtAmJIsjrKTTKg80HswVTIPKiSEl4HCbwDjWy3D8,4983
578
- maxframe/lib/filesystem/_oss_lib/handle.py,sha256=1Em8B-SPYNSB9p4WYn2yVeBXDgb_lJNuW0WBgVxC1Vg,4998
658
+ maxframe/lib/filesystem/_oss_lib/common.py,sha256=TR0jUcxGZ9GL_lKnTKxx4tRo3e_vSos6jBLjYX2L2Mg,8651
659
+ maxframe/lib/filesystem/_oss_lib/glob.py,sha256=GCrlY73bj61SKxxxSVOwyFQXz7epfCDdE7vcbDXAuHM,4981
660
+ maxframe/lib/filesystem/_oss_lib/handle.py,sha256=bnJ51oifArGtGmxQM48xPyvTByXziopOKF9GOSCoYAY,5053
579
661
  maxframe/lib/filesystem/tests/__init__.py,sha256=4LpNXO11JAdLjSut3p036oEEXlDEB-6AURW9oci5W5Y,609
580
662
  maxframe/lib/filesystem/tests/test_filesystem.py,sha256=lYlNEWJ-PN-Srjx0PuAQ4bcHNXQErY_gNImIbP4djT4,7597
581
- maxframe/lib/filesystem/tests/test_oss.py,sha256=SYdN5sgE32REQmTGAu-DoHEVhlY56TxLsQox37JbSco,6076
663
+ maxframe/lib/filesystem/tests/test_oss.py,sha256=6TdeC-aWaWe0joduIDvAHEzNOv9FNcKrEnsbAoIycxA,7680
582
664
  maxframe/lib/mmh3_src/MurmurHash3.cpp,sha256=3aoHr2GNYsXizcf4DosqiMmZvy8l9Jxt3pAkYHr90Cg,8435
583
665
  maxframe/lib/mmh3_src/MurmurHash3.h,sha256=JgEfh0M_o4gHt2mtzv9sQIQyEqs8ZutkDaPO2L3UwGU,1306
584
666
  maxframe/lib/mmh3_src/mmh3module.cpp,sha256=bEBXHjhQuXceV6MFyNvs-YG4WUKt5Us_kmgrOKQw7Qk,11991
@@ -600,32 +682,33 @@ maxframe/lib/tests/test_wrapped_pickle.py,sha256=euQ4u_YU-TYvSExtqeQ9fnCiUQiGaFx
600
682
  maxframe/remote/__init__.py,sha256=m9h2lTNEayNKWsmJeAjitnG00atQROYRitjE9R1h4B8,747
601
683
  maxframe/remote/core.py,sha256=RRG8Eh5wYi5epjxG2zsK6vw2XSqWIQbEG0QqNwGZFPc,6759
602
684
  maxframe/remote/run_script.py,sha256=lG1tfysaPu8CX5CHM-jwjs7FOJPj7FQfHrp7hOO64sQ,3775
603
- maxframe/serialization/__init__.py,sha256=nluqAwXyGrWuYtZ0QksoqZ98A3sRRM_XiYHf2cUb9pU,1028
604
- maxframe/serialization/arrow.py,sha256=DUq7e9V8kJrpj_Z67F767jo_wxgkkXygSPByzMqfB4M,3513
605
- maxframe/serialization/core.cp38-win_amd64.pyd,sha256=bexLPmY-WxM561yhV4hAmgT1JcVmoDRx_jKyeV1Tzy8,440320
685
+ maxframe/serialization/__init__.py,sha256=bhyTL4gAm0SUgeM57tIxgmm1XKBzF0ZbqlKe9a2LfNU,1086
686
+ maxframe/serialization/arrow.py,sha256=jvv1h7JDkbZIWwRMazkcr-nuIGKmmCQsbFUXeD3tFw0,4648
687
+ maxframe/serialization/blob.py,sha256=o_Soij144UmYx_y6QAANufsAEIP-T68VmCWCfDoK7GQ,1170
688
+ maxframe/serialization/core.cp38-win_amd64.pyd,sha256=F1Q4tjZEJjqtfVxF205f-tw556P82H19G_SOmI2OwK8,460288
606
689
  maxframe/serialization/core.pxd,sha256=x8_6jYkU0BnV-0KUEjnqvXXn1c9HPvyt660mi7u9fE0,1580
607
690
  maxframe/serialization/core.pyi,sha256=jOgVcThRuPekxQVyxWWnF-8Udgzo6kDpZThYVQsYeog,2327
608
- maxframe/serialization/core.pyx,sha256=PdmooZnLD-srKzc0sPiqIT51U4wgMzFtN2G121YDOUM,39812
609
- maxframe/serialization/exception.py,sha256=JmkTT7maDzIuDYWhDQYqfLXp3P00i2ATMvACA0sPsck,3079
691
+ maxframe/serialization/core.pyx,sha256=_pygbM5HMffaekkYohmaM5A11DkCUo8pWmY582GgOhM,40965
692
+ maxframe/serialization/exception.py,sha256=tWEwOYmKp2tUwEIp8pSKlrZwHris08tIEA_g_si7BcM,3046
610
693
  maxframe/serialization/maxframe_objects.py,sha256=QXJyxTpLhU3oB7gUwV5JWAvW4tm3jJOskvhJA0_4fDo,1404
611
- maxframe/serialization/numpy.py,sha256=blU5A21RVz7x7RA_65fSB02REFYwqluBJm50akHng1s,3639
612
- maxframe/serialization/pandas.py,sha256=WzLrAgXxHAoCvm047RvBII4k2sqoNpM_HERb3WWxCSk,8874
694
+ maxframe/serialization/numpy.py,sha256=KQNeD4pffet3SleIk4ZF-LrVMXyWGG3ioh-6d1s1eK8,4005
695
+ maxframe/serialization/pandas.py,sha256=Iyg1zr4gHOQ7OZ2yDfHkLtb5yLR3U0Il9fkGKfoezSg,10295
613
696
  maxframe/serialization/scipy.py,sha256=eeFCcNp6Vgv8ftRIotOTazP-I3ln1xHnfWSMgHOJtMQ,2498
614
697
  maxframe/serialization/serializables/__init__.py,sha256=9SEXt3nT_Ii8EuMKCPKOGmV4p9a7NrKRuZkpXq3195g,1406
615
- maxframe/serialization/serializables/core.py,sha256=VGjm2djSWf8laldHrsiuGy9plnONFD3YR6pPes5zzms,17468
698
+ maxframe/serialization/serializables/core.py,sha256=i4HMz6dZaddHUQnGvNOp6ejT5yaE4ttjRkAclangl9g,17498
616
699
  maxframe/serialization/serializables/field.py,sha256=a7NTwVoua6rCq5Q7fJfcxHtHjj8KW2uVuKsOZbZITZ0,16637
617
700
  maxframe/serialization/serializables/field_type.py,sha256=AMq_nn_RCOIU9ClvoF4UWEFmvP-044MD6NJ0d8MQ3YM,15525
618
701
  maxframe/serialization/serializables/tests/__init__.py,sha256=4LpNXO11JAdLjSut3p036oEEXlDEB-6AURW9oci5W5Y,609
619
702
  maxframe/serialization/serializables/tests/test_field_type.py,sha256=_vW3SNw8zcYinNx_BGPfja3b7bJbmg3wolsXdzg0qFQ,4452
620
703
  maxframe/serialization/serializables/tests/test_serializable.py,sha256=rdxPNvxqaq8vNkrtMHHvlNJJvSXJ2GnHseDWupAGj68,11007
621
704
  maxframe/serialization/tests/__init__.py,sha256=4LpNXO11JAdLjSut3p036oEEXlDEB-6AURW9oci5W5Y,609
622
- maxframe/serialization/tests/test_serial.py,sha256=naz-n4WYzueTZdhLtYKWxLVN_wGTuNw88sJswTyfxy4,14491
623
- maxframe/tensor/__init__.py,sha256=xndvw0V86lp0jHx5ploOe0jHfmBfAHrieF6PTJH1HTQ,5679
705
+ maxframe/serialization/tests/test_serial.py,sha256=5IdawpGGT_qJLSsj993dkBdOKyAUNN7QgxyOIXoKgNs,15352
706
+ maxframe/tensor/__init__.py,sha256=POcXjT5pNi6O22EX9R1mhj1uCgcpIPN3iNFpr9nRchI,6061
624
707
  maxframe/tensor/array_utils.py,sha256=306wjTM_xpUmVOAsrSOqTPGom-aU3FiVaU4T-bFFQjg,4537
625
- maxframe/tensor/core.py,sha256=OALjbEP5zrgXkXkQReDC0qkhejm8_WdvlBmyxGzd20s,18588
708
+ maxframe/tensor/core.py,sha256=1bkbrftzjQurhlO-ko1R0TD6QdXtkyMRfs2DvzAuglQ,18632
626
709
  maxframe/tensor/operators.py,sha256=rYnU_DqTdgtdj-jYDipz_ABbYseZJSDm7e0z2vlFXyo,2340
627
- maxframe/tensor/utils.py,sha256=UjPLNVjIVBkg0vVJ_tthbi_gCdZwe1Unqb_zzDwe6es,23629
628
- maxframe/tensor/arithmetic/__init__.py,sha256=SUtXw1x228EEOFsLmxxe--0cM_ITRiHrc_9KrZ9aekk,9707
710
+ maxframe/tensor/utils.py,sha256=TiyazQKIFrZfzLz35GErKOo8GTzoJbapSwAEebEvSSs,23639
711
+ maxframe/tensor/arithmetic/__init__.py,sha256=Rn4FUOOxeK9u-DzRr0Okqo0-WXZIfE8sJUd5tu4fqiU,10036
629
712
  maxframe/tensor/arithmetic/abs.py,sha256=o9cEGybgFZbKo9Y4J5afZLodPbFuBIUpnnZiuCo737M,2200
630
713
  maxframe/tensor/arithmetic/absolute.py,sha256=FHPhvWBQ-E-3c_ydz3h8Yb2t6Hzeq5hy7IxtNEBJ6N4,2230
631
714
  maxframe/tensor/arithmetic/add.py,sha256=CUvQt_oe2DU8ZnIOTmmEO-K7BqC0cWrZq4BmwKlgBk8,3677
@@ -673,6 +756,7 @@ maxframe/tensor/arithmetic/imag.py,sha256=cuKoZZ4Ws2kaSyLBRx0SsHqXLUxH5QkRq4QAOC
673
756
  maxframe/tensor/arithmetic/invert.py,sha256=6xMsAXFHeHB2V296SYz7uratEwNyGkBCGo4qRg6Q77Q,3531
674
757
  maxframe/tensor/arithmetic/isclose.py,sha256=wGDJBex7thAvlKzrE86uQsOrANKXlYbQrZ_eDiJnNjk,3763
675
758
  maxframe/tensor/arithmetic/iscomplex.py,sha256=P05i_nj-JB4r44ZTsTHLY68Y1M0NzasrLv32hT5guZc,1720
759
+ maxframe/tensor/arithmetic/iscomplexobj.py,sha256=wcpd_kYk5q2K7UMgztAoxi2TAXjHkd2hjjqGJjW-q1A,1533
676
760
  maxframe/tensor/arithmetic/isfinite.py,sha256=98J1uKbMx60H16hHhTJh7cMHvc09xG3TWtn1JYB2jic,3663
677
761
  maxframe/tensor/arithmetic/isinf.py,sha256=pJ_7X2S1XWeaFlkGH-8NMAX1MevbiysPQHiwBnfVWJo,3517
678
762
  maxframe/tensor/arithmetic/isnan.py,sha256=pVQZP0Fm3WAE3P4zNKOu6hh9YJG8w20fWNUCwYG71GM,2723
@@ -725,7 +809,7 @@ maxframe/tensor/arithmetic/truediv.py,sha256=3ei369dOJaFulpXhBPUczmdOQCCqnbeczgQ
725
809
  maxframe/tensor/arithmetic/trunc.py,sha256=zCEIrvwbnm7lbnNKgg60kGrRy-CKchPakT4LmplC3_A,2327
726
810
  maxframe/tensor/arithmetic/utils.py,sha256=KR9kDOJuD-dmKbiXb6XNNvFVsLOz369HJWK14AeQfh8,3278
727
811
  maxframe/tensor/arithmetic/tests/__init__.py,sha256=4LpNXO11JAdLjSut3p036oEEXlDEB-6AURW9oci5W5Y,609
728
- maxframe/tensor/arithmetic/tests/test_arithmetic.py,sha256=Gps279mhaP0ogT0a3hvzQdKfd3i_ULkP-eUBa8rBAP8,13011
812
+ maxframe/tensor/arithmetic/tests/test_arithmetic.py,sha256=9T4kx_yvzVWUY4nRFzVPRjcF-bT8sYPPig8wbLYXm0U,13150
729
813
  maxframe/tensor/datasource/__init__.py,sha256=RMFXElSi2UvOK7HM3qKOegNEyaNW5DQXISJuR9Au38U,1523
730
814
  maxframe/tensor/datasource/arange.py,sha256=BlocdN5GsTozwnBQWsbmJi63I0BsVUswQcSaLk7kxrw,5584
731
815
  maxframe/tensor/datasource/array.py,sha256=6I9Qy_2G0bRyKIFFmZEerzoa4IgBHZL4LA7vmU7EdyI,12786
@@ -747,18 +831,39 @@ maxframe/tensor/datasource/scalar.py,sha256=Gj-A_jb6RDkDHAl1Xyqn_5elV36fJGPxep4O
747
831
  maxframe/tensor/datasource/tri_array.py,sha256=mSBXAA7bHhBaHnmsMIItHFE0NHGjCOUTeqIoR3Ooohw,3025
748
832
  maxframe/tensor/datasource/zeros.py,sha256=F5EMplGU5feKJ7DpQrz8enp-X7yyj62DvpSTGk50l-I,5989
749
833
  maxframe/tensor/datasource/tests/__init__.py,sha256=4LpNXO11JAdLjSut3p036oEEXlDEB-6AURW9oci5W5Y,609
750
- maxframe/tensor/datasource/tests/test_datasource.py,sha256=WsxX11IhdX31Z_ZvYtzbEJyN9-lwOJHvJkUaajhOSrc,8969
751
- maxframe/tensor/extensions/__init__.py,sha256=ehmkYVIj5VuQxj-zgDPz_8vIDyEl0a4zW8-nw2mNrJE,1027
834
+ maxframe/tensor/datasource/tests/test_datasource.py,sha256=7FV8hC8zJW-sUX_5xvrPVz3TU0hB8Y7opU-gGGT7J9I,9026
835
+ maxframe/tensor/extensions/__init__.py,sha256=TbffS-d0ts99ZqBTwYLPWLEJb2Qg_RgiggNpo8zcHUo,1123
752
836
  maxframe/tensor/extensions/accessor.py,sha256=YRw4xx30AgH9MpeM1LngSUV8aQPNHq0x0o5pikiyGmY,843
753
- maxframe/tensor/extensions/apply_chunk.py,sha256=3e3nu53-ApH7sZB7tjb8CKrtDc-SZ-hJS-oZtZ-N7CQ,4557
837
+ maxframe/tensor/extensions/apply_chunk.py,sha256=tr1n-5k8TP0JfK_kJ5ytdDrJJ7Xs0j89ryRbctm_q0s,4600
838
+ maxframe/tensor/extensions/rebalance.py,sha256=lxe5iTMPX_xLq5U8aXqndrxGkkETvJCf8uMpUx4IYcs,2280
754
839
  maxframe/tensor/fetch/__init__.py,sha256=eWgriJX2psoMcsc3UawOkOyZq_N9GrDPHfaHlpKf300,662
755
840
  maxframe/tensor/fetch/core.py,sha256=E1-PciVwugKHJxOfii9jw907n2ybxCMBwYSQhgBirQU,1872
841
+ maxframe/tensor/fft/__init__.py,sha256=p-y-e8n7UaS-IsvOsLDkAdkxpjA2iLYzl33UsMBrdX4,1334
842
+ maxframe/tensor/fft/core.py,sha256=0-7syzn3_nodGLAItr6kaMQ0BG7OF8JtPxLrs5X0lLU,4658
843
+ maxframe/tensor/fft/fft.py,sha256=V16HgbugpzKFYvb5wXfHSMdsxZhEao5uqUPylnSOd4s,4277
844
+ maxframe/tensor/fft/fft2.py,sha256=8c8pZUJ2wyhYCyIDfRX5gmakRlnrQmV_FXuJtYGM8ec,4848
845
+ maxframe/tensor/fft/fftfreq.py,sha256=NuaB8j7lUfCRnDI8_IQlS6dqW8Mt0QoJ3LbDidLzH7w,2714
846
+ maxframe/tensor/fft/fftn.py,sha256=LWIx8tCRL_TVj7H8gF8G-tA8oy-VO4pvrk1IkkW2obg,4934
847
+ maxframe/tensor/fft/fftshift.py,sha256=pibWtvDXZ5TjKN4CJudQ0lQFYTF7K-qgU5zdaNROvWY,2468
848
+ maxframe/tensor/fft/hfft.py,sha256=euvwCn0lY8thmo3YpQrpvtSrJT-LflMQJ9zc-TbUHJM,4089
849
+ maxframe/tensor/fft/ifft.py,sha256=Z0Ip4jb_BOY0q9CH9IdDnh_eyWRV6Q1-gUVRo5WQmss,4252
850
+ maxframe/tensor/fft/ifft2.py,sha256=NfT7jf6G85_oRCvfa_3YvM0v8FrKFjt1BMU2ZS_dJAE,4807
851
+ maxframe/tensor/fft/ifftn.py,sha256=qJHRiJUGdejMJ6BqipecvEMr-50_IF0LHsiE_aw9F8E,5053
852
+ maxframe/tensor/fft/ifftshift.py,sha256=z7DuUIsc5-GdluJGsbf-T7QNzPQYF5ljdGBN8D7tWn0,2188
853
+ maxframe/tensor/fft/ihfft.py,sha256=rVjFbrhH1VsZyfdPbtxEOxMG2yJjVbGp6E1k-48aCIo,3341
854
+ maxframe/tensor/fft/irfft.py,sha256=e3f0x0yx4w-b7bgBUfPQ35VLuX4Q5uwY3dlT1i1xZD8,4694
855
+ maxframe/tensor/fft/irfft2.py,sha256=6YcIO1Sqz-16ItDfJsb2oRuA39Ht3qmB2h_LXqxYWMM,1954
856
+ maxframe/tensor/fft/irfftn.py,sha256=Slins7T8dGdV-DgFSJODsA0XMW2a3AEAIPmoF8gKi_4,4561
857
+ maxframe/tensor/fft/rfft.py,sha256=xkwwbJWuWCfQDjpmzokJOP5tDC_uxYqlWDyUDhp-r9U,4476
858
+ maxframe/tensor/fft/rfft2.py,sha256=Kb4RJyoe-XYhrPmDLZ3newap5NB1m3HL6ywewe7HB-M,1996
859
+ maxframe/tensor/fft/rfftfreq.py,sha256=SsAgnN6-LprL_YOULSf_cVOFqM6Om9Fnb_3kx4atOQQ,3040
860
+ maxframe/tensor/fft/rfftn.py,sha256=dRv1Wgv6ZAltSjce5BMaTZK41tXiYmF1S1eas-rqFF4,4406
756
861
  maxframe/tensor/indexing/__init__.py,sha256=RpPNpVJJxTmZFKt6q0rabqN1qzdvrV1MXzzwQsk0ipg,1612
757
862
  maxframe/tensor/indexing/choose.py,sha256=6yyo0bNk-BxYjtyAHSYQ8B2vljxPEKGhorf1jiXfmdc,7842
758
863
  maxframe/tensor/indexing/compress.py,sha256=d5-zQhRYlnddA5Gt38al6zwfN3Nwj_u-vs4QxdjFnbU,4105
759
864
  maxframe/tensor/indexing/core.py,sha256=VIiNK72XC_8SDXUiJO-iVNuXa3V7pqFNJ3BhCsVdiG8,7212
760
865
  maxframe/tensor/indexing/extract.py,sha256=HZnG59C9n1AaSvA4vRZ5Oo020YB3JT2o8lTzDVYsZAA,2091
761
- maxframe/tensor/indexing/fill_diagonal.py,sha256=ZGwqyOFwfxyoRMXMDBypRQL-7xbAF1I1kTz4POxEUlU,5582
866
+ maxframe/tensor/indexing/fill_diagonal.py,sha256=grcwiF7b4e7LdEFWvct7-q99XmQ6b13jUb_woYZGZgY,5438
762
867
  maxframe/tensor/indexing/flatnonzero.py,sha256=8AYZcyiWuRWb2_mcIeqrT6XCXa4wS3SMdB0pAJA82vg,1650
763
868
  maxframe/tensor/indexing/getitem.py,sha256=vZJNuqip9_eXVsYkcTiZkYuIsO1O-Futy4ONyYJPe4o,4912
764
869
  maxframe/tensor/indexing/nonzero.py,sha256=aYG4_4dLaygjjLzmHif8yiTWQcjmtv3HEwkGMQ4gNTo,3611
@@ -770,17 +875,25 @@ maxframe/tensor/indexing/tests/__init__.py,sha256=4LpNXO11JAdLjSut3p036oEEXlDEB-
770
875
  maxframe/tensor/indexing/tests/test_indexing.py,sha256=ziQxTRyAmotSb2kTYBymNjqzAoLSq72vb7_TT8x2ALg,6838
771
876
  maxframe/tensor/lib/__init__.py,sha256=ihyVtman53JRKIstoaPm91_BrGtyvcoG6ey7n2G1dYU,674
772
877
  maxframe/tensor/lib/index_tricks.py,sha256=mXWiQscGOAGiymJeLdTJqtOemwV_8qSLUpm150CZ6wA,14546
773
- maxframe/tensor/linalg/__init__.py,sha256=SDx22ivVN7RLEzw5ApeCHjjgiTvSM28Nn51IJc63wCo,1210
878
+ maxframe/tensor/linalg/__init__.py,sha256=8JdSQNjjQd4qiw2fu7Umr_Z3mrL3MtzYW48-uRl0jv4,1464
879
+ maxframe/tensor/linalg/_einsumfunc.py,sha256=kfdgjyXxHaTfiwimZdQxJ_Rj6CBJjzaS3wXSrPFk13o,36412
880
+ maxframe/tensor/linalg/cholesky.py,sha256=6G-1RN8_7uQTp11ny_F3dJ6a1F0AqUWDeoSssx0Lsyc,3667
774
881
  maxframe/tensor/linalg/dot.py,sha256=ZHDo5RYaButlQvZbeVpoQ_vmYBdk1ldCdG_KM7Qjsvg,4794
882
+ maxframe/tensor/linalg/einsum.py,sha256=taHZbturMahNIwbsHpbZwHJJbKruIU2ZtohIOAb_K2o,14672
775
883
  maxframe/tensor/linalg/inner.py,sha256=DeJqBFdtRPWfCMF8Dkt_Hywll3VhBvXACsUzMNEgHDw,1175
776
884
  maxframe/tensor/linalg/inv.py,sha256=NTh2TQu3zC4Gm4jFM_Ue_cE01a6ErDlFQFo0Vf2NaPg,2546
885
+ maxframe/tensor/linalg/lstsq.py,sha256=m1k4BQcBml-DTnIKA_SyJ8FPtMm1gaFqViA7D_DdUHI,3775
777
886
  maxframe/tensor/linalg/lu.py,sha256=_UWFRg9ykDSuY81Seg38TBnmnG6F2JhqZhDCFVjRcwY,3319
778
887
  maxframe/tensor/linalg/matmul.py,sha256=PDActLN76e-S1uVmF3ZerGc3hmuqS98mdAMjxujtUOk,7338
888
+ maxframe/tensor/linalg/matrix_norm.py,sha256=r4PTrCdEu_Ql__teTX-XrGh81Tj9qFOziv1mf2DLQ5s,2397
889
+ maxframe/tensor/linalg/norm.py,sha256=kmYSsG21vbBuKsxWtoSTXeX7GVwzzHMw1d7ZTJ0_I2Y,8943
779
890
  maxframe/tensor/linalg/qr.py,sha256=LigVOCCxiPTPUO-K8uWgKbJZT5Ms-Z9-MF-jvApW5vs,3863
780
- maxframe/tensor/linalg/solve_triangular.py,sha256=Qu5SjIQ_2A5c9bDCUeDeq7lq5NYomewgy2-2IlORZF8,3476
891
+ maxframe/tensor/linalg/solve.py,sha256=tp2iUvdimEaIm5yJljWJHP5CE8RSWAXvvUtEO8DACXE,2168
892
+ maxframe/tensor/linalg/solve_triangular.py,sha256=6dqfpcqGkXW1XAdHefY8y_q4bWFKi6SiD6aKM6QwfXk,3504
781
893
  maxframe/tensor/linalg/svd.py,sha256=I67uQ4MmpItQEJcu_jdUgqsDA7BzhqU_TlaJ2gYlOFI,6311
782
894
  maxframe/tensor/linalg/tensordot.py,sha256=QONtrHHvpcWaN2G6jiikbQ5ogPX6vEBYUKI_oyUIYA4,7306
783
895
  maxframe/tensor/linalg/vdot.py,sha256=d3P3cNulnX0nypBRGJadxEsoBKErNFbxxB9lct7JNNk,2322
896
+ maxframe/tensor/linalg/vector_norm.py,sha256=cjvWQQc1_oIRtWcWyuzraGyAP1zp6gdM6dtscdwTWxY,3737
784
897
  maxframe/tensor/merge/__init__.py,sha256=kx52MUmweJJ8j1K8gv8LbNUTCUzWVqm4_PJG7fN4l0c,827
785
898
  maxframe/tensor/merge/append.py,sha256=j3E4k5--govpbLQqv_r75N7vl0NUOuRUhkxb8RLbuOg,2540
786
899
  maxframe/tensor/merge/column_stack.py,sha256=LmiwpYa9kzzeWuG0JRsWfJfRU_R8SrbAKapQzYAopJk,1799
@@ -791,27 +904,48 @@ maxframe/tensor/merge/stack.py,sha256=6TqVEIpgQrkt32LGq-eLX2kDREyrJuzLAzuWaKYC_s
791
904
  maxframe/tensor/merge/vstack.py,sha256=OWetsKXO3DpznVsBvEe-HcwSD5ZTh8BZTWBWiaCqW14,2342
792
905
  maxframe/tensor/merge/tests/__init__.py,sha256=4LpNXO11JAdLjSut3p036oEEXlDEB-6AURW9oci5W5Y,609
793
906
  maxframe/tensor/merge/tests/test_merge.py,sha256=QAtldu9m4McIZSf8EO0eOfg3ytHI0lIgDx7N-TlTNds,2243
794
- maxframe/tensor/misc/__init__.py,sha256=5GSJ5vM8xn1-hR1P75m9KpGWothW0olNa5nEosjFJuo,1730
907
+ maxframe/tensor/misc/__init__.py,sha256=XR91dUAwRuoGyltS6I6iFjKoQXRj0AI5yojOSiFNSbQ,2521
908
+ maxframe/tensor/misc/argwhere.py,sha256=AMISQ-n1aWcZlTqeUr9v5VtYsnypgeSZFnD_1HU20LI,1977
909
+ maxframe/tensor/misc/array_split.py,sha256=4mDGQVdqjN2D-qDCb4ke_rb9UgFTVRNQTxnMnbbHaoY,1635
795
910
  maxframe/tensor/misc/astype.py,sha256=mmtHbVZs5hokgJNPuxFnPMpXhx56tdQJq37EcIIfeO4,4580
796
911
  maxframe/tensor/misc/atleast_1d.py,sha256=cEGHYACn577OC9hlfzR988EBDxPt3DF1Z_H8TgRows4,1944
797
912
  maxframe/tensor/misc/atleast_2d.py,sha256=e3z_ADGUTHUAvK6DEiZiSEZCVaASbmKTRtQNoYJQ5r4,2028
798
913
  maxframe/tensor/misc/atleast_3d.py,sha256=nQQr-ARc1AJ3T0PtWtgeZfdjOPJVYUQn4qxxF-pK-48,2477
914
+ maxframe/tensor/misc/broadcast_arrays.py,sha256=JbZaEiPyIi8izpHTN8fwIJVBtV-lD_6OfGAnOUOobSI,1716
799
915
  maxframe/tensor/misc/broadcast_to.py,sha256=Yi0-LHKbyPK9r6G7wsNXg-FIFAbH1q3qhLPfM5-zUj0,2781
800
916
  maxframe/tensor/misc/copy.py,sha256=sOmS5Rz7KN4DjP_TbXeYSZbiIx--QsTkP60wgL-g7VI,1844
917
+ maxframe/tensor/misc/copyto.py,sha256=JoVoTvjH-rpOGpuIlYarJTRKipj5XAizSFSs4gcU6pA,4511
918
+ maxframe/tensor/misc/delete.py,sha256=edXnJ9lSRpSvG6YJ2ywtPakIVuKLPAzytUo8K8N2U3k,3677
801
919
  maxframe/tensor/misc/diff.py,sha256=K-HKzzEJ3uSsgXZolVe67KsIY1YOKChu6geEBYUzeo8,3718
920
+ maxframe/tensor/misc/dsplit.py,sha256=xLjmjDxJ2Fo5NoIVqX_4F0C1mrkWyIC3ux0XDnnvfc4,2189
921
+ maxframe/tensor/misc/ediff1d.py,sha256=n4v114NhSThiJn9gCnP-tnkdJBiZil4ZEj0MTfH576o,2170
922
+ maxframe/tensor/misc/expand_dims.py,sha256=snikXbxW2AFpT7CxHHV_O8i9hTRndp9FeG07ZL1Gotg,2387
802
923
  maxframe/tensor/misc/flatten.py,sha256=QXGZX3EGB7n8Qt8uMe207SR0TYlPFUE2Q-zKVlwBFSU,2002
924
+ maxframe/tensor/misc/flip.py,sha256=-dA5CfQmG05znooUpdFo1C26_-09J1iM1YnlGd_Oc4U,2366
925
+ maxframe/tensor/misc/fliplr.py,sha256=aTJe_jMgtoqGQc2pUJ9eaIvEALqRq-cf5JfUhzYXvvY,1809
926
+ maxframe/tensor/misc/flipud.py,sha256=b8rVoLxUpsriXWaS3g8y3wGVfMBttmva1F67JTKxmv8,1867
927
+ maxframe/tensor/misc/hsplit.py,sha256=LZSNV5-Rd4Rf-2I4HH-S6smeioOW-qGi9AyYAw6mj4k,2609
803
928
  maxframe/tensor/misc/in1d.py,sha256=AYsuxmMsz3Bx941QjUOfixTeAzj4NCI2wXfhYtkjvEE,3341
929
+ maxframe/tensor/misc/insert.py,sha256=6J-x4ZLD-j4p_qCbhKKXPVPmo79ZdxinInRlyU3YVAA,5075
804
930
  maxframe/tensor/misc/isin.py,sha256=BA4AJxNzMi0oXx90lqbT6w0BE6itevsd9q6MLbZ5Dck,4606
931
+ maxframe/tensor/misc/moveaxis.py,sha256=HMrC83K0CyoeKbvZ1_GSD_a1trbGv_cX33qlXL4TxD8,2509
805
932
  maxframe/tensor/misc/ndim.py,sha256=SLuiOuHIJtu8nHACOpyTVwAagNMNwzttl_Z5oDhD1dI,1442
806
933
  maxframe/tensor/misc/ravel.py,sha256=3Y9FqmXBn_a-gUxy2LlDoiNF0axVYKny0CKldrGAR84,3217
807
934
  maxframe/tensor/misc/repeat.py,sha256=jTa4GhvqlKmOqUdXQyX3YyiNld4D20Lde-YmuaUfaFo,4048
935
+ maxframe/tensor/misc/result_type.py,sha256=9ZH9GI9oRtgntvwveTsK3zrZ3UZC4LIqBof3te-2tH8,3131
936
+ maxframe/tensor/misc/roll.py,sha256=Ypdy4xGhoQbutpu3I5RKX35JcNl7m_7SEudvfQAW_9E,3510
937
+ maxframe/tensor/misc/rollaxis.py,sha256=572YlpL-lPLFiTkEGtfZLqiS8hDU8qwHzU1AUnxqgJM,2302
808
938
  maxframe/tensor/misc/searchsorted.py,sha256=Iy9nJ-VSH_kkzAy5PecwOJdLBrDi3ssaiAe3lDh1TV8,4891
809
939
  maxframe/tensor/misc/setdiff1d.py,sha256=rGLvSWB6aTaYsrgaFsXAW3zrKcWammCSDiadxMzwR54,1811
940
+ maxframe/tensor/misc/shape.py,sha256=XVgUf7kQNTCI705cgM4F6e8gfi_t0_d5WNNLhSgy3sg,2477
941
+ maxframe/tensor/misc/split.py,sha256=fIiT9JOlI91sFAp0PXgzJBHM1us7lPsr3UsOov-cCig,7044
810
942
  maxframe/tensor/misc/squeeze.py,sha256=JwrSZo-7JO5Z7kdad2IHBaNiEuvuzRDhkGiuR8lu5ss,3687
811
943
  maxframe/tensor/misc/swapaxes.py,sha256=E0itYJYiJGWH6SpZM0VmZLkobKARUOcTCG8G_ExsLDk,3228
944
+ maxframe/tensor/misc/tile.py,sha256=s-C_PcLq9MlcjzwdywQ67ZOnVQihYVErod3_OJ7O84s,3272
812
945
  maxframe/tensor/misc/transpose.py,sha256=gIIKCqlQErZ-M6EfDFL62oW8Fd3_RoCg5OffWJjxK6k,4287
813
946
  maxframe/tensor/misc/trapezoid.py,sha256=Uh_Ia5h83f8oqlmvy2YH2Hp1tLB8-lxf3LVYTc7VM_U,3911
814
947
  maxframe/tensor/misc/unique.py,sha256=X8kSXqiozzr0cDLEZIs6ehl3XHXKM__NbjqtYDX4ZzY,7009
948
+ maxframe/tensor/misc/vsplit.py,sha256=blwgPTilb9xXQB4-aNTNATzXzwDVpVFaM2897aJ2PTE,2419
815
949
  maxframe/tensor/misc/where.py,sha256=oWDAsnGKJWwBSxrTvdUR-YS6ZQ1eEzUFjlQQESH_dgU,4213
816
950
  maxframe/tensor/misc/tests/__init__.py,sha256=4LpNXO11JAdLjSut3p036oEEXlDEB-6AURW9oci5W5Y,609
817
951
  maxframe/tensor/misc/tests/test_misc.py,sha256=knuVLxfIb0EMmTs6-IZelOJS8Xxr84XcqmZJ7J09VNU,2909
@@ -871,7 +1005,7 @@ maxframe/tensor/reduction/allclose.py,sha256=G0olYHeOw4WC23U2VwPfcr58NBcatmXXdXp
871
1005
  maxframe/tensor/reduction/any.py,sha256=kDmO7-5GjiC_K3A9SchXG0iKDYaN35g4ZM7k-3YciSk,3628
872
1006
  maxframe/tensor/reduction/argmax.py,sha256=JHCv9PKr0HrGAfbqA-NltHNadVKncAVaWEy53bkWz-s,3095
873
1007
  maxframe/tensor/reduction/argmin.py,sha256=8Tg0s9MlSFYTp35JNzPZkEGUxgdhHxaVhv2OqHk1K1c,3085
874
- maxframe/tensor/reduction/array_equal.py,sha256=LP9_KZBJeRKhjY--WVmsSf9attn6wjkNZfZ1XXl5PCw,1811
1008
+ maxframe/tensor/reduction/array_equal.py,sha256=usNQD7_4d126HDjHVYiYXfnxGlV6m32PSM3b9qtJr3Q,1864
875
1009
  maxframe/tensor/reduction/core.py,sha256=uKruQJwNK-4rNoKkk_zBjj9v8bFI066EhQ9I0HGVSLA,5209
876
1010
  maxframe/tensor/reduction/count_nonzero.py,sha256=jkRFcOfxmX0SaDiba7kyNebMtsWZ6QFVQt6_gSm6uNY,2788
877
1011
  maxframe/tensor/reduction/cumprod.py,sha256=phKFFDe8I8kl6ktBFqI8X5XzopQYWyQK5Scy7GopW4A,3321
@@ -900,40 +1034,61 @@ maxframe/tensor/reshape/__init__.py,sha256=B0NaIfLj02AEIKITelPbnqPNNGMPYzAZQewlM
900
1034
  maxframe/tensor/reshape/reshape.py,sha256=uXp-FUK9LoxXosYUfLn-2Nl3wqf4UJNLADTDMYOVd0M,6749
901
1035
  maxframe/tensor/reshape/tests/__init__.py,sha256=4LpNXO11JAdLjSut3p036oEEXlDEB-6AURW9oci5W5Y,609
902
1036
  maxframe/tensor/reshape/tests/test_reshape.py,sha256=jRvg8ZoQI6fHvIXUdhvx2Dstcz2xqQyeTwyAt6ahXe0,1092
903
- maxframe/tensor/sort/__init__.py,sha256=fHwJlUxeOYtElszVTDYaGUSkJZCKXRX4PTRGxqnjCFI,665
1037
+ maxframe/tensor/sort/__init__.py,sha256=dwnF7nVTdYGTHifHWJtKOhwAvQb4wYK3l-NmZo415bE,739
1038
+ maxframe/tensor/sort/argpartition.py,sha256=SVVsEIBH7pq7KL8XvDtCggfvdP0wx3ozgVdR7r4HN6Q,3576
904
1039
  maxframe/tensor/sort/argsort.py,sha256=344P5nBdIoN7uRQvmXASQASwFAG7QMR-NRaluKLBlIs,5037
1040
+ maxframe/tensor/sort/partition.py,sha256=1HyI4Uv_YoRG_Q4rB_ARhWHmM6bEn8ZcooaSpFB3eS4,8151
905
1041
  maxframe/tensor/sort/sort.py,sha256=35NjPg08UDtYdysRIxGAucpwMZJ3U2udiKhxhi9z6Hk,11424
906
- maxframe/tensor/special/__init__.py,sha256=weIQjTnixuPwzMKCD2P7K-FTeOl5XtNNpVdryO7jkik,1066
907
- maxframe/tensor/special/core.py,sha256=k1py8k0hdmGdGUN4BSEg_J1jgzys6UzduIFSF7Fm5_I,1255
908
- maxframe/tensor/special/misc.py,sha256=40RyODqoP4sG6C7De7GAxOXDuBU8RfdwJKS7OpWnM-0,4631
1042
+ maxframe/tensor/spatial/__init__.py,sha256=8LNOgl85VU7CW6_fHGyBbHLHMKIBxthwj9NaU3i1YdI,635
1043
+ maxframe/tensor/spatial/distance/__init__.py,sha256=MqG3R0wOOcng8Ky2FbH3JVD8p0IcEo-i7d8gDdtNBg0,699
1044
+ maxframe/tensor/spatial/distance/cdist.py,sha256=e1dcBxfRcg7rXmviELpCUWJnoWvD-AqelokIlZvFgAc,14284
1045
+ maxframe/tensor/spatial/distance/pdist.py,sha256=vxqPzrcLfovS6mzzRQApYiht8nMaBQr1gRSxy4uYRcQ,13149
1046
+ maxframe/tensor/spatial/distance/squareform.py,sha256=5ClT-PyNHxrE4DK0HuVZiOwnnwXw2NLh4JKzyjh-LIQ,5546
1047
+ maxframe/tensor/special/__init__.py,sha256=MgEqW_VLZ3NWcJojvwbqpOnczq4tDyOVl9F7kfZEsNA,4049
1048
+ maxframe/tensor/special/airy.py,sha256=YCcsAT38dcTFnoTNpwm2Ny-SuECwtoWMEU0GPYBte-M,1700
1049
+ maxframe/tensor/special/bessel.py,sha256=7D-n4cIF92_13Z0T4IPLKw463lM1V9wRq7dbDM2CWSY,5023
1050
+ maxframe/tensor/special/core.py,sha256=6caxfRDLL_xBgdhYleOrde7r0GEFwsYvD82UbixhNgc,3206
1051
+ maxframe/tensor/special/ellip_func_integrals.py,sha256=e_v843TO8fenMbnFpWJEvZAOAM6GkLGcHJQOw8NBxt8,4290
1052
+ maxframe/tensor/special/ellip_harm.py,sha256=FqgEUuJfFNAMGWbmfXLUkT6oWcMF-6rvnoo7nLY9PRQ,1779
1053
+ maxframe/tensor/special/err_fresnel.py,sha256=dHdIBKzRzHD6msAbSqVjotshbifM3TGROO0_jUSdV8w,6277
1054
+ maxframe/tensor/special/gamma_funcs.py,sha256=Fvhk5BMtl5StWLCgMeo7-Pgp2dPdPZ9F3Sql1GScYcE,8394
1055
+ maxframe/tensor/special/hypergeometric_funcs.py,sha256=TJsXmVG7et5zghGZhiYo19IUK9ObC6SSfG3uOoGl9WY,2068
1056
+ maxframe/tensor/special/info_theory.py,sha256=UZxtKTwQxSexzYDI3gVLGVWTcDXsEcusVSTfrujBstY,5200
1057
+ maxframe/tensor/special/misc.py,sha256=nzdtjPtqjWLrgYSFBsICgozVfyqNaKkmFOvveoccmxo,5215
909
1058
  maxframe/tensor/special/statistical.py,sha256=h_t4oUKVMMqaHWPkV8yHxtzgsP1gR8UBaWza0LKDol4,1727
910
- maxframe/tensor/statistics/__init__.py,sha256=0ZT2cgBIEwVS_csigp7JYQbGBGLHX_GOV3WAJp1Mn5U,741
1059
+ maxframe/tensor/statistics/__init__.py,sha256=JZXnmU8QRc4ML_o0jzXPXcut5-o2iK6ceGe-uw2Azik,932
911
1060
  maxframe/tensor/statistics/average.py,sha256=9_7TmnYIjbVnwob2H1ire2GP_xsQmwuo9-mwEEw2d_c,5199
912
1061
  maxframe/tensor/statistics/bincount.py,sha256=ntXpw95S9_b0IUWPbmRogpwyq6Yn7P3tsh3PxIoAYDw,4844
1062
+ maxframe/tensor/statistics/corrcoef.py,sha256=qlBd_oZCyowOuGsGBX3zq_8MAp0prxLQv7HFeRDgH64,2835
1063
+ maxframe/tensor/statistics/cov.py,sha256=hD-MkYxZnQ8fjppsE1O09fbhO3FsWH3lJOyhnvfuSm0,7832
1064
+ maxframe/tensor/statistics/digitize.py,sha256=H2G-GL1HHusVCN4-a1cF7sivXIruwuDSb-GBHgY5Cyw,4453
1065
+ maxframe/tensor/statistics/histogram.py,sha256=m3hTommaAS6p8fFfbQaUox4U-y6-gqtUYoNrCnmwLGA,20013
1066
+ maxframe/tensor/statistics/median.py,sha256=RL0gpQ8JvgYmhwjwjbFuxhFDvHv8gZuIU0gvOAewp5c,3188
913
1067
  maxframe/tensor/statistics/percentile.py,sha256=RcEbf_uUIxkOnCADRNq9LFgicvyCJtOX1zjm-xRhv_M,6222
1068
+ maxframe/tensor/statistics/ptp.py,sha256=riAjpeTeXovwes1c-ZUHjdg25Zh4Fpf-7KGKANAXZkM,2865
914
1069
  maxframe/tensor/statistics/quantile.py,sha256=rJ2ciAoi7XoIGCJXH6v1dNTflWczFtAom-NXjBZYVsA,9837
915
1070
  maxframe/tensor/ufunc/__init__.py,sha256=dqEJnXd0eZMRRdRksr-z31CCu2t7Cs5rBJDawdG70_U,773
916
1071
  maxframe/tensor/ufunc/ufunc.py,sha256=OHHRgqfNr5oHXwbC1QJTZtBJwjLc-FxfrX6Gb7TLCps,7335
917
1072
  maxframe/tests/__init__.py,sha256=4LpNXO11JAdLjSut3p036oEEXlDEB-6AURW9oci5W5Y,609
918
1073
  maxframe/tests/test_protocol.py,sha256=tEClIngXq1fSXcAN56hTDSPuK5Y-Tez8G7KTxYVoEBg,6299
919
- maxframe/tests/test_utils.py,sha256=LvHJphFSMj5oq64DOcWP9HjSOLOWHKPDxCI3KNDxq2Y,19112
920
- maxframe/tests/utils.py,sha256=EEdNLezV_GgSxNGGc18nz3hEMDDSinJI_istcmiLFeA,7250
1074
+ maxframe/tests/test_utils.py,sha256=svxThTRGvrh8rD7g2QR5ND71djnAr-ES99-7vH2Z1U8,20960
1075
+ maxframe/tests/utils.py,sha256=-tlVdXaHd2LPzEoDurWRuQnBl-s5qpPo4KpNOGI7pfU,7168
921
1076
  maxframe_client/__init__.py,sha256=lMXPcrevOU4QUF8NIK1K-piVGPllfmuQ11TQivyuuYo,705
922
1077
  maxframe_client/conftest.py,sha256=gw1eaUzIa4sSlYmeV8yGqCz-R-8sLt46iQ5yzxkbJ2Q,658
923
- maxframe_client/fetcher.py,sha256=giZOhWCs3pMZQzVYL5HHeP46d87Pa_fzQ-ZG00Xswtc,12626
1078
+ maxframe_client/fetcher.py,sha256=dTYJ_HWuPd8Qiz46QTiyV98c1xGlEodX2_q5mvtp3RE,13768
924
1079
  maxframe_client/clients/__init__.py,sha256=4LpNXO11JAdLjSut3p036oEEXlDEB-6AURW9oci5W5Y,609
925
1080
  maxframe_client/clients/framedriver.py,sha256=ZOgp3XC8cX78Tv1GmMj_ZiCV55hvSkCDgI3A5oHbmig,5112
926
1081
  maxframe_client/session/__init__.py,sha256=d6y_gZ3JEWmVi55pwnHjVcU4JmdynVxZcu9QY7B0dAE,854
927
1082
  maxframe_client/session/consts.py,sha256=GvAxFLM_LUUgCpKkykCsWmKt00mbb6mAELfVTXob4w0,1430
928
1083
  maxframe_client/session/graph.py,sha256=4Nuyt5Ui9t4AWVG9VGq_TFgDQCnyZ2gOVGGuwUaEn1Q,4501
929
- maxframe_client/session/odps.py,sha256=zahZoVzrMX7BIUOQWFcuLbpZcR90cRwkyKLNUQLu1Qs,31292
1084
+ maxframe_client/session/odps.py,sha256=p3ZEKEuU7kl5zy2Y7nlZ31RuckryRv4cTvPHh8lrzHo,31467
930
1085
  maxframe_client/session/task.py,sha256=jm1_6V3IQAMv09Vz6o0xVaJWU0uqPynEIpOfuSrOXlA,12422
931
1086
  maxframe_client/session/tests/__init__.py,sha256=4LpNXO11JAdLjSut3p036oEEXlDEB-6AURW9oci5W5Y,609
932
1087
  maxframe_client/session/tests/test_task.py,sha256=qtKtseHpc13xQCe4SsDaM7UToVOTkPIAb0yMw12Js8M,4817
933
1088
  maxframe_client/tests/__init__.py,sha256=4LpNXO11JAdLjSut3p036oEEXlDEB-6AURW9oci5W5Y,609
934
- maxframe_client/tests/test_fetcher.py,sha256=-KG_OshShJEa66Hg_RKuT745AxadH2LMWasHo5hhIow,4265
935
- maxframe_client/tests/test_session.py,sha256=BsWX-sGtSI9AaL1wzVpqp-fMPXmDd0QUCv_gWVkUeRI,12845
936
- maxframe-2.0.0b2.dist-info/METADATA,sha256=R1oXLcl0x3waoCIRRG03qwuMNeZ2_WiFwHLg_gDLe7M,3292
937
- maxframe-2.0.0b2.dist-info/WHEEL,sha256=2M046GvC9RLU1f1TWyM-2sB7cRKLhAC7ucAFK8l8f24,99
938
- maxframe-2.0.0b2.dist-info/top_level.txt,sha256=64x-fc2q59c_vXwNUkehyjF1vb8JWqFSdYmUqIFqoTM,31
939
- maxframe-2.0.0b2.dist-info/RECORD,,
1089
+ maxframe_client/tests/test_fetcher.py,sha256=rVIQo93VXjHUXcYW5bKN8ZVxmESi_sPAFnZSv7DPe3A,6887
1090
+ maxframe_client/tests/test_session.py,sha256=Xni3xBSsPKLGVjyyxGW6vbRfcUIMwgoNHHrKVnAHEfA,12966
1091
+ maxframe-2.2.0.dist-info/METADATA,sha256=pkNv7ROuTeJtbkjyMp8is5yi0aPjckEhlu1SUbGVOO0,3350
1092
+ maxframe-2.2.0.dist-info/WHEEL,sha256=2M046GvC9RLU1f1TWyM-2sB7cRKLhAC7ucAFK8l8f24,99
1093
+ maxframe-2.2.0.dist-info/top_level.txt,sha256=64x-fc2q59c_vXwNUkehyjF1vb8JWqFSdYmUqIFqoTM,31
1094
+ maxframe-2.2.0.dist-info/RECORD,,