maxframe 2.0.0b2__cp39-cp39-macosx_10_9_universal2.whl → 2.3.0rc1__cp39-cp39-macosx_10_9_universal2.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.

Potentially problematic release.


This version of maxframe might be problematic. Click here for more details.

Files changed (443) hide show
  1. maxframe/__init__.py +1 -0
  2. maxframe/_utils.cpython-39-darwin.so +0 -0
  3. maxframe/_utils.pyx +14 -1
  4. maxframe/codegen/core.py +9 -8
  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 +38 -1
  15. maxframe/codegen/spe/dataframe/misc.py +11 -33
  16. maxframe/codegen/spe/dataframe/reduction.py +32 -9
  17. maxframe/codegen/spe/dataframe/reshape.py +46 -0
  18. maxframe/codegen/spe/dataframe/sort.py +39 -18
  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_reduction.py +13 -0
  28. maxframe/codegen/spe/dataframe/tests/test_reshape.py +79 -0
  29. maxframe/codegen/spe/dataframe/tests/test_sort.py +20 -0
  30. maxframe/codegen/spe/dataframe/tseries.py +9 -0
  31. maxframe/codegen/spe/learn/contrib/lightgbm.py +4 -3
  32. maxframe/codegen/spe/learn/contrib/tests/test_xgboost.py +2 -1
  33. maxframe/codegen/spe/learn/metrics/__init__.py +1 -1
  34. maxframe/codegen/spe/learn/metrics/_ranking.py +76 -0
  35. maxframe/codegen/spe/learn/metrics/pairwise.py +51 -0
  36. maxframe/codegen/spe/learn/metrics/tests/test_pairwise.py +36 -0
  37. maxframe/codegen/spe/learn/metrics/tests/test_ranking.py +59 -0
  38. maxframe/codegen/spe/tensor/__init__.py +3 -0
  39. maxframe/codegen/spe/tensor/datasource.py +1 -0
  40. maxframe/codegen/spe/tensor/fft.py +74 -0
  41. maxframe/codegen/spe/tensor/linalg.py +29 -2
  42. maxframe/codegen/spe/tensor/misc.py +79 -25
  43. maxframe/codegen/spe/tensor/spatial.py +45 -0
  44. maxframe/codegen/spe/tensor/statistics.py +44 -0
  45. maxframe/codegen/spe/tensor/tests/test_fft.py +64 -0
  46. maxframe/codegen/spe/tensor/tests/test_linalg.py +15 -1
  47. maxframe/codegen/spe/tensor/tests/test_misc.py +52 -2
  48. maxframe/codegen/spe/tensor/tests/test_spatial.py +33 -0
  49. maxframe/codegen/spe/tensor/tests/test_statistics.py +15 -1
  50. maxframe/codegen/spe/tests/test_spe_codegen.py +6 -12
  51. maxframe/codegen/spe/utils.py +2 -0
  52. maxframe/config/config.py +73 -9
  53. maxframe/config/tests/test_validators.py +13 -1
  54. maxframe/config/validators.py +49 -0
  55. maxframe/conftest.py +54 -17
  56. maxframe/core/accessor.py +2 -2
  57. maxframe/core/base.py +2 -1
  58. maxframe/core/entity/core.py +5 -0
  59. maxframe/core/entity/tileables.py +3 -1
  60. maxframe/core/graph/core.cpython-39-darwin.so +0 -0
  61. maxframe/core/graph/entity.py +8 -3
  62. maxframe/core/mode.py +6 -1
  63. maxframe/core/operator/base.py +9 -2
  64. maxframe/core/operator/core.py +10 -2
  65. maxframe/core/operator/utils.py +13 -0
  66. maxframe/dataframe/__init__.py +12 -5
  67. maxframe/dataframe/accessors/__init__.py +1 -1
  68. maxframe/dataframe/accessors/compat.py +45 -0
  69. maxframe/dataframe/accessors/datetime_/__init__.py +4 -1
  70. maxframe/dataframe/accessors/dict_/contains.py +7 -16
  71. maxframe/dataframe/accessors/dict_/core.py +48 -0
  72. maxframe/dataframe/accessors/dict_/getitem.py +17 -21
  73. maxframe/dataframe/accessors/dict_/length.py +7 -16
  74. maxframe/dataframe/accessors/dict_/remove.py +6 -18
  75. maxframe/dataframe/accessors/dict_/setitem.py +8 -18
  76. maxframe/dataframe/accessors/dict_/tests/test_dict_accessor.py +62 -22
  77. maxframe/dataframe/accessors/list_/__init__.py +2 -2
  78. maxframe/dataframe/accessors/list_/core.py +48 -0
  79. maxframe/dataframe/accessors/list_/getitem.py +12 -19
  80. maxframe/dataframe/accessors/list_/length.py +7 -16
  81. maxframe/dataframe/accessors/list_/tests/test_list_accessor.py +11 -9
  82. maxframe/dataframe/accessors/string_/__init__.py +4 -1
  83. maxframe/dataframe/accessors/struct_/__init__.py +37 -0
  84. maxframe/dataframe/accessors/struct_/accessor.py +39 -0
  85. maxframe/dataframe/accessors/struct_/core.py +43 -0
  86. maxframe/dataframe/accessors/struct_/dtypes.py +53 -0
  87. maxframe/dataframe/accessors/struct_/field.py +123 -0
  88. maxframe/dataframe/accessors/struct_/tests/__init__.py +13 -0
  89. maxframe/dataframe/accessors/struct_/tests/test_struct_accessor.py +91 -0
  90. maxframe/dataframe/arithmetic/__init__.py +18 -4
  91. maxframe/dataframe/arithmetic/between.py +106 -0
  92. maxframe/dataframe/arithmetic/dot.py +237 -0
  93. maxframe/dataframe/arithmetic/maximum.py +33 -0
  94. maxframe/dataframe/arithmetic/minimum.py +33 -0
  95. maxframe/dataframe/arithmetic/{around.py → round.py} +11 -7
  96. maxframe/dataframe/core.py +161 -224
  97. maxframe/dataframe/datasource/__init__.py +18 -0
  98. maxframe/dataframe/datasource/core.py +6 -0
  99. maxframe/dataframe/datasource/direct.py +57 -0
  100. maxframe/dataframe/datasource/from_dict.py +124 -0
  101. maxframe/dataframe/datasource/from_index.py +1 -1
  102. maxframe/dataframe/datasource/from_records.py +77 -0
  103. maxframe/dataframe/datasource/from_tensor.py +109 -41
  104. maxframe/dataframe/datasource/read_csv.py +21 -14
  105. maxframe/dataframe/datasource/read_odps_query.py +29 -6
  106. maxframe/dataframe/datasource/read_odps_table.py +32 -10
  107. maxframe/dataframe/datasource/read_parquet.py +38 -39
  108. maxframe/dataframe/datasource/tests/test_datasource.py +37 -0
  109. maxframe/dataframe/datastore/__init__.py +11 -1
  110. maxframe/dataframe/datastore/direct.py +268 -0
  111. maxframe/dataframe/datastore/to_csv.py +29 -41
  112. maxframe/dataframe/datastore/to_odps.py +36 -4
  113. maxframe/dataframe/extensions/__init__.py +20 -4
  114. maxframe/dataframe/extensions/apply_chunk.py +32 -6
  115. maxframe/dataframe/extensions/cartesian_chunk.py +153 -0
  116. maxframe/dataframe/extensions/collect_kv.py +126 -0
  117. maxframe/dataframe/extensions/extract_kv.py +177 -0
  118. maxframe/dataframe/extensions/flatjson.py +2 -1
  119. maxframe/dataframe/extensions/map_reduce.py +263 -0
  120. maxframe/dataframe/extensions/rebalance.py +62 -0
  121. maxframe/dataframe/extensions/tests/test_apply_chunk.py +9 -2
  122. maxframe/dataframe/extensions/tests/test_extensions.py +54 -0
  123. maxframe/dataframe/extensions/tests/test_map_reduce.py +135 -0
  124. maxframe/dataframe/groupby/__init__.py +17 -2
  125. maxframe/dataframe/groupby/aggregation.py +86 -49
  126. maxframe/dataframe/groupby/apply.py +1 -1
  127. maxframe/dataframe/groupby/apply_chunk.py +19 -5
  128. maxframe/dataframe/groupby/core.py +116 -16
  129. maxframe/dataframe/groupby/cum.py +4 -25
  130. maxframe/dataframe/groupby/expanding.py +264 -0
  131. maxframe/dataframe/groupby/fill.py +1 -1
  132. maxframe/dataframe/groupby/getitem.py +12 -5
  133. maxframe/dataframe/groupby/head.py +11 -1
  134. maxframe/dataframe/groupby/rank.py +136 -0
  135. maxframe/dataframe/groupby/rolling.py +206 -0
  136. maxframe/dataframe/groupby/shift.py +114 -0
  137. maxframe/dataframe/groupby/tests/test_groupby.py +0 -5
  138. maxframe/dataframe/indexing/__init__.py +22 -2
  139. maxframe/dataframe/indexing/droplevel.py +195 -0
  140. maxframe/dataframe/indexing/filter.py +169 -0
  141. maxframe/dataframe/indexing/get_level_values.py +76 -0
  142. maxframe/dataframe/indexing/iat.py +45 -0
  143. maxframe/dataframe/indexing/iloc.py +152 -12
  144. maxframe/dataframe/indexing/insert.py +46 -18
  145. maxframe/dataframe/indexing/loc.py +287 -7
  146. maxframe/dataframe/indexing/reindex.py +14 -5
  147. maxframe/dataframe/indexing/rename.py +6 -0
  148. maxframe/dataframe/indexing/rename_axis.py +2 -2
  149. maxframe/dataframe/indexing/reorder_levels.py +143 -0
  150. maxframe/dataframe/indexing/reset_index.py +33 -6
  151. maxframe/dataframe/indexing/sample.py +8 -0
  152. maxframe/dataframe/indexing/setitem.py +3 -3
  153. maxframe/dataframe/indexing/swaplevel.py +185 -0
  154. maxframe/dataframe/indexing/take.py +99 -0
  155. maxframe/dataframe/indexing/truncate.py +140 -0
  156. maxframe/dataframe/indexing/where.py +0 -11
  157. maxframe/dataframe/indexing/xs.py +148 -0
  158. maxframe/dataframe/merge/__init__.py +15 -1
  159. maxframe/dataframe/merge/append.py +97 -98
  160. maxframe/dataframe/merge/combine.py +244 -0
  161. maxframe/dataframe/merge/combine_first.py +120 -0
  162. maxframe/dataframe/merge/compare.py +387 -0
  163. maxframe/dataframe/merge/concat.py +183 -0
  164. maxframe/dataframe/merge/update.py +271 -0
  165. maxframe/dataframe/misc/__init__.py +28 -11
  166. maxframe/dataframe/misc/_duplicate.py +10 -4
  167. maxframe/dataframe/misc/apply.py +1 -1
  168. maxframe/dataframe/misc/check_unique.py +82 -0
  169. maxframe/dataframe/misc/clip.py +145 -0
  170. maxframe/dataframe/misc/describe.py +175 -9
  171. maxframe/dataframe/misc/drop.py +31 -0
  172. maxframe/dataframe/misc/drop_duplicates.py +2 -2
  173. maxframe/dataframe/misc/duplicated.py +2 -2
  174. maxframe/dataframe/misc/get_dummies.py +5 -1
  175. maxframe/dataframe/misc/infer_dtypes.py +251 -0
  176. maxframe/dataframe/misc/isin.py +2 -2
  177. maxframe/dataframe/misc/map.py +125 -18
  178. maxframe/dataframe/misc/repeat.py +159 -0
  179. maxframe/dataframe/misc/tests/test_misc.py +48 -3
  180. maxframe/dataframe/misc/to_numeric.py +3 -0
  181. maxframe/dataframe/misc/transform.py +12 -5
  182. maxframe/dataframe/misc/transpose.py +13 -1
  183. maxframe/dataframe/misc/valid_index.py +115 -0
  184. maxframe/dataframe/misc/value_counts.py +38 -4
  185. maxframe/dataframe/missing/checkna.py +14 -6
  186. maxframe/dataframe/missing/dropna.py +5 -0
  187. maxframe/dataframe/missing/fillna.py +1 -1
  188. maxframe/dataframe/missing/replace.py +7 -4
  189. maxframe/dataframe/reduction/__init__.py +35 -16
  190. maxframe/dataframe/reduction/aggregation.py +43 -14
  191. maxframe/dataframe/reduction/all.py +2 -2
  192. maxframe/dataframe/reduction/any.py +2 -2
  193. maxframe/dataframe/reduction/argmax.py +103 -0
  194. maxframe/dataframe/reduction/argmin.py +103 -0
  195. maxframe/dataframe/reduction/core.py +80 -24
  196. maxframe/dataframe/reduction/count.py +13 -9
  197. maxframe/dataframe/reduction/cov.py +166 -0
  198. maxframe/dataframe/reduction/cummax.py +2 -2
  199. maxframe/dataframe/reduction/cummin.py +2 -2
  200. maxframe/dataframe/reduction/cumprod.py +2 -2
  201. maxframe/dataframe/reduction/cumsum.py +2 -2
  202. maxframe/dataframe/reduction/custom_reduction.py +2 -2
  203. maxframe/dataframe/reduction/idxmax.py +185 -0
  204. maxframe/dataframe/reduction/idxmin.py +185 -0
  205. maxframe/dataframe/reduction/kurtosis.py +37 -30
  206. maxframe/dataframe/reduction/max.py +2 -2
  207. maxframe/dataframe/reduction/mean.py +9 -7
  208. maxframe/dataframe/reduction/median.py +2 -2
  209. maxframe/dataframe/reduction/min.py +2 -2
  210. maxframe/dataframe/reduction/mode.py +144 -0
  211. maxframe/dataframe/reduction/nunique.py +19 -11
  212. maxframe/dataframe/reduction/prod.py +18 -13
  213. maxframe/dataframe/reduction/reduction_size.py +2 -2
  214. maxframe/dataframe/reduction/sem.py +13 -9
  215. maxframe/dataframe/reduction/skew.py +31 -27
  216. maxframe/dataframe/reduction/str_concat.py +10 -7
  217. maxframe/dataframe/reduction/sum.py +18 -14
  218. maxframe/dataframe/reduction/tests/test_reduction.py +12 -0
  219. maxframe/dataframe/reduction/unique.py +20 -3
  220. maxframe/dataframe/reduction/var.py +16 -12
  221. maxframe/dataframe/reshape/__init__.py +38 -0
  222. maxframe/dataframe/{misc → reshape}/pivot.py +1 -0
  223. maxframe/dataframe/{misc → reshape}/pivot_table.py +1 -0
  224. maxframe/dataframe/reshape/unstack.py +114 -0
  225. maxframe/dataframe/sort/__init__.py +16 -1
  226. maxframe/dataframe/sort/argsort.py +68 -0
  227. maxframe/dataframe/sort/core.py +2 -1
  228. maxframe/dataframe/sort/nlargest.py +238 -0
  229. maxframe/dataframe/sort/nsmallest.py +228 -0
  230. maxframe/dataframe/sort/rank.py +147 -0
  231. maxframe/dataframe/statistics/__init__.py +3 -3
  232. maxframe/dataframe/statistics/corr.py +1 -0
  233. maxframe/dataframe/statistics/quantile.py +2 -2
  234. maxframe/dataframe/tests/test_typing.py +104 -0
  235. maxframe/dataframe/tests/test_utils.py +66 -2
  236. maxframe/dataframe/tseries/__init__.py +19 -0
  237. maxframe/dataframe/tseries/at_time.py +61 -0
  238. maxframe/dataframe/tseries/between_time.py +122 -0
  239. maxframe/dataframe/typing_.py +185 -0
  240. maxframe/dataframe/utils.py +125 -52
  241. maxframe/dataframe/window/aggregation.py +8 -4
  242. maxframe/dataframe/window/core.py +14 -1
  243. maxframe/dataframe/window/ewm.py +1 -3
  244. maxframe/dataframe/window/expanding.py +37 -35
  245. maxframe/dataframe/window/rolling.py +49 -39
  246. maxframe/dataframe/window/tests/test_expanding.py +1 -7
  247. maxframe/dataframe/window/tests/test_rolling.py +1 -1
  248. maxframe/env.py +7 -4
  249. maxframe/errors.py +2 -2
  250. maxframe/io/odpsio/schema.py +9 -3
  251. maxframe/io/odpsio/tableio.py +7 -2
  252. maxframe/io/odpsio/tests/test_schema.py +198 -83
  253. maxframe/learn/__init__.py +10 -2
  254. maxframe/learn/cluster/__init__.py +15 -0
  255. maxframe/learn/cluster/_kmeans.py +782 -0
  256. maxframe/learn/contrib/llm/core.py +18 -7
  257. maxframe/learn/contrib/llm/deploy/__init__.py +13 -0
  258. maxframe/learn/contrib/llm/deploy/config.py +221 -0
  259. maxframe/learn/contrib/llm/deploy/core.py +247 -0
  260. maxframe/learn/contrib/llm/deploy/framework.py +35 -0
  261. maxframe/learn/contrib/llm/deploy/loader.py +360 -0
  262. maxframe/learn/contrib/llm/deploy/tests/__init__.py +13 -0
  263. maxframe/learn/contrib/llm/deploy/tests/test_register_models.py +359 -0
  264. maxframe/learn/contrib/llm/models/__init__.py +1 -0
  265. maxframe/learn/contrib/llm/models/dashscope.py +12 -6
  266. maxframe/learn/contrib/llm/models/managed.py +76 -11
  267. maxframe/learn/contrib/llm/models/openai.py +72 -0
  268. maxframe/learn/contrib/llm/tests/__init__.py +13 -0
  269. maxframe/learn/contrib/llm/tests/test_core.py +34 -0
  270. maxframe/learn/contrib/llm/tests/test_openai.py +187 -0
  271. maxframe/learn/contrib/llm/tests/test_text_gen.py +155 -0
  272. maxframe/learn/contrib/llm/text.py +348 -42
  273. maxframe/learn/contrib/models.py +4 -1
  274. maxframe/learn/contrib/xgboost/classifier.py +2 -0
  275. maxframe/learn/contrib/xgboost/core.py +113 -4
  276. maxframe/learn/contrib/xgboost/predict.py +4 -2
  277. maxframe/learn/contrib/xgboost/regressor.py +5 -0
  278. maxframe/learn/contrib/xgboost/train.py +7 -2
  279. maxframe/learn/core.py +66 -0
  280. maxframe/learn/linear_model/_base.py +58 -1
  281. maxframe/learn/linear_model/_lin_reg.py +1 -1
  282. maxframe/learn/metrics/__init__.py +6 -0
  283. maxframe/learn/metrics/_classification.py +145 -0
  284. maxframe/learn/metrics/_ranking.py +477 -0
  285. maxframe/learn/metrics/_scorer.py +60 -0
  286. maxframe/learn/metrics/pairwise/__init__.py +21 -0
  287. maxframe/learn/metrics/pairwise/core.py +77 -0
  288. maxframe/learn/metrics/pairwise/cosine.py +115 -0
  289. maxframe/learn/metrics/pairwise/euclidean.py +176 -0
  290. maxframe/learn/metrics/pairwise/haversine.py +96 -0
  291. maxframe/learn/metrics/pairwise/manhattan.py +80 -0
  292. maxframe/learn/metrics/pairwise/pairwise.py +127 -0
  293. maxframe/learn/metrics/pairwise/pairwise_distances_topk.py +121 -0
  294. maxframe/learn/metrics/pairwise/rbf_kernel.py +51 -0
  295. maxframe/learn/metrics/tests/__init__.py +13 -0
  296. maxframe/learn/metrics/tests/test_scorer.py +26 -0
  297. maxframe/learn/preprocessing/_data/min_max_scaler.py +34 -23
  298. maxframe/learn/preprocessing/_data/standard_scaler.py +34 -25
  299. maxframe/learn/utils/__init__.py +2 -1
  300. maxframe/learn/utils/checks.py +1 -2
  301. maxframe/learn/utils/core.py +59 -0
  302. maxframe/learn/utils/extmath.py +79 -9
  303. maxframe/learn/utils/odpsio.py +262 -0
  304. maxframe/learn/utils/validation.py +2 -2
  305. maxframe/lib/compat.py +40 -0
  306. maxframe/lib/dtypes_extension/__init__.py +16 -1
  307. maxframe/lib/dtypes_extension/_fake_arrow_dtype.py +604 -0
  308. maxframe/lib/dtypes_extension/blob.py +304 -0
  309. maxframe/lib/dtypes_extension/dtypes.py +40 -0
  310. maxframe/lib/dtypes_extension/tests/test_blob.py +88 -0
  311. maxframe/lib/dtypes_extension/tests/test_dtypes.py +16 -1
  312. maxframe/lib/dtypes_extension/tests/test_fake_arrow_dtype.py +75 -0
  313. maxframe/lib/filesystem/_oss_lib/common.py +124 -50
  314. maxframe/lib/filesystem/_oss_lib/glob.py +1 -1
  315. maxframe/lib/filesystem/_oss_lib/handle.py +21 -25
  316. maxframe/lib/filesystem/base.py +1 -1
  317. maxframe/lib/filesystem/core.py +1 -1
  318. maxframe/lib/filesystem/oss.py +115 -46
  319. maxframe/lib/filesystem/tests/test_oss.py +74 -36
  320. maxframe/lib/mmh3.cpython-39-darwin.so +0 -0
  321. maxframe/lib/wrapped_pickle.py +10 -0
  322. maxframe/opcodes.py +41 -15
  323. maxframe/protocol.py +12 -0
  324. maxframe/remote/core.py +4 -0
  325. maxframe/serialization/__init__.py +11 -2
  326. maxframe/serialization/arrow.py +38 -13
  327. maxframe/serialization/blob.py +32 -0
  328. maxframe/serialization/core.cpython-39-darwin.so +0 -0
  329. maxframe/serialization/core.pyx +39 -1
  330. maxframe/serialization/exception.py +2 -4
  331. maxframe/serialization/numpy.py +11 -0
  332. maxframe/serialization/pandas.py +46 -9
  333. maxframe/serialization/serializables/core.py +2 -2
  334. maxframe/serialization/tests/test_serial.py +31 -4
  335. maxframe/tensor/__init__.py +38 -8
  336. maxframe/tensor/arithmetic/__init__.py +19 -10
  337. maxframe/tensor/arithmetic/core.py +2 -2
  338. maxframe/tensor/arithmetic/iscomplexobj.py +53 -0
  339. maxframe/tensor/arithmetic/tests/test_arithmetic.py +6 -9
  340. maxframe/tensor/core.py +6 -2
  341. maxframe/tensor/datasource/tests/test_datasource.py +2 -1
  342. maxframe/tensor/extensions/__init__.py +2 -0
  343. maxframe/tensor/extensions/apply_chunk.py +3 -3
  344. maxframe/tensor/extensions/rebalance.py +65 -0
  345. maxframe/tensor/fft/__init__.py +32 -0
  346. maxframe/tensor/fft/core.py +168 -0
  347. maxframe/tensor/fft/fft.py +112 -0
  348. maxframe/tensor/fft/fft2.py +118 -0
  349. maxframe/tensor/fft/fftfreq.py +80 -0
  350. maxframe/tensor/fft/fftn.py +123 -0
  351. maxframe/tensor/fft/fftshift.py +79 -0
  352. maxframe/tensor/fft/hfft.py +112 -0
  353. maxframe/tensor/fft/ifft.py +114 -0
  354. maxframe/tensor/fft/ifft2.py +115 -0
  355. maxframe/tensor/fft/ifftn.py +123 -0
  356. maxframe/tensor/fft/ifftshift.py +73 -0
  357. maxframe/tensor/fft/ihfft.py +93 -0
  358. maxframe/tensor/fft/irfft.py +118 -0
  359. maxframe/tensor/fft/irfft2.py +62 -0
  360. maxframe/tensor/fft/irfftn.py +114 -0
  361. maxframe/tensor/fft/rfft.py +116 -0
  362. maxframe/tensor/fft/rfft2.py +63 -0
  363. maxframe/tensor/fft/rfftfreq.py +87 -0
  364. maxframe/tensor/fft/rfftn.py +113 -0
  365. maxframe/tensor/indexing/fill_diagonal.py +1 -7
  366. maxframe/tensor/linalg/__init__.py +7 -0
  367. maxframe/tensor/linalg/_einsumfunc.py +1025 -0
  368. maxframe/tensor/linalg/cholesky.py +117 -0
  369. maxframe/tensor/linalg/einsum.py +339 -0
  370. maxframe/tensor/linalg/lstsq.py +100 -0
  371. maxframe/tensor/linalg/matrix_norm.py +75 -0
  372. maxframe/tensor/linalg/norm.py +249 -0
  373. maxframe/tensor/linalg/solve.py +72 -0
  374. maxframe/tensor/linalg/solve_triangular.py +2 -2
  375. maxframe/tensor/linalg/vector_norm.py +113 -0
  376. maxframe/tensor/misc/__init__.py +24 -1
  377. maxframe/tensor/misc/argwhere.py +72 -0
  378. maxframe/tensor/misc/array_split.py +46 -0
  379. maxframe/tensor/misc/broadcast_arrays.py +57 -0
  380. maxframe/tensor/misc/copyto.py +130 -0
  381. maxframe/tensor/misc/delete.py +104 -0
  382. maxframe/tensor/misc/dsplit.py +68 -0
  383. maxframe/tensor/misc/ediff1d.py +74 -0
  384. maxframe/tensor/misc/expand_dims.py +85 -0
  385. maxframe/tensor/misc/flip.py +90 -0
  386. maxframe/tensor/misc/fliplr.py +64 -0
  387. maxframe/tensor/misc/flipud.py +68 -0
  388. maxframe/tensor/misc/hsplit.py +85 -0
  389. maxframe/tensor/misc/insert.py +139 -0
  390. maxframe/tensor/misc/moveaxis.py +83 -0
  391. maxframe/tensor/misc/result_type.py +88 -0
  392. maxframe/tensor/misc/roll.py +124 -0
  393. maxframe/tensor/misc/rollaxis.py +77 -0
  394. maxframe/tensor/misc/shape.py +89 -0
  395. maxframe/tensor/misc/split.py +190 -0
  396. maxframe/tensor/misc/tile.py +109 -0
  397. maxframe/tensor/misc/vsplit.py +74 -0
  398. maxframe/tensor/reduction/array_equal.py +2 -1
  399. maxframe/tensor/sort/__init__.py +2 -0
  400. maxframe/tensor/sort/argpartition.py +98 -0
  401. maxframe/tensor/sort/partition.py +228 -0
  402. maxframe/tensor/spatial/__init__.py +15 -0
  403. maxframe/tensor/spatial/distance/__init__.py +17 -0
  404. maxframe/tensor/spatial/distance/cdist.py +421 -0
  405. maxframe/tensor/spatial/distance/pdist.py +398 -0
  406. maxframe/tensor/spatial/distance/squareform.py +153 -0
  407. maxframe/tensor/special/__init__.py +159 -21
  408. maxframe/tensor/special/airy.py +55 -0
  409. maxframe/tensor/special/bessel.py +199 -0
  410. maxframe/tensor/special/core.py +65 -4
  411. maxframe/tensor/special/ellip_func_integrals.py +155 -0
  412. maxframe/tensor/special/ellip_harm.py +55 -0
  413. maxframe/tensor/special/err_fresnel.py +223 -0
  414. maxframe/tensor/special/gamma_funcs.py +303 -0
  415. maxframe/tensor/special/hypergeometric_funcs.py +69 -0
  416. maxframe/tensor/special/info_theory.py +189 -0
  417. maxframe/tensor/special/misc.py +21 -0
  418. maxframe/tensor/statistics/__init__.py +6 -0
  419. maxframe/tensor/statistics/corrcoef.py +77 -0
  420. maxframe/tensor/statistics/cov.py +222 -0
  421. maxframe/tensor/statistics/digitize.py +126 -0
  422. maxframe/tensor/statistics/histogram.py +520 -0
  423. maxframe/tensor/statistics/median.py +85 -0
  424. maxframe/tensor/statistics/ptp.py +89 -0
  425. maxframe/tensor/utils.py +3 -3
  426. maxframe/tests/test_udf.py +61 -0
  427. maxframe/tests/test_utils.py +51 -6
  428. maxframe/tests/utils.py +0 -2
  429. maxframe/typing_.py +2 -0
  430. maxframe/udf.py +130 -9
  431. maxframe/utils.py +254 -27
  432. {maxframe-2.0.0b2.dist-info → maxframe-2.3.0rc1.dist-info}/METADATA +3 -3
  433. {maxframe-2.0.0b2.dist-info → maxframe-2.3.0rc1.dist-info}/RECORD +442 -264
  434. maxframe_client/fetcher.py +35 -4
  435. maxframe_client/session/odps.py +7 -2
  436. maxframe_client/session/task.py +8 -1
  437. maxframe_client/tests/test_fetcher.py +76 -3
  438. maxframe_client/tests/test_session.py +28 -1
  439. maxframe/dataframe/arrays.py +0 -864
  440. /maxframe/dataframe/{misc → reshape}/melt.py +0 -0
  441. /maxframe/dataframe/{misc → reshape}/stack.py +0 -0
  442. {maxframe-2.0.0b2.dist-info → maxframe-2.3.0rc1.dist-info}/WHEEL +0 -0
  443. {maxframe-2.0.0b2.dist-info → maxframe-2.3.0rc1.dist-info}/top_level.txt +0 -0
@@ -1,224 +1,271 @@
1
- maxframe-2.0.0b2.dist-info/RECORD,,
2
- maxframe-2.0.0b2.dist-info/WHEEL,sha256=Q9x5RaJ3mFaLYQ0AssqccH-ZQbedr2DD19gIJkZDXGM,112
3
- maxframe-2.0.0b2.dist-info/top_level.txt,sha256=64x-fc2q59c_vXwNUkehyjF1vb8JWqFSdYmUqIFqoTM,31
4
- maxframe-2.0.0b2.dist-info/METADATA,sha256=UcyH8dqs-fuyebvhkkEDEHczid0znqjQDYcDQi1Xewk,3205
1
+ maxframe-2.3.0rc1.dist-info/RECORD,,
2
+ maxframe-2.3.0rc1.dist-info/WHEEL,sha256=Q9x5RaJ3mFaLYQ0AssqccH-ZQbedr2DD19gIJkZDXGM,112
3
+ maxframe-2.3.0rc1.dist-info/top_level.txt,sha256=64x-fc2q59c_vXwNUkehyjF1vb8JWqFSdYmUqIFqoTM,31
4
+ maxframe-2.3.0rc1.dist-info/METADATA,sha256=j4aTfQoxvlZPW25mZL-M59v31tYrgS2nIIADjawyp7M,3264
5
5
  maxframe_client/conftest.py,sha256=JkQKlLZqd9uJekiO8HvMvEegidF-6KlCVFcg-KmQLLY,643
6
6
  maxframe_client/__init__.py,sha256=z4QT02esANpxtSVZPO_96693bqSvhG82e4suaD6Ll1E,689
7
- maxframe_client/fetcher.py,sha256=HPzpm2FM6KkY0HH2Rg-HVYCBdkudsxxGVWaT9jOhiUU,12246
7
+ maxframe_client/fetcher.py,sha256=kvvh59I3nu7jLSZnyEkrrY_uUnEHg9BivXMbdQJAFnE,13357
8
8
  maxframe_client/clients/__init__.py,sha256=YsJxv7HbG4YYJmqAJZPYb8iHFRQX5JGpGn2PInDXvY8,596
9
9
  maxframe_client/clients/framedriver.py,sha256=OFMN1EDsF34kAXbPAKukl9gAS8W24Zpk9OeAKXl7X6Y,4975
10
- maxframe_client/tests/test_session.py,sha256=KoggvuZGC8bJH6NgIMaxw3ya53pw_9ku0X6DoL5ep_0,12463
10
+ maxframe_client/tests/test_session.py,sha256=F1bVKfowLUpdKkm34t0r2gx1L6QkDbt8i81RXHmgH6U,13539
11
11
  maxframe_client/tests/__init__.py,sha256=YsJxv7HbG4YYJmqAJZPYb8iHFRQX5JGpGn2PInDXvY8,596
12
- maxframe_client/tests/test_fetcher.py,sha256=SJwtLrUvchJDi8vMJVbNgLYHoKxxWbAJ9bccUZt25l8,4158
13
- maxframe_client/session/task.py,sha256=vTGUw6vInv7xlcLtg6a4BdXgpVxiWmejBMGt9oGXkxQ,12100
12
+ maxframe_client/tests/test_fetcher.py,sha256=k8Dca6v26AxJ3FoPs1c1trU1eWl85Dvm0uj8VDRRjAo,6707
13
+ maxframe_client/session/task.py,sha256=gAhaNR81sQZhctP2zhhKmxg8xEWzq54rHFji4etJv6U,12317
14
14
  maxframe_client/session/graph.py,sha256=GUq6gNpi4m5PAdnERBE8zJRcYXLLoBueEEmmel4x5qE,4376
15
15
  maxframe_client/session/__init__.py,sha256=NgquxV2h6TAb_0xLh0mQip-2i-Glxy3fjWiWXfRTLRE,832
16
16
  maxframe_client/session/consts.py,sha256=E6PnPNyn2Bt9MHuGXATnb40m1AN0QfLG1Pl0KvsYFvk,1391
17
- maxframe_client/session/odps.py,sha256=uwK4txjrRTY7LXN5e8Buq_RVRraBSFJV8qrJ30jlPu0,30495
17
+ maxframe_client/session/odps.py,sha256=QBqZzEO9cCBfTQOY2sml_ufUrTFrbadBXmQ4jK6TBNc,30665
18
18
  maxframe_client/session/tests/test_task.py,sha256=Q5srH-w58vYS3NVeuY_59hLn2d-ANJh8nu2dbI7rRFA,4702
19
19
  maxframe_client/session/tests/__init__.py,sha256=YsJxv7HbG4YYJmqAJZPYb8iHFRQX5JGpGn2PInDXvY8,596
20
- maxframe/_utils.pyx,sha256=d427G0Uo9Ggx6-PCx5J2f3zdpqwnlCBDypfTaVoRoJE,17028
21
- maxframe/conftest.py,sha256=GzkbLDw7_tQX3pnqg9Ep58HEilM8HP4W8rLQwudJqnM,7176
22
- maxframe/opcodes.py,sha256=4btWUbGmmCS-Rz-Jvk-enlbQKQOoMiPArzDjG_m0izM,11139
23
- maxframe/env.py,sha256=ZvORA7u_4qjNTLONJuvkJVcAUguTRBSggDd3Ta7yTjA,1455
20
+ maxframe/_utils.pyx,sha256=ZN-XnGr2Pn8gdo8hu8_s-SQerSMjPwbi58rrQNAkc5s,17326
21
+ maxframe/conftest.py,sha256=oqtiM0dcnf8R7loRWp7OUlHJ4KtFHerOWDig5RDDG3c,8212
22
+ maxframe/opcodes.py,sha256=u_eooE-C79UxnHuCybqSnFE0bShRIRXudqaO9AbDQmg,11677
23
+ maxframe/env.py,sha256=mR1C6G4VX6Qm_gVLqq92BGgHpNDYuu_L-MwlNzqVPD0,1599
24
24
  maxframe/mixin.py,sha256=4raAFPQ59wGdHlgeEw0TZgDT4_ZECLmK23JtMYzAmUM,5645
25
- maxframe/protocol.py,sha256=ctqynoquwYvUPYCToe2dbREomS9YuGEkDEeKkTZD9PE,20386
25
+ maxframe/protocol.py,sha256=LyhZqwtlJi7k2Gn9fmIpqWiP4YBWLZuG9t15_Edk7HI,20891
26
26
  maxframe/session.py,sha256=6EE_lJebgJYbHRMrw4-1rdOFYsKH-m5dX8EkJQ4OqEA,34784
27
- maxframe/__init__.py,sha256=Gws_d9VblPR6Ld36_hSueVzs5mdN1ns4fMpgvbcEsxo,1004
27
+ maxframe/__init__.py,sha256=y8wQxypXuDpwgi2bRSKEYjkCyq4efN3C_7KpaFMJvKY,1056
28
28
  maxframe/_utils.pyi,sha256=-Rd4BZ7kF1695nNtjivOS3Zavpq99NYWO4tBMOL7Tac,916
29
- maxframe/utils.py,sha256=myu__DECLUXG5m4bulrv_qGUW0ccqqGRMTC-vC3GMXI,46878
29
+ maxframe/utils.py,sha256=SpW43FJ5g-U1Ua0L_z-Hugoe8AMA13d4jULRK6NC238,53981
30
30
  maxframe/extension.py,sha256=4u9K2lerFnwziWv2Aibm7S7nD_2nSPR4MKuegYpK8fM,2939
31
31
  maxframe/sperunner.py,sha256=H-cHHPt-SBbqonKRfInSseGdOCi67xbR6jUoD25ML00,5572
32
- maxframe/errors.py,sha256=aWFrndbs5Kf3CX9ZWG8n0cORrVpS6OA7UtUTJUwKs1M,1249
33
- maxframe/udf.py,sha256=11WDJwhvohtNs7XfGReE96wsChedCf4ARK4MtMYotjw,7515
34
- maxframe/_utils.cpython-39-darwin.so,sha256=tDMC050_SjWtB3XAO49Ha20dnfTY4c1ZIHiIvMZbe1U,846448
35
- maxframe/typing_.py,sha256=V-xuayMMepLmG2Kg0V3bi8qRosRd2FV9mJ-kAWdhOjQ,1180
32
+ maxframe/errors.py,sha256=NoC6esSSYdjb2XVlPXw5BWNkMIvIMI4OHEe5JWQT2uY,1208
33
+ maxframe/udf.py,sha256=ECPopur6Pc6tw_XNWgBtEgKKlk4zgNEZJ9TBcuWho8s,11843
34
+ maxframe/_utils.cpython-39-darwin.so,sha256=blWVGHbqWF77Uo6mY6XMF3kDCa0qs5hxA_HbFRyjtSs,846592
35
+ maxframe/typing_.py,sha256=_n0RSj7AawZedcihU_PPm6XghIA5sQSxQZIC2N87JPs,1263
36
36
  maxframe/_utils.pxd,sha256=ShrQD7uWMFVLT7j-zAMV6yWjQIlCbty_e7MHO6dzKv8,1154
37
- maxframe/dataframe/arrays.py,sha256=e-swkQgnUYymt8WONknNf-pMFAxwRhriYoh93m3G1k8,28752
38
- maxframe/dataframe/__init__.py,sha256=tFcEht0i3A_rAl_Y6Ybb0aCczI-kWBcJAwvwimmXtAw,2274
39
- maxframe/dataframe/core.py,sha256=VU4bTeTnQ-drCFTFJPdRWeumBVT171bqN9y3lMCkRgQ,75293
37
+ maxframe/dataframe/__init__.py,sha256=eJI37PtruQmTDeuPMMu0ZKaU-nQWcuGYLiQG8FFf6l8,2449
38
+ maxframe/dataframe/core.py,sha256=e67PptkH39AlhzdUtJenZG3CvqT80fFJ432umXSyxMA,72733
40
39
  maxframe/dataframe/initializer.py,sha256=lnsLYJHcWQ9Kkqh7MrLTuOL4iZBOpB798YLs4G5Qzik,10852
41
- maxframe/dataframe/utils.py,sha256=r6GFJAqiAeqvbf-Mkb2DDi0dQorBjO2FabteTcIZs3k,54282
40
+ maxframe/dataframe/utils.py,sha256=DLMsFCFTjlJaEQO34tgpQRXT1-TpKlT2lI9JiOr8fBw,56734
41
+ maxframe/dataframe/typing_.py,sha256=usBJmxsSjPtGcS2py2t5y9ZyG15coRi18dAcWDdKVdI,5776
42
42
  maxframe/dataframe/operators.py,sha256=OReFOB5F5H-AAYA-oE-_PPiVKK7QVVyOyj0VewqBmwM,6590
43
- maxframe/dataframe/statistics/corr.py,sha256=bJi8kL3q-tQDW2xXBVerV5WfESNmuUF790hUAbEpW7Q,9573
44
- maxframe/dataframe/statistics/quantile.py,sha256=ZizLXzuNOm1q8OB-a7-NCbX1nPkbZow4VBteg5TDScw,11610
45
- maxframe/dataframe/statistics/__init__.py,sha256=CYcsBvDyz-6anAaoKkjoM9gXUeiYVqPt9FioHchM9Tw,1084
43
+ maxframe/dataframe/statistics/corr.py,sha256=cXDdBa9sgoejm79mnLqE0cMPrKol2gRhHWohPhAYkhA,9614
44
+ maxframe/dataframe/statistics/quantile.py,sha256=A56aRl8n_T5IrALDEX5c8z-JWznzHPBk0IuTA2tniWk,11610
45
+ maxframe/dataframe/statistics/__init__.py,sha256=DJJci_F7XrgZDVbO1Ia8y-HEsehNUd5kucyH22Mq-uQ,1084
46
46
  maxframe/dataframe/statistics/tests/test_statistics.py,sha256=y6C1nYoHQKqdAoG-ZpxWytIj_o8CQDKbeHf_b-08nys,2806
47
47
  maxframe/dataframe/statistics/tests/__init__.py,sha256=YsJxv7HbG4YYJmqAJZPYb8iHFRQX5JGpGn2PInDXvY8,596
48
- maxframe/dataframe/misc/describe.py,sha256=xVos9wd8KTkWvRhcEbV3Svocy2olHr2J6cWXT93GaiM,4485
48
+ maxframe/dataframe/reshape/unstack.py,sha256=ab_e6Lr_xFL7AMtx_p2w9EwCYJpizjYxisP_Ma8-zwc,3837
49
+ maxframe/dataframe/reshape/__init__.py,sha256=0K4Q0VhoayJPzn4nBRGaA90twg5nlFZCXmCc_LiEeRk,1117
50
+ maxframe/dataframe/reshape/pivot_table.py,sha256=L-Oj0LhXMPOrtZHamYsMIbbEqxV49VoSIw3PZbEsP9k,10135
51
+ maxframe/dataframe/reshape/melt.py,sha256=shuliyrzoOFDXqgFD8eOcd40rXYdasFYlQcPcwvNjcQ,5470
52
+ maxframe/dataframe/reshape/stack.py,sha256=CKy_CW9mhYbXXFuciN1UcshKBVFEcwtPIrUCTv-gzSg,8049
53
+ maxframe/dataframe/reshape/pivot.py,sha256=fbqaftea864Rwpla9obV9JXDq6vfbiYj0o8qSo0t5E0,7798
54
+ maxframe/dataframe/misc/describe.py,sha256=5JWy33uSA0-zL7e1V9j9AqMMVvAeV9ipukSeWLEZOF4,10043
49
55
  maxframe/dataframe/misc/astype.py,sha256=QKo19cVwJkHbGieiSYoWDeRxajxz5RtUnqCTXlJBn7M,7873
50
- maxframe/dataframe/misc/to_numeric.py,sha256=p6pMks9pVnF_Y61XeaLuoK9wq2ayB07pZbJaJo2w4dM,6262
56
+ maxframe/dataframe/misc/to_numeric.py,sha256=GiTdFwNzzT1qV27EIMMAG9a0y3MesbPHUgtyMrjbwXs,6322
51
57
  maxframe/dataframe/misc/case_when.py,sha256=7eAYl4ruKnIR-N04zYiBPt44sLnHj3capN4A7RJu4fg,4983
52
58
  maxframe/dataframe/misc/check_monotonic.py,sha256=Vak5n_YBYQE3WBvKz0s0WqGlX8t79ehfsQVJdEEi4_I,2422
59
+ maxframe/dataframe/misc/check_unique.py,sha256=-1bbzI1s2iAt4fWd4NOCAepMGNlwjSsKMTjC0pOXzzM,1949
60
+ maxframe/dataframe/misc/valid_index.py,sha256=5O9LAvp92nDEkdxhcMpkxr-q4U8VVdMhkaj62tE9duk,2619
53
61
  maxframe/dataframe/misc/cut.py,sha256=O09PhsPHWPuMZq4Qvay0Jfpstk2yZETn2d6wt4xbyzY,14050
54
- maxframe/dataframe/misc/get_dummies.py,sha256=jYDNUcNK4UAP3NEw_Zj0StkJSA7RXzRClquQUm8Y568,7652
55
- maxframe/dataframe/misc/__init__.py,sha256=8lAnPE8x-Rczj7T4m2Or_hdCOhQwXd4ApIAxe1nb4S4,4854
62
+ maxframe/dataframe/misc/get_dummies.py,sha256=NZUpI6l7sOftwSPMdntEqg4Z9fYr4F6f5E0cmA5I2iU,7802
63
+ maxframe/dataframe/misc/__init__.py,sha256=gvv00GPOGlVb6I1s0WCP3dw-IGB8p-SqPH1qe5BwbFc,5883
56
64
  maxframe/dataframe/misc/qcut.py,sha256=LbItYs5OkMhEWMepTkVDLkt6tN683PybQbjmuHlM9n4,3737
57
65
  maxframe/dataframe/misc/pct_change.py,sha256=WgzbMOMLhc6iEvE6cT8_11lclLL5klkvokNjq7UKi94,2516
58
- maxframe/dataframe/misc/duplicated.py,sha256=DkqcNnlbYhWKt6PkAg2WqZJfiI_wz5imjPjpkdJuC0M,8534
59
- maxframe/dataframe/misc/pivot_table.py,sha256=RfUNNlyUFp2facbELxe8p_5nxmmSHGuteewpSY8osQ0,10070
60
- maxframe/dataframe/misc/map.py,sha256=ojt7qjbAConl0a2cGIxTyIZMVWFFeHd2Asgo40ubDik,8831
66
+ maxframe/dataframe/misc/duplicated.py,sha256=IY2hUFF9I3moBEb12RQJxq-UX2d_Pms56GIwZ1lxHnE,8532
67
+ maxframe/dataframe/misc/map.py,sha256=vHh1PVKv7H5QYodjnFq-wmQSDNVS_o0x9bS_uMzM5sw,12000
61
68
  maxframe/dataframe/misc/memory_usage.py,sha256=-5HJK6WVEQd9mtML7cY2MpGbZ_MOsLTwmqGzlOBsLj4,7889
62
- maxframe/dataframe/misc/isin.py,sha256=aAxcjr-VTLW93mS-Cvj_RvQUqkpzXl3QQsqp5PB1oBk,7011
69
+ maxframe/dataframe/misc/isin.py,sha256=yvy2OP2EyBVVWJ7ScFVOXVZ7Re_7ptHk8C87ytwok-A,7066
70
+ maxframe/dataframe/misc/repeat.py,sha256=vrbz5jfjYdE_1O6QHmC8Nv5qhKEvrkQzX_ZRWJLwDqE,4553
63
71
  maxframe/dataframe/misc/rechunk.py,sha256=Z4QC2C1_xwtrbG6Km0KWQ5_7kZ35_dKIWtS8ooN6uxE,1956
64
72
  maxframe/dataframe/misc/shift.py,sha256=pHfLjNJToO81UGM72t9jStKLfx7CXLeEPjzRRrqxe2A,9028
65
- maxframe/dataframe/misc/transpose.py,sha256=wtTLmdKccdszt1K_PmrtMdIm7ekH4XIV1Igo7rg_1hk,3636
66
- maxframe/dataframe/misc/melt.py,sha256=shuliyrzoOFDXqgFD8eOcd40rXYdasFYlQcPcwvNjcQ,5470
67
- maxframe/dataframe/misc/stack.py,sha256=CKy_CW9mhYbXXFuciN1UcshKBVFEcwtPIrUCTv-gzSg,8049
68
- maxframe/dataframe/misc/transform.py,sha256=ARxtNQgKBegQ8BslCH67JbhVeh5S5BRnuW-J-GSVe2w,10944
73
+ maxframe/dataframe/misc/transpose.py,sha256=AfGdFHjrotTNmqLhAbQ9rj1x6rYdq6tEmFOykcOAtyI,3987
74
+ maxframe/dataframe/misc/infer_dtypes.py,sha256=mhL3rowYuWDS4i8CyEGzgYvjTuRNuAAFdhFaQb8LyaE,8067
75
+ maxframe/dataframe/misc/transform.py,sha256=qD6IfjiXYKFgPkFi3BT99QBQGs46fSANQhnXrjzwJPU,11133
69
76
  maxframe/dataframe/misc/explode.py,sha256=zpEnxb3-g47MoMevKQ98ewv33rBxRMkTW6DyNdU7KZQ,5011
70
77
  maxframe/dataframe/misc/diff.py,sha256=xKG4cPOTvjEeu6zXsb5nGPIXvfya17Zi1sb_zz76EuI,5491
71
- maxframe/dataframe/misc/drop_duplicates.py,sha256=k2yY0n8XivukkLvTQ_AhG4cT_4ddoI1KZDrLCCzbkAU,8689
72
- maxframe/dataframe/misc/_duplicate.py,sha256=Rf0sp0aI0P_QDWslXnMBYyIGxvzGls54It9JHsHlXcM,1584
78
+ maxframe/dataframe/misc/drop_duplicates.py,sha256=7nufUF_y7BK0CblV_0QUiFmq4zCjvch6YipwK1nHNBY,8687
79
+ maxframe/dataframe/misc/_duplicate.py,sha256=P9ULkzWsbT_khbQS-97cH4sbcEJTpgdv8x2j7jB4SYY,1753
73
80
  maxframe/dataframe/misc/eval.py,sha256=-7MMIJvkyBvOLkiG4up5mRi1OzWiPIKl26a8Tl7qVtc,24313
74
- maxframe/dataframe/misc/value_counts.py,sha256=SheHbTPw2Hz0YVYtsqnjzWLO7fV2krmWDHWz1PVRIqs,5314
81
+ maxframe/dataframe/misc/value_counts.py,sha256=mXh-I2rLyxTVr5bLCd-RizqRAEHVf70zSWB63YSNSHA,6169
82
+ maxframe/dataframe/misc/clip.py,sha256=o4fzLXe9M10RhweVmsQ70NkExjs3cjtfTVPITWdyx4c,4643
75
83
  maxframe/dataframe/misc/select_dtypes.py,sha256=ktsfTu9cBf76XUGqYxBtCTZLnZTCyN7L6Iw8zRYvR5k,3144
76
- maxframe/dataframe/misc/pivot.py,sha256=xwqdvr4kmrurQ9pldUF3REVKuf38zRyWHj3NWeuw3dM,7744
77
- maxframe/dataframe/misc/drop.py,sha256=mSTGrgH9pjm8nd-7qt7T_O8xnoHXEes7s8i9fCNU-ZM,13050
78
- maxframe/dataframe/misc/apply.py,sha256=tw3Qeh2Cd4diEfRVxfSnqXzkVfyllkn_6trRnMhIa5c,24137
79
- maxframe/dataframe/misc/tests/test_misc.py,sha256=WtsngNeN-vOVYg_k2FBFFga_QmNL1UjZ8ZmhfSpbOhI,19849
84
+ maxframe/dataframe/misc/drop.py,sha256=RBweEPVDb3vxz3mLmpC6qNlQXCNKs3f3b-OatWfVFNg,13623
85
+ maxframe/dataframe/misc/apply.py,sha256=MxNqmTiZECeUYVz0Dp1p-g1DAqJlSK8Rkvt_NsMrwJU,24153
86
+ maxframe/dataframe/misc/tests/test_misc.py,sha256=T4mXKMB66uCMREYn4ZOLWAFINfwAivz-y1fNL4_nhck,21123
80
87
  maxframe/dataframe/misc/tests/__init__.py,sha256=YsJxv7HbG4YYJmqAJZPYb8iHFRQX5JGpGn2PInDXvY8,596
81
88
  maxframe/dataframe/datasource/index.py,sha256=09h_YKyTIhpy8aUb2dsRJJDciiIloLNFyTDGTg2ESgg,4401
82
- maxframe/dataframe/datasource/read_csv.py,sha256=Y7jMkVHzYu9BH7ipRaZIu8CfDngZzBb9JIyb_1iGuQ0,24392
83
- maxframe/dataframe/datasource/from_index.py,sha256=WeHlwR2C4RRuKYtkt9uJdD9dkdJlWfrQvMYLtGEqimE,1964
89
+ maxframe/dataframe/datasource/read_csv.py,sha256=lrPdSfv7rK_s9339-LZfwTBno-EoCbydl1XmVCNrmRo,24555
90
+ maxframe/dataframe/datasource/from_index.py,sha256=Ouwbr1tVjJiVr_xP5dydijE2gPaN_phWxDi8ed0PHHw,1959
84
91
  maxframe/dataframe/datasource/dataframe.py,sha256=-V8qjEhRwaFeOYeFzjf8h5A1gqpgH_-GbNCf4Au7VRM,2023
85
92
  maxframe/dataframe/datasource/series.py,sha256=Sou6J9hg3JJdSxuTcJjsD5EWPmvVB1J5I_ys24IkBe4,1909
86
- maxframe/dataframe/datasource/__init__.py,sha256=LaVpAg_oMJ2OofTlyjw-v9YLRQNfPQYHNVkWnCXPRCc,640
87
- maxframe/dataframe/datasource/read_odps_query.py,sha256=EG-H5EP0YZE_04jjYcz6OC_b0JMcScNZ5Zf-dhKo-Tw,17639
88
- maxframe/dataframe/datasource/core.py,sha256=UfV0vLzh96fnWkwPwK1PiwHZkSydf8DR2aBNrlSXU7c,2958
93
+ maxframe/dataframe/datasource/__init__.py,sha256=7dFeygB7sWCEpSyA5G4UGjlSqz6UQ-zzHQz0yuMHIrM,1165
94
+ maxframe/dataframe/datasource/read_odps_query.py,sha256=QTVBPVj3T_zmH4Kt_ehaxx8u4DMZ2hE9cCKZhJFW1oY,18430
95
+ maxframe/dataframe/datasource/core.py,sha256=C1yuFCsD3hQn3Vdp39uFjX4X75TkFS6nwn5RZw1_Bts,3144
89
96
  maxframe/dataframe/datasource/date_range.py,sha256=tYKZPn8eAU_gxpEDNgNX-SCQneYwXCOPuGk5b19HkLM,17527
90
- maxframe/dataframe/datasource/read_odps_table.py,sha256=l5Nq5VLsBFhwDp7YZtkWGTpupLDe5RiNm04ReYK-QC8,9989
91
- maxframe/dataframe/datasource/read_parquet.py,sha256=zxP2DXen443dP83wUItw_5Yi6X_wZn731-pAqycwmOw,14769
92
- maxframe/dataframe/datasource/from_tensor.py,sha256=NVgD9l9kTfW9VcVCLQw0Jr2tefWWVPLFy46rShisvbo,15159
93
- maxframe/dataframe/datasource/from_records.py,sha256=84pnH79qJOgD3tp-8aJxZN7tfNC-HPOWBGSpTp5OmkM,3699
94
- maxframe/dataframe/datasource/tests/test_datasource.py,sha256=gYev6k8NLokjn7_2iNJwFybJjW6BbPVjOzA-ig1EoxA,21452
97
+ maxframe/dataframe/datasource/read_odps_table.py,sha256=r2HWLtuV_7M0ExEYGRtuLJGCnEwO_UbPAmw1aFIQXq8,10717
98
+ maxframe/dataframe/datasource/from_dict.py,sha256=SOzAHfOLfxhTeqORSQWhmqFaNrHFzrtuKynDmh6-4IM,4238
99
+ maxframe/dataframe/datasource/read_parquet.py,sha256=He56eI5yWMJYZ0Q2QGycGyp08vQeQoQFGbD91V9YIKw,15016
100
+ maxframe/dataframe/datasource/direct.py,sha256=3g9UTdDR-aNMz6R1jLrnC_EMuIjgFxw4iXxiHh3C4g8,1815
101
+ maxframe/dataframe/datasource/from_tensor.py,sha256=lGDjzvVaLo3pCuQ1iP9W7rJx0BLt_uhDx-AMGJxmQx8,17938
102
+ maxframe/dataframe/datasource/from_records.py,sha256=pVHZyTtA76OZGLQ_tPp0oECx-AEmucEXbNbDtfyy5oE,6221
103
+ maxframe/dataframe/datasource/tests/test_datasource.py,sha256=HEanLHDx_vGDpj6qwOC3tDGljPRWEuTV6LiW4YLrD6I,22831
95
104
  maxframe/dataframe/datasource/tests/__init__.py,sha256=YsJxv7HbG4YYJmqAJZPYb8iHFRQX5JGpGn2PInDXvY8,596
105
+ maxframe/dataframe/sort/argsort.py,sha256=BGAfrezIxuTDr0wFu7P4PIveVH0rob8YwuwtYS2x6ag,2270
96
106
  maxframe/dataframe/sort/sort_index.py,sha256=gmv55CmKkAsWrA9bWf45JfX8IvMc0FuFloqb6D3cziI,5412
97
- maxframe/dataframe/sort/__init__.py,sha256=E76aFGW1nejyX-_YV4AXlbl3vj0gSANgif5kbrmMWL4,1160
107
+ maxframe/dataframe/sort/__init__.py,sha256=DCzqnPUH2MtEkJQEIaEnQ5eHK6PdFUbuB7cHRDAJtxc,1788
98
108
  maxframe/dataframe/sort/sort_values.py,sha256=GXoghiR8K750Wh6now-wSwYGpcPYsXgi0rA3C95dyzQ,8702
99
- maxframe/dataframe/sort/core.py,sha256=NRb7dUrDCn6YMwcAgf4BslVbig42nsaD8sAQdHlpI8s,1224
109
+ maxframe/dataframe/sort/core.py,sha256=q3H50DA8onVUX_TA2I_O9F8l-zPYOh_QaHaKic7Awho,1295
110
+ maxframe/dataframe/sort/nlargest.py,sha256=Ho1VuqEcxbndViwj0WzaPu3rGOGBIM-Y4z-Tg3jjs-w,7954
111
+ maxframe/dataframe/sort/nsmallest.py,sha256=7pUFgGWjA1etnsT2KnGZ81bIcQkQB6r98A93SvZtqvs,7561
112
+ maxframe/dataframe/sort/rank.py,sha256=3r0V5oKWw-RrOof-CgnA0ReG_-dwJPQXMf1PotoJBY8,5316
100
113
  maxframe/dataframe/sort/tests/__init__.py,sha256=YsJxv7HbG4YYJmqAJZPYb8iHFRQX5JGpGn2PInDXvY8,596
101
114
  maxframe/dataframe/sort/tests/test_sort.py,sha256=wgKIfOb9VY200i7I3suSru7ZNhA5zg_vQuKcprOQUD4,2604
115
+ maxframe/dataframe/merge/update.py,sha256=PbBSCknc5_JoE_DrfXBpe7UH7BP4NrYUfkow5taJpno,7875
116
+ maxframe/dataframe/merge/combine_first.py,sha256=9qYF9hEagAdjuVwy1eX1kTfDZHxOLUFri-cSES9lo9s,3689
102
117
  maxframe/dataframe/merge/merge.py,sha256=F7Gjfv4bDLiwgotRoVFYTWUp4mcden53DChuQwso4W4,29864
103
- maxframe/dataframe/merge/concat.py,sha256=_rqs7eCwunyOxVp2AFhnZNuJvO6AWq50BnPLERYRf98,11282
104
- maxframe/dataframe/merge/__init__.py,sha256=VVhOQiIOKqA4cNoAOzFK8pJvqWX76O6JF8Ym8CFqUsA,1096
105
- maxframe/dataframe/merge/append.py,sha256=_dRDcT6EvDUVnwP1QQv-85DWRu0u25HCt1jVntRlpro,4852
118
+ maxframe/dataframe/merge/combine.py,sha256=sBHgm84sqT25ZNfgfTMwe-TFRnHVpIU9Ihv4OYTOC6I,7796
119
+ maxframe/dataframe/merge/concat.py,sha256=CqdM8wXZxP1RtzcmrSx1IG7Z8l2-pdIKgq5S9IsE6hs,17569
120
+ maxframe/dataframe/merge/__init__.py,sha256=1RUTDuFogvPX22cw6VDozCsGGIazSkgp-ePpFrW5_H0,1756
121
+ maxframe/dataframe/merge/append.py,sha256=RhKc6Js3H_vhDAzGCMpyNGOxaAQzHLOK11C8WexKnCg,3478
122
+ maxframe/dataframe/merge/compare.py,sha256=Ps-mtkhoqSH9yjx7-brqma4VRpTM6gQQhKldwiTGtKc,11530
106
123
  maxframe/dataframe/merge/tests/__init__.py,sha256=YsJxv7HbG4YYJmqAJZPYb8iHFRQX5JGpGn2PInDXvY8,596
107
124
  maxframe/dataframe/merge/tests/test_merge.py,sha256=-mJirUWZJ5qT-BSW0TwS-fhGSgrChf9nXYp6RHrN1PQ,12965
108
- maxframe/dataframe/accessors/__init__.py,sha256=HuRxxHBHRti4hQkHHHHKdAABkLKSbeYr-prI3NlSAKg,654
125
+ maxframe/dataframe/accessors/compat.py,sha256=87YooXBQhVWmUd95RnhxaWL5dFaHQY401l-dQmEsAGU,1490
126
+ maxframe/dataframe/accessors/__init__.py,sha256=-lIm24txItBohjIZkM8cXEVW1Hte_6_IXvqZCvaA-5E,663
109
127
  maxframe/dataframe/accessors/string_/accessor.py,sha256=5g0KVtl4DPzz-hA0qYZ_P5XwwMK2Tagn7L1DF6KJy5k,8054
110
- maxframe/dataframe/accessors/string_/__init__.py,sha256=wRjIeDqzEHGUcxe0G1UKfJC5c_HyImUhn6xtWcSQeMQ,1073
128
+ maxframe/dataframe/accessors/string_/__init__.py,sha256=aHtS0_KTO-_ODphkvsb1OzKIgj6ugcfTVQmZnn_pFkY,1179
111
129
  maxframe/dataframe/accessors/string_/core.py,sha256=y4Tvg1hZvmOdC1sh6yl3N3AL0-1YB-etviJ4MOAEx5s,8193
112
130
  maxframe/dataframe/accessors/string_/tests/__init__.py,sha256=YsJxv7HbG4YYJmqAJZPYb8iHFRQX5JGpGn2PInDXvY8,596
113
131
  maxframe/dataframe/accessors/string_/tests/test_string_accessor.py,sha256=NE5pAtKPJgs-pJp-G-SRiWH6T6wZlrT3anmgsF3XU-A,2476
114
132
  maxframe/dataframe/accessors/list_/accessor.py,sha256=4gyVqugtrz6XbGnHUG1ZjI_WOe1sSbQXM0sneNtQ9a0,1309
115
- maxframe/dataframe/accessors/list_/length.py,sha256=1-0Ttc4hDM9FraQzANOSNQXFm-wliE5gDLO98H-EOC4,2134
116
- maxframe/dataframe/accessors/list_/__init__.py,sha256=1viWNK-Xxq05LbYF0fRMAQZeKMzZgsVAz2A1vIzlQgo,1248
117
- maxframe/dataframe/accessors/list_/getitem.py,sha256=PpfQ4GW6Mx7UvoL_ZInA8vDKOFDKupXFI9taITkzLcI,3744
133
+ maxframe/dataframe/accessors/list_/length.py,sha256=78jE54upmXT_ddjqHmBM_xgjgbBgXX0YEai53E4d4Dc,1853
134
+ maxframe/dataframe/accessors/list_/__init__.py,sha256=6jzqdwt1166y_I7Sf2KW1bq5m6lb0a38CzV4KSO1t_I,1248
135
+ maxframe/dataframe/accessors/list_/getitem.py,sha256=ox_Tg2K3G6mGWfnjtrmsqe5IEicSf9Q4aYEZtIJIzk0,3637
136
+ maxframe/dataframe/accessors/list_/core.py,sha256=XILXzXcRC19tZCu_OeBa-PU2ln4XA125q--pPUK2AhA,1814
118
137
  maxframe/dataframe/accessors/list_/tests/__init__.py,sha256=YsJxv7HbG4YYJmqAJZPYb8iHFRQX5JGpGn2PInDXvY8,596
119
- maxframe/dataframe/accessors/list_/tests/test_list_accessor.py,sha256=jC7WRktqnntX4BAz0utVG0_Z2rzpqDvl8Kmzk_pus8w,2381
138
+ maxframe/dataframe/accessors/list_/tests/test_list_accessor.py,sha256=fYO1k31uPz6tcHyFGa9A0V9k6y-EqPDtMnuYi5YO4SM,2463
120
139
  maxframe/dataframe/accessors/dict_/accessor.py,sha256=0lC_5yk16pdHRLiop_X_O5AWF4bCe9YsVbYgVOfS7e8,1308
121
- maxframe/dataframe/accessors/dict_/setitem.py,sha256=2kbDnyRRm9EWbRfDfPkD4PIiyjMkae9kLUyygRd845g,2953
122
- maxframe/dataframe/accessors/dict_/length.py,sha256=etPPuTrUUSKwuXefqhFfTlEWkOP6mgJ9Z4MtK4q8jbk,2207
123
- maxframe/dataframe/accessors/dict_/remove.py,sha256=PrCCexC_IWsw0Esu1T6VytP5LuA8u5g3XtyJtZz6FAQ,2986
140
+ maxframe/dataframe/accessors/dict_/setitem.py,sha256=HnwpRW5cVDPIcvNTiX_3dikwGtgPx-HJG599a7hsAI0,2680
141
+ maxframe/dataframe/accessors/dict_/length.py,sha256=kNuaZ4yBdDk5mN2Rya0UD4gw1_Czu0_JKsooWcagltI,1926
142
+ maxframe/dataframe/accessors/dict_/remove.py,sha256=i9e8qlfBOjICo3Q9mNgYtU83ikxutWmRjhK2HQj-CUE,2701
124
143
  maxframe/dataframe/accessors/dict_/__init__.py,sha256=uZJdw98WvCzfHiSjOSrbeCEN0eL2lWziUGXvsqe4oks,1503
125
- maxframe/dataframe/accessors/dict_/getitem.py,sha256=cQcqzpU9BnoFbJIEvcKRvEMpuo9xg-kJpU177hVdzoc,4395
126
- maxframe/dataframe/accessors/dict_/contains.py,sha256=qZze6k0tzpmGCO2bGoFgGd6ZLSweQZX6WbTsvT_Jalw,2527
144
+ maxframe/dataframe/accessors/dict_/getitem.py,sha256=WZGfWwRogML6yMwst1Ev2omhuRqdkSbSjV1E-Ehl2zo,4367
145
+ maxframe/dataframe/accessors/dict_/core.py,sha256=vNLLAD4pnothV4haHn8cD1ftlnqthOlUY580kmsIKEM,1814
146
+ maxframe/dataframe/accessors/dict_/contains.py,sha256=XMH4DR3ZiXGo4Um3FHm5lm9EJCR1aUxxl5RthqMhoeE,2276
127
147
  maxframe/dataframe/accessors/dict_/tests/__init__.py,sha256=YsJxv7HbG4YYJmqAJZPYb8iHFRQX5JGpGn2PInDXvY8,596
128
- maxframe/dataframe/accessors/dict_/tests/test_dict_accessor.py,sha256=tfHWfpNCPXJlySOoFekI94V9c91wz1sw-tDciIoIlo8,3915
148
+ maxframe/dataframe/accessors/dict_/tests/test_dict_accessor.py,sha256=f6d0ERRRp16Py3FBhHAPqlN17WxNOenecmM5dP2KjCo,5218
149
+ maxframe/dataframe/accessors/struct_/accessor.py,sha256=ZWc_-3B-v199pIFPN77UfrpTIZOmiAWYnCF93Tg1CeQ,1317
150
+ maxframe/dataframe/accessors/struct_/field.py,sha256=bc5D3BaAGCnO_AmT4y0dBPO-qrlu97nvveP_sPYr03Q,3757
151
+ maxframe/dataframe/accessors/struct_/__init__.py,sha256=Pld_npCYhJBraSCrLxCwTvCz5517rD2vHvWizEXqII4,1210
152
+ maxframe/dataframe/accessors/struct_/core.py,sha256=qsLt-9lNexGG3c4QiR0F5t4hrTT3IWgsdH_mcnzw6OQ,1696
153
+ maxframe/dataframe/accessors/struct_/dtypes.py,sha256=vMX18X2_jj10lb4TvINmSyb17iymGKThnbQ6DudWIDQ,1697
154
+ maxframe/dataframe/accessors/struct_/tests/__init__.py,sha256=YsJxv7HbG4YYJmqAJZPYb8iHFRQX5JGpGn2PInDXvY8,596
155
+ maxframe/dataframe/accessors/struct_/tests/test_struct_accessor.py,sha256=2m25glcn7DqwK6P2u_LzBxhbMNqNFvopXWAGMW5v3bQ,2737
129
156
  maxframe/dataframe/accessors/plotting/__init__.py,sha256=BvuibZ5Wj6WcFvSrgDltgXQhRPdQksBwxlBdrL9liMg,1388
130
157
  maxframe/dataframe/accessors/plotting/core.py,sha256=h_O3Jsalv55yLrPLzaLrNEHNP8pb8M95H5Gq9twzuTg,2235
131
158
  maxframe/dataframe/accessors/plotting/tests/test_plotting_accessor.py,sha256=o_yRgHBLWrspYWd7pS-LUR6Vv2dKzLQbBca21EZyoWg,4123
132
159
  maxframe/dataframe/accessors/plotting/tests/__init__.py,sha256=YsJxv7HbG4YYJmqAJZPYb8iHFRQX5JGpGn2PInDXvY8,596
133
160
  maxframe/dataframe/accessors/datetime_/accessor.py,sha256=ai1Hqn8WCU30n7KGGMnxIXuehJ1yU7tia_I4pW1hjH0,2222
134
- maxframe/dataframe/accessors/datetime_/__init__.py,sha256=k22-FodYSO_hU8mGiiVFpA3PWEz8g4IIg1Cyaq3zYNs,1084
161
+ maxframe/dataframe/accessors/datetime_/__init__.py,sha256=MqUNHuuULHtJqfZT-f7O0mG-V3S6Gc2w8Kwr3mw88wM,1196
135
162
  maxframe/dataframe/accessors/datetime_/core.py,sha256=nTdwF4B4Nkh7mNmOAd36jR4qCesTyTyhFNaheqnqUB8,2604
136
163
  maxframe/dataframe/accessors/datetime_/tests/test_datetime_accessor.py,sha256=E5qo7BfyUqWVzLBNx3a7fA119QMTQKBhyh-J-Cm5Eo0,1395
137
164
  maxframe/dataframe/accessors/datetime_/tests/__init__.py,sha256=YsJxv7HbG4YYJmqAJZPYb8iHFRQX5JGpGn2PInDXvY8,596
138
- maxframe/dataframe/tseries/__init__.py,sha256=YsJxv7HbG4YYJmqAJZPYb8iHFRQX5JGpGn2PInDXvY8,596
165
+ maxframe/dataframe/tseries/__init__.py,sha256=murH7kL5Oqbn8F8jKEvlv5o40wmB_JJJ34jMPGnswbo,1005
166
+ maxframe/dataframe/tseries/at_time.py,sha256=90smCRmj6vvyBHQdCBHL_bJBJ0K28JvHJJQKkl5lw3I,1963
167
+ maxframe/dataframe/tseries/between_time.py,sha256=IXMIn9rV6JZ7AgQr-XFyYElyrdjyxtczEic5BZjGRJA,4195
139
168
  maxframe/dataframe/tseries/to_datetime.py,sha256=rvVcXBqbc7Xf7TlTUEhTNIqw9k3J-BQhvVVt5MVK8I0,11426
140
169
  maxframe/dataframe/tseries/tests/__init__.py,sha256=YsJxv7HbG4YYJmqAJZPYb8iHFRQX5JGpGn2PInDXvY8,596
141
170
  maxframe/dataframe/tseries/tests/test_tseries.py,sha256=ECx22AkI-TFT-293amPHdR6vydTgSOM7wNFa0_f5G0o,989
142
- maxframe/dataframe/tests/test_utils.py,sha256=3Qf3yVPDgUnSLOZACmgnEgaxfvqmn90LhTnY6C4phgQ,3012
171
+ maxframe/dataframe/tests/test_utils.py,sha256=5a8vcIxYo96KJBe5_QhrvRklEy1LIBKgniePBodpABk,5268
172
+ maxframe/dataframe/tests/test_typing.py,sha256=p4vPW9CuJPNSfiWFW3twTsbGNiuwe1KAbhdA6VzVbh0,3291
143
173
  maxframe/dataframe/tests/__init__.py,sha256=YsJxv7HbG4YYJmqAJZPYb8iHFRQX5JGpGn2PInDXvY8,596
144
174
  maxframe/dataframe/tests/test_initializer.py,sha256=9tyTBnNBHSuD89N7odLa83CmklK9EZKbWbTewijlD_M,2000
145
175
  maxframe/dataframe/ufunc/ufunc.py,sha256=TFD5VnP-yUPwbo5oDwegG2OTPlfcNUs9grmoTLwOIFI,1652
146
176
  maxframe/dataframe/ufunc/__init__.py,sha256=GM5LuPDJD8WHK_-sPPBC6cMyEuTyuDWY2JUnhq3VJ4k,889
147
177
  maxframe/dataframe/ufunc/tensor.py,sha256=iBUpqvpgYuooh_Iv8iUN9haQ_bxo6sD5LVdrHuaNv0A,1618
148
- maxframe/dataframe/missing/dropna.py,sha256=ODqgHGhF6DFbkGkMFtpmX48SEWEiRK-oZl2PtLNDDXg,8545
149
- maxframe/dataframe/missing/fillna.py,sha256=dNX7Jwb705kGFaU3hkoJO6X2NWuRvLKHlRX6hUa7vMY,9158
150
- maxframe/dataframe/missing/checkna.py,sha256=g6IOUnRGJOf7T-i7MmS5ibXjzI2gdfspWDtqEBrM5FE,6890
178
+ maxframe/dataframe/missing/dropna.py,sha256=3Wk48ik3iK4dQjvwoaa-zKkBZc7WhTJZplOb4t60xhA,8720
179
+ maxframe/dataframe/missing/fillna.py,sha256=si4fq6nZISfvX9IRLASgnI0clrAJSfSc_qqpcJItjaI,9174
180
+ maxframe/dataframe/missing/checkna.py,sha256=IKsZtNZuWvdRHlEDpYrAfKDdeIh7dC-LKAqe72hE5f4,7288
151
181
  maxframe/dataframe/missing/__init__.py,sha256=wETXRj4oWTruI67Vq_EKlUjGrOo7bvFFBM2Qxf2dIG4,1813
152
- maxframe/dataframe/missing/replace.py,sha256=yop4G6kG4AlWLiLXLE4Qmu_VJMzObSeF-HOInImgf6U,13450
182
+ maxframe/dataframe/missing/replace.py,sha256=RbqYR1ZWi5nzGMR5E2BUcRVO3QXBC2rO8sWUX6be-Uk,13602
153
183
  maxframe/dataframe/missing/tests/test_missing.py,sha256=8pIE9U6TeeWjPYarouMhpMwKNTsM0O1SLnglr-WfFDM,3127
154
184
  maxframe/dataframe/missing/tests/__init__.py,sha256=YsJxv7HbG4YYJmqAJZPYb8iHFRQX5JGpGn2PInDXvY8,596
155
185
  maxframe/dataframe/extensions/accessor.py,sha256=QkHJq6n_qayJDM5qZalLVFVZgwCcdjMBJt-V5a6UtJs,1031
156
- maxframe/dataframe/extensions/flatjson.py,sha256=GvHU07tIt91k5m5Vpn-P1pd69Nz0lXgvQP-RGB79o7g,4412
157
- maxframe/dataframe/extensions/apply_chunk.py,sha256=V9153ail0HL7M-vm1vMMDmVYAUmZFzgDyfP_N0sagU4,23500
158
- maxframe/dataframe/extensions/__init__.py,sha256=TLCGoy4JUO0UGuBFGSyYIigUh137rtgyMZ7jy7stqb0,1943
186
+ maxframe/dataframe/extensions/flatjson.py,sha256=nliV9yvEThbPUMLRO1fX4oUrW6nLCa5Xh-cuKQYc5iU,4436
187
+ maxframe/dataframe/extensions/apply_chunk.py,sha256=PO9-XyvmecpEONO8nFTPbV_kiNkXEHU8TjV9ppJAfEE,24355
188
+ maxframe/dataframe/extensions/__init__.py,sha256=JllDw5KJAlgg-v2FHdTfeSpjJRcpRy0hA1RhxipA5NY,2743
189
+ maxframe/dataframe/extensions/collect_kv.py,sha256=ogM4H1znh2fXYGN7VSzQVy6cLUajf2rnK3JXg9RxnRw,4234
190
+ maxframe/dataframe/extensions/map_reduce.py,sha256=CZmEJZG_DphtCC16gThGiNorXl_XTqks_quf5_4cczg,8943
159
191
  maxframe/dataframe/extensions/reshuffle.py,sha256=Ig8XtZZZa4lwl6RoQfQMr_U2dAjTCWXP8sZtlviUUQY,2635
192
+ maxframe/dataframe/extensions/extract_kv.py,sha256=_lvI92eZXHsEaPkPtw45cACMTYXvmiCPGTd6DTl8iAw,6263
160
193
  maxframe/dataframe/extensions/flatmap.py,sha256=xnrqkbYLG6CqkQ35IFxZtRP-DhIwXJXaHdvPwCPNgkI,10518
161
- maxframe/dataframe/extensions/tests/test_apply_chunk.py,sha256=_NF_2sKBbbKyce2G7_HIQs7EsLRaQeYVg-PXxrV4pkM,5848
162
- maxframe/dataframe/extensions/tests/test_extensions.py,sha256=zEt9CfM9se4kkgLHIgnXSPZ43VmU2ZbA59iTL86boZc,4779
194
+ maxframe/dataframe/extensions/rebalance.py,sha256=bqlfQjCpt0Q8hlAeSUHY2dW9nR4TDpgoDAYDO3sknYE,2208
195
+ maxframe/dataframe/extensions/cartesian_chunk.py,sha256=MG_ytgk2w7abHdFiQFxYkxabDlUbr57WFIQifEGHdMw,5288
196
+ maxframe/dataframe/extensions/tests/test_apply_chunk.py,sha256=p46wXHF3MWk58ZHH4W1lQxYHM-PBZ2mCh4TxF9G7zJ4,6110
197
+ maxframe/dataframe/extensions/tests/test_map_reduce.py,sha256=oiXzxqo8YS9Y8yRXeJAMhJhILX_Jm8E5KwpYHR0LQxI,4362
198
+ maxframe/dataframe/extensions/tests/test_extensions.py,sha256=mTZKTQzMz6i5w_wqZ8R3G2zAuMOdhf9Rh9G6hKyW3LQ,6435
163
199
  maxframe/dataframe/extensions/tests/__init__.py,sha256=YsJxv7HbG4YYJmqAJZPYb8iHFRQX5JGpGn2PInDXvY8,596
164
- maxframe/dataframe/groupby/aggregation.py,sha256=992fSehwNbFOi-7Tz4EVHP9blJWtNF6sDkm4SMM0NRQ,13417
165
- maxframe/dataframe/groupby/fill.py,sha256=LLyDAhiETT7Epccs5vCFUGmJdvwMGdU--Dq5VbkHtis,4885
166
- maxframe/dataframe/groupby/apply_chunk.py,sha256=DNig32JPwEf9_9xLSx2jCfTKLltb7XY4uc1yMIEw1dw,13871
167
- maxframe/dataframe/groupby/cum.py,sha256=ITaWHRngx_QtiWY--agEHUdyjY-IdYaQLkF7tOolUEc,3683
168
- maxframe/dataframe/groupby/__init__.py,sha256=FcNLgvg7JLvi5mKWPG_CA_il0s4oudDKL_1nmZRF9FY,3815
169
- maxframe/dataframe/groupby/getitem.py,sha256=V7CyoGOSdwUFZ39e8kXEqNhyEOWkMyTI00yFBq0xA2Q,3415
170
- maxframe/dataframe/groupby/core.py,sha256=bQR8IHpxPAz70dM6yy1WCYTW92w5ejmYru_R9lkFrxg,8479
200
+ maxframe/dataframe/groupby/aggregation.py,sha256=lB1atq1a7OCTjlximmmYVIhc-H7Ka2y0334YZjlnCgI,14920
201
+ maxframe/dataframe/groupby/fill.py,sha256=gcGRF00aCeALmDowE5RsJ1o1o_Qhd2fgvcCVmr-xi4g,4901
202
+ maxframe/dataframe/groupby/apply_chunk.py,sha256=DiLMKLRsbD0WkgpQida4HrMe2X1-r97keyM7tXg40XE,14436
203
+ maxframe/dataframe/groupby/cum.py,sha256=jJ5_iGRxGi5XaY_gYLZrCZ9tQt6ai6dVYDhf7ANv6PI,3309
204
+ maxframe/dataframe/groupby/__init__.py,sha256=SI1w40zZPfBC-ZLCQYbUCH4ANy-YqNm4r9-cq2lRe5g,4237
205
+ maxframe/dataframe/groupby/getitem.py,sha256=4wEMWIPUt2mlFhja13txdRe_oBZqPnNLpj8dh0mN5ps,3643
206
+ maxframe/dataframe/groupby/core.py,sha256=WVrInzzJs5TpOPcAsWRGlFC2QAmvMLdDVx2YJKv3av4,12019
207
+ maxframe/dataframe/groupby/rolling.py,sha256=sRh07osepstKLxgUlr27likPGsl8wAmjR6dpQRSuFwk,6727
171
208
  maxframe/dataframe/groupby/extensions.py,sha256=c9pfAtHuEDFm5in6QTt5fQIdlqXw5ihfl65GeanKyZU,915
209
+ maxframe/dataframe/groupby/shift.py,sha256=qIW_p1_Lp-qTqROKfkQM908H1sGy6t1nff9ltrr72Ks,3115
172
210
  maxframe/dataframe/groupby/transform.py,sha256=3_ozy344yoeTZNDU-Fp_W3ZRRbdCNi5Lpyc98joeULY,8573
173
- maxframe/dataframe/groupby/head.py,sha256=o5B_sgQDKjFxVlKB02tuG2hdXVhacCFbi1CuRdVXD3Q,3266
211
+ maxframe/dataframe/groupby/head.py,sha256=T-Tc9cQT2LgLiBEzuCAsvU9JWgBOMtHc81pa2OrV8R8,3665
174
212
  maxframe/dataframe/groupby/sample.py,sha256=0sI9MSn274iHnmR9zs1g1g7DPsjxvF6FZ2S4XKhcaro,7007
175
- maxframe/dataframe/groupby/apply.py,sha256=T64zq-KtS-s9DS8Cb8ZA28_sN9FgrZWsHM6RwHCl9Zw,8461
213
+ maxframe/dataframe/groupby/rank.py,sha256=CMh3533cPkzw9Wl7hxoCyq6_GdWQ_hjW0_F96DVEbcY,5031
214
+ maxframe/dataframe/groupby/expanding.py,sha256=n_5xOFnQRK7ehmpNHikCFGMmjQRTAo70R38fkXj44lI,6892
215
+ maxframe/dataframe/groupby/apply.py,sha256=0LjJSdZ3sAzomu4zmcQIKF2JCkjP0gyhDbuwibbI1k8,8461
176
216
  maxframe/dataframe/groupby/tests/__init__.py,sha256=YsJxv7HbG4YYJmqAJZPYb8iHFRQX5JGpGn2PInDXvY8,596
177
- maxframe/dataframe/groupby/tests/test_groupby.py,sha256=KhjhpjdYbCPH7r2q9DcdUGeRn_BBnNNNWz3Uj-FvhLY,12358
178
- maxframe/dataframe/datastore/__init__.py,sha256=f__5rpYJSz1S0FzyJq1oE0bTXmAa4Azxa6gAFrwD7MY,784
217
+ maxframe/dataframe/groupby/tests/test_groupby.py,sha256=OuaLNMIb1dlKgC2EMfv62z9-NTUxAKpkF4l1S2INd2M,12150
218
+ maxframe/dataframe/datastore/__init__.py,sha256=EiZOmvCd7iq7oIJnyDbgcWQcYfj2YlgVM0ewKi8g740,1156
179
219
  maxframe/dataframe/datastore/core.py,sha256=USIY-JV6gmGI7DFl5F_YptytNxnHFPErsDctzAN2Ivw,743
180
- maxframe/dataframe/datastore/to_csv.py,sha256=fUyAkEN8imZzCEgBgYO-CCOBi9penk5i-2hB7YlurfU,7859
181
- maxframe/dataframe/datastore/to_odps.py,sha256=K-XEI0WazY0ySfdXnBA29blqf1F6Eug44esOyMcK8bk,8371
220
+ maxframe/dataframe/datastore/to_csv.py,sha256=8lSXyjqlUxjWCX5iD3Y163N9kyRLjSi6-d2AhA-6YYE,7910
221
+ maxframe/dataframe/datastore/to_odps.py,sha256=BkhHyJiVlDSle4mKOxsNmZUwN6EdQIoyXU8-PBDxNxc,9830
222
+ maxframe/dataframe/datastore/direct.py,sha256=0pSA0mehiUVCtSLj6s8s8AGBlfr60StvKyk0PJE_A5s,8453
182
223
  maxframe/dataframe/datastore/tests/__init__.py,sha256=YsJxv7HbG4YYJmqAJZPYb8iHFRQX5JGpGn2PInDXvY8,596
183
224
  maxframe/dataframe/datastore/tests/test_to_odps.py,sha256=ftaUeXpGr_daZOn9dtWq0QEFiLg9i3kGfEo7F2Z3ss4,2989
184
225
  maxframe/dataframe/fetch/__init__.py,sha256=Mlwm89_WXweFj-zQNbIEnnIZD8vHh7z5A2WPXxN7KE4,653
185
226
  maxframe/dataframe/fetch/core.py,sha256=GP5E5tCodXgyPOj1CNX4TcaVJUG7VwtI3-TE8S84Qu4,3744
186
- maxframe/dataframe/reduction/max.py,sha256=M6y3jKLd8ecJTc3LNb49tr74LaGPs6MCpuPWQJ-qWgU,1660
187
- maxframe/dataframe/reduction/nunique.py,sha256=qaovc5DAxZFfGXdEaJy0uNHX69p2RnlmaUi7gmQbd54,3467
188
- maxframe/dataframe/reduction/cummax.py,sha256=Odo-Ahex2Ey4cwO6_uJEuafbOovnkzZOw9pmyXs4i9A,1013
189
- maxframe/dataframe/reduction/aggregation.py,sha256=VwihLfTCxWz7chpHGHvZ8ZJcKjSYBjluK0CpMVf0EmM,16827
190
- maxframe/dataframe/reduction/skew.py,sha256=n4zYukXUYv1UFHGJFs1m2oToBKKnZ7ilhHBrRK1dHuQ,2538
191
- maxframe/dataframe/reduction/custom_reduction.py,sha256=QjPVQ_8hdXjyWmOgeVlxsH8oir2zC_fa5NWK5wPtkik,1435
192
- maxframe/dataframe/reduction/unique.py,sha256=fFV4qh4Ulgm4KXelrsGQuuHa22_YARiG-AkSjpPgNa0,4572
227
+ maxframe/dataframe/reduction/max.py,sha256=QSatmRu5cjCDxKR0ZChFrETUQSF6e_fOlN-Z172YpxQ,1644
228
+ maxframe/dataframe/reduction/nunique.py,sha256=OF1Tm02o8lXmmF-uI5F05zBM-fIE_kvNyse_sZG65aU,3928
229
+ maxframe/dataframe/reduction/cummax.py,sha256=OYY6BZeNOcdNq68A9ZpD4zAdmuPhvs8iMs1kdsQTctA,997
230
+ maxframe/dataframe/reduction/aggregation.py,sha256=f7_bQq7emCpLTLjfJbgR7NOUMSpeK55HqUY54d2T-PY,17831
231
+ maxframe/dataframe/reduction/skew.py,sha256=HWdZe6GRUYaAwKH0pUomx68N5NYKdfwTt8IVe-8UFT4,2705
232
+ maxframe/dataframe/reduction/custom_reduction.py,sha256=tZ-go3T-NgWMGTNg3bx60sU9R2lRd8iZTyl2Mv5LoTA,1419
233
+ maxframe/dataframe/reduction/idxmax.py,sha256=fEZbsp3i_jdFimtIm5mzYBts2KCwggMWcIo5j35vp0Q,5318
234
+ maxframe/dataframe/reduction/unique.py,sha256=fgVKAqMawXVs6-xjbpsXk9bGyXrYKPp5Zg1SCHHj3cM,4901
193
235
  maxframe/dataframe/reduction/std.py,sha256=GmIp-lXVxZGFO2jZVcTmWwHz7rZfhhm2ONKTqZfU8LA,1355
194
- maxframe/dataframe/reduction/str_concat.py,sha256=Wzuh57my-QOIqYMlnGn4i0mgH13dv4eWM53wEd11Iog,1657
195
- maxframe/dataframe/reduction/__init__.py,sha256=6Xh-aQQmrGsPnsm3f-7chhsbMKTV1kWV9Y42ZJ6BTic,4335
196
- maxframe/dataframe/reduction/core.py,sha256=F6UOWk3QGjPcWQLhqESuXGjNQGz_Eixmr_G5cZ5n7Hw,31026
197
- maxframe/dataframe/reduction/all.py,sha256=Amnoyro0zLqtk5ytuq0ntAOu7UqGHfhc8n3EONXmyUo,1966
198
- maxframe/dataframe/reduction/cummin.py,sha256=dysmKMEMF_BiABSE8DNYzdWfzPNsHYPl_U8WMBbztow,1013
199
- maxframe/dataframe/reduction/min.py,sha256=79EW7-KqVut9QULQ4l5UXzbCeYlrXtvYdlDzM328eFc,1660
200
- maxframe/dataframe/reduction/mean.py,sha256=5cvduC-QtLJs-acdpz716dI0Hg1WblDzBqDPbSB13dw,1612
201
- maxframe/dataframe/reduction/var.py,sha256=ZdC_y8nG0LSFueMfDO4-4MBQTNG8y4iHnRBamnuRBPk,2008
202
- maxframe/dataframe/reduction/median.py,sha256=HALfRFoAe6Fo9LUGbhgAF0FHFYRCNgV3gh7Ml7qmhq4,1593
203
- maxframe/dataframe/reduction/kurtosis.py,sha256=S1M_IP99nsabMqRRmG4tDUED5ZvRopCxljU0OL33NyI,2840
204
- maxframe/dataframe/reduction/sum.py,sha256=_nZentdtTwY475Wk-VGpxuHQ3zMGhDhrP9RTAXn6Rro,2049
205
- maxframe/dataframe/reduction/prod.py,sha256=nn-Lmm9f8OTshX7BQCgoBe-Qr2ytjE93L3rvLswofEk,2049
206
- maxframe/dataframe/reduction/cumsum.py,sha256=UO9CFa5PCcZ8zmCzJLMWhYI2Y79Gut3NtoVJArw6JTA,1013
207
- maxframe/dataframe/reduction/any.py,sha256=vVjm9uEcWK0aIdsXGPuJKRanXoz9GqDS7BfMQWRQmdQ,1970
208
- maxframe/dataframe/reduction/sem.py,sha256=un4SZsFZ83HX-H32XvGyosfZNfAth1C787JDskX5Zm8,1863
209
- maxframe/dataframe/reduction/cumprod.py,sha256=RZd7znJrSiZ9ptQpWbrDvMivRhx6vgFezS7VoeQdX0g,1018
210
- maxframe/dataframe/reduction/count.py,sha256=m0c0j3dMsLzVjeSB_ibo4Qwa35iP6b0hZahhX2qiEO4,1741
211
- maxframe/dataframe/reduction/reduction_size.py,sha256=SAprwQF8dJ3ZAZkLcHvsPsLiTDHmMnFtnVVy8Zn1UYo,1120
236
+ maxframe/dataframe/reduction/str_concat.py,sha256=5r-VkCN-48BmVARG2BBlYfEG4JR0b3w0u_JMrvvopg0,1797
237
+ maxframe/dataframe/reduction/__init__.py,sha256=nRKoHSJNeOCOrTdoIw0i5SDADUKVMnvyRuviG5hMcUA,5209
238
+ maxframe/dataframe/reduction/argmax.py,sha256=R2OnzfQ_FY_b-A2bGq5F4BtFqw4tHOJ_YLFcZKNWtMk,3297
239
+ maxframe/dataframe/reduction/core.py,sha256=dF630p0-Uz8Jran2_5XhJAooBKbSzNPHyw8FiAVc-XA,33085
240
+ maxframe/dataframe/reduction/all.py,sha256=1HCk4rVHk02npNnGHiXRPqfr-0DbB_vLpdvoKOAXdN0,1950
241
+ maxframe/dataframe/reduction/cov.py,sha256=e5O_1rmWo-rDoY95pw4KhD2v1P2lBwJL3Olb0fysjao,6210
242
+ maxframe/dataframe/reduction/cummin.py,sha256=clx698Urwo6iVOl3vEGwnyXtPlKghHUgk85BLt2BFpE,997
243
+ maxframe/dataframe/reduction/mode.py,sha256=bEqGWAae_6bsW3xDKtpJVZzRXo9tP4R-gf7p3iVW-a4,5114
244
+ maxframe/dataframe/reduction/min.py,sha256=KKdOU5OW0v19M26jZB1wTeEqDf9eDeC-OMdHEHjrvHU,1644
245
+ maxframe/dataframe/reduction/mean.py,sha256=YUb3zpA8mP73GuVJBI7Jn7jeYL7dGWmbSUTcvmnqFLc,1779
246
+ maxframe/dataframe/reduction/var.py,sha256=tqwO1qqlQrgcsGOlGW1NpQI4phTBVUh6OxJbzy2Zi8c,2228
247
+ maxframe/dataframe/reduction/median.py,sha256=G-ssX-tyLo4iVZbAv0SUXRzBt0DKQT8znkwavkTtvyE,1577
248
+ maxframe/dataframe/reduction/kurtosis.py,sha256=d4yqTm0s93y7EHsM0W4EkUIiD80Ap7FpP_iQUS7P2mY,3070
249
+ maxframe/dataframe/reduction/sum.py,sha256=UpR4wKuX5eGFeYBR_gMlv5lGwrBvUs1DETpqjEGUzVo,2261
250
+ maxframe/dataframe/reduction/prod.py,sha256=ftUGCPdwEN7hrz9w2OfvbZSLkxR7FNF8XKmnkvBYxvM,2273
251
+ maxframe/dataframe/reduction/cumsum.py,sha256=T3aiiTh7u5_70GV3D1Snc2QJxSF_v_nXU04sSiRuQFw,997
252
+ maxframe/dataframe/reduction/any.py,sha256=xiSRZzsdf6atz41sc8H4KJLSYxVNJIIy6qdrsCB0XS8,1954
253
+ maxframe/dataframe/reduction/idxmin.py,sha256=_RsFuDXd8BE2N48FDSkzojntWpF_EgAF_DWmYI5u_hw,5321
254
+ maxframe/dataframe/reduction/sem.py,sha256=URGLYsGcPfske81WxK3_Yp6rAKw4Oux9QWKn6GOqN9c,2083
255
+ maxframe/dataframe/reduction/cumprod.py,sha256=mDi8lGFg_jcb1xMJZ-SSdrWFTVLJqGgd95jx8AXvgFQ,1002
256
+ maxframe/dataframe/reduction/count.py,sha256=8prfu-Er6a1I5OzHGW5aflU-LVPmQJRClHdAbUOLXlw,1983
257
+ maxframe/dataframe/reduction/reduction_size.py,sha256=w07CSrdkmbE8J3h5l_HEiwoKmML90EKlAyQTAopr_yY,1104
258
+ maxframe/dataframe/reduction/argmin.py,sha256=7Vn8E4zpwa-VXV_e4npPZmEeQGkPb5i9-isCmY5wYKA,3297
212
259
  maxframe/dataframe/reduction/tests/__init__.py,sha256=YsJxv7HbG4YYJmqAJZPYb8iHFRQX5JGpGn2PInDXvY8,596
213
- maxframe/dataframe/reduction/tests/test_reduction.py,sha256=31V29OWPi1Ia52b3BRl9VpvOp08k5xYFqeIJJBzpVCc,18721
214
- maxframe/dataframe/window/aggregation.py,sha256=lui1PvodeuPpOzb6VBSHvy_TnhEK-GMYiirdJG8g3Os,3794
215
- maxframe/dataframe/window/ewm.py,sha256=5avuJh8WlvjvDe85AE4DYQSQAIYu1r04Ra0hBB2yKjs,7789
260
+ maxframe/dataframe/reduction/tests/test_reduction.py,sha256=G0LHKDuczC4JtyIeZinmaN263lXF-jDGlsBOhjmo7X4,19235
261
+ maxframe/dataframe/window/aggregation.py,sha256=qBN9jQ40bdvQSuqICohv1wVZ1br0y-o4WpIKjUiEqu4,3894
262
+ maxframe/dataframe/window/ewm.py,sha256=vrWPW_MNdDgl2BONzy5LubwyVxylIiAm0UWJkdzflJE,7752
216
263
  maxframe/dataframe/window/__init__.py,sha256=kRKsdMgSYsFZeDQV_sXy2yyVdALKsYLK5NM3zjnx0uM,910
217
- maxframe/dataframe/window/core.py,sha256=PBlauTddI7l1c78Ft5QhvQHzw3da5f5LlSt3LZlKkTU,2205
218
- maxframe/dataframe/window/rolling.py,sha256=T5FOrr01gQ8NmhGawnjKOEESVJnX9lnQlL_ygOB4xJ4,12158
219
- maxframe/dataframe/window/expanding.py,sha256=hQha2jrVGNLaduB1ZJkvdi53_aoMCVXSzAjDfrJaDr8,3918
220
- maxframe/dataframe/window/tests/test_expanding.py,sha256=iGdKMbMIGbeES-XFmywMisfrSpi21g49UvCU9DoNw4w,1916
221
- maxframe/dataframe/window/tests/test_rolling.py,sha256=UA5osZ_vo2NRo9_E4rIehoYKZYJGPVoei8DcJQtaXkQ,1714
264
+ maxframe/dataframe/window/core.py,sha256=FoK9uc0pL-CPl2rMgPenqSAhk6OerBPNkcbvp-fT4Ak,2878
265
+ maxframe/dataframe/window/rolling.py,sha256=ZKYIeBXWQOo41hXjOfNou-YjhEOR89CN9FSVYeS0QsI,12811
266
+ maxframe/dataframe/window/expanding.py,sha256=VM_pE2ML7ixbD7CbojfhRj40AdQkjXPNOuGDQYkU5BA,4088
267
+ maxframe/dataframe/window/tests/test_expanding.py,sha256=q0Be3zWAi7MOhThSCsziGJShZJymjx0EtZj9dr5hAXw,1779
268
+ maxframe/dataframe/window/tests/test_rolling.py,sha256=JolsEeXhTa233DEB7wAwyfztVc3LeV5fbzwVElM0Xdg,1745
222
269
  maxframe/dataframe/window/tests/__init__.py,sha256=YsJxv7HbG4YYJmqAJZPYb8iHFRQX5JGpGn2PInDXvY8,596
223
270
  maxframe/dataframe/window/tests/test_ewm.py,sha256=-T3TnHMnTtQflSyvCIvNw5Sc97QkpbMAib6fDc0lNiY,2060
224
271
  maxframe/dataframe/arithmetic/arctan.py,sha256=wcm495plAIICdazKVlicsr0609uyyqGM6ulSRlX3YtA,930
@@ -238,23 +285,27 @@ maxframe/dataframe/arithmetic/degrees.py,sha256=caKuVKu1ukyWOW5pR4ifZweKxAYi71KT
238
285
  maxframe/dataframe/arithmetic/cos.py,sha256=O4P-XDbyADP_E2Dz7flNaPLJs6HmyK6NKH1hVVFVnz0,915
239
286
  maxframe/dataframe/arithmetic/tan.py,sha256=YYcDjP4NqXvUGYafUsVH4bByg6rBk7wNtKlW_ZXzd30,915
240
287
  maxframe/dataframe/arithmetic/abs.py,sha256=IK6Zxy1w9C4KOCgPl2Zx2MHsaUTTkpVublbK263bWZc,983
241
- maxframe/dataframe/arithmetic/__init__.py,sha256=LUk6ISdDemrkg9lq342zh9g_vjep8W_Wof1ZQyAtaTg,12478
288
+ maxframe/dataframe/arithmetic/__init__.py,sha256=vja4CkHTLEq5yZRspX1yqiLZPU5fqiZJPEQf8E58mh8,12948
242
289
  maxframe/dataframe/arithmetic/core.py,sha256=OVt7T5UtcZpKUAjSLj6t9La4gdA-Po6SLdSoI4IInSA,14497
243
290
  maxframe/dataframe/arithmetic/floor.py,sha256=aomnYTbh4Fs8CtY82b6OgfGXj0xCg2j6kiAK-rlie48,925
244
- maxframe/dataframe/arithmetic/around.py,sha256=bNjon55vUgBIOy2OBMsPJcETNv14Hdn3eNTEp_fqSD0,3823
245
291
  maxframe/dataframe/arithmetic/is_ufuncs.py,sha256=7DO49HO9Ha347Pay7DHIgLDx96gn6h5rjuULiOSVwtY,1736
246
292
  maxframe/dataframe/arithmetic/ceil.py,sha256=2baxYINaqkKgbb6UhJ4-XEz-O0H02liJ2I_PyGxohDY,920
247
293
  maxframe/dataframe/arithmetic/bitwise_or.py,sha256=FvGNn64GtiOhQbn3fACkoiLIlhSTvnVWeWaqMtRzE2U,1546
294
+ maxframe/dataframe/arithmetic/maximum.py,sha256=doS39H_CI_Gx08nMwGYqG0HNjCiKyCerYf9OZeyygGg,999
248
295
  maxframe/dataframe/arithmetic/bitwise_and.py,sha256=7gJstDeVKIrw-oyGerrXz_VbL3t4yBrQd85Vm9azuuc,1427
249
296
  maxframe/dataframe/arithmetic/log10.py,sha256=1S65Ux7RorVduQbViKYA37hixWam5Y2CJ6zt6OIF4fY,925
250
297
  maxframe/dataframe/arithmetic/docstring.py,sha256=maE6SmYaTCLmp3BWCOg70hkS3x3GSYa3V3P-7ZxzAhY,11691
251
298
  maxframe/dataframe/arithmetic/truediv.py,sha256=ovrp5MI3jAsdbWuynU6ZrlRL9_HVbf4r9vWjvSbHSro,1808
299
+ maxframe/dataframe/arithmetic/round.py,sha256=gtLxSOVFu8EqdC4_eO8AtABTUq1AilTKfqih28WXMBo,3886
300
+ maxframe/dataframe/arithmetic/minimum.py,sha256=SSvEPvnx_Aa9jz9N1pkp8F5PFo4W5ahT4e1IRjikE1Q,999
252
301
  maxframe/dataframe/arithmetic/exp2.py,sha256=QVzw4bJgh24tXm6q-PaNJm22CWZdAkXl19rBHXTCgRI,920
253
302
  maxframe/dataframe/arithmetic/expm1.py,sha256=UlN5R1uk2aL65vMOK_9sh_HljmgnVyUs-RdslRhl3RI,925
303
+ maxframe/dataframe/arithmetic/between.py,sha256=SX1kvNkHzplKnpzczTqYtGdB6bXsI5Zm8oOuEcokYjk,3004
254
304
  maxframe/dataframe/arithmetic/arcsin.py,sha256=1_x_XEwX6yvpd629WsgGgfiurueKqoj99b4ahXoLt18,930
255
305
  maxframe/dataframe/arithmetic/floordiv.py,sha256=ARgAdYuFMAHV-OX13OW_NpbL2OiiJ6ZFXPpHW2kSs6I,1827
256
306
  maxframe/dataframe/arithmetic/bitwise_xor.py,sha256=vgep0FL1ge1npbhLSeu65gKZJm27WUkfzMEEvn34sBs,1426
257
307
  maxframe/dataframe/arithmetic/invert.py,sha256=Dj9pzPSVtd5qxpTFQcJjO5zZTLOJdOe2BPvfmoIx2eA,985
308
+ maxframe/dataframe/arithmetic/dot.py,sha256=-K4kRmXbg5x1jb9jXiWnS57-Frkioh28NeJNoF006Ic,7115
258
309
  maxframe/dataframe/arithmetic/greater.py,sha256=5lxWrVGp-wcmm3xFbiWFsVwKGHUnpAlWLRnMvd6d-SI,1547
259
310
  maxframe/dataframe/arithmetic/log2.py,sha256=Hr5FIsBTxtzCxlqt1cwkMujwTTJ5seP6YYSELg3QyoQ,920
260
311
  maxframe/dataframe/arithmetic/less.py,sha256=NBU7UdXRF1a8IHNOgqNyaiTJRGUSc9Tyrm6-wyr5pN0,1518
@@ -271,64 +322,100 @@ maxframe/dataframe/arithmetic/radians.py,sha256=rdTJ0PUJfJFQDv1iclz2i3nAj9DNTdUJ
271
322
  maxframe/dataframe/arithmetic/sin.py,sha256=8ztWpvcfYPXLGUDQxNFFj8OTI-S2T8g_Wh1DC5Z0-XU,915
272
323
  maxframe/dataframe/arithmetic/tests/__init__.py,sha256=YsJxv7HbG4YYJmqAJZPYb8iHFRQX5JGpGn2PInDXvY8,596
273
324
  maxframe/dataframe/arithmetic/tests/test_arithmetic.py,sha256=f73zN23-WDeCflMyxJ12zqBjxeq6hErEoxOXV4S5Nbg,25396
274
- maxframe/dataframe/indexing/reset_index.py,sha256=5oxutzt7-pPAahK6EGkFkhjhoP_gFFVjJe1_i9IU9Xc,13076
275
- maxframe/dataframe/indexing/iat.py,sha256=2Oxgg16ND8Tbi5tVKu_rqmO8PYMlq1TjBc2fq9umDEs,1127
276
- maxframe/dataframe/indexing/loc.py,sha256=n51haFUtqKGxcDf-hhPWYOldabQRj1ykOEObzhzY_Z8,15050
325
+ maxframe/dataframe/indexing/reset_index.py,sha256=VRsYYcPMOSgP6zHTAZdG8D-8jWiJQS8LiyHItZmVSfY,14125
326
+ maxframe/dataframe/indexing/iat.py,sha256=jIZlKdQouqBcjGA-rExDdDsfmZw6ljnaVLBEKprzB0I,2244
327
+ maxframe/dataframe/indexing/truncate.py,sha256=6-znzdeCTd4jzYWTLxXsEAK9k5QZjTkUXyEY9XIOWCc,4255
328
+ maxframe/dataframe/indexing/loc.py,sha256=O03xFGO70me-3Q2kbm7zgwMMIJnx7O3pPMmFKrCvDeY,23935
277
329
  maxframe/dataframe/indexing/align.py,sha256=Ubnckcpe99ihPGeEuN6bORE7d_jhIEJv46b4LsgvTwU,12159
278
- maxframe/dataframe/indexing/rename.py,sha256=6AVBDCru7HX1cwuvxWNvVu5h1BaNYDeJBP6AiavpBk0,12892
279
- maxframe/dataframe/indexing/setitem.py,sha256=MNaDihQo9q6nwRaBRboDXeOoDVtvX7Sd6_Tw8UcfLAY,5095
280
- maxframe/dataframe/indexing/where.py,sha256=SkPf4-wS7FvdB0jqyVDXTC4cEeFNo_pCZGxoz-9sB_U,8652
281
- maxframe/dataframe/indexing/iloc.py,sha256=Lfc_EX1iiYtlfOcyVWPHy1xdSq8zE5GV5iVOlAVq0B8,17669
282
- maxframe/dataframe/indexing/__init__.py,sha256=y15QNLqU9xn_bl4W2F-JqlaB1AM_bdILkhNi-IYA16Y,3213
330
+ maxframe/dataframe/indexing/rename.py,sha256=GAimAcucskBIGS4GIn48pw1lWzNaCOiFAW0Rl2Cno6w,13113
331
+ maxframe/dataframe/indexing/setitem.py,sha256=D_-O8gRqkNQ4ioT7PpFUweqY2LtQkXW9Bs4vYfmP5Tc,5165
332
+ maxframe/dataframe/indexing/droplevel.py,sha256=qVsFjz6IVZL17N-euluOkSTyzRMCdNiHPuQJvysr8ag,6044
333
+ maxframe/dataframe/indexing/where.py,sha256=adlCOVeCL1yIdKHc1mu7mz6tsZIZbuM3NftsHBG8YIg,8203
334
+ maxframe/dataframe/indexing/iloc.py,sha256=EB12L6vqJvYZmkdS8ErlDxxhXnl80FWfislu0Ki-QHs,21639
335
+ maxframe/dataframe/indexing/xs.py,sha256=YpBofFJPyIotvan0PBLEZIfAY3-bIZXpgPOJF3Nfjtw,4806
336
+ maxframe/dataframe/indexing/__init__.py,sha256=dYXHkvAQcWC-VHykB2uXCld7KgACdsmcu9vip3LRchQ,4187
283
337
  maxframe/dataframe/indexing/getitem.py,sha256=6LRc68w1GML1-K93TinLLwvA7QsujJuQtRunnLOEDMQ,7837
284
338
  maxframe/dataframe/indexing/set_index.py,sha256=omR_cfnV47LFwTev-MyfyC10CmmteU5nzjwxD_PuVy0,4195
285
339
  maxframe/dataframe/indexing/at.py,sha256=m1Zl8H4Fit4IaIU5v3gtho2_0jvLog3jn9iNooAP_m0,2217
286
- maxframe/dataframe/indexing/rename_axis.py,sha256=iE783in_plJuQPLPTCBuIePX-We02Mze7r0YGLHtB04,6578
340
+ maxframe/dataframe/indexing/get_level_values.py,sha256=RpwDYloY14jTRLdhwZOswJQ7vnbCc6vSZL2yywCRkRY,2488
341
+ maxframe/dataframe/indexing/rename_axis.py,sha256=V92L8Za2j9uGeiVvhKcVW4WGVd8JOVz4r1GD0ErzGIQ,6510
287
342
  maxframe/dataframe/indexing/add_prefix_suffix.py,sha256=XtYVxHDmJmI1XsAxvdD5BgItRMUXfAJjPFJHliVWINU,2966
288
- maxframe/dataframe/indexing/insert.py,sha256=MPypGv3Hn9lpjEHQNzxcjVOEVTM1bVTDX97MjUDhZFk,3024
289
- maxframe/dataframe/indexing/sample.py,sha256=jW6Vw4eTaNGnqY-PFx9xL5VpFBjrdsNt43stqML4XlY,8278
343
+ maxframe/dataframe/indexing/take.py,sha256=5Pu2P-ejjjm9IqQOC4N4iTj3fcYOT1LkVFOaVf3A770,3512
344
+ maxframe/dataframe/indexing/reorder_levels.py,sha256=zBVjvyvnd0MkPVr85bsoA2GraivAcZrSVk7rx5nIf50,4479
345
+ maxframe/dataframe/indexing/insert.py,sha256=tueoDdDrFgB-DG5M0k8zxsZfVJxCU6-CokuJnjgj6Z4,3799
346
+ maxframe/dataframe/indexing/sample.py,sha256=FbU3tVq4HF6un1VrCdJfdQN4teWMD2EHg5fYkbg2MgY,8569
347
+ maxframe/dataframe/indexing/filter.py,sha256=46HYAYH_2zMoS-gNX58Mp9HyHTOpNRg0i2Ia3a84A6o,6057
290
348
  maxframe/dataframe/indexing/set_axis.py,sha256=EhVI8rS6yfxQYELsgto__qaTOpOV7gYZ9_vl2t03b4Q,5623
291
- maxframe/dataframe/indexing/reindex.py,sha256=Xb2dBhGynwYbrHl297BgVKbIa5P9rEDbgRz-QPrAAww,18978
349
+ maxframe/dataframe/indexing/reindex.py,sha256=a5FDBy0qHGSVkiBffAAAJHFZt-K_ic0k7UUnBhnxOCo,19349
350
+ maxframe/dataframe/indexing/swaplevel.py,sha256=T9zE7LW4HFD6zlI7d4ICttTDDx7m5T1XSfGsUDJRCrs,6520
292
351
  maxframe/dataframe/indexing/tests/__init__.py,sha256=YsJxv7HbG4YYJmqAJZPYb8iHFRQX5JGpGn2PInDXvY8,596
293
352
  maxframe/dataframe/indexing/tests/test_indexing.py,sha256=J7nmc7k7pCzAz-iolMmDk2hSjWGpY44-Vo5VcmKvRtQ,15611
294
- maxframe/learn/__init__.py,sha256=fxwG8rpVTQ3cVFqSiQcvkkXtg6xpWHON8IUjeDr-a_A,696
295
- maxframe/learn/core.py,sha256=JvCSc-WXGgxoUATPgZ5vMADKa_E0MWoNjQOsD9O7CXE,10151
296
- maxframe/learn/metrics/_classification.py,sha256=plj0QXa_ovj-ObvJTXlshJIeTLOPOylnbekyh7TKUa4,41675
353
+ maxframe/learn/__init__.py,sha256=eRSec-VF7O-4_Trhi5QT3af9Na6pyAqMXb4nOJOyqiU,807
354
+ maxframe/learn/core.py,sha256=qUnsL5uid5CjyRn0jh6OTNxMeusgQ93IQ3QidsrULMo,12002
355
+ maxframe/learn/metrics/_scorer.py,sha256=t30PFHfcrShef0ou2Fbt0eITKWyc2s9uPCEcTK56CLI,1746
356
+ maxframe/learn/metrics/_classification.py,sha256=L_pEebaGykxmBTWzyaFQT5bO5Vj0WjrsLgkju-cEn9w,46560
297
357
  maxframe/learn/metrics/_regression.py,sha256=i3sIabvpiFwIPxmOc4xzAoUiwDRKXqpwwOVKoqYbZbs,8821
298
- maxframe/learn/metrics/__init__.py,sha256=VfomRjkJa4i7lUZ2WvVG7H81rxLVZYvBUsa3IzZJ7fQ,853
358
+ maxframe/learn/metrics/__init__.py,sha256=F2fAcojgvMr7BJ2JO_NCco4TaOASi1fxsnvu30mdIrU,1006
299
359
  maxframe/learn/metrics/_check_targets.py,sha256=IUiTTlDhHxPLKE5kjFxl4s-cIMcVILzWqbmWx61jyhQ,3077
360
+ maxframe/learn/metrics/_ranking.py,sha256=vyyNl8075cuQGE4Av2r_WUQjqBf8e354l5wW-jg7tuY,18150
361
+ maxframe/learn/metrics/tests/__init__.py,sha256=YsJxv7HbG4YYJmqAJZPYb8iHFRQX5JGpGn2PInDXvY8,596
362
+ maxframe/learn/metrics/tests/test_scorer.py,sha256=c9tKdjUOWm1jvJQ8j6L6lsz5OMnGsKGlJ31kACj9nAU,851
363
+ maxframe/learn/metrics/pairwise/cosine.py,sha256=SCQsNCvTGFB4VYQghakZD_yGzLDWQpNJxIPRxPvbMMg,3471
364
+ maxframe/learn/metrics/pairwise/haversine.py,sha256=dmaSCVdWqfhcDd6g1cqZBxRawmu_YJ2Vn75orqZsIns,3343
365
+ maxframe/learn/metrics/pairwise/manhattan.py,sha256=igm4hbXzlgRar11ILcpzD1GYcmQfzB1l8qs4sZnbnF8,2482
366
+ maxframe/learn/metrics/pairwise/__init__.py,sha256=uMFN2X1okauZDTYjmPvN13nKViEghdKTvgDDDZBZ-AI,948
367
+ maxframe/learn/metrics/pairwise/core.py,sha256=hfj8dX6ImiCAojkxLp7Lse867kwjXXPmr0PSodgEP4E,2583
368
+ maxframe/learn/metrics/pairwise/pairwise_distances_topk.py,sha256=zf8VL0qP-18YYkBGjVe31hH2-mDciL7tgsBC3RCYX0w,3400
369
+ maxframe/learn/metrics/pairwise/pairwise.py,sha256=WwS8KvvzwFiI_bMMi5bXf0f7zp-JTtcJ8bR9QJ-jRKM,3750
370
+ maxframe/learn/metrics/pairwise/rbf_kernel.py,sha256=h8OzlBQAt0u9wjfhqLG66t1s8zMvjT7OsVcD2buTn1A,1468
371
+ maxframe/learn/metrics/pairwise/euclidean.py,sha256=VNzq0bmbaE_elPsBiRjs0Df9dOLq6RK88-dXZCphYiY,6134
372
+ maxframe/learn/cluster/__init__.py,sha256=3eAauHuW5DrHr-HgQrB3EHvubgf7a24TPuzMtUAhPEs,634
373
+ maxframe/learn/cluster/_kmeans.py,sha256=WXtUhAqq0DW06H-z3UpNyqneiG0i2LUR-qpp7TLkib8,27058
300
374
  maxframe/learn/datasets/samples_generator.py,sha256=rrRHoHNzzlKjSnv6Xxd4Y0QS5eLjEkNHcCKKr-pVmQg,21985
301
375
  maxframe/learn/datasets/__init__.py,sha256=d9Y7Il4Ii38KYqXQUbtRwnLflpgNPn9Y4Vq912wzbo8,720
302
- maxframe/learn/linear_model/_base.py,sha256=1prHwbYdTa0QRNp-T332tvYuDf5vdz-NJLV5LPBD1Sk,5330
303
- maxframe/learn/linear_model/_lin_reg.py,sha256=3Khyc6IhcSoHBtR9-m36jN5EObJsGTVsdEovBdV4QWA,6247
376
+ maxframe/learn/linear_model/_base.py,sha256=Akou7oRV3sEK4Vqaz0AJhTjwve_qQmNvQKQubS60ZRM,7003
377
+ maxframe/learn/linear_model/_lin_reg.py,sha256=fHWtC7_9W4XPaiu9-lE1tZyf6dXbX4aX4C9QweAt__8,6280
304
378
  maxframe/learn/linear_model/__init__.py,sha256=Wv6xpF5f7Nt3Qm410Xz-xC-940RoFna4Oun3jlsMBAA,636
305
379
  maxframe/learn/utils/multiclass.py,sha256=NDo3D6cvsoibyoODfD8R38w9pqB7ShUkVgixzOkURms,9042
306
- maxframe/learn/utils/checks.py,sha256=hBq-vLaJc8Usfpjy98hZG12ZlNQ0HG3AcUz0f7nE37s,5113
307
- maxframe/learn/utils/__init__.py,sha256=Y1lO_Ab_-HQElm5UWJzqLqh8afU1tTs4GxjKdEvx4Jw,815
308
- maxframe/learn/utils/core.py,sha256=SquqLL-4L2Vl48K7_VEiI80WEgxtS4PmqAkVi8dBEx8,1634
380
+ maxframe/learn/utils/checks.py,sha256=sERFEMRadqY3fyremCPWjl1vbof9vmcbHUqmfx7hmAc,5059
381
+ maxframe/learn/utils/__init__.py,sha256=rodKX_T8B7s4ZwqiKiqpCl2mRxupfkGAEg-PX9XOoM4,864
382
+ maxframe/learn/utils/core.py,sha256=ObLqy2db9BKzyu6qk4Jkk74OGXai2f1sQPWJ6ma9wRY,3507
309
383
  maxframe/learn/utils/shuffle.py,sha256=HbHv17gd4OdUXy8FQa-KnInRAOjKFnFdeQxZTm9AwyQ,4321
310
- maxframe/learn/utils/extmath.py,sha256=niBV86RB01ImGretjqTT2CCwfVfDpOoRpXoxdQDwREU,6489
384
+ maxframe/learn/utils/extmath.py,sha256=NaVOOXVq_YV-uGgf8Jdzl_aIZlh0MiF0JGurj7ba2zI,8319
311
385
  maxframe/learn/utils/_encode.py,sha256=9uX8gP9kVP6pOdootrNfaVBNTJz1Cbr_Jh_23nk1O4s,9704
312
386
  maxframe/learn/utils/sparsefuncs.py,sha256=KjVClmdDaPzXXprAHpsDsEBmGJdaXmmjvsPnBCxTrqQ,2744
313
- maxframe/learn/utils/validation.py,sha256=s7TpjAyDvGTe3wKOT71DCq1Iu74tVYH8JiRNJ9Cdc3I,27075
314
- maxframe/learn/contrib/models.py,sha256=l6IAxAYa2EK4BBnCqIfoNaMjJ_91Wg5nptVRPCHsPz0,3519
387
+ maxframe/learn/utils/odpsio.py,sha256=8EaP1KKeH0ytPcP3KOWoHE5XxMgJeS16wWL-DumOLMk,9771
388
+ maxframe/learn/utils/validation.py,sha256=H0kPa0q0KfsP5r0qb2wnpc0l5ziQDsIQSKFMBROrROg,27075
389
+ maxframe/learn/contrib/models.py,sha256=dqZ9DbKiIToRmUzwWky2UUtuSki1KWUC0lqscBdTd1U,3573
315
390
  maxframe/learn/contrib/__init__.py,sha256=7ayYHlGHqy5fkl89n3ceoAR1ZHi57sb9FF85PS9Hwpg,676
316
391
  maxframe/learn/contrib/utils.py,sha256=Mqm5peCV45D2Q6qF4wZS57GdD2aGlVe03YFBqJ4fAIY,3383
317
392
  maxframe/learn/contrib/llm/multi_modal.py,sha256=C6Vq-U8JRUSZMUDsrWt9m1GBPyp9f9V8ZaTzBNhsA9U,5406
318
393
  maxframe/learn/contrib/llm/__init__.py,sha256=MBEWoYEQtBpZL070GOh721OYMvH3D2Y5BzyB4_DXZjY,649
319
- maxframe/learn/contrib/llm/core.py,sha256=Z4s1ZssXCf5ebl-uDxGGlJ3KmXsbAm2wVZvikJZd6BM,2723
320
- maxframe/learn/contrib/llm/text.py,sha256=Imsg_7cw0XOis4dmTuZTSw1iP0RIRta7rKVjx6TW35Y,9344
321
- maxframe/learn/contrib/llm/models/__init__.py,sha256=I_l0NIpKILLkpPj_3xOv176QvHTeGstPq4xi688Z40c,661
322
- maxframe/learn/contrib/llm/models/dashscope.py,sha256=X8FLgZ73U9UW_35wgFfk_2p11sCsDU41rLcy8eo6B2Q,3422
323
- maxframe/learn/contrib/llm/models/managed.py,sha256=QeJ3J65TepG4CKllvV2kEBSiVJPBm30yhnfp_7QuM0o,1581
394
+ maxframe/learn/contrib/llm/core.py,sha256=ZIpqvHvmyldE1NUqkpQBdHwUslwMaiTrakNupphyD4E,3076
395
+ maxframe/learn/contrib/llm/text.py,sha256=IOoiS4TXYzA9DJck6ksCnYv5G6A1U-KJnbvgj1zFkC8,20479
396
+ maxframe/learn/contrib/llm/deploy/config.py,sha256=Ld5xjea1thtmkDQ57gFYdT3XM9BVB-goUHnTGLf3E_c,8661
397
+ maxframe/learn/contrib/llm/deploy/framework.py,sha256=B0TWwdB4wPhkDL2UpmrdKf_L6IhgNAKj0MAEl_PRv5g,1146
398
+ maxframe/learn/contrib/llm/deploy/__init__.py,sha256=YsJxv7HbG4YYJmqAJZPYb8iHFRQX5JGpGn2PInDXvY8,596
399
+ maxframe/learn/contrib/llm/deploy/core.py,sha256=bXYGG6WEeD_rFBAata9UQQZUD3B1TVy0NK92hqMQQAc,8520
400
+ maxframe/learn/contrib/llm/deploy/loader.py,sha256=l8mRRPG-STqB3sDfOSjIBYndo5CkvLkp5TJ-126AkyU,12716
401
+ maxframe/learn/contrib/llm/deploy/tests/__init__.py,sha256=YsJxv7HbG4YYJmqAJZPYb8iHFRQX5JGpGn2PInDXvY8,596
402
+ maxframe/learn/contrib/llm/deploy/tests/test_register_models.py,sha256=MZUNDyb6R79aVCz6zvxAPvMvaUyTmVRFtEGR256lwBo,11718
403
+ maxframe/learn/contrib/llm/tests/test_openai.py,sha256=VAllxIc1nvjqBUB2wdxiKyOSttDAmkIin-ku3eiQmxI,6566
404
+ maxframe/learn/contrib/llm/tests/test_text_gen.py,sha256=L6zDCizegH5Om2t1QCpEDyJlX2D2nrSROsCJhYc4_0k,5506
405
+ maxframe/learn/contrib/llm/tests/test_core.py,sha256=R1Rl7yuengNj5zzBVNtNh5x4M6YKaAKM_QHMm9KJgDI,1210
406
+ maxframe/learn/contrib/llm/tests/__init__.py,sha256=YsJxv7HbG4YYJmqAJZPYb8iHFRQX5JGpGn2PInDXvY8,596
407
+ maxframe/learn/contrib/llm/models/__init__.py,sha256=aq34PFerYXERbREiFeLkM-F1I9pbGRUifl63ZMsS6l4,705
408
+ maxframe/learn/contrib/llm/models/dashscope.py,sha256=IQ0_-hvtQLCLxCZG6ZHq56NzXX3e50uepU_K2X0yyFM,3650
409
+ maxframe/learn/contrib/llm/models/openai.py,sha256=0bhu27sRQEV-yoUv2R4mjgGyi4O5hh2LHNDkZmQLqpg,2263
410
+ maxframe/learn/contrib/llm/models/managed.py,sha256=8gDSN-ZPCn63kJKNMHoTOqjx8P1rM4Rb_Uy8Y97XcGY,3615
324
411
  maxframe/learn/contrib/xgboost/callback.py,sha256=k66jfODZLxtwKQOfHYiV9N0bf_Fm8OSUAp2YO_oGZ5A,2690
325
- maxframe/learn/contrib/xgboost/classifier.py,sha256=qUyC8E_HrARlRiq-2hp3G1GLkxIg2B0e6WEo5fmGnhQ,4011
412
+ maxframe/learn/contrib/xgboost/classifier.py,sha256=ZfDfb6QaRLGpXPIfffYUljw-vYeaWR27JT0zq8r7IGw,4084
326
413
  maxframe/learn/contrib/xgboost/dmatrix.py,sha256=SYrcXqpr91PG1ZNMFvCBE5Y_NO8sztS0-O3CBWhVEhY,5206
327
- maxframe/learn/contrib/xgboost/predict.py,sha256=_KjOzqKL-mkH1g_1QDAq0CgrKzKlyJ9YwFMp3XitZnI,4186
414
+ maxframe/learn/contrib/xgboost/predict.py,sha256=glLGpaC3GEtYWaA-KOZLy7HLx3Rob2B5IpONP-CSDtk,4321
328
415
  maxframe/learn/contrib/xgboost/__init__.py,sha256=HsVMBBNXBQs2GaHMjuJrMdJRhpTDxQ37Amjc1GH7ESw,1051
329
- maxframe/learn/contrib/xgboost/core.py,sha256=eW_jrZtj4u1D6H1hZIgUdNOma7zCzbwuyzICbN3kG0s,12218
330
- maxframe/learn/contrib/xgboost/train.py,sha256=9Gs6aHqpLoIVAgpVvxActabHEv2Mc563_scw6IQ8Zg4,5749
331
- maxframe/learn/contrib/xgboost/regressor.py,sha256=cVMd44FP_x8bvRKcUOBUGd-gMnyPvK-guBhVUH2Y1Vo,2886
416
+ maxframe/learn/contrib/xgboost/core.py,sha256=3Mz11Xx4QYcJsSnaatwQdpSufIrG6P1Y2wSsS7Kc0wY,15961
417
+ maxframe/learn/contrib/xgboost/train.py,sha256=GUQzkwg34l921qNOCN0qbOzJsEBxzbkR8tclVyH3Oes,6010
418
+ maxframe/learn/contrib/xgboost/regressor.py,sha256=iVCZtNhTQ7zBWTzKflXbquhtEat2UL4Y_kpQA61oS5U,3070
332
419
  maxframe/learn/contrib/xgboost/tests/test_callback.py,sha256=W4NZDAIrTZ6aJliPWXlsYgoAMOFpHafPERDGz-hPtfY,1542
333
420
  maxframe/learn/contrib/xgboost/tests/test_core.py,sha256=VrWhBeUCXzofVr-QAbtmK4wVeQqV1Erd1Rwj32lNceQ,1406
334
421
  maxframe/learn/contrib/xgboost/tests/__init__.py,sha256=YsJxv7HbG4YYJmqAJZPYb8iHFRQX5JGpGn2PInDXvY8,596
@@ -355,23 +442,23 @@ maxframe/learn/preprocessing/__init__.py,sha256=ilbU8tlFxhs_5gtD119mnyuuAu-ZIJr_
355
442
  maxframe/learn/preprocessing/_label/_label_encoder.py,sha256=9_bK6nzKkH7IvtQtXtqQmko5UhHWWikNK_x71Bgd0Io,5498
356
443
  maxframe/learn/preprocessing/_label/__init__.py,sha256=_G7GALgaKvimDYN2coWX0LuAMxe9YrLC4-xQnepyOkY,716
357
444
  maxframe/learn/preprocessing/_label/_label_binarizer.py,sha256=2e1_tyLHgpIywMki8xtErtJTYWnNrXbE7mtCuIzfiWI,19389
358
- maxframe/learn/preprocessing/_data/standard_scaler.py,sha256=vgpv6-m3iRji2Ui6pRjPIzRAwujzfr4owFlLzvc5f0g,18238
445
+ maxframe/learn/preprocessing/_data/standard_scaler.py,sha256=3pqnuB-fS1Hz_rzBQALOMaVT0Ys62xbfe9rH3LptUTg,18628
359
446
  maxframe/learn/preprocessing/_data/normalize.py,sha256=U0IodvGbGviSPrWVsXFwXRUk9udiDRcBOUkiZYJjnKo,4436
360
447
  maxframe/learn/preprocessing/_data/__init__.py,sha256=E1IFflOcEfqa_pMinbygf26HDTrLpAxrvg9qIslVXnA,736
361
- maxframe/learn/preprocessing/_data/min_max_scaler.py,sha256=bMbJaJw0LB1pAzL4Ftj_z4AFShHS9F4jntu7gjjXiuc,12636
448
+ maxframe/learn/preprocessing/_data/min_max_scaler.py,sha256=qKrbW2zqYaFo6AIKr7aKSpUl157xWvlawlYvwwBRDn0,12974
362
449
  maxframe/learn/preprocessing/_data/utils.py,sha256=dzAM2UmZSHpigf1W2XMg2t-HAsZksNTMFIRW6f5sxYs,2871
363
450
  maxframe/learn/model_selection/__init__.py,sha256=hr1hzAL5c-1FA8kSocJbzfaPWCdFWbDt3JfoinPCNI8,641
364
451
  maxframe/learn/model_selection/_split.py,sha256=p_hmHKEg46_-jpEjvaAGdFmE71leiU7Bx50KPbaP-Kk,16136
365
452
  maxframe/learn/model_selection/tests/test_split.py,sha256=fbA0pYK1sB1ajDFaNXC9aKxZLC5JbmC4JzJaV8_tbO0,4983
366
453
  maxframe/learn/model_selection/tests/__init__.py,sha256=YsJxv7HbG4YYJmqAJZPYb8iHFRQX5JGpGn2PInDXvY8,596
367
- maxframe/core/accessor.py,sha256=htuml0N9rF3VAtTitTAqIIVEEb5DZa4D_bcwfQz_PHQ,1482
454
+ maxframe/core/accessor.py,sha256=ZSRHozzfcevWgOgQQLnaL0zvEpDE-IxOmRXvX3sqXRc,1543
368
455
  maxframe/core/__init__.py,sha256=LAezPKNkPMrREcttR3e9_xkP37tm2SQxT1AHYYRYuKk,1537
369
- maxframe/core/mode.py,sha256=NABIkrhsArHlHH2ozusVdEet4lryS95ltUZnn0IBZNc,3011
456
+ maxframe/core/mode.py,sha256=kR5XOR47DgtP_UlMOq_J8K7GbODlhkf_QKny79Ajl3M,3122
370
457
  maxframe/core/context.py,sha256=eYHFQ-chSQs3M-D7jOnVgrqmD8hm2ynUFdjHAvDVkss,2556
371
- maxframe/core/base.py,sha256=qlIzixwSL-MtAgFdta8j7wydD4KCaehcbH5P0T7aG6M,4535
372
- maxframe/core/entity/tileables.py,sha256=cXBEJdP8NB8RZjjEpJ2bNAJ3X21d_CfS1R3vRqhiqwc,11395
458
+ maxframe/core/base.py,sha256=4UVLMlj-ISeMTopwjhUzr1O2s-VPbXleXTP3L0UVxE8,4588
459
+ maxframe/core/entity/tileables.py,sha256=_ylsAG2tpMPYc9NLwdq4XW_FHKp4dTxLNp9i2NDenxY,11539
373
460
  maxframe/core/entity/__init__.py,sha256=mKIcm8ffxA4LUwTzwniBPdOSMNIag0XVYPav5J89Kz0,1096
374
- maxframe/core/entity/core.py,sha256=Itv6FPRZhcnaupL8H7yVHT4llyRzFEf3oo9bSQdAF5U,3846
461
+ maxframe/core/entity/core.py,sha256=OnLODBF4Q9lVWrGPJqT0RlDdW8ueuF21f65hLIhzfHU,3951
375
462
  maxframe/core/entity/utils.py,sha256=9tj2tU9c1hZEjw-0Eui3gyzR6E4I8s8MR4jF7rGsmBo,1445
376
463
  maxframe/core/entity/executable.py,sha256=-MpsiRTSybMrIUw8ifmYn1Zn8FwClKKvZLGhi1a7Fmk,10956
377
464
  maxframe/core/entity/output_types.py,sha256=OHRKfvOWMpABBR46E3MBobETlk376mgaNiq2wLpOoA4,2753
@@ -379,8 +466,8 @@ maxframe/core/entity/objects.py,sha256=7oBbZ3mYeEgn3TJFCAdQffPChRk8DK47Yj-wvqyYY
379
466
  maxframe/core/entity/tests/__init__.py,sha256=YsJxv7HbG4YYJmqAJZPYb8iHFRQX5JGpGn2PInDXvY8,596
380
467
  maxframe/core/entity/tests/test_objects.py,sha256=KiUM7EKwN48OvC8jaizpFJ3TVLZWIolQZIgzunpIuMA,1423
381
468
  maxframe/core/graph/__init__.py,sha256=1jzaIyQZosmCj7Hw70fNOLcmuaLq6DbKSqi1YSF3aEA,873
382
- maxframe/core/graph/core.cpython-39-darwin.so,sha256=vWhWJkjf_1f-_ffXsDdB5oux5NeXREHATEMcRp9P90M,685616
383
- maxframe/core/graph/entity.py,sha256=OKMyU4awrjxGpw6RreXrSpsNXyY1l0A4k7Vpvco63WQ,5195
469
+ maxframe/core/graph/core.cpython-39-darwin.so,sha256=uyRWuXQB1kXUDsPC4LAjCzw7Yv6YnOO4EB1il3r-JJk,685616
470
+ maxframe/core/graph/entity.py,sha256=i_ZVjy6sLG2s5f_WwCbvnp2uvJ92HitJJRLoR0tbuxc,5418
384
471
  maxframe/core/graph/core.pyx,sha256=2P9KckxokoUwSOWIeyxB6VJOjdcBdi__KorxLG5YUQU,16104
385
472
  maxframe/core/graph/tests/__init__.py,sha256=YsJxv7HbG4YYJmqAJZPYb8iHFRQX5JGpGn2PInDXvY8,596
386
473
  maxframe/core/graph/tests/test_graph.py,sha256=bLHOAiPQ_eMfnlpRgY1VRQnSvjoiCe1NamILiQcneFc,7462
@@ -392,48 +479,49 @@ maxframe/core/tests/__init__.py,sha256=YsJxv7HbG4YYJmqAJZPYb8iHFRQX5JGpGn2PInDXv
392
479
  maxframe/core/tests/test_mode.py,sha256=DUEuDy4HuKMxB-D-8qg10Uh4zTHJZqLOcpwRFWSx7lA,2432
393
480
  maxframe/core/operator/fetch.py,sha256=Ie2rkI-FHxBad_y23b85WJm5E5MAvKiQGKOS9Jd3SEM,1371
394
481
  maxframe/core/operator/__init__.py,sha256=lP5MnQc5nqZs6Ywg4Q2CoMkRP3NsgO6fqamlRDPciMI,1089
395
- maxframe/core/operator/core.py,sha256=D2e8RU75-MRk7-2UAlM4Tx69Bu7sFMHEDHb-_QjACYU,10022
482
+ maxframe/core/operator/core.py,sha256=ky7rPoHInvasltqNiQjIT-BIv-1FLppiKx2i-bLb_G8,10246
396
483
  maxframe/core/operator/shuffle.py,sha256=7yjkAq2D0ByU7Uw5o-WyW9rCbCUoxnH9h2r0uO2qk9k,1801
397
- maxframe/core/operator/utils.py,sha256=QeeLO8013Od4LkvlI2-VajkBKqqD0VQiYztojqUkw5M,1706
484
+ maxframe/core/operator/utils.py,sha256=W3b1JQq4BA-uXQvU87PSSsGTgoPm4g163H36PazpC7I,1975
398
485
  maxframe/core/operator/objects.py,sha256=ieJW2EsXm6hCyETbzYPE5ZKtkaMsZRWOEDvL3irenSI,1395
399
- maxframe/core/operator/base.py,sha256=USFcJ30H8cPxVd3cgsVA06w4Qv-vKkZLlBjIsVHtRUs,16156
486
+ maxframe/core/operator/base.py,sha256=odW0iipL2toMwKgck4lO_n7oikW14gUzx9sdStIqu6Y,16460
400
487
  maxframe/core/operator/tests/test_core.py,sha256=wBUmt-if0yOTPX22bvMYOVH0ltxj7Jac3mAyOG2Oslk,1691
401
488
  maxframe/core/operator/tests/__init__.py,sha256=YsJxv7HbG4YYJmqAJZPYb8iHFRQX5JGpGn2PInDXvY8,596
402
- maxframe/config/config.py,sha256=p4gtE8-73fPf2yPtvMf_1UUngofH6qYlnwEKctGqGj0,17460
403
- maxframe/config/validators.py,sha256=m1DMvljF_2RWuB6u230AIBKSI_Ww7oqZOR_UlAg54cM,2616
489
+ maxframe/config/config.py,sha256=CmtPI8-pV7ndPSF5kWj1c55fgqhNyWqZpNf1PGhZ0Zw,19130
490
+ maxframe/config/validators.py,sha256=JmETg86Yiff-0AQJNZplCIyraLf8Fnqwv46vgH-pf-8,3988
404
491
  maxframe/config/__init__.py,sha256=wxR1LzWT15vQDv12MFazycX2fwdMLGZLrqcpuEFqFck,656
405
492
  maxframe/config/tests/__init__.py,sha256=YsJxv7HbG4YYJmqAJZPYb8iHFRQX5JGpGn2PInDXvY8,596
406
- maxframe/config/tests/test_validators.py,sha256=hf1ibJpBA0mVuc-ne-F1s6GLrYF3xQ1GFqtOELXYt48,1240
493
+ maxframe/config/tests/test_validators.py,sha256=UxhT-OlSrfJeylwmwVqnm5Q5lNCqvKfWNjFa2iwCRQo,1569
407
494
  maxframe/config/tests/test_config.py,sha256=DfNGfb_nhTBAvg_jqBPBVSG4z0PzjXlwmur70TUPMCI,3219
408
- maxframe/serialization/exception.py,sha256=1Vv2o4LYaTPzuTGx_1f4c4qGGLChqUEbmvkVfC72vcQ,2993
495
+ maxframe/serialization/exception.py,sha256=26zZ5uBcJ1OYbrHE0BzkXabVRLu6KHRKp50Hg7FDED8,2962
409
496
  maxframe/serialization/core.pxd,sha256=1fF5QiN1W45ZdBLdyo4DLBheBhqOmz43Ph2z7dVYoGU,1530
410
- maxframe/serialization/pandas.py,sha256=PJf-ceGUpXBXQluRlQ6RDmSCPKQT8mf23mQzI5FRMRA,8633
497
+ maxframe/serialization/pandas.py,sha256=frDddaM0NQRVdM3D83TPFLwGptcXspurwonnGQpIprU,10017
411
498
  maxframe/serialization/core.pyi,sha256=n5VtRZOVHU0jiDNpKVM6CtqJYWFD0kjPMgpzjO9D08k,2261
412
- maxframe/serialization/arrow.py,sha256=A1gDQ7BmsLk_57qPd34e5SIMSqbuMZrfKsixLtHrpeg,3418
413
- maxframe/serialization/__init__.py,sha256=HLNqwNIamJgsiCv8yuDNrtJLY2_SZPyW3xCWrci_rJ0,998
499
+ maxframe/serialization/arrow.py,sha256=Gzmt5LgfGncld5tnQazgbcT7Yh1XaicZVtahUOc7eiE,4528
500
+ maxframe/serialization/__init__.py,sha256=sIPAEa7Uc9iSCArFMwUyC8u0iD3GRzl3FFrbV08-B9Y,1047
414
501
  maxframe/serialization/maxframe_objects.py,sha256=Ha2pFpBivutH_YES1EQN-zpWu3TbKtotJHiuc8Cs8S8,1365
415
- maxframe/serialization/numpy.py,sha256=IbNaCDceyG7Bl3d_rT2NRnB0OaaWo82h1tycjiF2YZ8,3540
416
- maxframe/serialization/core.cpython-39-darwin.so,sha256=TVVBRrzP4XBNtb_6wFvJZgI8pgGR7muiAXYq3Ind7V8,1249344
502
+ maxframe/serialization/numpy.py,sha256=eIAKj4DocCptBCHL6qmWCR3_rhIZ-rOxPCMHrnzDvS0,3895
503
+ maxframe/serialization/core.cpython-39-darwin.so,sha256=J6gwQHtlEJQrFij2w1D_lObR99mqhtfGQC5R-38GrPQ,1269840
417
504
  maxframe/serialization/scipy.py,sha256=W4P_r-4tAGGfVAFhwqcaHBxdW-dpZ6rIMLuppQzMXjo,2427
418
- maxframe/serialization/core.pyx,sha256=dMVZPqMYvAGMklImTIxQBZfG9pwkmJxzAo4G140RmrY,38585
419
- maxframe/serialization/tests/test_serial.py,sha256=UBdBo41pAGSmApOYbMue5DZ-dliZ8FkmUctT8jy0QWo,14031
505
+ maxframe/serialization/core.pyx,sha256=6AunkzSFgwpbGaOql2Gk2uxoVMiWN48EDCBbCqpUc_k,39700
506
+ maxframe/serialization/blob.py,sha256=GpIZVSeAhIRiLUgBRkq_VSYLsyyH25BKW-WKmuTbYso,1138
507
+ maxframe/serialization/tests/test_serial.py,sha256=LmOjYS7lYwZyrTyvDWejcT00koUQhtniVHrvOVDiG9I,14875
420
508
  maxframe/serialization/tests/__init__.py,sha256=YsJxv7HbG4YYJmqAJZPYb8iHFRQX5JGpGn2PInDXvY8,596
421
509
  maxframe/serialization/serializables/field.py,sha256=MRZHAqtDwt8iutTV8lH4bWMH4AjE1ilFSbUpj4ZLliM,16013
422
510
  maxframe/serialization/serializables/__init__.py,sha256=nPvrC735pSrvV2kKSb7SQ_GMlVEfZiQb0svsla1_mpk,1351
423
- maxframe/serialization/serializables/core.py,sha256=6oyargx9bCUG0R7cSsfFBDKhc8BezAopEDlqZQQYUS0,16999
511
+ maxframe/serialization/serializables/core.py,sha256=MuzIg7tzuqBNETy7rNQhInSxy-d6JTDsRPSr_FMmXRQ,17029
424
512
  maxframe/serialization/serializables/field_type.py,sha256=6dVvesMhxWc6gtkcp_uDm4GasLxhs9HnR1vWRQtub8I,14933
425
513
  maxframe/serialization/serializables/tests/test_field_type.py,sha256=KwsN4yyyS2inFDBbb882lLkrmRX09TT9A0yWKY-NUmA,4333
426
514
  maxframe/serialization/serializables/tests/__init__.py,sha256=YsJxv7HbG4YYJmqAJZPYb8iHFRQX5JGpGn2PInDXvY8,596
427
515
  maxframe/serialization/serializables/tests/test_serializable.py,sha256=RwbUv0VDJdsyMuYaCmueQ0brFtZuIC84gn6xYw_YBMQ,10694
428
516
  maxframe/io/__init__.py,sha256=YsJxv7HbG4YYJmqAJZPYb8iHFRQX5JGpGn2PInDXvY8,596
429
- maxframe/io/odpsio/tableio.py,sha256=2agl5Sbq-WCq7LPIaV17srZYSGUaQppjTq8FOuTBdhM,24831
517
+ maxframe/io/odpsio/tableio.py,sha256=J4ft51Jb4cuWESsdGdZia2zO5U09W1bdjkTAhXgO7Vo,24987
430
518
  maxframe/io/odpsio/arrow.py,sha256=Wf4XReyY50O-jxnFBpdta1zS-ABGh7JFoP78A1zS_h4,6644
431
519
  maxframe/io/odpsio/__init__.py,sha256=P4CtAyeOmu5u1J8_tNPrSSY5jB3hBciC5c8N8PUmKsk,917
432
520
  maxframe/io/odpsio/volumeio.py,sha256=9HcDvl87qkVM0cd_mSINBGGkLifp7NALK_M_M0RIxkc,3381
433
- maxframe/io/odpsio/schema.py,sha256=20PjFh6D3D84dLNKkMSqSXO_oHfvdPhPPnGUTBAUh0o,16817
521
+ maxframe/io/odpsio/schema.py,sha256=XNRecSqu1cdTkPYvjY0Bu31k-a2vjFicePZjRxsmlv8,17119
434
522
  maxframe/io/odpsio/tests/test_tableio.py,sha256=m9ACNirwoPbxZP3pLtIYyXYCkUEyldCQ51hrGzkZXLc,7118
435
523
  maxframe/io/odpsio/tests/__init__.py,sha256=YsJxv7HbG4YYJmqAJZPYb8iHFRQX5JGpGn2PInDXvY8,596
436
- maxframe/io/odpsio/tests/test_schema.py,sha256=Y-Qc4N0z1dic1FT_sppxyQAnGXkVWzzikmlZ3c7judc,18486
524
+ maxframe/io/odpsio/tests/test_schema.py,sha256=OUQWFHtRBg5ZkyPpFaj0HdQ_u5k_JCb6p1rZd_inGyU,22921
437
525
  maxframe/io/odpsio/tests/test_arrow.py,sha256=OTlIobm_TprI-LCdq-z9OT65H1L9Zt8bfImcHYg-MzE,4450
438
526
  maxframe/io/odpsio/tests/test_volumeio.py,sha256=amai2vlGvtFOCOVou8ZQ87wfoZuQfIBCSepw_9w4qXc,2339
439
527
  maxframe/io/objects/__init__.py,sha256=MPpsLluYCLU7chOY9pauznYk_PHJqVbKns6sjdGFLFk,754
@@ -441,60 +529,65 @@ maxframe/io/objects/core.py,sha256=bWlnncGLSa9f3_YIDhEA-7XTMjpSBX0oXeAhvsqTgUw,5
441
529
  maxframe/io/objects/tensor.py,sha256=GC19xpremk8awz530OcAplGpyrnWf5HoyapGfZdR0hw,4654
442
530
  maxframe/io/objects/tests/test_object_io.py,sha256=a5kFyYMveAoMaPn-QbfUzgIJgMgW2gZR_DEEFsT1fAk,2591
443
531
  maxframe/io/objects/tests/__init__.py,sha256=YsJxv7HbG4YYJmqAJZPYb8iHFRQX5JGpGn2PInDXvY8,596
444
- maxframe/tests/test_utils.py,sha256=NovUVZmLnh9AaZLC9M9MQ1z8r9KXkajCK1E8dITrFUE,18539
532
+ maxframe/tests/test_utils.py,sha256=r3070JSjF4fjZ6xg1HQBwbTIte3P87rKuwy_NCUgyus,20544
445
533
  maxframe/tests/test_protocol.py,sha256=bKfuDfN0B0DatPpDs2na6t9CNoh0N6UdhZpchjnln4o,6121
446
534
  maxframe/tests/__init__.py,sha256=YsJxv7HbG4YYJmqAJZPYb8iHFRQX5JGpGn2PInDXvY8,596
447
- maxframe/tests/utils.py,sha256=fpgi5Kui-TaHVzLgppXCR4IMvEMjl131Uyf3ShThe2Q,7003
535
+ maxframe/tests/test_udf.py,sha256=pHeipwq-Z7tDPN3YK699i8IA9OQUAu5vtKuqOqeQGh0,1962
536
+ maxframe/tests/utils.py,sha256=BYrBJhJWNnoXy7n-mRVk2E-FtOJofDuw5aQvPpLv91I,6923
448
537
  maxframe/codegen/__init__.py,sha256=xHY0SUB8nLeqnwaw42RBw08AWrp86R_ubsQzkwlG8-I,865
449
- maxframe/codegen/core.py,sha256=fenVW3Ft0WCG3rjGaBqtF9IW4PqNHxWA1IbgVy-swLY,20215
538
+ maxframe/codegen/core.py,sha256=iO2XnTStGWfsUZF-qdjdMY6WTrc8MhCtL1KxtrAr2xs,20255
450
539
  maxframe/codegen/spe/remote.py,sha256=W3EwT5uwsbf6nRtCdanAD4RTDdbI8Of-POCC9UD23eQ,1254
451
540
  maxframe/codegen/spe/__init__.py,sha256=okS1N8ei8xvlLLNVToDiMNWcOuqSEXr4xoxAg4FqBls,688
452
- maxframe/codegen/spe/core.py,sha256=l2QvEVp_VzFNB-rQPupxLsgaLY2XkF2CoCoWSAo1vZc,10545
453
- maxframe/codegen/spe/utils.py,sha256=deUrkoMo6IejKyKkr90mK7Ky_auX6porpF_heOm40pA,2011
541
+ maxframe/codegen/spe/core.py,sha256=MRwZk9MrPEaqsQZLy7WjkGUqltg2NZ4Smxpp1Kwbi9g,10547
542
+ maxframe/codegen/spe/utils.py,sha256=Ne3a3yrNY-M9bfEGvqqtOmaQvA-YkTwj5lrUfDckzEc,2098
454
543
  maxframe/codegen/spe/objects.py,sha256=6D0qIQdOlk4RnB8RIA0Z8w65tn4rLBj8ETykccL8SPY,1043
455
544
  maxframe/codegen/spe/dataframe/fetch.py,sha256=QERcNnGxiLSgdhAYpZeecP_1t9dhsIgFpQXK24tmlDU,1051
456
- maxframe/codegen/spe/dataframe/arithmetic.py,sha256=4wDKlMw-rXWQOZVEflLlXwVANzpSuQteepjOKzhQ3Lk,3403
457
- maxframe/codegen/spe/dataframe/misc.py,sha256=4sExeLfiGjxwSu5DXlIJChea3KmI5HFI_xYUF1WUGpU,11247
545
+ maxframe/codegen/spe/dataframe/arithmetic.py,sha256=uo7790kzw97rzhlavpt-k2OrIlRcTMftNKFVjR6FN88,3543
546
+ maxframe/codegen/spe/dataframe/misc.py,sha256=cr0qH5Y8x-RtSJa5mMu0XK60C_ZS8B5dbPL2EZ_SWdo,10671
458
547
  maxframe/codegen/spe/dataframe/missing.py,sha256=_e8R5nYRwCg8Oawcxq7rPcmuSNlfcFf0dcQVR7ldkYU,2812
459
- maxframe/codegen/spe/dataframe/merge.py,sha256=mozCd86LCfMaMFxTt3dLdFdOXbBE1gDMY2iw63zKpFU,2761
548
+ maxframe/codegen/spe/dataframe/merge.py,sha256=LSYgHu2JrcVy-BZyG0GYDPKGlGtXw_y4SYGncywhwPU,4104
460
549
  maxframe/codegen/spe/dataframe/window.py,sha256=IidMfs1m3TjHdQ0fgCmfTfcgufYZ9PLrEi3yAPQlNX0,2947
461
- maxframe/codegen/spe/dataframe/reduction.py,sha256=TFlRyMisVcT73oRgd574x9JVl32eoYNeOGN1NA7m1lQ,5254
462
- maxframe/codegen/spe/dataframe/sort.py,sha256=ZMvuSPg0f53IhqlKogSur1RRj8XHYTCNi7lRbjRNFvE,2781
463
- maxframe/codegen/spe/dataframe/__init__.py,sha256=2Q86asDgb2oo1kKpEi8H-1eyqUBB1Ddnmn8cpvmvo4Y,896
550
+ maxframe/codegen/spe/dataframe/reduction.py,sha256=DHyGG48SCBv0iG6uRjDfAYPjIiDLEbUKg6Ybrtldgl4,6146
551
+ maxframe/codegen/spe/dataframe/sort.py,sha256=xKe5ZLN4BX8F1rcHco7q56pJkIo-I0Z_q9cdLxjnCCI,3692
552
+ maxframe/codegen/spe/dataframe/reshape.py,sha256=GuGcp6L_gQnfoYVdG1-apUWpWnsNsh9hiI1b2NtFFpk,1560
553
+ maxframe/codegen/spe/dataframe/__init__.py,sha256=ZOlG3XUC8kzZD9FMqsStRsBd9Y13B7pQJGSH1O9-agA,909
464
554
  maxframe/codegen/spe/dataframe/datasource.py,sha256=altNY_hoxSxzQ8Z0QYLU7Utn_iOdvbWnpQMjecuw-DQ,6759
465
555
  maxframe/codegen/spe/dataframe/extensions.py,sha256=gj0i65bUS3LCTVWXDZABgZRy4jmw6wXTyZqeHy56Oz4,2779
466
556
  maxframe/codegen/spe/dataframe/statistics.py,sha256=WBMNkQqx84IyHCzKqlD80-CUgR6i3AcSpPU4Y7AwbY4,1787
467
- maxframe/codegen/spe/dataframe/tseries.py,sha256=2XW9HH2H5YlcvZgKhixYoEr8z076M48vjQsaWwLUKt0,1816
557
+ maxframe/codegen/spe/dataframe/tseries.py,sha256=TikH2jy3b4lva3n7d7nQ7OOJBNEpX8vNep6c9CvfMIo,2117
468
558
  maxframe/codegen/spe/dataframe/udf.py,sha256=q7b6kEvHMkLd3-RuOhpX5AdQtDYIMOO2j1cDjXEULBs,2127
469
- maxframe/codegen/spe/dataframe/indexing.py,sha256=Sz6gpO37jKxfEid0jbsC8XBEup0M-NvOf4GpuJGpvqU,9544
559
+ maxframe/codegen/spe/dataframe/indexing.py,sha256=-LVJM1ic9RXKB_xBhy22PF2Y-xhCfG8PYBm1vS71s_s,13050
470
560
  maxframe/codegen/spe/dataframe/value_counts.py,sha256=XyyJRcrT_5DshId-st_Bh2qnNrto8m6tqiB6-WFgn8c,1354
471
- maxframe/codegen/spe/dataframe/groupby.py,sha256=dJgvT5-cACDktukwlmDBYZsOzdi2upwwFHngSzXQwz4,9525
561
+ maxframe/codegen/spe/dataframe/groupby.py,sha256=Ms3gXg1JLF5EzkdR3Xov3cs7V1XE3Pm6NEiYVyeopIs,13503
472
562
  maxframe/codegen/spe/dataframe/datastore.py,sha256=npfs_au_az0p6lyCAm4AmxZYFMZbHHYebXfbvdJ77TQ,8111
473
- maxframe/codegen/spe/dataframe/accessors/dict_.py,sha256=foy0qrCl4zgbww6qeNR9HVsfuYKxmwqW4p0vB4j5n_8,7411
563
+ maxframe/codegen/spe/dataframe/accessors/struct_.py,sha256=Oh66AnmzroJ1o4x8BhOPCbI1j1pJBvArMruNu43vUTo,1000
564
+ maxframe/codegen/spe/dataframe/accessors/dict_.py,sha256=wNWN5s15jJbxFN1mzLBE-lNqB5MQQjjYXe4LgFnFGMI,2621
474
565
  maxframe/codegen/spe/dataframe/accessors/__init__.py,sha256=JdWwxGimtqrbrN8USfnv4PeRpF6M5lHrUOyKfRikvoI,630
475
- maxframe/codegen/spe/dataframe/accessors/list_.py,sha256=K713_cmpE5fQsQi8mdjMjYpWlecbnI9rDH5y2fVyomw,3103
476
- maxframe/codegen/spe/dataframe/accessors/base.py,sha256=I9-mTTTSNuGA-QB4GEtvV8X9DNgyc7HbVQSe_S-mu7w,2179
566
+ maxframe/codegen/spe/dataframe/accessors/list_.py,sha256=AqyHLu63gN8l7EV35pLu9YT7zmF6FFiyNVMxGXWK44w,1390
567
+ maxframe/codegen/spe/dataframe/accessors/base.py,sha256=ZcFNhFBmPCWmUlMhGSdDKgDrVh3wN9O3nBqCKqnKV4w,2885
477
568
  maxframe/codegen/spe/dataframe/tests/test_value_counts.py,sha256=ljzH0DnSiMGpBaY0uA1P6JS4UIro1aN2xCifq2_k7kk,2010
478
569
  maxframe/codegen/spe/dataframe/tests/test_statistics.py,sha256=W8NYJQ2DIL30oK1Aer5rPjBW9tm50NM8Swv59V_N9Qo,2271
479
570
  maxframe/codegen/spe/dataframe/tests/test_extensions.py,sha256=oyTaxhMP8ryzBoWexAueG2_PQtzyw1fhXHIxhUZXTWE,3082
480
571
  maxframe/codegen/spe/dataframe/tests/test_datastore.py,sha256=2BoBnyzj65AdwGsVQEiVx_M7ddjknGIsqhYBzQh1uZw,7007
481
572
  maxframe/codegen/spe/dataframe/tests/test_datasource.py,sha256=4bMzo_0pwWZGRKz_k_Z99I8sWPiwgEJqf_s6IarvMbg,7136
482
573
  maxframe/codegen/spe/dataframe/tests/__init__.py,sha256=YsJxv7HbG4YYJmqAJZPYb8iHFRQX5JGpGn2PInDXvY8,596
483
- maxframe/codegen/spe/dataframe/tests/test_sort.py,sha256=IkUIbYw2EgwTCg86UTCOXkVYqWGLQrhyk8fa3yhwpNQ,5276
484
- maxframe/codegen/spe/dataframe/tests/test_reduction.py,sha256=Q-YBNvJjCadl-uDkq_uLN6MFIpuDIyDJyqChfJ00UgQ,3407
485
- maxframe/codegen/spe/dataframe/tests/test_merge.py,sha256=R3R949XEZTr3Y0FlHn8u8rcC7vFqY9cDjwxKRJkS-x4,12949
574
+ maxframe/codegen/spe/dataframe/tests/test_reshape.py,sha256=buFp3QdnLy4fTyZrqRRPND8UKbwTrUxy_OI4cg5KllY,2279
575
+ maxframe/codegen/spe/dataframe/tests/test_sort.py,sha256=yCiw_Z3DtTHXEellXgKzUnUAoLAffLV-V8qSRFdj-5U,6025
576
+ maxframe/codegen/spe/dataframe/tests/test_reduction.py,sha256=gwzuCT2QbWxFZpmxmuXy8cy4yuSjx7tdnwHT86lBv4k,3904
577
+ maxframe/codegen/spe/dataframe/tests/test_merge.py,sha256=Mc52MIRiMMNlywfUUFUEzrBmvB4scOVDnpPW-BA0Qg0,13681
486
578
  maxframe/codegen/spe/dataframe/tests/test_window.py,sha256=3q6lWsxCrvDd24mZHHS6_Ddb88FBu8ZVFHrZAPTQAN4,2275
487
- maxframe/codegen/spe/dataframe/tests/test_groupby.py,sha256=l87QElAk-2_dCGJ2UHYRoHPBsc1O040YONjmU8p60jg,7869
579
+ maxframe/codegen/spe/dataframe/tests/test_groupby.py,sha256=icf5G61XDawNHArISQ-7VPtjBJnz6W_zsLWW6kY4Mo0,10491
488
580
  maxframe/codegen/spe/dataframe/tests/test_arithmetic.py,sha256=uBoDXIGYJ7i_CsYw7pZkOvirQw5zPYYP1zDELTsQm_o,2639
489
581
  maxframe/codegen/spe/dataframe/tests/test_tseries.py,sha256=n-IgozLlwjZ6zRLky3RgdDNsBM6yJ1-pO6sZTgznV0Q,1234
490
- maxframe/codegen/spe/dataframe/tests/misc/test_misc.py,sha256=e35z0OGwwqeeiUdRqNxbJVV4Y-tPWdeadhLhh8L9NDI,7302
582
+ maxframe/codegen/spe/dataframe/tests/misc/test_misc.py,sha256=pJxiYPeuhXkN2sA4fCM6cu1cugkL_dW5zXV3iH7HuB8,6311
491
583
  maxframe/codegen/spe/dataframe/tests/misc/test_drop_duplicates.py,sha256=ZjuBexbLQ4oM8ooQ8qemw04Hr-yNTVDrTC9YxF6cKQ0,2620
492
584
  maxframe/codegen/spe/dataframe/tests/misc/__init__.py,sha256=YsJxv7HbG4YYJmqAJZPYb8iHFRQX5JGpGn2PInDXvY8,596
493
585
  maxframe/codegen/spe/dataframe/tests/misc/test_apply.py,sha256=1CHLT7KQI1YkOiNI6BZ6jEiTsAtkNf82N904HZy6M0Y,4380
494
- maxframe/codegen/spe/dataframe/tests/accessors/test_list.py,sha256=YNoNfs6kj4R2PAXkafzSq0KQDRf2JergacustwF-76I,3836
586
+ maxframe/codegen/spe/dataframe/tests/accessors/test_list.py,sha256=gFqnO4ycxgkfx86Mv2B-RLkWElPRIdUSxGCA7632uuc,3755
495
587
  maxframe/codegen/spe/dataframe/tests/accessors/__init__.py,sha256=YsJxv7HbG4YYJmqAJZPYb8iHFRQX5JGpGn2PInDXvY8,596
588
+ maxframe/codegen/spe/dataframe/tests/accessors/test_struct.py,sha256=_AdofSk_UoUNgNWbBapLhwQmcFx5cFKy798cbsO-vMQ,2377
496
589
  maxframe/codegen/spe/dataframe/tests/accessors/test_base.py,sha256=tuh_gXmxvfH6azymWg2-PJgA6E2eRGEzAmiKyGjYFPQ,1266
497
- maxframe/codegen/spe/dataframe/tests/accessors/test_dict.py,sha256=O_M387mxhFS7Ym1sPfuTmNcJLADlDnSjHOm0Zqs8Qrg,8890
590
+ maxframe/codegen/spe/dataframe/tests/accessors/test_dict.py,sha256=hJKF9l5XhHBmpfaoYkf4lO0AFOE0EVKaWE7Cjk5bP-E,8651
498
591
  maxframe/codegen/spe/dataframe/tests/missing/__init__.py,sha256=YsJxv7HbG4YYJmqAJZPYb8iHFRQX5JGpGn2PInDXvY8,596
499
592
  maxframe/codegen/spe/dataframe/tests/missing/test_checkna.py,sha256=mcBK76t_lRlHEy671biWr6Er_tEnzcBwQjyZoDmzXDU,2940
500
593
  maxframe/codegen/spe/dataframe/tests/missing/test_dropna.py,sha256=bhRto8o9NqOKKTEBH5zwzZRE54VZzqtn7w4J0gKTsWM,1718
@@ -505,16 +598,21 @@ maxframe/codegen/spe/dataframe/tests/indexing/test_sample.py,sha256=wl-tlYVXjLO0
505
598
  maxframe/codegen/spe/dataframe/tests/indexing/test_reset_index.py,sha256=W3tn9D5MSX2iJXycKVA4U_DPAvKg7OZCGynPaLRRB1k,3112
506
599
  maxframe/codegen/spe/dataframe/tests/indexing/test_getitem.py,sha256=T9bt9xIoxY1UfzWyE4J-nStnMSWdduNZMwEEAmm5XXA,4471
507
600
  maxframe/codegen/spe/dataframe/tests/indexing/test_setitem.py,sha256=SvmGRVtPSZEkcDw_HduPVxYJbnIpnTDTufuoH_7ZtOg,1707
508
- maxframe/codegen/spe/dataframe/tests/indexing/test_iloc.py,sha256=92BeKCQqrJjNQiKnYq4MNsy6aGeZ4RTIYAS2rJ8ooAk,2697
601
+ maxframe/codegen/spe/dataframe/tests/indexing/test_iloc.py,sha256=eVarsyzNULSI103dqCJxpGzMZYrcbj1dagiIIycGLtI,3334
509
602
  maxframe/codegen/spe/dataframe/tests/indexing/__init__.py,sha256=YsJxv7HbG4YYJmqAJZPYb8iHFRQX5JGpGn2PInDXvY8,596
603
+ maxframe/codegen/spe/dataframe/tests/indexing/test_loc.py,sha256=xMzEnoITXossCOz54jhjEg6heXt_tF9i6JMUvs4opdg,1338
510
604
  maxframe/codegen/spe/dataframe/tests/indexing/test_indexing.py,sha256=vMn-cNJkV49M0Q4qjrJtVk2IjDFbcQCba3-kh8_Li0k,1447
511
605
  maxframe/codegen/spe/dataframe/tests/indexing/test_set_axis.py,sha256=R1NJFASCyGZN99BLs9hgVO4vt0SUxSrDOHz5mIg0Esw,1627
512
606
  maxframe/codegen/spe/dataframe/tests/indexing/test_rename.py,sha256=UmZ4J8YHWpwhxxiuLh8ozcZzrdKeuEM0dYCxkdgVIQo,1867
513
607
  maxframe/codegen/spe/dataframe/tests/indexing/test_set_index.py,sha256=3AXDlLRkUka3d-uOCc5a5gQienbogpm3QYi4T88PhO0,1457
514
608
  maxframe/codegen/spe/learn/__init__.py,sha256=8xMcRbU54OUaqauoxm9UNRo2C7hb418FQlsBpSZbXXU,650
515
609
  maxframe/codegen/spe/learn/metrics/_classification.py,sha256=41JuDrz5FNNRfyqKYUZnt9jL5AS3IxUTXlifEAGH7AU,4249
516
- maxframe/codegen/spe/learn/metrics/__init__.py,sha256=nV_oeSgrFfDu20Ig5-OAueMlxb1RoQKoSxwJWmWhwG0,627
610
+ maxframe/codegen/spe/learn/metrics/__init__.py,sha256=e1Ds1ImBCKZU3BLBooPHhbNq5y1AglrNR9NhDNgsZpM,647
611
+ maxframe/codegen/spe/learn/metrics/pairwise.py,sha256=UZhTfRpEURUhEQus5br88yP318kuA_oCUZRSoMYhzGo,1691
612
+ maxframe/codegen/spe/learn/metrics/_ranking.py,sha256=HrDl-XlgJuLqF8yJukP-NQi1CyV-hn0QZ3HqKNMlq40,2876
517
613
  maxframe/codegen/spe/learn/metrics/tests/__init__.py,sha256=YsJxv7HbG4YYJmqAJZPYb8iHFRQX5JGpGn2PInDXvY8,596
614
+ maxframe/codegen/spe/learn/metrics/tests/test_ranking.py,sha256=DHz8g4vYStHrWshf88ibFyN4HRkWft2Ab0tjUgs2yeI,1962
615
+ maxframe/codegen/spe/learn/metrics/tests/test_pairwise.py,sha256=1Ozu4EQsiCD35rD56vcSks2ocW9nF_egg6p4Jy7lDUg,1252
518
616
  maxframe/codegen/spe/learn/metrics/tests/test_classification.py,sha256=MUSoYOv322q0VhtpeolqtvADlSoc1aGKGw60t2fdiho,3368
519
617
  maxframe/codegen/spe/learn/utils/multiclass.py,sha256=h6aY2di1lKi0KQvTraT-V8JsGElS7LP5gyP4uLOgWgw,2433
520
618
  maxframe/codegen/spe/learn/utils/checks.py,sha256=qk4G5iz-aOaGNgg_WWdYaH6XrBJakE0NYi-maegBhic,2199
@@ -528,7 +626,7 @@ maxframe/codegen/spe/learn/utils/tests/test_multiclass.py,sha256=9E4XT1FDKk0lkHH
528
626
  maxframe/codegen/spe/learn/utils/tests/test_shuffle.py,sha256=H48bEgLqXo-_Iej8zQQqN42qo9TiI_iY6nFgike-y-8,1937
529
627
  maxframe/codegen/spe/learn/utils/tests/test_sparsefuncs.py,sha256=OJYc4vQMQGl6Mbvb8kFwctZtLrwFVdyHrsQzVOyVbNc,1167
530
628
  maxframe/codegen/spe/learn/utils/tests/test_checks.py,sha256=RM-r6uti_95mS5ECmRsPJ01IGDoHil2wzPykNgEyA2I,1653
531
- maxframe/codegen/spe/learn/contrib/lightgbm.py,sha256=Vl881BeRFjTDkOZTlvBzessM3JXJkEb0I-vH52p_2Y8,5663
629
+ maxframe/codegen/spe/learn/contrib/lightgbm.py,sha256=DBuNuru9ZdFhCAwyltBYFvgnmi4gdJnLSZMzKbZIHmA,5679
532
630
  maxframe/codegen/spe/learn/contrib/models.py,sha256=I6X5vGEJvJZwZVqgMnXeBPqzQ6JF3BFJa1QYDxViF30,1779
533
631
  maxframe/codegen/spe/learn/contrib/__init__.py,sha256=l_GYxlFugI5Wm9DzBRlAdrXQX-d3sfuc_lxiFj9S8iM,646
534
632
  maxframe/codegen/spe/learn/contrib/pytorch.py,sha256=6TI3kgsA4OLdkTHhkHMtBw1UY_QBovhnARr7ibA379o,1898
@@ -537,7 +635,7 @@ maxframe/codegen/spe/learn/contrib/tests/test_lightgbm.py,sha256=IZu3RvPjX9b2WYq
537
635
  maxframe/codegen/spe/learn/contrib/tests/__init__.py,sha256=YsJxv7HbG4YYJmqAJZPYb8iHFRQX5JGpGn2PInDXvY8,596
538
636
  maxframe/codegen/spe/learn/contrib/tests/test_pytorch.py,sha256=rt9-ZdT54J-l8cVv0KW3wofk4n17xMkYVRHDorhRMQ8,1564
539
637
  maxframe/codegen/spe/learn/contrib/tests/test_models.py,sha256=1AZDcmlzF6lOsTdqzx1teLfux7Q1DUsLSIE36B23Rfc,1362
540
- maxframe/codegen/spe/learn/contrib/tests/test_xgboost.py,sha256=QndQSDd44lTr7gvJ6BYHlduoGgT9kmUCe-aeHqJ14Dk,3620
638
+ maxframe/codegen/spe/learn/contrib/tests/test_xgboost.py,sha256=DrzDaZ6obrgiPYTTBoys1n550LF4lGIGxQUt44Roltk,3666
541
639
  maxframe/codegen/spe/learn/preprocessing/_data.py,sha256=AHuTCBMWKasNip7niwTSY0Fe_bPeQYH5a2j9SjI6xSk,1453
542
640
  maxframe/codegen/spe/learn/preprocessing/__init__.py,sha256=iADIZIGEYpEBk2jr2u5arkmGvFeF19tX8oCLMskYLOM,617
543
641
  maxframe/codegen/spe/learn/preprocessing/_label.py,sha256=eo2sUNegsBfLq_lPEql0HayWSDWX2vuDi8zwqkGjidI,1886
@@ -547,34 +645,38 @@ maxframe/codegen/spe/learn/preprocessing/tests/test_data.py,sha256=k0ZSooHYuRyxD
547
645
  maxframe/codegen/spe/learn/model_selection/__init__.py,sha256=YsJxv7HbG4YYJmqAJZPYb8iHFRQX5JGpGn2PInDXvY8,596
548
646
  maxframe/codegen/spe/learn/model_selection/tests/test_split.py,sha256=Zc_5GBRY7c7AguBfLqcZU2Kk2GzeHJiLY5X3EbHMXuI,1664
549
647
  maxframe/codegen/spe/learn/model_selection/tests/__init__.py,sha256=YsJxv7HbG4YYJmqAJZPYb8iHFRQX5JGpGn2PInDXvY8,596
550
- maxframe/codegen/spe/tests/test_spe_codegen.py,sha256=ofe5sZE-hcPRn-4wrjgHqBJbWHPcL43-g-vth9zZdiU,4242
648
+ maxframe/codegen/spe/tests/test_spe_codegen.py,sha256=JCJ8qh9LEiqOKyAt_inRfRlV363XXUTRHVsaH78pPWE,4206
551
649
  maxframe/codegen/spe/tests/__init__.py,sha256=YsJxv7HbG4YYJmqAJZPYb8iHFRQX5JGpGn2PInDXvY8,596
552
650
  maxframe/codegen/spe/tests/test_remote.py,sha256=bYAjPUXrDme8rMHG93Kqktnbr7_vnGq2B89RtsR_i6A,1031
553
651
  maxframe/codegen/spe/tensor/fetch.py,sha256=sQQMwgVjFlPXoQ4bNpx2yl5hoOq2XPA1YvRcMIGNAwQ,1036
554
652
  maxframe/codegen/spe/tensor/arithmetic.py,sha256=ZCqagjY-D0q_0BMmi3r8rohaqyDSr4dh9OTcuECIZGM,3662
555
- maxframe/codegen/spe/tensor/misc.py,sha256=PFBuUyR1kooXMLJwiNTO_YDU74ruQ_9R8lLIVmjcKwQ,4062
653
+ maxframe/codegen/spe/tensor/misc.py,sha256=uXbdQLfb4-niXwuvd5QKAW9e9N6-omuAGXhnzfkSDWU,5925
556
654
  maxframe/codegen/spe/tensor/merge.py,sha256=2hM3dxFSFT3XXppz_6mB5FqEh9-NXEFQO8SJ_z_mQdc,1384
557
655
  maxframe/codegen/spe/tensor/reduction.py,sha256=UiO57E4nmlUKIDjxfnYWAiXu5hQTh3xFkHaalmJn9g4,1486
558
656
  maxframe/codegen/spe/tensor/sort.py,sha256=b55Ul7E6K74jlN7HH5eqf42iDC88llU2hOMhvhjaySs,1608
559
657
  maxframe/codegen/spe/tensor/reshape.py,sha256=mwU9FCQRZM5G6FkMa2O34gzAwaRnBboHUwVl0oH5YMg,869
560
- maxframe/codegen/spe/tensor/__init__.py,sha256=XXahbQNBEgCqa9n7ltv24Px8aO0JTX8TjnPyEgbaK60,774
658
+ maxframe/codegen/spe/tensor/__init__.py,sha256=JohxD-8dHm2d7S7s4ApDtGugHGY7eEQB5kip9nh7n5I,812
561
659
  maxframe/codegen/spe/tensor/core.py,sha256=VAktRFtN3Neap2PYFkDDOAca74LNAw_PSalsy9goM4I,1531
660
+ maxframe/codegen/spe/tensor/spatial.py,sha256=dCP8OSYHBnWbGHCiS7hk5SpbfRg64QFB2VfPro8pnK8,1389
562
661
  maxframe/codegen/spe/tensor/random.py,sha256=iAKwjv5dtOAcn5nKJZDnRga271vlMLdqJ6mPsR1cosU,1276
563
- maxframe/codegen/spe/tensor/datasource.py,sha256=2o3F3wy_A1FpjMEWWckVlAmimR5LLVog9XSNYLyxDlg,6250
662
+ maxframe/codegen/spe/tensor/datasource.py,sha256=JtLG_g93Bh6TLsSCdYn87WoNjd8DR5zCCV2ulHJgGn8,6279
564
663
  maxframe/codegen/spe/tensor/extensions.py,sha256=dvORRucZYf8higMgjZ2ru938XD9d_Fw0Waaj0l0fIm0,1509
565
- maxframe/codegen/spe/tensor/linalg.py,sha256=61Hwg6N35JIJ_OT1BvfAv5iiISPJYN3BMxpItoc4M6k,2281
566
- maxframe/codegen/spe/tensor/statistics.py,sha256=bAmugNENewXsXu4LuqyppyPmg3mp5KSXPj0WLf1msik,860
664
+ maxframe/codegen/spe/tensor/linalg.py,sha256=Tj0ddEcfnEkBPXsxk0LCB-XfkajBiRdDltS-detd6QM,3329
665
+ maxframe/codegen/spe/tensor/statistics.py,sha256=V9txDv0FWUiEPKCzDWPdnYEhloe0Kx7LqW3pYKd_HQ4,2399
666
+ maxframe/codegen/spe/tensor/fft.py,sha256=3C2c117ZnM_O2EGIbNWMeIIuriH3fE3BI66jchgxmvY,3366
567
667
  maxframe/codegen/spe/tensor/indexing.py,sha256=YIBUksWANMJmIfgyeZ7gMlbsRJHGu_a1Pt5ion1DevA,2349
568
668
  maxframe/codegen/spe/tensor/special.py,sha256=6kqD8m_h4yDnNswouogCNZZK9yaFoMquf_pTieZWyk4,1261
569
- maxframe/codegen/spe/tensor/tests/test_linalg.py,sha256=TjQmeyQPuztnhpTxMuc9G431uk7iArLcPXXsE9uvI_A,1406
570
- maxframe/codegen/spe/tensor/tests/test_statistics.py,sha256=w5CwfL_J_VB8TDcnpx085Vc017-6C7EF-z9ZUuL4yd8,1117
571
- maxframe/codegen/spe/tensor/tests/test_misc.py,sha256=urKFqDWfeVzpy6x0Gnl2ltZtsr-PvK5QubMQapvAkDU,3210
669
+ maxframe/codegen/spe/tensor/tests/test_linalg.py,sha256=SmJBKWPWquYvY9mJDrmjs22mo0Ndkgf3A0P55MSj2ec,1841
670
+ maxframe/codegen/spe/tensor/tests/test_statistics.py,sha256=rqgLnGOXN_8BqziP4BemZ2igZR0517br4wvcWPmBmQw,1535
671
+ maxframe/codegen/spe/tensor/tests/test_misc.py,sha256=SGg9vtM8GhvAwuH-IHrGYWucmnIuioOHzgzj_JtHHcc,4692
572
672
  maxframe/codegen/spe/tensor/tests/test_extensions.py,sha256=SumQwhUwGgJcNlgJjG3XNdDY-T1CuT71U2Rbgihl5R0,1389
673
+ maxframe/codegen/spe/tensor/tests/test_spatial.py,sha256=6B6t_H1vHMpTtzFb4fsWW30T3gZm6QrzERkv36K0x1w,1190
573
674
  maxframe/codegen/spe/tensor/tests/test_datasource.py,sha256=QucUPFBHc7Ywh3WB8Pd3_iZxuFCT4x88WyVvE-oF3hc,3374
574
675
  maxframe/codegen/spe/tensor/tests/__init__.py,sha256=YsJxv7HbG4YYJmqAJZPYb8iHFRQX5JGpGn2PInDXvY8,596
575
676
  maxframe/codegen/spe/tensor/tests/test_reshape.py,sha256=lLV0MXz3dQPf-sInJu852Ukbxd6l6OeTRb3g5FySImg,1465
576
677
  maxframe/codegen/spe/tensor/tests/test_sort.py,sha256=yUB2PILCrLKCgqqqJBIVTzI-MP2Ur5ZNOnvZRwSlBBo,1883
577
678
  maxframe/codegen/spe/tensor/tests/test_indexing.py,sha256=8fu26YNOltoCV3Vuho4-Ab_bd6AZSPitO181k9n2fEY,1481
679
+ maxframe/codegen/spe/tensor/tests/test_fft.py,sha256=pxE-f13-2SK9mqKpMw7HuFkwQOu4mtPatawkYRw4yhg,1988
578
680
  maxframe/codegen/spe/tensor/tests/test_reduction.py,sha256=xMh7TYFMY-V0FLovF1GNnaeRNtNmPXcKZVUEC6cxDF8,2032
579
681
  maxframe/codegen/spe/tensor/tests/test_merge.py,sha256=x4eI9Q1LRUtNUVT3LwLpe0MNFvyFV72-QuZXknYVOm8,1079
580
682
  maxframe/codegen/spe/tensor/tests/test_special.py,sha256=Y6L-gQ__scSeY66qDJph1ItvlTxpgGaZty8Xp8ihq8M,1051
@@ -582,10 +684,10 @@ maxframe/codegen/spe/tensor/tests/test_arithmetic.py,sha256=n7IBz3oyx5SuqlzKwScK
582
684
  maxframe/codegen/spe/tensor/tests/test_random.py,sha256=qKnK711XA1j99Oce4LB7IkTP7k2LF6W7fWG47S65LrY,1894
583
685
  maxframe/codegen/tests/__init__.py,sha256=YsJxv7HbG4YYJmqAJZPYb8iHFRQX5JGpGn2PInDXvY8,596
584
686
  maxframe/codegen/tests/test_codegen.py,sha256=TM6teK4idJIhEnnXuzUqjs745e01HtFNFlS2Eif2aac,2129
585
- maxframe/lib/wrapped_pickle.py,sha256=4qWVAbDcTJm4WAvs631fFXrV3NEyzGSnG1jSKHSzdv4,3836
687
+ maxframe/lib/wrapped_pickle.py,sha256=glzjMN210XPB4ZLMSzdhkPIy5Pl2Px6A6qp_yTgJTXc,4231
586
688
  maxframe/lib/version.py,sha256=krhgFvMhLdoNCJk3d9U-yyIAHixCR4S9-NggKdqrnHQ,18321
587
- maxframe/lib/compat.py,sha256=olFW2HW9-_ber1UbdH_RfpyGHpD5nwnp81VcX1ETwMo,4736
588
- maxframe/lib/mmh3.cpython-39-darwin.so,sha256=Hg1DaAPm01fUZhAu9XLnlwPuO8TZfZOkwUNPhW2NSf4,119784
689
+ maxframe/lib/compat.py,sha256=mgMdAqDLcMBavAwbhRRN3CK5DsD3t8ORKxm4kYK_9JI,5811
690
+ maxframe/lib/mmh3.cpython-39-darwin.so,sha256=l3nWdrLvPxjOxucg1waZ6VMSinWGwqaaBZPjy7Sjh_4,119784
589
691
  maxframe/lib/compression.py,sha256=QPxWRp0Q2q33EQzY-Jfx_iz7SELax6fu3GTmyIVyjGY,1442
590
692
  maxframe/lib/__init__.py,sha256=YsJxv7HbG4YYJmqAJZPYb8iHFRQX5JGpGn2PInDXvY8,596
591
693
  maxframe/lib/mmh3.pyi,sha256=R_MzTIyUSTn8TF4Gs2hRP7NSWfWi0SeuUauh4eZJc-g,1494
@@ -611,22 +713,26 @@ maxframe/lib/filesystem/local.py,sha256=zAMnODenIQJH25txHZU7Uad6a6OksHwTOa-ngASc
611
713
  maxframe/lib/filesystem/arrow.py,sha256=FtzTJIJrCQEe48FpOsbBGg09bGpB_PoreZ0HlrrDkhg,8411
612
714
  maxframe/lib/filesystem/_glob.py,sha256=pUyuiKsdi7zS1xnrH0iJ2BHr2SIkYR52kc9K1tDMNsw,6535
613
715
  maxframe/lib/filesystem/__init__.py,sha256=mHRo2N1GXAXI-PbpUdsci2iahNWX3qiRzuAjCbsKzS4,834
614
- maxframe/lib/filesystem/core.py,sha256=vtTnBAPwB2nE1W2eQFDeVKZ--_kSFzbaHrBdqwXVvtg,2932
615
- maxframe/lib/filesystem/oss.py,sha256=8j8fjFVgQ_GYPNmJ6NmOnbPXQetOxtWroSkpEVe9aMI,5017
716
+ maxframe/lib/filesystem/core.py,sha256=8XHAOJuT1g4st7c7jQmmYNYKxEOhUPzA_Cd48du7wRk,2913
717
+ maxframe/lib/filesystem/oss.py,sha256=UOAHlsIcC5dIPGDm9XeOWDLX7M2YwbeKJnTqJgkVbPI,7592
616
718
  maxframe/lib/filesystem/fsmap.py,sha256=ZG_q-qjYBZ-U8LxAzNBFj27J5JKK4w4ffx80c1IiJzs,5262
617
719
  maxframe/lib/filesystem/hdfs.py,sha256=J4rAxSM4-D0OPJsoVrH1opl4UTAaKowa-V_q8PsF6Ys,1065
618
- maxframe/lib/filesystem/base.py,sha256=vUfv1bi5a6OR7hdiFS56KY6ANb8ddY2e783yLjFnXlI,6634
720
+ maxframe/lib/filesystem/base.py,sha256=okLzBco6o-utP6jwHuC6h-ohIPe6Q3h8haMxOePFB68,6599
619
721
  maxframe/lib/filesystem/tests/__init__.py,sha256=YsJxv7HbG4YYJmqAJZPYb8iHFRQX5JGpGn2PInDXvY8,596
620
722
  maxframe/lib/filesystem/tests/test_filesystem.py,sha256=-YxKI8WC_3h44aA_cur-iOL5ikZ4cfbi7Zg-JpNWGfQ,7372
621
- maxframe/lib/filesystem/tests/test_oss.py,sha256=ydFmp33W1TVzlnQel8TX3qVquGBZBJgJC7P_Ql1m_Bg,5894
622
- maxframe/lib/filesystem/_oss_lib/handle.py,sha256=EqXngu4ScEvEzWoVhk8SdcFHVd3ethXj9kpzQbtrJMY,4842
723
+ maxframe/lib/filesystem/tests/test_oss.py,sha256=P7hIZN4k-Qx4_HeXZaf3477OvvAWV4uL4D1RY-ydrpE,7460
724
+ maxframe/lib/filesystem/_oss_lib/handle.py,sha256=CU_BaFsP73pJ_LQ0-OQzX9HwTeeSxeP7Cy4xNP3ifU0,4901
623
725
  maxframe/lib/filesystem/_oss_lib/__init__.py,sha256=YsJxv7HbG4YYJmqAJZPYb8iHFRQX5JGpGn2PInDXvY8,596
624
- maxframe/lib/filesystem/_oss_lib/glob.py,sha256=xlDbTJpZ4yMEI-Sul8U3PK9WR3hRIXxXagP2LcLH7Vs,4836
625
- maxframe/lib/filesystem/_oss_lib/common.py,sha256=zbhcqv_UKLHmk9cPT7T_9i43Uf2iz1DH_Uis8DJPOfs,6615
626
- maxframe/lib/dtypes_extension/__init__.py,sha256=xTGtTMm8c-h3lj3Bvbc2Oc08rScLfbrGkj-fkdRnTRM,671
627
- maxframe/lib/dtypes_extension/dtypes.py,sha256=LYZ8XK0C5Anpz0VgIElhNLF_QgbPDF3dbUfKEaIck-s,2153
726
+ maxframe/lib/filesystem/_oss_lib/glob.py,sha256=_7zX11xgVmX4dNnDk-XZ8nd91smqEqwM5GOcSuTou8Y,4834
727
+ maxframe/lib/filesystem/_oss_lib/common.py,sha256=VbKMDpM8XXSvRwxy7QsuHCEFbr9wVQFMMM40I8XvP1U,8450
728
+ maxframe/lib/dtypes_extension/_fake_arrow_dtype.py,sha256=rzcydHCRZ4socbZNj8vq5rzeqXIQM3YzxiqpO7kgi-8,21559
729
+ maxframe/lib/dtypes_extension/__init__.py,sha256=EXlYo0fSTxxx26rloLctf4mOj0ioJgALAzMShApqIOY,855
730
+ maxframe/lib/dtypes_extension/dtypes.py,sha256=-5K26O3kyI0R7pdNTv5V_yc1K4ivQ2ibcQO3LTdkbMI,3161
731
+ maxframe/lib/dtypes_extension/blob.py,sha256=iqSnq6V6cM9eHu-yh7IbkTqi23E_IiAe62ZeADbwI1Q,8984
628
732
  maxframe/lib/dtypes_extension/tests/__init__.py,sha256=YsJxv7HbG4YYJmqAJZPYb8iHFRQX5JGpGn2PInDXvY8,596
629
- maxframe/lib/dtypes_extension/tests/test_dtypes.py,sha256=V2s_6SzMjam11la_92y0a3m-EZE4KQ34TY_7VSH8CEg,1378
733
+ maxframe/lib/dtypes_extension/tests/test_blob.py,sha256=sQjA3uwA4cfIU4Wx-RHESct-vHq0TwBKuqzEt5aENLs,3016
734
+ maxframe/lib/dtypes_extension/tests/test_fake_arrow_dtype.py,sha256=fDV6tM5-YXFJw1FeKZyhCLQQYZCPqdvgE_d-Os2yJCg,2642
735
+ maxframe/lib/dtypes_extension/tests/test_dtypes.py,sha256=NyXLNE8M_bSXV9OnrnqIFhHgqoXBhNWxAmc135hayhU,1808
630
736
  maxframe/lib/sparse/matrix.py,sha256=ure8NNTMIjyU74y35NgnOw5BjWADMPGnJBpJyrK2hCw,7194
631
737
  maxframe/lib/sparse/vector.py,sha256=1GQU5etr42YKZ4gyyvmd6h4RORQ7a6uh1w6Mdmp_geo,4763
632
738
  maxframe/lib/sparse/__init__.py,sha256=XZeVvlYpJXHOSwGvD_f5c2VYsN30je9ALwwIr2PkIps,17984
@@ -641,41 +747,68 @@ maxframe/lib/tblib/__init__.py,sha256=c4aVldbxJdS-bFsSDcmDQy_mW0qAcMrb4pHS2tjYhY
641
747
  maxframe/lib/tblib/cpython.py,sha256=FQ0f6WTQyQHoMRhgPqrA0y0Ygxlbj5IC53guxA4h9Cw,2418
642
748
  maxframe/lib/tblib/decorators.py,sha256=bcllK3kVuPnj6SNZGmlJGxTK0ovdt7TJDXrhA4UE5sQ,1063
643
749
  maxframe/tensor/array_utils.py,sha256=VsWQR84ifDV26-IfrgLRAXyt9FLZ2YAuKjQ6NKUqYv4,4373
644
- maxframe/tensor/__init__.py,sha256=Ac2Y3OyijuT8Nh1_52cy5-BqkMfOnzmJZ2A345CJq-g,5384
645
- maxframe/tensor/core.py,sha256=n6_vPx8SecSp9Wu2IGvhQiXfQ1ylqGs21jE43y3tqB0,17995
646
- maxframe/tensor/utils.py,sha256=iEzMffVfM64tFqH1EGldUoq8_q2xAPBBzsHFYy6ZDo8,22913
750
+ maxframe/tensor/__init__.py,sha256=HJT_9pbckWsejXTAxWGgZKAZsSe0YRsL32qP70ZOXwc,5736
751
+ maxframe/tensor/core.py,sha256=IKv1q0c3JRKVuR4Vc4og_DucArjjIrRI7AR0hYF1c1A,18129
752
+ maxframe/tensor/utils.py,sha256=v34SwG6pOgNH5kStDp5xI3sDlFDaDB6upFGmSuhy74I,22923
647
753
  maxframe/tensor/operators.py,sha256=EGWyiohMZXMgSOtFTVCvZ6IdQXwssxmoS1UVTI0wBKg,2257
754
+ maxframe/tensor/statistics/ptp.py,sha256=nOYV2g6RqAV4D2oM4rq66xNsceolz8rmBeLqv3lO5Sw,2776
648
755
  maxframe/tensor/statistics/quantile.py,sha256=uDVI-Z00MEF3kxd62H29MSxDU70Jpm579uxTx9ZE9ho,9547
649
- maxframe/tensor/statistics/__init__.py,sha256=RmBLkC-xfaN2sBIGvEO2mCBad3bTAI-FNIBwHuIQMGc,723
756
+ maxframe/tensor/statistics/histogram.py,sha256=hilMUR2g3QE_7uItxXq745nJh-nagMMQN6hxHRwO_OI,19493
757
+ maxframe/tensor/statistics/__init__.py,sha256=MyRRnGQ99_g63Oz7Iqi-rJscyD5Bo7iY8p3uu_CBOdI,908
758
+ maxframe/tensor/statistics/cov.py,sha256=rd9ZFHcqmB0DFM4HvPsv1N-irgTbdGo8j-YM0TYlASw,7610
759
+ maxframe/tensor/statistics/median.py,sha256=ohSSzDtHXqGGpkg3xE3hSABydGI5GFzO3Zw8qfXG274,3103
650
760
  maxframe/tensor/statistics/bincount.py,sha256=6d0MUbznEkc5fFVuUtHWdO4adsPBj5PnsBy3tnWA7jk,4711
761
+ maxframe/tensor/statistics/digitize.py,sha256=j8wCgJyl3sqPSpT45RpTxWzkxTJTETJ5eZLolXWo76g,4327
651
762
  maxframe/tensor/statistics/average.py,sha256=BT_rw1IEbJrdIS4mpEv_JJ2c4Mh0-uuucjRlwUIIzGc,5056
763
+ maxframe/tensor/statistics/corrcoef.py,sha256=mYIk577JOIWUJBLKapElnxdwAMLDlxI1k-No1bwajhs,2758
652
764
  maxframe/tensor/statistics/percentile.py,sha256=DMqIWDtCU012M-FILSgR1TmbLAgjRIzDCVK8qW8F58M,6047
653
765
  maxframe/tensor/reshape/reshape.py,sha256=wKYcB8ROlqbwPwqFqlCnN03YrquFuySQrYAiIx_RnrU,6557
654
766
  maxframe/tensor/reshape/__init__.py,sha256=_QbUbxl7S2TS7mKd2tGd_bB0a-40G18qW-OKuIqhNk4,626
655
767
  maxframe/tensor/reshape/tests/__init__.py,sha256=YsJxv7HbG4YYJmqAJZPYb8iHFRQX5JGpGn2PInDXvY8,596
656
768
  maxframe/tensor/reshape/tests/test_reshape.py,sha256=c1y2IM4yCn1W2ZF3UMWgU7Y7TgspyD5VDf7BJNxrj8A,1057
769
+ maxframe/tensor/misc/tile.py,sha256=yCmVbJ1c437Lpca3J2JkHVhvDwZdT4cDi1tXZ67yJ9I,3163
770
+ maxframe/tensor/misc/delete.py,sha256=ERj5WeBTENrehdV4BOzTFL2UYblLFiYpcOTZTHKYdQ8,3573
657
771
  maxframe/tensor/misc/setdiff1d.py,sha256=PpEaTq2fPz_9pqtzSGHEdWFLcTdM4nAyKeHwM4dA9rU,1753
658
772
  maxframe/tensor/misc/astype.py,sha256=NRUFbVmnpDefHcC_ZdVGPRNqLmjGg-_xCfwZPEtL9F0,4459
773
+ maxframe/tensor/misc/vsplit.py,sha256=6ZP9udHZ2Md20QUNZ4ZafoaGOo00HnI6GzZX9v-bIgw,2345
774
+ maxframe/tensor/misc/argwhere.py,sha256=NZGXoJ_gms7WtPumTMWdXrZyM26r3Yc81JfHE1tVcCE,1905
659
775
  maxframe/tensor/misc/flatten.py,sha256=gnVtVp6nOt4xmors2jQVk_2doRUsI_SsTk8YfpewbFA,1939
776
+ maxframe/tensor/misc/array_split.py,sha256=iHk0R0YjB6DWP5cCNxkyHiIndwfGTAnzki29Jnn4pKI,1589
777
+ maxframe/tensor/misc/copyto.py,sha256=gWdMaPpUD2oVKV-blL3ZwAalcLW3DS7EFKvVejdg7-o,4393
660
778
  maxframe/tensor/misc/where.py,sha256=cODatKKVSVHLejJxS5iR6JFFtNVOrg7kqNKo3vrMvnQ,4084
661
779
  maxframe/tensor/misc/unique.py,sha256=oS4H4ftm9NuxdFP_pmWNstMr3vOArvNIUXAp0U4Yhv0,6804
662
- maxframe/tensor/misc/__init__.py,sha256=pX1rJVegGAnCHi01Qq1_lbPkPALhsNn6_JIccoAvTSk,1681
780
+ maxframe/tensor/misc/__init__.py,sha256=gr1SMUBJpamru-i6w-qu_PfNqr_9wVW_-FPaawG4d84,2449
663
781
  maxframe/tensor/misc/copy.py,sha256=Xjh-LFRd3_nbjldJiV4JTaRDSiMFxMSOkJxBU2uhfEc,1780
782
+ maxframe/tensor/misc/hsplit.py,sha256=EF3edzEBpKJsECbBgJ156b4dQFLqvmp5j9YSS3ZX7AU,2524
783
+ maxframe/tensor/misc/fliplr.py,sha256=KKDRuPixpkYQkpF3n3bZ_boPrgKiBq6eJpclzc6biws,1745
784
+ maxframe/tensor/misc/ediff1d.py,sha256=WgMhaujh6JfUViXgDyAexiSPKu1UDcb13VxgZVi6-R4,2096
785
+ maxframe/tensor/misc/dsplit.py,sha256=d4UoOS5ql0yzWsqm6s5gs4EMUIHtAxtCtezRmlrDjdM,2121
664
786
  maxframe/tensor/misc/isin.py,sha256=lUlmCqzyoCLCusglJk0iv38CNlS0fT-DnguW5sPjS-I,4476
665
787
  maxframe/tensor/misc/repeat.py,sha256=MD5zFUBkPLHoXFzQxmaJMWyJplmMMt3GwtNeGMi_A4Q,3919
666
788
  maxframe/tensor/misc/transpose.py,sha256=GHg1ohg6YKy2AuPAhYyMLHxyGUdfOWXuWZAccJmAwEk,4154
789
+ maxframe/tensor/misc/result_type.py,sha256=EPno4v_Snc12pZ2UsXCIflIyKoss-blPqAXd_pqGo0s,3043
790
+ maxframe/tensor/misc/expand_dims.py,sha256=myIb4nUcju7E6oPNx4ndv2K1DYLsCLGz-20-62ZxhbA,2302
791
+ maxframe/tensor/misc/split.py,sha256=pcHojBowSghUOEk-bEFTo8cetWwIp-yYslwTlokJ_Lg,6854
667
792
  maxframe/tensor/misc/in1d.py,sha256=tQgOlGq0W6tY8eGRHorUwWslBiDdfDGqithx8Eysnqc,3247
793
+ maxframe/tensor/misc/insert.py,sha256=C1HYwZDlEeW40nqdZ_bPYvcsHQeGMgao6Xt2gz8ezpg,4936
668
794
  maxframe/tensor/misc/swapaxes.py,sha256=ABQUhv5U6HBpRP4YTy3n1Sscoavsm4cR4aJQPnEu8sQ,3115
795
+ maxframe/tensor/misc/flip.py,sha256=PWR0uON149trqjgryQMSf1Gvv7xl6lgYKXUjMFGhZeA,2276
669
796
  maxframe/tensor/misc/diff.py,sha256=vuGCkudN-BC1GTVj1YcB4oi2E1DLx1BgWrqE1w9LYw0,3603
797
+ maxframe/tensor/misc/shape.py,sha256=GmTU1CaJbEhWdLUq5A_3vVh9AzD2Ilq9VcLANeIX_Q4,2388
670
798
  maxframe/tensor/misc/atleast_3d.py,sha256=unXlEgoYuHcnzkBSr8UXWlJI_yteoqb-HSPyx_eoVeo,2392
671
799
  maxframe/tensor/misc/trapezoid.py,sha256=gWNYFJBIZumc8IrcgeM0yoyDtbEcXJagyerKScmQV1s,3788
672
800
  maxframe/tensor/misc/searchsorted.py,sha256=uI0XdbmOPF4IQlpsn4MambP-3Ev67h_NsTjEWWyQcTc,4744
673
801
  maxframe/tensor/misc/ravel.py,sha256=5fyHLfBNBTIivLlK7SIwnOjaoVqG2pSiB68xt9a99YA,3127
802
+ maxframe/tensor/misc/flipud.py,sha256=FFA0ayrK_4o5Cad77y4a0ZE6GJ1JeiPyWTDkflSN9Cs,1799
674
803
  maxframe/tensor/misc/atleast_2d.py,sha256=sXuQvWy_uWd-wgax5psey5UhAR-4OT-QVzpf13aQqqY,1958
675
804
  maxframe/tensor/misc/broadcast_to.py,sha256=axolRo7v9MBRdRgNfLcKP2uCUgLNk2Ful0Xg2YyM8Fw,2692
805
+ maxframe/tensor/misc/broadcast_arrays.py,sha256=3pRJ4LT-Mmzr6llY3kH04QYMREse23JjpjffCzyj6eA,1659
806
+ maxframe/tensor/misc/roll.py,sha256=RP0PMXxz7W8BzmJqv4_MhLaKPj1P6NX_UsQc9ha-pTQ,3386
676
807
  maxframe/tensor/misc/ndim.py,sha256=RaB9DZ9P-JCqQYXGyuiJyRfrGHogTt9yv_xS-WqStaY,1389
808
+ maxframe/tensor/misc/moveaxis.py,sha256=XZsQfbZhdgs_pFwbOIlBf8mjcbR1U8puNHAryNEtQPE,2426
677
809
  maxframe/tensor/misc/atleast_1d.py,sha256=Za9A2LbW4TsVwmduh1Eh_bbk9JkyexewNitzm_zVH8s,1872
678
810
  maxframe/tensor/misc/squeeze.py,sha256=XywYcdpPg1PBR83CLmaQtxosk-2Aa390egRMpkzx8vQ,3570
811
+ maxframe/tensor/misc/rollaxis.py,sha256=XvnMrUEYDgQ1cx23NaOnPY5YEwWJVt2a7cQ6lVS0SfM,2225
679
812
  maxframe/tensor/misc/tests/test_misc.py,sha256=G8sRqbKou_tqBFuI8_ru8ObHp-iFRiAF_a0QPNFWjOU,2797
680
813
  maxframe/tensor/misc/tests/__init__.py,sha256=YsJxv7HbG4YYJmqAJZPYb8iHFRQX5JGpGn2PInDXvY8,596
681
814
  maxframe/tensor/datasource/from_dataframe.py,sha256=fahvjYmNUIKfWiMjGJg0mwkk8S1gUgnQPnXyLkVYNB4,2457
@@ -698,22 +831,32 @@ maxframe/tensor/datasource/from_sparse.py,sha256=zBkgvXQRb0ek4KpKDSgPXNbzPBsoVMK
698
831
  maxframe/tensor/datasource/identity.py,sha256=CVhDm0aFHSH8hxRIKF8uvJzoWygPOlBDS6CNPb77nlI,1677
699
832
  maxframe/tensor/datasource/tri_array.py,sha256=1OEiW8PGulIHY6D44Q68pi9NK2QtO-lOKRGwXz2xM_0,2918
700
833
  maxframe/tensor/datasource/ones.py,sha256=_hUZjNK16Hc16ERMCuWWvTWA03SB_APnJq6iLDjvnx4,5167
701
- maxframe/tensor/datasource/tests/test_datasource.py,sha256=0hEBAxtSM-JBhqO2FaAYjKSo89j4dRBWWfdfcvXEB8c,8660
834
+ maxframe/tensor/datasource/tests/test_datasource.py,sha256=S5ZN6ZCzRsCQN6U0VhQG7S9NcJgECn3Z7Tk_jwC2Ke8,8716
702
835
  maxframe/tensor/datasource/tests/__init__.py,sha256=YsJxv7HbG4YYJmqAJZPYb8iHFRQX5JGpGn2PInDXvY8,596
836
+ maxframe/tensor/linalg/matrix_norm.py,sha256=9ieQBfp5KutjYDr17JDkxTH0do3Nvmfn31SADXbVOyU,2322
703
837
  maxframe/tensor/linalg/matmul.py,sha256=EsaPI2ic0SFqmQpTwqOiBfRLmutp1fF7_xjSPJsBhlY,7113
704
838
  maxframe/tensor/linalg/inner.py,sha256=uFyvIh1_IMbQUex-gcjsBGD3YmisbrFAm-OlHdnohAo,1139
705
839
  maxframe/tensor/linalg/inv.py,sha256=umo55u-r5__85_XZjRECZ1KA5gQpwmbhGFE5-voJgt0,2463
706
- maxframe/tensor/linalg/__init__.py,sha256=pghIrKGKubLdVIYCSx3jfuDeWxeAcC3WMoNDyT0Ukrc,1174
840
+ maxframe/tensor/linalg/einsum.py,sha256=3fRm1MFhWWBP4Opla1pIzi17Z_xTvcbDkIHqV0rd43g,14333
841
+ maxframe/tensor/linalg/norm.py,sha256=_zu1Zqyz9ggGTXcZt6FHaOqCSgVKWLE7Me0cYPXcfg4,8694
842
+ maxframe/tensor/linalg/cholesky.py,sha256=l_NYrkHmgA33L1CXB8a639bmOu-v4x0XMdqpAt04Aso,3550
843
+ maxframe/tensor/linalg/__init__.py,sha256=XRjNQ4NuA6VFuXjG3rX5sfE9-ZypIlXQ0RL50pC1X0U,1421
707
844
  maxframe/tensor/linalg/svd.py,sha256=eNz1ooYTRWms9d3KfjBrE-Lg4T_l-ThgmHhYmaucNfQ,6144
708
845
  maxframe/tensor/linalg/vdot.py,sha256=0Gosg2jCXnrfH4dyVQ01ghX7FFJTZiemUSk-V0Si0uo,2249
709
846
  maxframe/tensor/linalg/tensordot.py,sha256=bJCBZCtyv6vfGQvEbh5mjHqD7p1mCOtMJL4E5M7wyuQ,7093
710
847
  maxframe/tensor/linalg/qr.py,sha256=cFoGviuRBCwFDbj3YcM2WVDG617AtvbsF7zvlIFrUQU,3739
848
+ maxframe/tensor/linalg/_einsumfunc.py,sha256=GOlv2O1EXXMq2n6q6LONE2UJ2nuyYV5OxxCA9wHd0GE,35387
711
849
  maxframe/tensor/linalg/lu.py,sha256=4ijWtGTr1iaHQcOJ2uxcL1DQYUSGTqk-Rap2pPQ1kQY,3204
712
- maxframe/tensor/linalg/solve_triangular.py,sha256=L3YY4iCa8e5YZu8TMeHNc_sWeI3-UjUE1AxzccBqPXI,3373
850
+ maxframe/tensor/linalg/solve_triangular.py,sha256=8W01pBGAkQIOxE_pVXUyc4rwtbhFsVbiPK2OdjPw89k,3401
851
+ maxframe/tensor/linalg/solve.py,sha256=PnUYnwglUhEgY9hbIFfllNM9sNU4hmL4HXCcB4dTNQg,2096
713
852
  maxframe/tensor/linalg/dot.py,sha256=jyYiPBLdprTDn_gbB31tt0TRH9yGLC0edeqkUkY8fV0,4649
853
+ maxframe/tensor/linalg/vector_norm.py,sha256=UX-ygFt04x_mJtGWg5-wZIxjiDSvxZFijWexLbHpqZ4,3624
854
+ maxframe/tensor/linalg/lstsq.py,sha256=Esz0A6RvifVeX024nbi4G3Q281bmARNwE8IIHJOtICU,3675
714
855
  maxframe/tensor/sort/argsort.py,sha256=7ALZVxxN8T9t3sk0fJBbqybiNgNU5Vilw2sfE-JTpnY,4887
856
+ maxframe/tensor/sort/partition.py,sha256=Rv5Il7hsFRCG1LS6UnOLwZm9-yB8ZlCaoqZsRGkucAA,7923
715
857
  maxframe/tensor/sort/sort.py,sha256=24Ghtpm2dot7mxtNtZy4zVMDsIqe0-PP4uesxPvPnuQ,11129
716
- maxframe/tensor/sort/__init__.py,sha256=Huqx9HhamXrck1mB20_7a9-NN4ujUtgEt1plMsR2y48,649
858
+ maxframe/tensor/sort/__init__.py,sha256=EkTa7CLzokDZDNoPz_wCCo4r0tPBupJCX5oFVgtWP00,721
859
+ maxframe/tensor/sort/argpartition.py,sha256=N--G94qTHLUaov8BU7EMd7uO2N0vfTruZua7nyIGnks,3478
717
860
  maxframe/tensor/rechunk/__init__.py,sha256=r4ae0JUXxgHnRFpIfoFNpNEiQ7oUne1vhE5Ebov2Qqs,797
718
861
  maxframe/tensor/rechunk/rechunk.py,sha256=VqOInL92Qd9u2dNyJRjGKt9sIQrMD6mrgNI2ucMGhO8,1392
719
862
  maxframe/tensor/merge/concatenate.py,sha256=B9ogoLIy3MfC1s4Y2fE9NeWXZOJcCuIhTzY_fmxFt70,3280
@@ -729,12 +872,21 @@ maxframe/tensor/merge/tests/test_merge.py,sha256=ef4Mh9ignZLj7LAbynl8dVE0D0M9xfT
729
872
  maxframe/tensor/ufunc/ufunc.py,sha256=mARoZbAO77fX1LuCVC_N62NE3PC4KIZO_D-mnw0WgsI,7137
730
873
  maxframe/tensor/ufunc/__init__.py,sha256=nroGEX4rm2eziyc2CMLDVw_u5bmDcy48cpNxiiEM7Qk,749
731
874
  maxframe/tensor/extensions/accessor.py,sha256=fW7h8TXFrzJrFsdJl-6hGit6oB3rlaSZmMdVvS_h_gY,818
732
- maxframe/tensor/extensions/apply_chunk.py,sha256=ONTfmespXTahBfdHtzk7EVVOew4n3XlXpwYLi4jh5vc,4420
733
- maxframe/tensor/extensions/__init__.py,sha256=mj6dzxSSwZPYNkVlNvvABp0OTFVJr8eRjroCSya-tm4,996
734
- maxframe/tensor/special/misc.py,sha256=iomWTcxhyEPVYSFiSWe0H2CKlKII-cEJxehBLHf4oPY,4489
875
+ maxframe/tensor/extensions/apply_chunk.py,sha256=GDnp_wpnK69VS-BVTk7Q4AMMXNV8qovdzm_oOCcaBVs,4463
876
+ maxframe/tensor/extensions/__init__.py,sha256=_Bcxr0dwJcydfYHJAMNHvHCJJ7vHcHnrCTxT0mYWtWY,1090
877
+ maxframe/tensor/extensions/rebalance.py,sha256=MBnZoGLKEc1VSFKB6uPKr1e-hzVg0HcNJ_8ufzw6SrU,2215
878
+ maxframe/tensor/special/hypergeometric_funcs.py,sha256=CsOKlrqXhuiqIbvWN9b1Yu1BPDdKzvvNPIe9FFChuA8,1999
879
+ maxframe/tensor/special/misc.py,sha256=e8SvdoTuOUd7jLuF_8WU_S7ZpF-XxxvIgxhbm2ObV-Y,5052
880
+ maxframe/tensor/special/ellip_harm.py,sha256=Ht-DCWisP0939HpUwOOoEZ8s9CEIWuGaORLCdMlMQzs,1724
735
881
  maxframe/tensor/special/statistical.py,sha256=WUCXm_1X9IeQWBdR2iH0mf3ZYe2Z8kU8yWNjvDM4QJA,1671
736
- maxframe/tensor/special/__init__.py,sha256=Onn9Qc5BHI52Ls0jIEjpaNUjTV8MQ1DkLb8I_93VxT0,1029
737
- maxframe/tensor/special/core.py,sha256=gs6HgKvAGvobX2fWIi1MbdB103BIU1aqR6DStWt2wiA,1217
882
+ maxframe/tensor/special/info_theory.py,sha256=K0mQ3rBcOa2RBFh03De2kwmtVM-W81qDdslFDPcJsMQ,5011
883
+ maxframe/tensor/special/ellip_func_integrals.py,sha256=gkIlNRVxiINhLYIpI3ibaBbwvlsuO0LXTLQBt364QbY,4135
884
+ maxframe/tensor/special/airy.py,sha256=3iRGjgfKv2p6vql1g1Jj9IjGOwsHjxRa1aB0_FTKfEk,1645
885
+ maxframe/tensor/special/err_fresnel.py,sha256=kXj7kfcLXGEVMM2RWGA9ZgSDlXDJqMLAgthtb_0ULHs,6054
886
+ maxframe/tensor/special/__init__.py,sha256=4FHizq2QSTL5c2bqgSF6nMFXVmoJeoPcPdocLtEq_xU,3874
887
+ maxframe/tensor/special/core.py,sha256=R5833J083ol0PO71g_Q5ScrxBMefChjpJdzcfVPqB-g,3107
888
+ maxframe/tensor/special/gamma_funcs.py,sha256=rQXPjR2yyvcpkXwzxtQZSYk86NXlLbayb-V633ZyeI4,8091
889
+ maxframe/tensor/special/bessel.py,sha256=oOtaXd_-28_21pBMRd4l9LjVoVwcvT_dlEXHSK4Jw8c,4824
738
890
  maxframe/tensor/fetch/__init__.py,sha256=m_wEDMVtz0FIx7kKCZJmGmPezsIYaYdxFjb8rIy1t5Q,647
739
891
  maxframe/tensor/fetch/core.py,sha256=hbrnZNgibYz-lA1Gk-RjWYArqdlpaSFSbbKYmYdaMj8,1818
740
892
  maxframe/tensor/reduction/nanprod.py,sha256=1J2CFf_Yu2p9K8K5eL6ukZSBBGA9E6BcjWDq3a_vTHU,3268
@@ -756,7 +908,7 @@ maxframe/tensor/reduction/min.py,sha256=U8CxvvpCiD_Vsb5tee56Y383VknbfbLIwetgx3hf
756
908
  maxframe/tensor/reduction/mean.py,sha256=_yOw9n1Y01VRgRmgI_UhZunF-xC0U0h1fWWNiV7RxM0,4333
757
909
  maxframe/tensor/reduction/var.py,sha256=c--5r9GNMHGSGqg_8HHKBvf5msFJ18gN-sL3CDEhFcY,6258
758
910
  maxframe/tensor/reduction/nanmax.py,sha256=XcFJ7MvSnGyROBX2hqN8pD01tCgdujsA1kFuUpq0G2U,3904
759
- maxframe/tensor/reduction/array_equal.py,sha256=SN26A9A2pXIqLOmOwb1MnDLBROh_krJcu3x_8DKsk6w,1749
911
+ maxframe/tensor/reduction/array_equal.py,sha256=LlrSbvFdkoI8fHg2Wxqw-RxqVcLI41bEVfFFrI_HbLg,1801
760
912
  maxframe/tensor/reduction/sum.py,sha256=h8M_VHFwLty9D_3_I8sgScb2Oy2H9BI_HBTlDN-hTp0,4200
761
913
  maxframe/tensor/reduction/prod.py,sha256=8J7aYKCgTr592Pp7IEAi-RIf7EZZFAph_iZ18_NoWAo,4360
762
914
  maxframe/tensor/reduction/cumsum.py,sha256=4uKptBW1MNakR2t4Ii9oyxLfQkd4RCWraiIPtCqqBMk,3445
@@ -778,6 +930,7 @@ maxframe/tensor/arithmetic/setimag.py,sha256=_p8BSQ4y7zA9FDycF4DpLfPz1BVwR88b7mg
778
930
  maxframe/tensor/arithmetic/signbit.py,sha256=uMmSAB1TRtIkBB6d7503k14Zp78kqiIsrBD4iZxRAHQ,2066
779
931
  maxframe/tensor/arithmetic/logical_and.py,sha256=EHR3E1T_AJVT04o00ZOeTkb9Dvw6q1NEs7VlpOHBrH4,2524
780
932
  maxframe/tensor/arithmetic/tanh.py,sha256=07lqmB0lGu-_2_yIV2-G0lP5UWPlVkNHZSGObqkqYUs,2999
933
+ maxframe/tensor/arithmetic/iscomplexobj.py,sha256=m0fGm2Ezfd6tEeV2eFGmjeiNYlEUjxlluC-p302TLhM,1480
781
934
  maxframe/tensor/arithmetic/isinf.py,sha256=gl-NNDe4LrR-i3cAKgQ6zKsyOlUPdiliNE4xsTl9tRU,3416
782
935
  maxframe/tensor/arithmetic/equal.py,sha256=7b6Q3pz4kJHAZIb8iyb78X-mXvJkZNhofMXsplip0mc,2347
783
936
  maxframe/tensor/arithmetic/nextafter.py,sha256=exajwOJGcMP_bEbccX2KmTRsEa7-i_XrVdW7vF3ATFI,2284
@@ -806,11 +959,11 @@ maxframe/tensor/arithmetic/logaddexp.py,sha256=GbgL9xONddcbWsrSoYgg9EiD8h72-Wi2y
806
959
  maxframe/tensor/arithmetic/modf.py,sha256=bB0uK8S9o2skU18odW5c-LhiDEudoG5EQcuxp8vUMaw,2680
807
960
  maxframe/tensor/arithmetic/abs.py,sha256=FUsZSFXWLcjtG8-oOX5gziCfFyD8nWeRjuxqJD-HI1c,2134
808
961
  maxframe/tensor/arithmetic/ldexp.py,sha256=HTf8DdLzwipB7mRWgdVAuiPI7k--27oNPpPUpsW3uPM,3119
809
- maxframe/tensor/arithmetic/__init__.py,sha256=A_GsabIOZAGSP8g5EY07gJoq83cprHEJtha2vchvU8E,9394
962
+ maxframe/tensor/arithmetic/__init__.py,sha256=1oPhzpbRxXmIYvN1ty1kMMfrElaMKbwzirDZaLPfRl8,9730
810
963
  maxframe/tensor/arithmetic/divide.py,sha256=LWPQDOUP3SwqVDTVbbVEvLdntc6PkSRLRuVNw23GDh8,3664
811
964
  maxframe/tensor/arithmetic/float_power.py,sha256=gT-tz2mYU9XXwYtKoZg9Qrt4K-lXdMRAWcLGFu1dx3o,3318
812
965
  maxframe/tensor/arithmetic/logical_xor.py,sha256=yzSEB2nqOgpCbCUwQcsG-NdBwpgzuiCtbldUGKPyiP0,2844
813
- maxframe/tensor/arithmetic/core.py,sha256=WaCaaj5C-4XGTmWERi2VTIhH0ppyPGH8IUvBpfcLTOc,17572
966
+ maxframe/tensor/arithmetic/core.py,sha256=EYm0P8UaEBXEdE88_zx2GR8YEOPTKII1QjawpyUj3fQ,17616
814
967
  maxframe/tensor/arithmetic/floor.py,sha256=51M0Xo8Wn75-jUdLC1ViHDYhuDraCXaIVs4LrSeZJnQ,2396
815
968
  maxframe/tensor/arithmetic/real.py,sha256=z8dbQjaKdzzfbR01HOAxdwatEl2ZPk6jTDCdZGJEIew,1785
816
969
  maxframe/tensor/arithmetic/around.py,sha256=42tL30_etreKQaPpi6alEAo7M8vcborusyPFcbU4U_0,3780
@@ -868,9 +1021,29 @@ maxframe/tensor/arithmetic/sin.py,sha256=zAI8inhDFTjS2i1PXbE2P3F-djXDP8TEJX1qLFq
868
1021
  maxframe/tensor/arithmetic/reciprocal.py,sha256=XQpGtYw7LjpS6q6d6a4evmBqbT-FjvvcGh4jJqMkTCQ,2403
869
1022
  maxframe/tensor/arithmetic/bitxor.py,sha256=TX1zzXoiEdjlDJKMu4m9kA0_a2ucCNIFTnGncbyOWwo,2863
870
1023
  maxframe/tensor/arithmetic/tests/__init__.py,sha256=YsJxv7HbG4YYJmqAJZPYb8iHFRQX5JGpGn2PInDXvY8,596
871
- maxframe/tensor/arithmetic/tests/test_arithmetic.py,sha256=BGS-hwNO_SM5XXeW_RDSqkBeXfCjfEEh2sPiH2CkZqM,12559
1024
+ maxframe/tensor/arithmetic/tests/test_arithmetic.py,sha256=1yMD7r0_YISEAUaidDxHQt6WbZnof_R3DJCKCMmNdNI,12523
872
1025
  maxframe/tensor/lib/__init__.py,sha256=zna2_lR6uuQAuS0wBqg1EkC3V0eeHuJdCv4VEI-MFQw,658
873
1026
  maxframe/tensor/lib/index_tricks.py,sha256=BRRnjvaRAqJe95FTUDjYsmYM50ibvFzYcvnHEA_WB9E,14142
1027
+ maxframe/tensor/fft/fftshift.py,sha256=2Wng8VIPtyJZM9o1Pn7KXoZAllHslJlDufLQoXyeF6I,2389
1028
+ maxframe/tensor/fft/irfft.py,sha256=Scwffl3vPwdWnf_aGVKNNxDi_oE4G1IO1sLANM9FMhw,4576
1029
+ maxframe/tensor/fft/rfftfreq.py,sha256=bliqxTpoENlSfj3WFZOwn75MMV6T4wTFtxQf4bD6xsM,2953
1030
+ maxframe/tensor/fft/irfftn.py,sha256=Is7JIVrygjgSdJDWiwomHVHRldbDmFEXd25VmWCj7G0,4447
1031
+ maxframe/tensor/fft/ifft2.py,sha256=A8-CYyrqMTSwGUp9UCa1cfp5uDpG4EeYNSejzHAxE_M,4692
1032
+ maxframe/tensor/fft/ifftn.py,sha256=nh4Eqf5oYm1sRt_O4zoMWXv6pPdBOJXo29A2q6Fpxqg,4930
1033
+ maxframe/tensor/fft/ifftshift.py,sha256=5X-mi8o9rtuHkfv9OlKVIs4mAn6TAIto7WP6d62B6iM,2115
1034
+ maxframe/tensor/fft/ihfft.py,sha256=b9lmL3Xz26YF6Ds9CAuQw3nfOTlDVH-yyeuwqkiOT9s,3248
1035
+ maxframe/tensor/fft/irfft2.py,sha256=Xkaq-dglA2Elib88_bl58VlG7YTmoShqPcVA72v-Y7E,1892
1036
+ maxframe/tensor/fft/__init__.py,sha256=7zP8W7ryCCWCysWMu1iH58JR3bki-I1cCdevBEYhH1g,1302
1037
+ maxframe/tensor/fft/core.py,sha256=PHeIoJlJjfAHRA5CkmlX4zmO2y3aBe402khISr7mPf0,4490
1038
+ maxframe/tensor/fft/fft2.py,sha256=KjrvwMEQ_BJsyNh3L42c9U0lM9QecjOC39NKjBnUNGo,4730
1039
+ maxframe/tensor/fft/rfft2.py,sha256=3o0h8o7Nhh8Ou-cHF2GsdLTg5076NPsPpm9B-Iv53GI,1933
1040
+ maxframe/tensor/fft/rfft.py,sha256=Mz0ZyN9L6suv5ijRYBT1xk8NevTOzGXL5AhfLYidjZk,4360
1041
+ maxframe/tensor/fft/ifft.py,sha256=8OoVf_hH6Jcngb5tANeFilStHiF3xQ2JLtKHIRrJWZA,4138
1042
+ maxframe/tensor/fft/fftfreq.py,sha256=akYYdRynhkwe-ZUE-iZLY6cDEFIeYZ7FBtKTzRaj7z4,2634
1043
+ maxframe/tensor/fft/fft.py,sha256=m_9y61ScJTymjk0ViRmGyEuRzVKQa3CukN6gKXKWDXM,4165
1044
+ maxframe/tensor/fft/rfftn.py,sha256=g_wnnhCdqgEXuzDHdnpMfpJleNok7-QX1Cz8Ix2W9q4,4293
1045
+ maxframe/tensor/fft/fftn.py,sha256=y_60M1GSopmN3rmecUZCEeS25O4YhOlO_L8WwOFjiK8,4811
1046
+ maxframe/tensor/fft/hfft.py,sha256=X2uT2BVfYN1FQByX5qghhaOGxKmz5prLIZAqm2MLaOM,3977
874
1047
  maxframe/tensor/indexing/choose.py,sha256=nV6P_z3kp4sVpGjPNXPE5S6U68b7KR7_GMc3zBoFcng,7644
875
1048
  maxframe/tensor/indexing/nonzero.py,sha256=ng4axHH0IkIvSHkrUZ3t8sGz5F0TKn5TyigRVohgOKI,3493
876
1049
  maxframe/tensor/indexing/slice.py,sha256=NptsH__F5Qq8mOTwgTR7RejXj8h_FufsIBUknbfqcNQ,1130
@@ -880,7 +1053,7 @@ maxframe/tensor/indexing/getitem.py,sha256=Vb7mxlo0j_FVj967FPkP9dsuN0GSdhj_TjnE2
880
1053
  maxframe/tensor/indexing/core.py,sha256=evzxbwfrgFLkkO2_itP2C_hfhY4qyrKOhZTfLCIK7BM,7022
881
1054
  maxframe/tensor/indexing/unravel_index.py,sha256=jZDkGk-0rPfAJ32QCPIDeHcNh24DSEPswaDL36A_FD0,3273
882
1055
  maxframe/tensor/indexing/flatnonzero.py,sha256=TYWx70TFKzDaJOuq-IN94_VXuBHZd4qDCk0QvQNLQmY,1592
883
- maxframe/tensor/indexing/fill_diagonal.py,sha256=66UpYKsQLIPfQGvyFD9XRVtcp0b3kxqU_9WSYcfXAwI,5396
1056
+ maxframe/tensor/indexing/fill_diagonal.py,sha256=0cfVGIJm1lahmmf1hECTN04P4KQfkNmS7MZHRH7HmUg,5258
884
1057
  maxframe/tensor/indexing/take.py,sha256=Ho3w4K0vMP3FpnwjrY-TSz7BgdxkU73g3ORU-FUTLjk,4208
885
1058
  maxframe/tensor/indexing/compress.py,sha256=8wnffG8iYOPP9MVux7FKfDXB8-M_LYiS11-PzhdKPbQ,3983
886
1059
  maxframe/tensor/indexing/extract.py,sha256=Kr3upYT2ollrwOK1UlvkYG4FmJnTMt2NSSZ1ThV4ldU,2022
@@ -934,6 +1107,11 @@ maxframe/tensor/random/wald.py,sha256=VWTdrW458HLYR_KXBwK9ryTIYc5J9GxBaW3Nwa3xnV
934
1107
  maxframe/tensor/random/binomial.py,sha256=ItnWUoDDGNQuuquEP0KfzANnj1Uh5wPc3NLnjcXRZjY,5245
935
1108
  maxframe/tensor/random/tests/__init__.py,sha256=YsJxv7HbG4YYJmqAJZPYb8iHFRQX5JGpGn2PInDXvY8,596
936
1109
  maxframe/tensor/random/tests/test_random.py,sha256=Ff6SPeT-aSQI1KSqH0QfJ3NBQsqYYQ3FNMjIo7z3LOM,4229
1110
+ maxframe/tensor/spatial/__init__.py,sha256=2n0j20avW6i9t7H4aVnhh0uC9x94V9q486mNId_UY-Q,620
1111
+ maxframe/tensor/spatial/distance/squareform.py,sha256=_UVtbWESGsMOxsdue_B8JwRpvi6CXBfW9S5Xdmgzigg,5393
1112
+ maxframe/tensor/spatial/distance/cdist.py,sha256=cCRbMhpWIMxND6NiETFbAG47yngCXD0BVp5pXmLzxY0,13863
1113
+ maxframe/tensor/spatial/distance/__init__.py,sha256=VmcPC8eNOPLics8_w25yJBa11o5Vu4UD8SzhegOelGo,682
1114
+ maxframe/tensor/spatial/distance/pdist.py,sha256=JkaKUplXBBgyzf3n7h4QwRvNlaz1eUj4ECrBm2NGAbE,12751
937
1115
  maxframe/remote/run_script.py,sha256=M7g1ZorfEdzH_8fPA4Rcv821UJZ5dD9vgtYA7JAMf_g,3651
938
1116
  maxframe/remote/__init__.py,sha256=EBfizOWJqWnsbhR6nOom9-TUSuGF7t6C6Hfrt9eP3V4,729
939
- maxframe/remote/core.py,sha256=FX_XVQB0uz27JMmjCiN48mBiklGXI9peAq39aX51cko,6551
1117
+ maxframe/remote/core.py,sha256=cqMSInki7v1rbBMmm7x_ufdPVwm1uRbPuppsXT8ghgI,6658