maxframe 1.3.0__cp38-cp38-win32.whl → 2.0.0__cp38-cp38-win32.whl

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

Potentially problematic release.


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

Files changed (644) hide show
  1. maxframe/_utils.cp38-win32.pyd +0 -0
  2. maxframe/_utils.pyi +21 -0
  3. maxframe/_utils.pyx +4 -3
  4. maxframe/codegen/__init__.py +27 -0
  5. maxframe/{codegen.py → codegen/core.py} +49 -43
  6. maxframe/codegen/spe/__init__.py +16 -0
  7. maxframe/codegen/spe/core.py +307 -0
  8. maxframe/codegen/spe/dataframe/__init__.py +37 -0
  9. maxframe/codegen/spe/dataframe/accessors/__init__.py +15 -0
  10. maxframe/codegen/spe/dataframe/accessors/base.py +53 -0
  11. maxframe/codegen/spe/dataframe/accessors/dict_.py +194 -0
  12. maxframe/codegen/spe/dataframe/accessors/list_.py +80 -0
  13. maxframe/codegen/spe/dataframe/arithmetic.py +84 -0
  14. maxframe/codegen/spe/dataframe/datasource.py +181 -0
  15. maxframe/codegen/spe/dataframe/datastore.py +204 -0
  16. maxframe/codegen/spe/dataframe/extensions.py +63 -0
  17. maxframe/codegen/spe/dataframe/fetch.py +26 -0
  18. maxframe/codegen/spe/dataframe/groupby.py +224 -0
  19. maxframe/codegen/spe/dataframe/indexing.py +238 -0
  20. maxframe/codegen/spe/dataframe/merge.py +73 -0
  21. maxframe/codegen/spe/dataframe/misc.py +286 -0
  22. maxframe/codegen/spe/dataframe/missing.py +64 -0
  23. maxframe/codegen/spe/dataframe/reduction.py +160 -0
  24. maxframe/codegen/spe/dataframe/sort.py +83 -0
  25. maxframe/codegen/spe/dataframe/statistics.py +46 -0
  26. maxframe/codegen/spe/dataframe/tests/__init__.py +13 -0
  27. maxframe/codegen/spe/dataframe/tests/accessors/__init__.py +13 -0
  28. maxframe/codegen/spe/dataframe/tests/accessors/test_base.py +33 -0
  29. maxframe/codegen/spe/dataframe/tests/accessors/test_dict.py +310 -0
  30. maxframe/codegen/spe/dataframe/tests/accessors/test_list.py +137 -0
  31. maxframe/codegen/spe/dataframe/tests/indexing/__init__.py +13 -0
  32. maxframe/codegen/spe/dataframe/tests/indexing/conftest.py +58 -0
  33. maxframe/codegen/spe/dataframe/tests/indexing/test_getitem.py +124 -0
  34. maxframe/codegen/spe/dataframe/tests/indexing/test_iloc.py +76 -0
  35. maxframe/codegen/spe/dataframe/tests/indexing/test_indexing.py +39 -0
  36. maxframe/codegen/spe/dataframe/tests/indexing/test_rename.py +51 -0
  37. maxframe/codegen/spe/dataframe/tests/indexing/test_reset_index.py +88 -0
  38. maxframe/codegen/spe/dataframe/tests/indexing/test_sample.py +45 -0
  39. maxframe/codegen/spe/dataframe/tests/indexing/test_set_axis.py +45 -0
  40. maxframe/codegen/spe/dataframe/tests/indexing/test_set_index.py +41 -0
  41. maxframe/codegen/spe/dataframe/tests/indexing/test_setitem.py +46 -0
  42. maxframe/codegen/spe/dataframe/tests/misc/__init__.py +13 -0
  43. maxframe/codegen/spe/dataframe/tests/misc/test_apply.py +133 -0
  44. maxframe/codegen/spe/dataframe/tests/misc/test_drop_duplicates.py +92 -0
  45. maxframe/codegen/spe/dataframe/tests/misc/test_misc.py +234 -0
  46. maxframe/codegen/spe/dataframe/tests/missing/__init__.py +13 -0
  47. maxframe/codegen/spe/dataframe/tests/missing/test_checkna.py +94 -0
  48. maxframe/codegen/spe/dataframe/tests/missing/test_dropna.py +50 -0
  49. maxframe/codegen/spe/dataframe/tests/missing/test_fillna.py +94 -0
  50. maxframe/codegen/spe/dataframe/tests/missing/test_replace.py +45 -0
  51. maxframe/codegen/spe/dataframe/tests/test_arithmetic.py +73 -0
  52. maxframe/codegen/spe/dataframe/tests/test_datasource.py +184 -0
  53. maxframe/codegen/spe/dataframe/tests/test_datastore.py +200 -0
  54. maxframe/codegen/spe/dataframe/tests/test_extensions.py +88 -0
  55. maxframe/codegen/spe/dataframe/tests/test_groupby.py +225 -0
  56. maxframe/codegen/spe/dataframe/tests/test_merge.py +400 -0
  57. maxframe/codegen/spe/dataframe/tests/test_reduction.py +104 -0
  58. maxframe/codegen/spe/dataframe/tests/test_sort.py +159 -0
  59. maxframe/codegen/spe/dataframe/tests/test_statistics.py +70 -0
  60. maxframe/codegen/spe/dataframe/tests/test_tseries.py +29 -0
  61. maxframe/codegen/spe/dataframe/tests/test_value_counts.py +60 -0
  62. maxframe/codegen/spe/dataframe/tests/test_window.py +69 -0
  63. maxframe/codegen/spe/dataframe/tseries.py +46 -0
  64. maxframe/codegen/spe/dataframe/udf.py +62 -0
  65. maxframe/codegen/spe/dataframe/value_counts.py +31 -0
  66. maxframe/codegen/spe/dataframe/window.py +65 -0
  67. maxframe/codegen/spe/learn/__init__.py +15 -0
  68. maxframe/codegen/spe/learn/contrib/__init__.py +15 -0
  69. maxframe/codegen/spe/learn/contrib/lightgbm.py +160 -0
  70. maxframe/codegen/spe/learn/contrib/models.py +41 -0
  71. maxframe/codegen/spe/learn/contrib/pytorch.py +49 -0
  72. maxframe/codegen/spe/learn/contrib/tests/__init__.py +13 -0
  73. maxframe/codegen/spe/learn/contrib/tests/test_lightgbm.py +123 -0
  74. maxframe/codegen/spe/learn/contrib/tests/test_models.py +41 -0
  75. maxframe/codegen/spe/learn/contrib/tests/test_pytorch.py +53 -0
  76. maxframe/codegen/spe/learn/contrib/tests/test_xgboost.py +98 -0
  77. maxframe/codegen/spe/learn/contrib/xgboost.py +152 -0
  78. maxframe/codegen/spe/learn/metrics/__init__.py +15 -0
  79. maxframe/codegen/spe/learn/metrics/_classification.py +120 -0
  80. maxframe/codegen/spe/learn/metrics/tests/__init__.py +13 -0
  81. maxframe/codegen/spe/learn/metrics/tests/test_classification.py +93 -0
  82. maxframe/codegen/spe/learn/model_selection/__init__.py +13 -0
  83. maxframe/codegen/spe/learn/model_selection/tests/__init__.py +13 -0
  84. maxframe/codegen/spe/learn/model_selection/tests/test_split.py +41 -0
  85. maxframe/codegen/spe/learn/preprocessing/__init__.py +15 -0
  86. maxframe/codegen/spe/learn/preprocessing/_data.py +37 -0
  87. maxframe/codegen/spe/learn/preprocessing/_label.py +47 -0
  88. maxframe/codegen/spe/learn/preprocessing/tests/__init__.py +13 -0
  89. maxframe/codegen/spe/learn/preprocessing/tests/test_data.py +31 -0
  90. maxframe/codegen/spe/learn/preprocessing/tests/test_label.py +43 -0
  91. maxframe/codegen/spe/learn/utils/__init__.py +15 -0
  92. maxframe/codegen/spe/learn/utils/checks.py +55 -0
  93. maxframe/codegen/spe/learn/utils/multiclass.py +60 -0
  94. maxframe/codegen/spe/learn/utils/shuffle.py +85 -0
  95. maxframe/codegen/spe/learn/utils/sparsefuncs.py +35 -0
  96. maxframe/codegen/spe/learn/utils/tests/__init__.py +13 -0
  97. maxframe/codegen/spe/learn/utils/tests/test_checks.py +48 -0
  98. maxframe/codegen/spe/learn/utils/tests/test_multiclass.py +52 -0
  99. maxframe/codegen/spe/learn/utils/tests/test_shuffle.py +50 -0
  100. maxframe/codegen/spe/learn/utils/tests/test_sparsefuncs.py +34 -0
  101. maxframe/codegen/spe/learn/utils/tests/test_validation.py +44 -0
  102. maxframe/codegen/spe/learn/utils/validation.py +35 -0
  103. maxframe/codegen/spe/objects.py +26 -0
  104. maxframe/codegen/spe/remote.py +29 -0
  105. maxframe/codegen/spe/tensor/__init__.py +28 -0
  106. maxframe/codegen/spe/tensor/arithmetic.py +95 -0
  107. maxframe/codegen/spe/tensor/core.py +41 -0
  108. maxframe/codegen/spe/tensor/datasource.py +165 -0
  109. maxframe/codegen/spe/tensor/extensions.py +35 -0
  110. maxframe/codegen/spe/tensor/fetch.py +26 -0
  111. maxframe/codegen/spe/tensor/indexing.py +63 -0
  112. maxframe/codegen/spe/tensor/linalg.py +63 -0
  113. maxframe/codegen/spe/tensor/merge.py +31 -0
  114. maxframe/codegen/spe/tensor/misc.py +121 -0
  115. maxframe/codegen/spe/tensor/random.py +29 -0
  116. maxframe/codegen/spe/tensor/reduction.py +39 -0
  117. maxframe/codegen/spe/tensor/reshape.py +26 -0
  118. maxframe/codegen/spe/tensor/sort.py +42 -0
  119. maxframe/codegen/spe/tensor/special.py +35 -0
  120. maxframe/codegen/spe/tensor/statistics.py +24 -0
  121. maxframe/codegen/spe/tensor/tests/__init__.py +13 -0
  122. maxframe/codegen/spe/tensor/tests/test_arithmetic.py +103 -0
  123. maxframe/codegen/spe/tensor/tests/test_datasource.py +99 -0
  124. maxframe/codegen/spe/tensor/tests/test_extensions.py +37 -0
  125. maxframe/codegen/spe/tensor/tests/test_indexing.py +44 -0
  126. maxframe/codegen/spe/tensor/tests/test_linalg.py +38 -0
  127. maxframe/codegen/spe/tensor/tests/test_merge.py +28 -0
  128. maxframe/codegen/spe/tensor/tests/test_misc.py +94 -0
  129. maxframe/codegen/spe/tensor/tests/test_random.py +55 -0
  130. maxframe/codegen/spe/tensor/tests/test_reduction.py +65 -0
  131. maxframe/codegen/spe/tensor/tests/test_reshape.py +39 -0
  132. maxframe/codegen/spe/tensor/tests/test_sort.py +49 -0
  133. maxframe/codegen/spe/tensor/tests/test_special.py +28 -0
  134. maxframe/codegen/spe/tensor/tests/test_statistics.py +29 -0
  135. maxframe/codegen/spe/tests/__init__.py +13 -0
  136. maxframe/codegen/spe/tests/test_remote.py +29 -0
  137. maxframe/codegen/spe/tests/test_spe_codegen.py +141 -0
  138. maxframe/codegen/spe/utils.py +54 -0
  139. maxframe/codegen/tests/__init__.py +13 -0
  140. maxframe/{tests → codegen/tests}/test_codegen.py +3 -5
  141. maxframe/config/__init__.py +1 -1
  142. maxframe/config/config.py +50 -23
  143. maxframe/config/tests/test_config.py +4 -12
  144. maxframe/config/validators.py +5 -0
  145. maxframe/conftest.py +38 -10
  146. maxframe/core/__init__.py +1 -0
  147. maxframe/core/context.py +110 -0
  148. maxframe/core/entity/__init__.py +1 -0
  149. maxframe/core/entity/core.py +0 -7
  150. maxframe/core/entity/objects.py +19 -5
  151. maxframe/core/entity/output_types.py +11 -0
  152. maxframe/core/entity/tests/test_objects.py +11 -12
  153. maxframe/core/entity/tileables.py +3 -1
  154. maxframe/core/entity/utils.py +15 -0
  155. maxframe/core/graph/__init__.py +6 -1
  156. maxframe/core/graph/builder/base.py +5 -1
  157. maxframe/core/graph/core.cp38-win32.pyd +0 -0
  158. maxframe/core/graph/core.pyx +17 -6
  159. maxframe/core/graph/entity.py +18 -6
  160. maxframe/core/operator/__init__.py +8 -3
  161. maxframe/core/operator/base.py +35 -12
  162. maxframe/core/operator/core.py +37 -14
  163. maxframe/core/operator/fetch.py +5 -18
  164. maxframe/core/operator/objects.py +0 -20
  165. maxframe/core/operator/shuffle.py +6 -72
  166. maxframe/dataframe/__init__.py +1 -0
  167. maxframe/dataframe/accessors/datetime_/core.py +7 -4
  168. maxframe/dataframe/accessors/string_/core.py +9 -6
  169. maxframe/dataframe/arithmetic/core.py +31 -20
  170. maxframe/dataframe/arithmetic/tests/test_arithmetic.py +6 -0
  171. maxframe/dataframe/core.py +98 -91
  172. maxframe/dataframe/datasource/core.py +8 -1
  173. maxframe/dataframe/datasource/date_range.py +8 -0
  174. maxframe/dataframe/datasource/from_index.py +9 -5
  175. maxframe/dataframe/datasource/from_records.py +9 -2
  176. maxframe/dataframe/datasource/from_tensor.py +32 -21
  177. maxframe/dataframe/datasource/read_csv.py +8 -2
  178. maxframe/dataframe/datasource/read_odps_query.py +109 -19
  179. maxframe/dataframe/datasource/read_odps_table.py +20 -5
  180. maxframe/dataframe/datasource/read_parquet.py +8 -3
  181. maxframe/dataframe/datasource/tests/test_datasource.py +80 -1
  182. maxframe/dataframe/datastore/tests/test_to_odps.py +52 -1
  183. maxframe/dataframe/datastore/to_csv.py +7 -3
  184. maxframe/dataframe/datastore/to_odps.py +42 -6
  185. maxframe/dataframe/extensions/__init__.py +6 -1
  186. maxframe/dataframe/extensions/apply_chunk.py +96 -136
  187. maxframe/dataframe/extensions/flatjson.py +3 -2
  188. maxframe/dataframe/extensions/flatmap.py +15 -7
  189. maxframe/dataframe/fetch/core.py +12 -1
  190. maxframe/dataframe/groupby/__init__.py +7 -0
  191. maxframe/dataframe/groupby/aggregation.py +62 -9
  192. maxframe/dataframe/groupby/apply.py +50 -74
  193. maxframe/dataframe/groupby/apply_chunk.py +393 -0
  194. maxframe/dataframe/groupby/core.py +80 -17
  195. maxframe/dataframe/groupby/extensions.py +26 -0
  196. maxframe/dataframe/groupby/fill.py +9 -4
  197. maxframe/dataframe/groupby/sample.py +7 -7
  198. maxframe/dataframe/groupby/tests/test_groupby.py +3 -3
  199. maxframe/dataframe/groupby/transform.py +57 -54
  200. maxframe/dataframe/indexing/align.py +7 -6
  201. maxframe/dataframe/indexing/getitem.py +9 -8
  202. maxframe/dataframe/indexing/iloc.py +28 -23
  203. maxframe/dataframe/indexing/insert.py +7 -3
  204. maxframe/dataframe/indexing/loc.py +9 -8
  205. maxframe/dataframe/indexing/reindex.py +36 -30
  206. maxframe/dataframe/indexing/rename_axis.py +18 -10
  207. maxframe/dataframe/indexing/reset_index.py +0 -2
  208. maxframe/dataframe/indexing/sample.py +13 -9
  209. maxframe/dataframe/indexing/set_axis.py +9 -6
  210. maxframe/dataframe/indexing/setitem.py +8 -5
  211. maxframe/dataframe/indexing/where.py +12 -9
  212. maxframe/dataframe/merge/__init__.py +0 -1
  213. maxframe/dataframe/merge/concat.py +10 -31
  214. maxframe/dataframe/merge/merge.py +2 -24
  215. maxframe/dataframe/misc/__init__.py +6 -0
  216. maxframe/dataframe/misc/_duplicate.py +7 -3
  217. maxframe/dataframe/misc/apply.py +106 -139
  218. maxframe/dataframe/misc/astype.py +3 -2
  219. maxframe/dataframe/misc/case_when.py +11 -7
  220. maxframe/dataframe/misc/cut.py +11 -10
  221. maxframe/dataframe/misc/describe.py +7 -3
  222. maxframe/dataframe/misc/drop.py +13 -11
  223. maxframe/dataframe/misc/eval.py +0 -2
  224. maxframe/dataframe/misc/get_dummies.py +78 -49
  225. maxframe/dataframe/misc/isin.py +13 -10
  226. maxframe/dataframe/misc/map.py +21 -6
  227. maxframe/dataframe/misc/melt.py +8 -1
  228. maxframe/dataframe/misc/pivot.py +232 -0
  229. maxframe/dataframe/misc/pivot_table.py +52 -40
  230. maxframe/dataframe/misc/rechunk.py +59 -0
  231. maxframe/dataframe/misc/shift.py +7 -4
  232. maxframe/dataframe/misc/stack.py +5 -3
  233. maxframe/dataframe/misc/tests/test_misc.py +167 -1
  234. maxframe/dataframe/misc/transform.py +63 -65
  235. maxframe/dataframe/misc/value_counts.py +7 -4
  236. maxframe/dataframe/missing/dropna.py +16 -7
  237. maxframe/dataframe/missing/fillna.py +18 -10
  238. maxframe/dataframe/missing/replace.py +10 -6
  239. maxframe/dataframe/missing/tests/test_missing.py +2 -2
  240. maxframe/dataframe/operators.py +1 -27
  241. maxframe/dataframe/reduction/aggregation.py +128 -3
  242. maxframe/dataframe/reduction/core.py +20 -6
  243. maxframe/dataframe/reduction/median.py +1 -1
  244. maxframe/dataframe/reduction/tests/test_reduction.py +33 -0
  245. maxframe/dataframe/reduction/unique.py +53 -7
  246. maxframe/dataframe/statistics/corr.py +9 -6
  247. maxframe/dataframe/statistics/quantile.py +9 -6
  248. maxframe/dataframe/tseries/to_datetime.py +6 -4
  249. maxframe/dataframe/utils.py +219 -31
  250. maxframe/dataframe/window/rolling.py +7 -4
  251. maxframe/env.py +1 -0
  252. maxframe/errors.py +9 -0
  253. maxframe/extension.py +13 -2
  254. maxframe/io/objects/core.py +67 -51
  255. maxframe/io/objects/tensor.py +73 -17
  256. maxframe/io/objects/tests/test_object_io.py +10 -55
  257. maxframe/io/odpsio/arrow.py +15 -2
  258. maxframe/io/odpsio/schema.py +43 -13
  259. maxframe/io/odpsio/tableio.py +63 -11
  260. maxframe/io/odpsio/tests/test_arrow.py +1 -2
  261. maxframe/io/odpsio/tests/test_schema.py +114 -1
  262. maxframe/io/odpsio/tests/test_tableio.py +42 -0
  263. maxframe/io/odpsio/tests/test_volumeio.py +21 -58
  264. maxframe/io/odpsio/volumeio.py +23 -8
  265. maxframe/learn/__init__.py +2 -2
  266. maxframe/learn/contrib/__init__.py +2 -2
  267. maxframe/learn/contrib/graph/connected_components.py +2 -1
  268. maxframe/learn/contrib/lightgbm/__init__.py +33 -0
  269. maxframe/learn/contrib/lightgbm/_predict.py +138 -0
  270. maxframe/learn/contrib/lightgbm/_train.py +163 -0
  271. maxframe/learn/contrib/lightgbm/callback.py +114 -0
  272. maxframe/learn/contrib/lightgbm/classifier.py +199 -0
  273. maxframe/learn/contrib/lightgbm/core.py +372 -0
  274. maxframe/learn/contrib/lightgbm/dataset.py +153 -0
  275. maxframe/learn/contrib/lightgbm/regressor.py +29 -0
  276. maxframe/learn/contrib/lightgbm/tests/__init__.py +13 -0
  277. maxframe/learn/contrib/lightgbm/tests/test_callback.py +58 -0
  278. maxframe/learn/contrib/llm/models/dashscope.py +34 -0
  279. maxframe/learn/contrib/llm/models/managed.py +15 -0
  280. maxframe/learn/contrib/llm/multi_modal.py +92 -0
  281. maxframe/learn/contrib/llm/text.py +21 -5
  282. maxframe/learn/contrib/models.py +38 -9
  283. maxframe/learn/contrib/utils.py +55 -0
  284. maxframe/learn/contrib/xgboost/callback.py +86 -0
  285. maxframe/learn/contrib/xgboost/classifier.py +26 -30
  286. maxframe/learn/contrib/xgboost/core.py +54 -42
  287. maxframe/learn/contrib/xgboost/dmatrix.py +19 -12
  288. maxframe/learn/contrib/xgboost/predict.py +13 -8
  289. maxframe/learn/contrib/xgboost/regressor.py +28 -27
  290. maxframe/learn/contrib/xgboost/tests/test_callback.py +41 -0
  291. maxframe/learn/contrib/xgboost/train.py +59 -16
  292. maxframe/learn/core.py +252 -0
  293. maxframe/learn/datasets/__init__.py +20 -0
  294. maxframe/learn/datasets/samples_generator.py +628 -0
  295. maxframe/learn/linear_model/__init__.py +15 -0
  296. maxframe/learn/linear_model/_base.py +163 -0
  297. maxframe/learn/linear_model/_lin_reg.py +175 -0
  298. maxframe/learn/metrics/__init__.py +25 -0
  299. maxframe/learn/metrics/_check_targets.py +95 -0
  300. maxframe/learn/metrics/_classification.py +1121 -0
  301. maxframe/learn/metrics/_regression.py +256 -0
  302. maxframe/learn/model_selection/__init__.py +15 -0
  303. maxframe/learn/model_selection/_split.py +451 -0
  304. maxframe/learn/model_selection/tests/__init__.py +13 -0
  305. maxframe/learn/model_selection/tests/test_split.py +156 -0
  306. maxframe/learn/preprocessing/__init__.py +16 -0
  307. maxframe/learn/preprocessing/_data/__init__.py +17 -0
  308. maxframe/learn/preprocessing/_data/min_max_scaler.py +390 -0
  309. maxframe/learn/preprocessing/_data/normalize.py +127 -0
  310. maxframe/learn/preprocessing/_data/standard_scaler.py +503 -0
  311. maxframe/learn/preprocessing/_data/utils.py +79 -0
  312. maxframe/learn/preprocessing/_label/__init__.py +16 -0
  313. maxframe/learn/preprocessing/_label/_label_binarizer.py +599 -0
  314. maxframe/learn/preprocessing/_label/_label_encoder.py +174 -0
  315. maxframe/learn/utils/__init__.py +4 -0
  316. maxframe/learn/utils/_encode.py +314 -0
  317. maxframe/learn/utils/checks.py +161 -0
  318. maxframe/learn/utils/core.py +33 -0
  319. maxframe/learn/utils/extmath.py +176 -0
  320. maxframe/learn/utils/multiclass.py +292 -0
  321. maxframe/learn/utils/shuffle.py +114 -0
  322. maxframe/learn/utils/sparsefuncs.py +87 -0
  323. maxframe/learn/utils/validation.py +775 -0
  324. maxframe/lib/__init__.py +0 -2
  325. maxframe/lib/compat.py +145 -0
  326. maxframe/lib/filesystem/_oss_lib/glob.py +1 -1
  327. maxframe/lib/mmh3.cp38-win32.pyd +0 -0
  328. maxframe/lib/sparse/__init__.py +10 -15
  329. maxframe/lib/sparse/array.py +45 -33
  330. maxframe/lib/sparse/core.py +0 -2
  331. maxframe/lib/sparse/linalg.py +31 -0
  332. maxframe/lib/sparse/matrix.py +5 -2
  333. maxframe/lib/sparse/tests/__init__.py +0 -2
  334. maxframe/lib/sparse/tests/test_sparse.py +53 -53
  335. maxframe/lib/sparse/vector.py +0 -2
  336. maxframe/mixin.py +59 -2
  337. maxframe/opcodes.py +13 -5
  338. maxframe/protocol.py +67 -14
  339. maxframe/remote/core.py +16 -14
  340. maxframe/remote/run_script.py +6 -3
  341. maxframe/serialization/__init__.py +2 -0
  342. maxframe/serialization/core.cp38-win32.pyd +0 -0
  343. maxframe/serialization/core.pxd +3 -0
  344. maxframe/serialization/core.pyi +3 -1
  345. maxframe/serialization/core.pyx +82 -4
  346. maxframe/serialization/pandas.py +5 -1
  347. maxframe/serialization/serializables/core.py +6 -5
  348. maxframe/serialization/serializables/field.py +2 -2
  349. maxframe/serialization/serializables/tests/test_field_type.py +3 -5
  350. maxframe/serialization/tests/test_serial.py +27 -0
  351. maxframe/session.py +4 -71
  352. maxframe/sperunner.py +165 -0
  353. maxframe/tensor/__init__.py +35 -2
  354. maxframe/tensor/arithmetic/__init__.py +2 -4
  355. maxframe/tensor/arithmetic/abs.py +0 -2
  356. maxframe/tensor/arithmetic/absolute.py +0 -2
  357. maxframe/tensor/arithmetic/add.py +34 -4
  358. maxframe/tensor/arithmetic/angle.py +0 -2
  359. maxframe/tensor/arithmetic/arccos.py +1 -4
  360. maxframe/tensor/arithmetic/arccosh.py +1 -3
  361. maxframe/tensor/arithmetic/arcsin.py +0 -2
  362. maxframe/tensor/arithmetic/arcsinh.py +0 -2
  363. maxframe/tensor/arithmetic/arctan.py +0 -2
  364. maxframe/tensor/arithmetic/arctan2.py +0 -2
  365. maxframe/tensor/arithmetic/arctanh.py +0 -2
  366. maxframe/tensor/arithmetic/around.py +0 -2
  367. maxframe/tensor/arithmetic/bitand.py +0 -2
  368. maxframe/tensor/arithmetic/bitor.py +1 -3
  369. maxframe/tensor/arithmetic/bitxor.py +1 -3
  370. maxframe/tensor/arithmetic/cbrt.py +0 -2
  371. maxframe/tensor/arithmetic/ceil.py +0 -2
  372. maxframe/tensor/arithmetic/clip.py +13 -13
  373. maxframe/tensor/arithmetic/conj.py +0 -2
  374. maxframe/tensor/arithmetic/copysign.py +0 -2
  375. maxframe/tensor/arithmetic/core.py +47 -39
  376. maxframe/tensor/arithmetic/cos.py +1 -3
  377. maxframe/tensor/arithmetic/cosh.py +0 -2
  378. maxframe/tensor/arithmetic/deg2rad.py +0 -2
  379. maxframe/tensor/arithmetic/degrees.py +0 -2
  380. maxframe/tensor/arithmetic/divide.py +0 -2
  381. maxframe/tensor/arithmetic/equal.py +0 -2
  382. maxframe/tensor/arithmetic/exp.py +1 -3
  383. maxframe/tensor/arithmetic/exp2.py +0 -2
  384. maxframe/tensor/arithmetic/expm1.py +0 -2
  385. maxframe/tensor/arithmetic/fabs.py +0 -2
  386. maxframe/tensor/arithmetic/fix.py +0 -2
  387. maxframe/tensor/arithmetic/float_power.py +0 -2
  388. maxframe/tensor/arithmetic/floor.py +0 -2
  389. maxframe/tensor/arithmetic/floordiv.py +0 -2
  390. maxframe/tensor/arithmetic/fmax.py +0 -2
  391. maxframe/tensor/arithmetic/fmin.py +0 -2
  392. maxframe/tensor/arithmetic/fmod.py +0 -2
  393. maxframe/tensor/arithmetic/frexp.py +6 -2
  394. maxframe/tensor/arithmetic/greater.py +0 -2
  395. maxframe/tensor/arithmetic/greater_equal.py +0 -2
  396. maxframe/tensor/arithmetic/hypot.py +0 -2
  397. maxframe/tensor/arithmetic/i0.py +1 -3
  398. maxframe/tensor/arithmetic/imag.py +0 -2
  399. maxframe/tensor/arithmetic/invert.py +1 -3
  400. maxframe/tensor/arithmetic/isclose.py +0 -2
  401. maxframe/tensor/arithmetic/iscomplex.py +0 -2
  402. maxframe/tensor/arithmetic/isfinite.py +1 -3
  403. maxframe/tensor/arithmetic/isinf.py +0 -2
  404. maxframe/tensor/arithmetic/isnan.py +0 -2
  405. maxframe/tensor/arithmetic/isreal.py +0 -2
  406. maxframe/tensor/arithmetic/ldexp.py +0 -2
  407. maxframe/tensor/arithmetic/less.py +0 -2
  408. maxframe/tensor/arithmetic/less_equal.py +0 -2
  409. maxframe/tensor/arithmetic/log.py +1 -3
  410. maxframe/tensor/arithmetic/log10.py +1 -3
  411. maxframe/tensor/arithmetic/log1p.py +1 -3
  412. maxframe/tensor/arithmetic/log2.py +1 -3
  413. maxframe/tensor/arithmetic/logaddexp.py +0 -2
  414. maxframe/tensor/arithmetic/logaddexp2.py +0 -2
  415. maxframe/tensor/arithmetic/logical_and.py +0 -2
  416. maxframe/tensor/arithmetic/logical_not.py +1 -3
  417. maxframe/tensor/arithmetic/logical_or.py +0 -2
  418. maxframe/tensor/arithmetic/logical_xor.py +0 -2
  419. maxframe/tensor/arithmetic/lshift.py +0 -2
  420. maxframe/tensor/arithmetic/maximum.py +0 -2
  421. maxframe/tensor/arithmetic/minimum.py +0 -2
  422. maxframe/tensor/arithmetic/mod.py +0 -2
  423. maxframe/tensor/arithmetic/modf.py +6 -2
  424. maxframe/tensor/arithmetic/multiply.py +37 -4
  425. maxframe/tensor/arithmetic/nan_to_num.py +0 -2
  426. maxframe/tensor/arithmetic/negative.py +0 -2
  427. maxframe/tensor/arithmetic/nextafter.py +0 -2
  428. maxframe/tensor/arithmetic/not_equal.py +0 -2
  429. maxframe/tensor/arithmetic/positive.py +0 -2
  430. maxframe/tensor/arithmetic/power.py +0 -2
  431. maxframe/tensor/arithmetic/rad2deg.py +0 -2
  432. maxframe/tensor/arithmetic/radians.py +0 -2
  433. maxframe/tensor/arithmetic/real.py +0 -2
  434. maxframe/tensor/arithmetic/reciprocal.py +5 -3
  435. maxframe/tensor/arithmetic/rint.py +1 -3
  436. maxframe/tensor/arithmetic/rshift.py +0 -2
  437. maxframe/tensor/arithmetic/setimag.py +0 -2
  438. maxframe/tensor/arithmetic/setreal.py +0 -2
  439. maxframe/tensor/arithmetic/sign.py +0 -2
  440. maxframe/tensor/arithmetic/signbit.py +0 -2
  441. maxframe/tensor/arithmetic/sin.py +0 -2
  442. maxframe/tensor/arithmetic/sinc.py +1 -3
  443. maxframe/tensor/arithmetic/sinh.py +0 -2
  444. maxframe/tensor/arithmetic/spacing.py +0 -2
  445. maxframe/tensor/arithmetic/sqrt.py +0 -2
  446. maxframe/tensor/arithmetic/square.py +0 -2
  447. maxframe/tensor/arithmetic/subtract.py +4 -2
  448. maxframe/tensor/arithmetic/tan.py +0 -2
  449. maxframe/tensor/arithmetic/tanh.py +0 -2
  450. maxframe/tensor/arithmetic/tests/__init__.py +0 -2
  451. maxframe/tensor/arithmetic/tests/test_arithmetic.py +43 -9
  452. maxframe/tensor/arithmetic/truediv.py +0 -2
  453. maxframe/tensor/arithmetic/trunc.py +0 -2
  454. maxframe/tensor/arithmetic/utils.py +32 -6
  455. maxframe/tensor/array_utils.py +3 -25
  456. maxframe/tensor/core.py +6 -6
  457. maxframe/tensor/datasource/__init__.py +10 -2
  458. maxframe/tensor/datasource/arange.py +0 -2
  459. maxframe/tensor/datasource/array.py +3 -22
  460. maxframe/tensor/datasource/core.py +15 -10
  461. maxframe/tensor/datasource/diag.py +140 -0
  462. maxframe/tensor/datasource/diagflat.py +69 -0
  463. maxframe/tensor/datasource/empty.py +0 -2
  464. maxframe/tensor/datasource/eye.py +95 -0
  465. maxframe/tensor/datasource/from_dataframe.py +0 -2
  466. maxframe/tensor/datasource/from_dense.py +0 -17
  467. maxframe/tensor/datasource/from_sparse.py +0 -2
  468. maxframe/tensor/datasource/full.py +0 -2
  469. maxframe/tensor/datasource/identity.py +54 -0
  470. maxframe/tensor/datasource/indices.py +115 -0
  471. maxframe/tensor/datasource/linspace.py +140 -0
  472. maxframe/tensor/datasource/meshgrid.py +135 -0
  473. maxframe/tensor/datasource/ones.py +8 -3
  474. maxframe/tensor/datasource/tests/test_datasource.py +32 -1
  475. maxframe/tensor/datasource/tri_array.py +107 -0
  476. maxframe/tensor/datasource/zeros.py +7 -3
  477. maxframe/tensor/extensions/__init__.py +31 -0
  478. maxframe/tensor/extensions/accessor.py +25 -0
  479. maxframe/tensor/extensions/apply_chunk.py +137 -0
  480. maxframe/tensor/indexing/__init__.py +1 -1
  481. maxframe/tensor/indexing/choose.py +8 -6
  482. maxframe/tensor/indexing/compress.py +0 -2
  483. maxframe/tensor/indexing/extract.py +0 -2
  484. maxframe/tensor/indexing/fill_diagonal.py +9 -6
  485. maxframe/tensor/indexing/flatnonzero.py +1 -3
  486. maxframe/tensor/indexing/getitem.py +10 -43
  487. maxframe/tensor/indexing/nonzero.py +2 -4
  488. maxframe/tensor/indexing/setitem.py +19 -9
  489. maxframe/tensor/indexing/slice.py +6 -3
  490. maxframe/tensor/indexing/take.py +0 -2
  491. maxframe/tensor/indexing/tests/__init__.py +0 -2
  492. maxframe/tensor/indexing/tests/test_indexing.py +0 -2
  493. maxframe/tensor/indexing/unravel_index.py +6 -6
  494. maxframe/tensor/lib/__init__.py +16 -0
  495. maxframe/tensor/lib/index_tricks.py +404 -0
  496. maxframe/tensor/linalg/__init__.py +36 -0
  497. maxframe/tensor/linalg/dot.py +145 -0
  498. maxframe/tensor/linalg/inner.py +36 -0
  499. maxframe/tensor/linalg/inv.py +83 -0
  500. maxframe/tensor/linalg/lu.py +115 -0
  501. maxframe/tensor/linalg/matmul.py +225 -0
  502. maxframe/tensor/linalg/qr.py +124 -0
  503. maxframe/tensor/linalg/solve_triangular.py +103 -0
  504. maxframe/tensor/linalg/svd.py +167 -0
  505. maxframe/tensor/linalg/tensordot.py +213 -0
  506. maxframe/tensor/linalg/vdot.py +73 -0
  507. maxframe/tensor/merge/__init__.py +4 -0
  508. maxframe/tensor/merge/append.py +74 -0
  509. maxframe/tensor/merge/column_stack.py +63 -0
  510. maxframe/tensor/merge/concatenate.py +3 -2
  511. maxframe/tensor/merge/dstack.py +71 -0
  512. maxframe/tensor/merge/hstack.py +70 -0
  513. maxframe/tensor/merge/stack.py +0 -2
  514. maxframe/tensor/merge/tests/test_merge.py +0 -2
  515. maxframe/tensor/misc/__init__.py +18 -5
  516. maxframe/tensor/misc/astype.py +10 -8
  517. maxframe/tensor/misc/broadcast_to.py +1 -1
  518. maxframe/tensor/misc/copy.py +64 -0
  519. maxframe/tensor/misc/diff.py +115 -0
  520. maxframe/tensor/misc/flatten.py +63 -0
  521. maxframe/tensor/misc/in1d.py +94 -0
  522. maxframe/tensor/misc/isin.py +130 -0
  523. maxframe/tensor/misc/ndim.py +53 -0
  524. maxframe/tensor/misc/ravel.py +0 -2
  525. maxframe/tensor/misc/repeat.py +129 -0
  526. maxframe/tensor/misc/searchsorted.py +147 -0
  527. maxframe/tensor/misc/setdiff1d.py +58 -0
  528. maxframe/tensor/misc/squeeze.py +117 -0
  529. maxframe/tensor/misc/swapaxes.py +113 -0
  530. maxframe/tensor/misc/tests/test_misc.py +0 -2
  531. maxframe/tensor/misc/transpose.py +8 -4
  532. maxframe/tensor/misc/trapezoid.py +123 -0
  533. maxframe/tensor/misc/unique.py +0 -1
  534. maxframe/tensor/misc/where.py +10 -8
  535. maxframe/tensor/operators.py +0 -34
  536. maxframe/tensor/random/__init__.py +3 -5
  537. maxframe/tensor/random/binomial.py +0 -2
  538. maxframe/tensor/random/bytes.py +0 -2
  539. maxframe/tensor/random/chisquare.py +0 -2
  540. maxframe/tensor/random/choice.py +9 -8
  541. maxframe/tensor/random/core.py +20 -5
  542. maxframe/tensor/random/dirichlet.py +0 -2
  543. maxframe/tensor/random/exponential.py +0 -2
  544. maxframe/tensor/random/f.py +2 -4
  545. maxframe/tensor/random/gamma.py +0 -2
  546. maxframe/tensor/random/geometric.py +0 -2
  547. maxframe/tensor/random/gumbel.py +0 -2
  548. maxframe/tensor/random/hypergeometric.py +0 -2
  549. maxframe/tensor/random/laplace.py +2 -4
  550. maxframe/tensor/random/logistic.py +0 -2
  551. maxframe/tensor/random/lognormal.py +0 -2
  552. maxframe/tensor/random/logseries.py +0 -2
  553. maxframe/tensor/random/multinomial.py +0 -2
  554. maxframe/tensor/random/multivariate_normal.py +0 -2
  555. maxframe/tensor/random/negative_binomial.py +0 -2
  556. maxframe/tensor/random/noncentral_chisquare.py +0 -2
  557. maxframe/tensor/random/noncentral_f.py +1 -3
  558. maxframe/tensor/random/normal.py +0 -2
  559. maxframe/tensor/random/pareto.py +0 -2
  560. maxframe/tensor/random/permutation.py +6 -3
  561. maxframe/tensor/random/poisson.py +0 -2
  562. maxframe/tensor/random/power.py +0 -2
  563. maxframe/tensor/random/rand.py +0 -2
  564. maxframe/tensor/random/randint.py +0 -2
  565. maxframe/tensor/random/randn.py +0 -2
  566. maxframe/tensor/random/random_integers.py +0 -2
  567. maxframe/tensor/random/random_sample.py +0 -2
  568. maxframe/tensor/random/rayleigh.py +0 -2
  569. maxframe/tensor/random/standard_cauchy.py +0 -2
  570. maxframe/tensor/random/standard_exponential.py +0 -2
  571. maxframe/tensor/random/standard_gamma.py +0 -2
  572. maxframe/tensor/random/standard_normal.py +0 -2
  573. maxframe/tensor/random/standard_t.py +0 -2
  574. maxframe/tensor/random/tests/__init__.py +0 -2
  575. maxframe/tensor/random/tests/test_random.py +0 -2
  576. maxframe/tensor/random/triangular.py +0 -2
  577. maxframe/tensor/random/uniform.py +0 -2
  578. maxframe/tensor/random/vonmises.py +0 -2
  579. maxframe/tensor/random/wald.py +0 -2
  580. maxframe/tensor/random/weibull.py +0 -2
  581. maxframe/tensor/random/zipf.py +0 -2
  582. maxframe/tensor/reduction/__init__.py +0 -2
  583. maxframe/tensor/reduction/all.py +0 -2
  584. maxframe/tensor/reduction/allclose.py +0 -2
  585. maxframe/tensor/reduction/any.py +0 -2
  586. maxframe/tensor/reduction/argmax.py +1 -3
  587. maxframe/tensor/reduction/argmin.py +1 -3
  588. maxframe/tensor/reduction/array_equal.py +0 -2
  589. maxframe/tensor/reduction/core.py +0 -2
  590. maxframe/tensor/reduction/count_nonzero.py +0 -2
  591. maxframe/tensor/reduction/cumprod.py +0 -2
  592. maxframe/tensor/reduction/cumsum.py +0 -2
  593. maxframe/tensor/reduction/max.py +0 -2
  594. maxframe/tensor/reduction/mean.py +0 -2
  595. maxframe/tensor/reduction/min.py +0 -2
  596. maxframe/tensor/reduction/nanargmax.py +0 -2
  597. maxframe/tensor/reduction/nanargmin.py +0 -2
  598. maxframe/tensor/reduction/nancumprod.py +0 -2
  599. maxframe/tensor/reduction/nancumsum.py +0 -2
  600. maxframe/tensor/reduction/nanmax.py +0 -2
  601. maxframe/tensor/reduction/nanmean.py +0 -2
  602. maxframe/tensor/reduction/nanmin.py +0 -2
  603. maxframe/tensor/reduction/nanprod.py +0 -2
  604. maxframe/tensor/reduction/nanstd.py +0 -2
  605. maxframe/tensor/reduction/nansum.py +0 -2
  606. maxframe/tensor/reduction/nanvar.py +0 -2
  607. maxframe/tensor/reduction/prod.py +0 -2
  608. maxframe/tensor/reduction/std.py +0 -2
  609. maxframe/tensor/reduction/sum.py +0 -2
  610. maxframe/tensor/reduction/tests/test_reduction.py +1 -4
  611. maxframe/tensor/reduction/var.py +0 -2
  612. maxframe/tensor/reshape/__init__.py +0 -2
  613. maxframe/tensor/reshape/reshape.py +6 -5
  614. maxframe/tensor/reshape/tests/__init__.py +0 -2
  615. maxframe/tensor/reshape/tests/test_reshape.py +0 -2
  616. maxframe/tensor/sort/__init__.py +16 -0
  617. maxframe/tensor/sort/argsort.py +150 -0
  618. maxframe/tensor/sort/sort.py +295 -0
  619. maxframe/tensor/special/__init__.py +37 -0
  620. maxframe/tensor/special/core.py +38 -0
  621. maxframe/tensor/special/misc.py +142 -0
  622. maxframe/tensor/special/statistical.py +56 -0
  623. maxframe/tensor/statistics/__init__.py +5 -0
  624. maxframe/tensor/statistics/average.py +143 -0
  625. maxframe/tensor/statistics/bincount.py +133 -0
  626. maxframe/tensor/statistics/quantile.py +10 -8
  627. maxframe/tensor/ufunc/__init__.py +0 -2
  628. maxframe/tensor/ufunc/ufunc.py +0 -2
  629. maxframe/tensor/utils.py +21 -3
  630. maxframe/tests/test_protocol.py +3 -3
  631. maxframe/tests/test_utils.py +210 -1
  632. maxframe/tests/utils.py +59 -1
  633. maxframe/udf.py +76 -6
  634. maxframe/utils.py +418 -17
  635. {maxframe-1.3.0.dist-info → maxframe-2.0.0.dist-info}/METADATA +5 -1
  636. maxframe-2.0.0.dist-info/RECORD +939 -0
  637. maxframe_client/clients/framedriver.py +19 -3
  638. maxframe_client/fetcher.py +113 -6
  639. maxframe_client/session/odps.py +173 -38
  640. maxframe_client/session/task.py +3 -1
  641. maxframe_client/tests/test_session.py +41 -5
  642. maxframe-1.3.0.dist-info/RECORD +0 -705
  643. {maxframe-1.3.0.dist-info → maxframe-2.0.0.dist-info}/WHEEL +0 -0
  644. {maxframe-1.3.0.dist-info → maxframe-2.0.0.dist-info}/top_level.txt +0 -0
@@ -0,0 +1,939 @@
1
+ maxframe/__init__.py,sha256=6Y3yW67GtpKOGqMC1prt4yxqUTc0twHA3yjMEH-5WTw,1036
2
+ maxframe/_utils.cp38-win32.pyd,sha256=i1ZiDCoNyFPkB_g5tc9SwZrF54pL1dUxDLY9OOlzgO4,273408
3
+ maxframe/_utils.pxd,sha256=ckEN1J8rXAtNYW7CictnSVYamH-sQx-uIuWrQts_OT4,1187
4
+ maxframe/_utils.pyi,sha256=qwxGcqDyM19BufUweKHcupBlW767nUz7oxQQEiHc39k,937
5
+ maxframe/_utils.pyx,sha256=JI3Qzyj6aBsIBxUWf1Fwsk8cZDREW-WjVMg9mY-ATuA,17576
6
+ maxframe/conftest.py,sha256=FaxbhApynyJUymU9koEV-GT55hUHATPH2A5AkT9BYRE,7400
7
+ maxframe/env.py,sha256=RF1qOlKddv7pQS77J2rc_bIUnpOj7U6_BLefPsppwDk,1489
8
+ maxframe/errors.py,sha256=yHkOri5hrRfffDonOqR91FXrTPt4QiEzgkuN5V7dJLM,1296
9
+ maxframe/extension.py,sha256=Azk5sfD9491axgBTvgSd2G-WIe0Fpu-x4e_V4SwCvLY,3046
10
+ maxframe/mixin.py,sha256=OiKXnTmY10icHNJwNxBwIfrjbTvjg82gLB4GUOe721E,5802
11
+ maxframe/opcodes.py,sha256=BsoWgYmWwE3F6i2xwNDBruLKZEKht0pKUpyXdoStIag,11770
12
+ maxframe/protocol.py,sha256=KPFAEz2f4NjhD6Rf6PVb3Y9gfGvmvjaorPS65_Y8nlg,20981
13
+ maxframe/session.py,sha256=d0adlfeAZ9VloRSCp-SQj9q6qNEKyrV7_Z5XpeNzkAY,36034
14
+ maxframe/sperunner.py,sha256=BJmUE1aJcWIAQGeuWieWc_3NUx-IOgY8ObAxpLE2CO4,5737
15
+ maxframe/typing_.py,sha256=ncVNpaqtO4zEzDA5yHa-OazpzTG8D8ZLule6wXIgPW0,1220
16
+ maxframe/udf.py,sha256=EL12dm2jUZKRgwyJv1WBN4lhO1gh2nY4RobGUQtQKBc,7750
17
+ maxframe/utils.py,sha256=95wCTKCu_btwbXVR1C40e0cg_wr-9otlY7xN6H4bS3k,48425
18
+ maxframe/codegen/__init__.py,sha256=lVXVYKiVKkMKugTcwg5zDzClQkxaKbCY719X8gD3lPA,892
19
+ maxframe/codegen/core.py,sha256=VHU-4tIpHCaabfl0qzj4TGcEyoc23Mm8FPTWyPhc0_w,20811
20
+ maxframe/codegen/spe/__init__.py,sha256=_Y9BcvEg3wSdwTAATA2Tnh2HmvMY1haEJV7_z0PehK8,704
21
+ maxframe/codegen/spe/core.py,sha256=yMyjGICKCtTCwxXcDzZp1SPebJFQ3Ry7UwDYzrY3Df8,10852
22
+ maxframe/codegen/spe/objects.py,sha256=Oq1A8RilasBGNR9A4wHFNFDD9HGPrL1nuwPNA9Z7CKw,1069
23
+ maxframe/codegen/spe/remote.py,sha256=6ys6Elyr8rkLRd_HVp08aCbbp0wsPnDjgBmnLQ1Mf94,1283
24
+ maxframe/codegen/spe/utils.py,sha256=mwH9e57ann9iQqBL-YDTJ8AL3cSJ7muDnXgW7CQfCwc,2065
25
+ maxframe/codegen/spe/dataframe/__init__.py,sha256=S6Q86BQjMZQJgredqCahTy543j2TRMJTqbCb4forWQg,933
26
+ maxframe/codegen/spe/dataframe/arithmetic.py,sha256=4Sq0XtpcNrZJDlCdstJ-cCGxqFePY1-qxyWN7iTIO1c,3487
27
+ maxframe/codegen/spe/dataframe/datasource.py,sha256=P9IH6glVW2DVGqS0B9mg1SnQNJVPSIksTvPJze-7oQE,6940
28
+ maxframe/codegen/spe/dataframe/datastore.py,sha256=u0PLR435RBkpcvcenFaAoeixUOmjfRStCnuJIYEopdE,8315
29
+ maxframe/codegen/spe/dataframe/extensions.py,sha256=DDt3NfADH71rU1FktjGy7I9G5tYEqTqmWJRrzZxS_1E,2842
30
+ maxframe/codegen/spe/dataframe/fetch.py,sha256=tgukXQ3L6qGUqV9n308pEUH3DFrXQUJHR8WYzl6hrZQ,1077
31
+ maxframe/codegen/spe/dataframe/groupby.py,sha256=KYWNdAxsUZBoDqk30tg41uoq_roWaheDISj1YRhNOnE,9749
32
+ maxframe/codegen/spe/dataframe/indexing.py,sha256=wOBrgVzH7l9ViyQycqDtygKEbxnqQvlPau-ID8NSHFM,9782
33
+ maxframe/codegen/spe/dataframe/merge.py,sha256=rFkcP599DAcDqtZ-lhh18JwTSOuekurhsRxJcSIIx5E,2834
34
+ maxframe/codegen/spe/dataframe/misc.py,sha256=kfoxJe97JkzlVepiTDej_gRBDVDvN_SL6DTqW82bp9w,11533
35
+ maxframe/codegen/spe/dataframe/missing.py,sha256=-LmaTgMJcZq0_eB8FRYJp_QFJaVEgeQL7xhVrF-MSrw,2876
36
+ maxframe/codegen/spe/dataframe/reduction.py,sha256=wfbUmEo_ptqzqW3HURxKs4APZQqhCnhGzYjP4PqHajI,5414
37
+ maxframe/codegen/spe/dataframe/sort.py,sha256=rywFr1szkvF55QZQQBrnI7Nb7a834oGG3Gw8s5t_SCY,2864
38
+ maxframe/codegen/spe/dataframe/statistics.py,sha256=Bi0yqyYqSjjhWiTOK_oOtWIfQdg71sD5jiOcPhFWYFU,1833
39
+ maxframe/codegen/spe/dataframe/tseries.py,sha256=8xH8CHG1BH76IB_dYoWNN9zvCXnp1YtdLHMdbpBYa5w,1862
40
+ maxframe/codegen/spe/dataframe/udf.py,sha256=JVmc-jNH3qOp8f19wGe97m2tJAnYWHrQLgSXyUAhmbU,2189
41
+ maxframe/codegen/spe/dataframe/value_counts.py,sha256=ciDxQaYAQCq1F_6jWJCqaD_ooCfK-CdFR6fo4NcaTn8,1385
42
+ maxframe/codegen/spe/dataframe/window.py,sha256=-WJRFmPbnd7CXxseTtRyd5aXU9QmjPn5LTDup1OvfXA,3012
43
+ maxframe/codegen/spe/dataframe/accessors/__init__.py,sha256=E7QXUrFvzcCmEgfsa_0TvZd6Vnd9voBKgx_YlqZbYo8,645
44
+ maxframe/codegen/spe/dataframe/accessors/base.py,sha256=oPQCfyQHR5K_qctYbnPLs7Gj2ySyZYMgeIHVtMyWpfw,2232
45
+ maxframe/codegen/spe/dataframe/accessors/dict_.py,sha256=NC0TTUbHCJ7E_TliRV8F0k_F2WZnB5A-Upawurc83Vg,7605
46
+ maxframe/codegen/spe/dataframe/accessors/list_.py,sha256=3MHyoK1UiP0Ga3JuHuUGkUcfugbHXtp3uWOg7Yyq2Rg,3183
47
+ maxframe/codegen/spe/dataframe/tests/__init__.py,sha256=4LpNXO11JAdLjSut3p036oEEXlDEB-6AURW9oci5W5Y,609
48
+ maxframe/codegen/spe/dataframe/tests/test_arithmetic.py,sha256=-s64wIhtIQSVMhcbvhEXGPcKGxrV45GNcSGjYUDjlZE,2712
49
+ maxframe/codegen/spe/dataframe/tests/test_datasource.py,sha256=xMBUXRrl2s6lpIlSox0pgcUb0Le2cnCImGWQ1bh7adw,7320
50
+ maxframe/codegen/spe/dataframe/tests/test_datastore.py,sha256=h2vXGT0hTxXc1Pm6kDYMbZTxfe-uwVDNuKUiY-IxWXQ,7207
51
+ maxframe/codegen/spe/dataframe/tests/test_extensions.py,sha256=973u9nYIS83Z5s-JgN82ZZjflUrO7LHKO-HOI4chyLk,3170
52
+ maxframe/codegen/spe/dataframe/tests/test_groupby.py,sha256=TXnKxqfQwgzF9PPQ_AclavLUbbYodX33J_JvO3sEF4o,8094
53
+ maxframe/codegen/spe/dataframe/tests/test_merge.py,sha256=LFIoEsjTL3yRqMxh4eRzuHKV2i8MfKcE1QExBt0gPsQ,13349
54
+ maxframe/codegen/spe/dataframe/tests/test_reduction.py,sha256=LorydGqWX2CBaiAxt246Mve5efTryqnre8luYrrmrYk,3511
55
+ maxframe/codegen/spe/dataframe/tests/test_sort.py,sha256=c_EefmTGAeSccVWW4zlpYTvce7MOM-NkC6BX1ybJJGM,5435
56
+ maxframe/codegen/spe/dataframe/tests/test_statistics.py,sha256=c-niNErZQYeJKBZoFhf9-uP8PtTICZFQNcJt-cuUtvw,2341
57
+ maxframe/codegen/spe/dataframe/tests/test_tseries.py,sha256=9eXXtQ0fZJO9tkB75b6jJv_g68nlS4eiyRmBsp-bf-w,1263
58
+ maxframe/codegen/spe/dataframe/tests/test_value_counts.py,sha256=ncKiENxBZPOIbQYju9D8_44p4qkmUtEXCdVFhLHp_SI,2070
59
+ maxframe/codegen/spe/dataframe/tests/test_window.py,sha256=qQyYtcP94NEtMBGNqE8jjq9_hAGWhaf5wZqbdYdkpF8,2344
60
+ maxframe/codegen/spe/dataframe/tests/accessors/__init__.py,sha256=4LpNXO11JAdLjSut3p036oEEXlDEB-6AURW9oci5W5Y,609
61
+ maxframe/codegen/spe/dataframe/tests/accessors/test_base.py,sha256=n23pvnurRQsMZ4HS759axoycC_Gqr3URYTb1WfXVc0A,1299
62
+ maxframe/codegen/spe/dataframe/tests/accessors/test_dict.py,sha256=TvyPmLDM32PrfqfeRnQkLLnVQr4ArVzacOAV_DMLsag,9200
63
+ maxframe/codegen/spe/dataframe/tests/accessors/test_list.py,sha256=W_WOTiGVnni2wjvlkSt8CnmmWsTZ-JwlHEcjNjCFdV0,3973
64
+ maxframe/codegen/spe/dataframe/tests/indexing/__init__.py,sha256=4LpNXO11JAdLjSut3p036oEEXlDEB-6AURW9oci5W5Y,609
65
+ maxframe/codegen/spe/dataframe/tests/indexing/conftest.py,sha256=ys7q2jGF62Zm3O7pWIyBh1OjzkTBAubxRn6Gqeiy2fM,1539
66
+ maxframe/codegen/spe/dataframe/tests/indexing/test_getitem.py,sha256=8nkvqXooZJKXX6Y6AkakcCYuqUnBlAPKGYe-jm3dfzg,4595
67
+ maxframe/codegen/spe/dataframe/tests/indexing/test_iloc.py,sha256=96-McaIsGvlmn12rspj23El5cahSILCjDtWnRW2iUHw,2773
68
+ maxframe/codegen/spe/dataframe/tests/indexing/test_indexing.py,sha256=fACnQJDSZdU61oc12KKMqFueByo9cyCULrw_rETLetk,1486
69
+ maxframe/codegen/spe/dataframe/tests/indexing/test_rename.py,sha256=xi7sWNmmMK0C2nu-UcJifdLitYVAHba3D7EWQQbiko0,1918
70
+ maxframe/codegen/spe/dataframe/tests/indexing/test_reset_index.py,sha256=hnxnRyeSCqnnOLjhWsnBEx150sp69R7RVzjV34Mj7Z0,3200
71
+ maxframe/codegen/spe/dataframe/tests/indexing/test_sample.py,sha256=4xt5WyUYjceXCjZbE6mVdPkheacdUAi-FETA7IXkqLc,1766
72
+ maxframe/codegen/spe/dataframe/tests/indexing/test_set_axis.py,sha256=zplpDxd26EVi6dsE2IMKuUB7x-oZFniunGhAWcRZMdQ,1672
73
+ maxframe/codegen/spe/dataframe/tests/indexing/test_set_index.py,sha256=JwtscTY0KANHosrgWhsvv27OqGFvoP-bylZLMbAT8zM,1498
74
+ maxframe/codegen/spe/dataframe/tests/indexing/test_setitem.py,sha256=qq1stT3M99SR26UJOLjvhqrEej27EVAnLC8MLOx2Agc,1753
75
+ maxframe/codegen/spe/dataframe/tests/misc/__init__.py,sha256=4LpNXO11JAdLjSut3p036oEEXlDEB-6AURW9oci5W5Y,609
76
+ maxframe/codegen/spe/dataframe/tests/misc/test_apply.py,sha256=radsAddmK-FHMzcspgRPn53ncgsCEb7kam0irRJYciw,4513
77
+ maxframe/codegen/spe/dataframe/tests/misc/test_drop_duplicates.py,sha256=CtKeFLjJjzfafe1HY7CjXtGkhTqwDcUa3LJCdsoMDP0,2712
78
+ maxframe/codegen/spe/dataframe/tests/misc/test_misc.py,sha256=7LnJUZqPL1uXJGYU90DYd11UtS8wA2mlEKObnovQy4I,7536
79
+ maxframe/codegen/spe/dataframe/tests/missing/__init__.py,sha256=4LpNXO11JAdLjSut3p036oEEXlDEB-6AURW9oci5W5Y,609
80
+ maxframe/codegen/spe/dataframe/tests/missing/test_checkna.py,sha256=3_NmbWnlMh8eZKOKonzRnfCh_8uE2LssJE6zCQrXJ4E,3034
81
+ maxframe/codegen/spe/dataframe/tests/missing/test_dropna.py,sha256=9ss9fF7jCOIDyrjWokflE6eVVeY9qQ8OF9vVglIXl9w,1768
82
+ maxframe/codegen/spe/dataframe/tests/missing/test_fillna.py,sha256=VHi-8y5rP_wA1HFE6jaIx3FFvddSfIICSe-waU1zr2k,3119
83
+ maxframe/codegen/spe/dataframe/tests/missing/test_replace.py,sha256=D4V3zcvbmsQiqYaMSlPAnUVVhdFjNl_u2_2PH0-HRoE,1602
84
+ maxframe/codegen/spe/learn/__init__.py,sha256=RwNVRG6u3bruWK5p4-lZed6XzlJXdo2Tf11qHXTZ2lc,665
85
+ maxframe/codegen/spe/learn/contrib/__init__.py,sha256=OXcLuPLXGC2XguuBkaU1EjZzWKGkx2BB5G-tqscbPQY,661
86
+ maxframe/codegen/spe/learn/contrib/lightgbm.py,sha256=WO88UONjEWFRrKU2Td8wybJOHJy4OqigmvAe_NRwNTM,5823
87
+ maxframe/codegen/spe/learn/contrib/models.py,sha256=S4iV8ZHaYKeN4lqYiLy9dlvgXOc9Ys3h0mSsWbnlvx4,1820
88
+ maxframe/codegen/spe/learn/contrib/pytorch.py,sha256=85oycqtDXiGiHYwVewY4LjIVMtE4bDiOiRNOgHMaEuc,1947
89
+ maxframe/codegen/spe/learn/contrib/xgboost.py,sha256=z7w-s-9xvi1CKcbWSFnjIkR4IGrA0-ww6yUrL53xxGE,5395
90
+ maxframe/codegen/spe/learn/contrib/tests/__init__.py,sha256=4LpNXO11JAdLjSut3p036oEEXlDEB-6AURW9oci5W5Y,609
91
+ maxframe/codegen/spe/learn/contrib/tests/test_lightgbm.py,sha256=7M9eoRrwakgQr0fO88N-tIfoKVn4Tj6t0-LQS1GoiJ4,4582
92
+ maxframe/codegen/spe/learn/contrib/tests/test_models.py,sha256=Zf1DPcR8FLfuLb7orubQLSzVmH7iGSqYVsXnxL9tjYA,1403
93
+ maxframe/codegen/spe/learn/contrib/tests/test_pytorch.py,sha256=L2fcmQzfaDMvmtrV-r_87R9gj1VdR4UVtKfleuDhKCU,1617
94
+ maxframe/codegen/spe/learn/contrib/tests/test_xgboost.py,sha256=ZimP93NBpGh24zbD78FRFehS8eF3I41cxgHn0dlHUHc,3718
95
+ maxframe/codegen/spe/learn/metrics/__init__.py,sha256=fB5tWH0wzdHx44b6E0UikblKFwZ7yB0O2hgyd5DMLE8,642
96
+ maxframe/codegen/spe/learn/metrics/_classification.py,sha256=d9c0BnANBwkylfuc5r1Lx51JcBN_RaMrF5SwZmL5XIQ,4369
97
+ maxframe/codegen/spe/learn/metrics/tests/__init__.py,sha256=4LpNXO11JAdLjSut3p036oEEXlDEB-6AURW9oci5W5Y,609
98
+ maxframe/codegen/spe/learn/metrics/tests/test_classification.py,sha256=znwXqV5d67n5UHyuBZhpv7qbpTpUofLVSp-f62uNuTI,3461
99
+ maxframe/codegen/spe/learn/model_selection/__init__.py,sha256=4LpNXO11JAdLjSut3p036oEEXlDEB-6AURW9oci5W5Y,609
100
+ maxframe/codegen/spe/learn/model_selection/tests/__init__.py,sha256=4LpNXO11JAdLjSut3p036oEEXlDEB-6AURW9oci5W5Y,609
101
+ maxframe/codegen/spe/learn/model_selection/tests/test_split.py,sha256=f1cwzZ89H_oLLYogPZiKXrwrHtx_EAgmHtYkTRl6qjQ,1705
102
+ maxframe/codegen/spe/learn/preprocessing/__init__.py,sha256=HvCqyRqT42t-IXPUKEIa1ONAYq6y73OdYrdpTcLy-r4,632
103
+ maxframe/codegen/spe/learn/preprocessing/_data.py,sha256=v7yqcLr37CG6ORdp32Vx7VPn7Ai1m5LtOu8bCbn6Kew,1490
104
+ maxframe/codegen/spe/learn/preprocessing/_label.py,sha256=ngVfurwc1hdFlzFdzao3Z0TqM7fArEYCvdDTSFpWw5Q,1933
105
+ maxframe/codegen/spe/learn/preprocessing/tests/__init__.py,sha256=4LpNXO11JAdLjSut3p036oEEXlDEB-6AURW9oci5W5Y,609
106
+ maxframe/codegen/spe/learn/preprocessing/tests/test_data.py,sha256=XeI5klGJqOL3PQ13uY4IGqr9VMfCvQ-seTitxZu4u-E,1164
107
+ maxframe/codegen/spe/learn/preprocessing/tests/test_label.py,sha256=-1uxwS1769fTaRdm9zWUREeP8v1RjKk1kzjxjk7_EB4,1625
108
+ maxframe/codegen/spe/learn/utils/__init__.py,sha256=pp-7H5Y6d_9TfZyAjg4EQpoZ9mffSUTuSSXcJ7V5pJQ,670
109
+ maxframe/codegen/spe/learn/utils/checks.py,sha256=FMdypU-_Yns3VVBOYRhk0HxNis93HutCriE8DplwB00,2254
110
+ maxframe/codegen/spe/learn/utils/multiclass.py,sha256=b1aeFhttne1U7Le0f1G7s2qe_TQ9t4PwGoRYMMLBpH8,2493
111
+ maxframe/codegen/spe/learn/utils/shuffle.py,sha256=fuca8nLCS34Kr0Q7MwUV4nCmDVTPGmRduUpVWv-c0S8,3934
112
+ maxframe/codegen/spe/learn/utils/sparsefuncs.py,sha256=vA_T2dZu-uYKF5bOFiNcF4fXR0SVuQa5gPj6_3pPMOs,1426
113
+ maxframe/codegen/spe/learn/utils/validation.py,sha256=Qtb3CrmejtR8l4XAEhqU8PrT8EPbjL3F4MS6ZLrNkdI,1560
114
+ maxframe/codegen/spe/learn/utils/tests/__init__.py,sha256=4LpNXO11JAdLjSut3p036oEEXlDEB-6AURW9oci5W5Y,609
115
+ maxframe/codegen/spe/learn/utils/tests/test_checks.py,sha256=OSZdQ7vlESQpuGQiXE75BapRniQZqQyeDIo56bcNMUE,1701
116
+ maxframe/codegen/spe/learn/utils/tests/test_multiclass.py,sha256=-_aSKwrhqH7ChNBSvdKa3Gx9QoB3SClgcTE9WSGod7I,1878
117
+ maxframe/codegen/spe/learn/utils/tests/test_shuffle.py,sha256=11Bnq0T193PrzKJFeCJTWx6TSHO1zA87xgtvqeu-AoA,1987
118
+ maxframe/codegen/spe/learn/utils/tests/test_sparsefuncs.py,sha256=t0iZM5nVRZ2Aiwbzxw6LQgk-UbqoARz6WtHDlxPie1Q,1201
119
+ maxframe/codegen/spe/learn/utils/tests/test_validation.py,sha256=nbWmQaS-HF2NqlJvi6P50Gi9ix0Fy4hixmxkmtu0y7A,1616
120
+ maxframe/codegen/spe/tensor/__init__.py,sha256=KY9Ith3U2IGdI4gyc858WW25HVGGWGd7mRUWv9ybYww,802
121
+ maxframe/codegen/spe/tensor/arithmetic.py,sha256=T4QurE14_yfcUL1fW3ImwXX99UfG9emXhyzknmxao6I,3757
122
+ maxframe/codegen/spe/tensor/core.py,sha256=PdH-2OmfkUS5gN5cVA6JH49nJcJZEsHMvuWkuOfx2fk,1572
123
+ maxframe/codegen/spe/tensor/datasource.py,sha256=HLc652ygG5-DfjTGxBBl6iTzbreg9BJ_kiJMHzhewTM,6415
124
+ maxframe/codegen/spe/tensor/extensions.py,sha256=qNQgtzfnZdaR8dSq6bT7kKlryS7mHiQPPrI0ec5xTQk,1544
125
+ maxframe/codegen/spe/tensor/fetch.py,sha256=gJPvVEC9ZACjAOByH7SZop7WzSsZUDcf5Mga-lknf10,1062
126
+ maxframe/codegen/spe/tensor/indexing.py,sha256=9hqPejqDII269n1pOJkWtN2R_VqJqTB36ZoTmvGleRE,2412
127
+ maxframe/codegen/spe/tensor/linalg.py,sha256=GQPuA0-AtHE-yurYT3iFySmD9A2nAxrHRJh8llbeCGg,2344
128
+ maxframe/codegen/spe/tensor/merge.py,sha256=gBnwFM6ZCJnpmTt1-Fd-VxaZBBH7hsi1J9Wm-4l3f0c,1415
129
+ maxframe/codegen/spe/tensor/misc.py,sha256=a2ORzyVJLceVck9D2DLBmn7pAKc-9BX5SR2TgsWUvVo,4183
130
+ maxframe/codegen/spe/tensor/random.py,sha256=J-QUve_fKakLO1C_QDUHSIFvpF4NXpKpbLd43vs0TP4,1305
131
+ maxframe/codegen/spe/tensor/reduction.py,sha256=GZ8JXmFtv_rVYSTdXKNSvT1ste2aK23z5DAxpngmotY,1525
132
+ maxframe/codegen/spe/tensor/reshape.py,sha256=L7wO5jQqETQsEGoWcClvUcEIzXTAmlgsY7Il7gBOJGg,895
133
+ maxframe/codegen/spe/tensor/sort.py,sha256=Xk_tttAe7hI_dWxA3gayi1gggeaPKuwVRLPGC7fQduo,1650
134
+ maxframe/codegen/spe/tensor/special.py,sha256=eexQMEuMdjAx9Tq0SI-gSr0hiw8321mj7tAe9jXPQwo,1296
135
+ maxframe/codegen/spe/tensor/statistics.py,sha256=AbZPQf27WwVxmdFsadZC9hzbdHFqp9AOOdaaxVXxLgc,884
136
+ maxframe/codegen/spe/tensor/tests/__init__.py,sha256=4LpNXO11JAdLjSut3p036oEEXlDEB-6AURW9oci5W5Y,609
137
+ maxframe/codegen/spe/tensor/tests/test_arithmetic.py,sha256=ybyUYEkV6OHpOWzpguA4SGi76mxXWUy5HiPUBoP4voQ,3335
138
+ maxframe/codegen/spe/tensor/tests/test_datasource.py,sha256=8Vbvlhu2u7vwSVuMVJRXDGWI5VgYlEuWf5CRCCQfnGU,3473
139
+ maxframe/codegen/spe/tensor/tests/test_extensions.py,sha256=RMulU-l7IXSHmm0_vOp0XEN2HVHY3XFC1cGXBDzA9nE,1426
140
+ maxframe/codegen/spe/tensor/tests/test_indexing.py,sha256=iuHMPejK2JRjZhW3gEJNiC2tIY99gA1v2JqMX253DjI,1525
141
+ maxframe/codegen/spe/tensor/tests/test_linalg.py,sha256=KlYwfUh5cusRwvttdxFBoea77IFX66jS6NJGMS3A9OE,1444
142
+ maxframe/codegen/spe/tensor/tests/test_merge.py,sha256=ZcHP5FtRY58Hv5rc_IowecoTzk5KBlAIA-FzZR8djuc,1107
143
+ maxframe/codegen/spe/tensor/tests/test_misc.py,sha256=vUJ3j3TEXGictx-Gsm4Se736Aikm0mUNp4mHF6eDxXs,3304
144
+ maxframe/codegen/spe/tensor/tests/test_random.py,sha256=SpA2pACTzZeWtgA1heOBjpKrVyh5sEdJX95kt01tdtI,1949
145
+ maxframe/codegen/spe/tensor/tests/test_reduction.py,sha256=HrsiVTOdjgmqd9KZBwf73qYO_0uF-DQ4hxH6GqfGlu0,2097
146
+ maxframe/codegen/spe/tensor/tests/test_reshape.py,sha256=aocidOiIIM_me1j1bIuFza1UkNJ25kU_WmSQ1m1hoIA,1504
147
+ maxframe/codegen/spe/tensor/tests/test_sort.py,sha256=m2NG6LU5OJ2JgIdTLyAwgkoayqnEq9UrNx4gaXGIYag,1932
148
+ maxframe/codegen/spe/tensor/tests/test_special.py,sha256=km8seyy-WaZSW12tY--n9coIwzIsC_EiMc9-AmeFXVA,1079
149
+ maxframe/codegen/spe/tensor/tests/test_statistics.py,sha256=TvAuLLwPJ1q6JUiZaF8FWjIJ7ZZ07hMzdwJi_pHpvgk,1146
150
+ maxframe/codegen/spe/tests/__init__.py,sha256=4LpNXO11JAdLjSut3p036oEEXlDEB-6AURW9oci5W5Y,609
151
+ maxframe/codegen/spe/tests/test_remote.py,sha256=jYW3I00ZupJ1aUI0nGoObrhrPS-TxORXOvo1PHf_qFo,1060
152
+ maxframe/codegen/spe/tests/test_spe_codegen.py,sha256=z49xwbPj056FkHZwV7mHc8pH6hazyGh9Dv3jg-fZgT0,4383
153
+ maxframe/codegen/tests/__init__.py,sha256=4LpNXO11JAdLjSut3p036oEEXlDEB-6AURW9oci5W5Y,609
154
+ maxframe/codegen/tests/test_codegen.py,sha256=byLlIGVFEHkQo1kYTXzhZKrgzfvmVnjOVC8uAirTO7o,2196
155
+ maxframe/config/__init__.py,sha256=16nesh8iIn5JthkjUlRR2SRB0R5MU6FHdN71mpRzEMw,671
156
+ maxframe/config/config.py,sha256=5Z_PmHrYpmQV53QJ32lVGfQCYeQcg63rVOQXPe-_3zw,18026
157
+ maxframe/config/validators.py,sha256=wDflf-6cvliM5OBiInm_xpIT4MslIBUI6t_OFAi-H9w,2709
158
+ maxframe/config/tests/__init__.py,sha256=4LpNXO11JAdLjSut3p036oEEXlDEB-6AURW9oci5W5Y,609
159
+ maxframe/config/tests/test_config.py,sha256=k-ARyl0DiBP_ecNWgzQbOsziGQNTGfmITcZljFf6T0I,3333
160
+ maxframe/config/tests/test_validators.py,sha256=3V4zWHbgLmOF0dOsP91z_S6qmUcRFpuWy-nCieNiyDI,1274
161
+ maxframe/core/__init__.py,sha256=Zu1qm30BTGoI5erjljAViucy6HNqLPO1ghvs6FE2EDw,1590
162
+ maxframe/core/accessor.py,sha256=ghmMSiH_PK4JJ63BlCu5xb85FU94nGhNYCqTc4zMTMQ,1527
163
+ maxframe/core/base.py,sha256=LNHcoT5T02MhYAgPXPTVz5HdVHpKFDPD_Z-7NednVjc,4691
164
+ maxframe/core/context.py,sha256=Y5NntQoHbFdwE5MCbHoGExkHRQBeXc6wUNoUY-gyoWw,2666
165
+ maxframe/core/mode.py,sha256=fpvJAQ6if77EiM0SlNq0JEnBwkzFQTgzX3d8wOrlus0,3107
166
+ maxframe/core/entity/__init__.py,sha256=EHuteCnoOq7HsM4vTBENcThUFYOZjbZgk2y-z9lMOek,1130
167
+ maxframe/core/entity/core.py,sha256=AHAG37BvYe_s7Y4fpEbMvAguUJ0ihhVNjyqbE5ah2u8,3991
168
+ maxframe/core/entity/executable.py,sha256=xojyy3u8MTQHX7WFPieoquMvlFenHLcZvDlLMuhlu04,11293
169
+ maxframe/core/entity/objects.py,sha256=IteCK82VH7Ob6kyemyJt5NmUt7czFCfnaClE4VgHCu0,4240
170
+ maxframe/core/entity/output_types.py,sha256=S1p3gegOdAfAOWS8W_FDAYcTnmLWh3_QrtzQYdQKakU,2851
171
+ maxframe/core/entity/tileables.py,sha256=LZk_dnBk9QQ0vegovnBuJ19zJmVdeJXeBytYbQBUm7o,11762
172
+ maxframe/core/entity/utils.py,sha256=9SFooWpBjBnIwiLid3XzeUymZnQjYZSG-vghULFQUQI,1484
173
+ maxframe/core/entity/tests/__init__.py,sha256=4LpNXO11JAdLjSut3p036oEEXlDEB-6AURW9oci5W5Y,609
174
+ maxframe/core/entity/tests/test_objects.py,sha256=ER3qvVndy5q-tlF6Qc0Z0AF_ylvTITIDvD4Qest3y2w,1465
175
+ maxframe/core/graph/__init__.py,sha256=AwNyGKu1kwXx0Tl8xGJ_pQkpOW6EvKMCCO0PIU_6MIg,895
176
+ maxframe/core/graph/core.cp38-win32.pyd,sha256=lXJhqgD79kOAQoIYKT1QWIdcmk-suDOjtb81Qcggxq4,219136
177
+ maxframe/core/graph/core.pyx,sha256=yv-P9NAqwXPdq_bvWOT137pdMEdLzoNpS42rx7o6wjI,16582
178
+ maxframe/core/graph/entity.py,sha256=RRpIRCZMKjLf2PLdBeDV10UIlIcrqakECuXqfM7SS6c,5354
179
+ maxframe/core/graph/builder/__init__.py,sha256=NjIcWQ1ZtEbRJalz8XH1UKaQLpsvOqouRPeRBaul5cA,655
180
+ maxframe/core/graph/builder/base.py,sha256=dSceBH6ra5t_khrlHBpYSO1R9Goe0pdqvNzKWzNoDEI,2712
181
+ maxframe/core/graph/builder/tileable.py,sha256=OA-ljojBSA-t8VTkxAqmq_33Bb2qVAWsQcK8nwLcW48,1207
182
+ maxframe/core/graph/builder/utils.py,sha256=URYL-xfwQqpJVf91FtB9dheAvFd1RfSQst_4esjYNgM,1353
183
+ maxframe/core/graph/tests/__init__.py,sha256=4LpNXO11JAdLjSut3p036oEEXlDEB-6AURW9oci5W5Y,609
184
+ maxframe/core/graph/tests/test_graph.py,sha256=msKwsorW-eXcUqgFc-9ajGIOSdXM3FzR4cz1V4-TttY,7667
185
+ maxframe/core/operator/__init__.py,sha256=2BXhNc--aZIWJ3PD7WK8L5bS1MzOpjhHQFsduyLyy5k,1121
186
+ maxframe/core/operator/base.py,sha256=Umx9hPSLQyna53-L6Juv-2okJ3F-tnIIx04abozezKs,16629
187
+ maxframe/core/operator/core.py,sha256=XSyYbCUwkBHwMaFt14BhCIIGj16bGcb_WuiUCOKVRfc,10321
188
+ maxframe/core/operator/fetch.py,sha256=5txzLzOjKTCocBTTnCovDWZs95z1J8vfA8LhKbwlYdo,1411
189
+ maxframe/core/operator/objects.py,sha256=h8MlCWuS8hxcPnhfTCeVNzkmWh-pogic_oP1YAfhQ9w,1438
190
+ maxframe/core/operator/shuffle.py,sha256=3vdk9DMGkE-YwEjC73faUw8Mi7HHRv5qt1exrGli9UI,1846
191
+ maxframe/core/operator/utils.py,sha256=ejUrdYNVEDHSdgmBagWRMfIVAiJ_lBDaW8xf-iBFBuU,1761
192
+ maxframe/core/operator/tests/__init__.py,sha256=4LpNXO11JAdLjSut3p036oEEXlDEB-6AURW9oci5W5Y,609
193
+ maxframe/core/operator/tests/test_core.py,sha256=lM-SyMKNkwqBWdYmBIIULs9eE7qs8-_BqytyRamucWY,1755
194
+ maxframe/core/tests/__init__.py,sha256=4LpNXO11JAdLjSut3p036oEEXlDEB-6AURW9oci5W5Y,609
195
+ maxframe/core/tests/test_mode.py,sha256=8MN3zXFAkiaxSKhEc_ToY1C91dKBHJIYNvW7nVmqSJ0,2507
196
+ maxframe/dataframe/__init__.py,sha256=9x6NfLzu4TReNEfz0YgND_Fck4odtCaE4h-exrw1CJg,2356
197
+ maxframe/dataframe/arrays.py,sha256=ZHt3mIEA4plITmP-NyLAe7MGSxBOCSI8fw_gcTKU1SM,29616
198
+ maxframe/dataframe/core.py,sha256=dwJMCFgDoB94xUeM6f9QM3-AqwzFFrNEnJDcfL7l-tA,77741
199
+ maxframe/dataframe/initializer.py,sha256=SiTh1ibIILZf-E3cSZ8bfgNuFd-YpckdWDphUGpMPJE,11150
200
+ maxframe/dataframe/operators.py,sha256=qONH6TL7DNHkGxhKMU2LP4kQz6tTiuzoIYVcryYwp3Y,6821
201
+ maxframe/dataframe/utils.py,sha256=9cW9FpyZpglWmcd-B1OmN53Q3c5Mr7ewTv2mZqqGBoU,55860
202
+ maxframe/dataframe/accessors/__init__.py,sha256=3WuzauK-nPHEpLyICK0tY-F6OdWZ7EaQdORBAoaHD3o,669
203
+ maxframe/dataframe/accessors/datetime_/__init__.py,sha256=WlnK71KZrVpXqwDWJ9-cRE18ZnAOGKPlmO2jnL8uytw,1116
204
+ maxframe/dataframe/accessors/datetime_/accessor.py,sha256=OEfGjmItzC-AlgFpaQUrfgVncwqdJ6QiH_OKIAj2xis,2289
205
+ maxframe/dataframe/accessors/datetime_/core.py,sha256=v-R1i3FEEBU_K4CQonOhWTNzokEtQWUlQkng3Nuntdw,2686
206
+ maxframe/dataframe/accessors/datetime_/tests/__init__.py,sha256=4LpNXO11JAdLjSut3p036oEEXlDEB-6AURW9oci5W5Y,609
207
+ maxframe/dataframe/accessors/datetime_/tests/test_datetime_accessor.py,sha256=P6oBRAdTlrFtSee7tApVeNlrUEP5Otdq6UC-Su5NWG0,1436
208
+ maxframe/dataframe/accessors/dict_/__init__.py,sha256=RtTuqfKlvo-644LWf3OsdyJ-pVFs1vvv1vQQdoYKrgs,1546
209
+ maxframe/dataframe/accessors/dict_/accessor.py,sha256=FdyYWhYuzbCXSkwmhv89fzmo0wS72xCAFddkNmJg6dc,1347
210
+ maxframe/dataframe/accessors/dict_/contains.py,sha256=-QYue1nRqFDEK7L6PtnqcJcrGzH8Lrki49ySNjZShYE,2608
211
+ maxframe/dataframe/accessors/dict_/getitem.py,sha256=5xC9YhxuAOIOPOfqUyrx3D4rvnisa7gAKAu19EKsnFo,4539
212
+ maxframe/dataframe/accessors/dict_/length.py,sha256=HBFa-GcBUauNnDrvhAwivhXDlOZTXNbm8pwKtXjdnlE,2280
213
+ maxframe/dataframe/accessors/dict_/remove.py,sha256=RHZ_2P8qyqUiZkXSTzWKn1orv8qKL-RKux8HHYIsGKA,3073
214
+ maxframe/dataframe/accessors/dict_/setitem.py,sha256=zHfUXH4qZCRjYCNazSSpsNjWiA7MfLVoSZ-DZ3WJa9E,3042
215
+ maxframe/dataframe/accessors/dict_/tests/__init__.py,sha256=4LpNXO11JAdLjSut3p036oEEXlDEB-6AURW9oci5W5Y,609
216
+ maxframe/dataframe/accessors/dict_/tests/test_dict_accessor.py,sha256=FXKY_egcj7OP4M5bQr1v_sqn5GLxockA3dV0QXHmIJk,4043
217
+ maxframe/dataframe/accessors/list_/__init__.py,sha256=DU9NWAtG5km6fuu9OPOCYtxjyYqQjJe62K4Wdw0strA,1285
218
+ maxframe/dataframe/accessors/list_/accessor.py,sha256=JhxueXfQhFM-hSWFZZ9KVpoP5imiylSze_k8S-ajf2M,1348
219
+ maxframe/dataframe/accessors/list_/getitem.py,sha256=wgMJ38gtwInlsiio2z6Po69YI1-GsC51oHQkYfMaa7Q,3879
220
+ maxframe/dataframe/accessors/list_/length.py,sha256=LRw4FImg7iEGrWbH4IyOIoesm18pJ-g2K3QAYg3mRxc,2207
221
+ maxframe/dataframe/accessors/list_/tests/__init__.py,sha256=4LpNXO11JAdLjSut3p036oEEXlDEB-6AURW9oci5W5Y,609
222
+ maxframe/dataframe/accessors/list_/tests/test_list_accessor.py,sha256=Yzop_LU3bWoguD9EXM7dpV-3du4hXnpRavQ8vxR6IPM,2460
223
+ maxframe/dataframe/accessors/plotting/__init__.py,sha256=l5Q-Q7IaStM4sM9lcHP2B0EF8FajwZahvbBDiw6rY2w,1428
224
+ maxframe/dataframe/accessors/plotting/core.py,sha256=rGzHc_MXEdTTJMQXO8cspf9eY4Otccj5unjNooCRbAo,2313
225
+ maxframe/dataframe/accessors/plotting/tests/__init__.py,sha256=4LpNXO11JAdLjSut3p036oEEXlDEB-6AURW9oci5W5Y,609
226
+ maxframe/dataframe/accessors/plotting/tests/test_plotting_accessor.py,sha256=UGCrKUU4ax2GQvXGxPnHD7gqePXHWz9t5JAierTw_IY,4259
227
+ maxframe/dataframe/accessors/string_/__init__.py,sha256=9aDca_a61YUSAZ2MwT2bByDSD-UTgNbO7Y2oylKwhoQ,1106
228
+ maxframe/dataframe/accessors/string_/accessor.py,sha256=2vsY1MBoxILuWr1hlqSZaps6029h_aYTFzNC3qUhOek,8269
229
+ maxframe/dataframe/accessors/string_/core.py,sha256=jn_HQw1J1QeVu637h2wVufqZy0thXi95C6swfjNcu-c,8417
230
+ maxframe/dataframe/accessors/string_/tests/__init__.py,sha256=4LpNXO11JAdLjSut3p036oEEXlDEB-6AURW9oci5W5Y,609
231
+ maxframe/dataframe/accessors/string_/tests/test_string_accessor.py,sha256=5W5ajKUz6n1kWAIR_JHB7y-IFTWtenlbf8dOlOqsy5E,2549
232
+ maxframe/dataframe/arithmetic/__init__.py,sha256=IM3Z2tT4LPJa3j30CVXDJ9TftQGy3DVxjTHoH7zBuyY,12837
233
+ maxframe/dataframe/arithmetic/abs.py,sha256=gu1hUmtP5h2ps-X7cB_e2Iyq2xYpj1jT_UzG8S0TvxA,1016
234
+ maxframe/dataframe/arithmetic/add.py,sha256=b_nSJ19j5qGrHeWN0yjBNbWOncF3Qmr1EGmRwHQQKao,1766
235
+ maxframe/dataframe/arithmetic/arccos.py,sha256=wupyUmd6-A5tH1wdunMg1kMO447Tqn1RW0ZyFwfE90A,958
236
+ maxframe/dataframe/arithmetic/arccosh.py,sha256=9cRjhbGmMxchg_rYnRPC0yh1vUy8fP7GIbW8H02Ph-s,963
237
+ maxframe/dataframe/arithmetic/arcsin.py,sha256=DIf56tRsfSJJijzxW1k7bR5aS47yMpZCnePi3q4weTU,958
238
+ maxframe/dataframe/arithmetic/arcsinh.py,sha256=BlQG8Of4USnyrBy42tD7qC29ODN1GYyhcGpqdTLWDjw,963
239
+ maxframe/dataframe/arithmetic/arctan.py,sha256=vM8ca7eQ6F-4NbpdE7MdMoV2yJoTSk-rKc7-C0HzrUM,958
240
+ maxframe/dataframe/arithmetic/arctanh.py,sha256=d5hluAcPUs6fZLi-ICaO7G-H7919CCStBM1FhQejlXk,963
241
+ maxframe/dataframe/arithmetic/around.py,sha256=JisS-xM1cq3bXTr7uAORB6rB-bxB3fTbnYd4kaFNEfg,3963
242
+ maxframe/dataframe/arithmetic/bitwise_and.py,sha256=kh_FY_fNcYDvlxRibhJijcNRigkXbHnqxPGKcL-ZN3s,1473
243
+ maxframe/dataframe/arithmetic/bitwise_or.py,sha256=HQnBswMZgP6XU3R2iV4ds9mFGOxspacWNC8koqFQyB0,1596
244
+ maxframe/dataframe/arithmetic/bitwise_xor.py,sha256=o5MtjompxrDICBW7HSQl7Tx5jpjwWQu4ewpEB5HpyLo,1472
245
+ maxframe/dataframe/arithmetic/ceil.py,sha256=jiNVv1jM8Rn1Pqc6D_jmGaHVd9QUUqmdlXNIOrb1HC0,948
246
+ maxframe/dataframe/arithmetic/core.py,sha256=488pWAJ_0hY2EVUkD_PkFNXqs2Blgl48FZRJnkeKvX0,14858
247
+ maxframe/dataframe/arithmetic/cos.py,sha256=PWDxbtPjwjBRy0rF52utgGHB5Qf1O3P4r7nZnU3eHHE,943
248
+ maxframe/dataframe/arithmetic/cosh.py,sha256=Ui5lYjYt_mniSNtiYcbxYhFUYWBVKlIK7Z_YtbUXdsI,948
249
+ maxframe/dataframe/arithmetic/degrees.py,sha256=arJKiQ2o0VbIR8IsVKmi5z2_FlPT5hnorG-IZLJqqKI,963
250
+ maxframe/dataframe/arithmetic/docstring.py,sha256=N9HJeR_CL9JoBDmqg1dRQqk1PVRRtuFxaYH8R3UCi0g,12107
251
+ maxframe/dataframe/arithmetic/equal.py,sha256=e0z17h6jgPyvAbkBq1w33foxFToBlg0XbTG8U8R4vj0,1575
252
+ maxframe/dataframe/arithmetic/exp.py,sha256=_PRE96Lrm0YVskh0LjXTGo-lOPZNa8NKX1Nn8m5NkYA,943
253
+ maxframe/dataframe/arithmetic/exp2.py,sha256=6tRKMvqZsNpE0NN0fMlgiANF_6aHi2rQ3DZdTnhvb-M,948
254
+ maxframe/dataframe/arithmetic/expm1.py,sha256=PXgqDfhs1dtXF_NkGovTAblhW9rqapufBd0JjSpAGFs,953
255
+ maxframe/dataframe/arithmetic/floor.py,sha256=OB-FilvjgLIlRu8KNX_QqqZynMcZ07ls3citWJHbryo,953
256
+ maxframe/dataframe/arithmetic/floordiv.py,sha256=5ezVBHe5muBJd9K2-wlyx5JdU3_Rw1UiBPiJSmEDERs,1891
257
+ maxframe/dataframe/arithmetic/greater.py,sha256=gz6ASbc5W3zXttv-U5-0gVS9A5Tao6Q49a5Wbi3jxSc,1606
258
+ maxframe/dataframe/arithmetic/greater_equal.py,sha256=8MZEGCJuKqe4o8Zdu7a8p2fT_j1IkT_sidxtQb1hGTs,1631
259
+ maxframe/dataframe/arithmetic/invert.py,sha256=CSg6PRyV2hRiA5DLlGBUi-Vv_uNR1Of3FLXd9Y9eFdc,1018
260
+ maxframe/dataframe/arithmetic/is_ufuncs.py,sha256=IcgW9b0wH0NTWg8O1HWXzm5x9eqZLIekkzw-u6B9IJA,1798
261
+ maxframe/dataframe/arithmetic/less.py,sha256=XNFgjEnuLq7Zvu2MJbcBttcJbtQ1OiPgUQ7D_QqmkQM,1575
262
+ maxframe/dataframe/arithmetic/less_equal.py,sha256=YvF7XZyY1F2m-yTaqcDJ9UFrQGVq7LkhJdC3F6nstoQ,1616
263
+ maxframe/dataframe/arithmetic/log.py,sha256=1iXJR5Lr3KW4opfZuI0t11es2MB96hYEm0s3l8LMRyc,943
264
+ maxframe/dataframe/arithmetic/log10.py,sha256=gZg8HE0RIz0tp9ss2mjAXRRkVhlN1lH2sFs9ZStCby8,953
265
+ maxframe/dataframe/arithmetic/log2.py,sha256=I2mvhdZZ62P_E-6O5okYmQD9WbbIzTPVbAjrgEDuMf8,948
266
+ maxframe/dataframe/arithmetic/mod.py,sha256=n2yzITZfnPg4PhpDmD-0qMusNzatyS9MVXa993xKZAo,1762
267
+ maxframe/dataframe/arithmetic/multiply.py,sha256=Jb4lrR9QDrvivFqhBrySFB8PfIF4l2Rw_byLi_gVdbo,1793
268
+ maxframe/dataframe/arithmetic/negative.py,sha256=B4KcbnUj49PyCIil9x23QKLAR9ONAiQ96tRxKEEss4Q,1040
269
+ maxframe/dataframe/arithmetic/not_equal.py,sha256=otvXJqF2sGX_vEIaKHp-XEwnPD1SW59BIvmL-81ds_8,1591
270
+ maxframe/dataframe/arithmetic/power.py,sha256=IcVB9B4gfiEHOeygKlniYOkvymT23Go0kpvxLnhrIao,1879
271
+ maxframe/dataframe/arithmetic/radians.py,sha256=RlDjhTLxMG1W1p1oioabl1peJqYc6in9ReRoiVHeeeo,963
272
+ maxframe/dataframe/arithmetic/sin.py,sha256=u7TDCIVYE3J7DmEwwNuWKXfL76ZaHEyES0eHqvOdvow,943
273
+ maxframe/dataframe/arithmetic/sinh.py,sha256=mYLjFaZ3wk78WIeuR-0g1lFxE0vWLHlMxSleQfaY8mE,948
274
+ maxframe/dataframe/arithmetic/sqrt.py,sha256=dFhYA0ECH3ZWJTMAr6gnrGGMPFsckPTT9om7x7a5zf4,948
275
+ maxframe/dataframe/arithmetic/subtract.py,sha256=KgCD46OJ5t7oj7WU8sVtlNVtuKuI4QWe6gybtETYhf4,1844
276
+ maxframe/dataframe/arithmetic/tan.py,sha256=nuuyDXtn2YIUTIqsfDUvIYfZMzQ0DAWPjHldwisrdvM,943
277
+ maxframe/dataframe/arithmetic/tanh.py,sha256=fjjxCL3WnncJnxXwEFy9UDvQCL5Unemkqoow9s83_KI,948
278
+ maxframe/dataframe/arithmetic/truediv.py,sha256=QKVcc2Y6L1ICDnUj5ahVkwbVCLxsFYenllOQOtW2KLc,1872
279
+ maxframe/dataframe/arithmetic/trunc.py,sha256=D_d4GYsEPBdrdfRL1XLFvMrZ6bL1OIGL-uSP3tiExL4,953
280
+ maxframe/dataframe/arithmetic/tests/__init__.py,sha256=4LpNXO11JAdLjSut3p036oEEXlDEB-6AURW9oci5W5Y,609
281
+ maxframe/dataframe/arithmetic/tests/test_arithmetic.py,sha256=iRi8KxX1Ib22GooXrZ8ekNXcito1bQ8Ib0KuTSUYPoM,26120
282
+ maxframe/dataframe/datasource/__init__.py,sha256=7iDCTWD3y45JIYXu7fXGsHekb2cGabmy-b9bN77RJPM,655
283
+ maxframe/dataframe/datasource/core.py,sha256=XusQhEHiASWT2ONuDniAlwlMYyt_Albs9n7xnlL_RSw,3046
284
+ maxframe/dataframe/datasource/dataframe.py,sha256=_EJaT_b1i6XIZpyqSudAPdOS4n3l_S5aRcKOMov26NQ,2082
285
+ maxframe/dataframe/datasource/date_range.py,sha256=_4pPmk8bcvwkR0UBkM9X7e2re3JGvpH6PvgjfKwtGT0,18039
286
+ maxframe/dataframe/datasource/from_index.py,sha256=F77x6f5ovuxpTDLzCwXVprBLq0Vc9RYE9OuFQYhjJ2c,2022
287
+ maxframe/dataframe/datasource/from_records.py,sha256=Warf6NQvlRZBSUQ_qPStRI9SrwiPBKv1BmN1srfRLMI,3813
288
+ maxframe/dataframe/datasource/from_tensor.py,sha256=A9SUA-TjSxJqwIilHkIMQj12S7H5UU9mcQsjq5nh0E0,15589
289
+ maxframe/dataframe/datasource/index.py,sha256=LUOaSY3jScY65h4TSryXMfQJGdUWWXmnoS1IP9ah5aw,4518
290
+ maxframe/dataframe/datasource/read_csv.py,sha256=rJWM-VTk231fh8UhIUmweP1fZRJjfPNn-Iec1_PYcz8,24926
291
+ maxframe/dataframe/datasource/read_odps_query.py,sha256=6EA6Hni85bVw82Sk7K3PNwarGB5oOmrUhAeHeF2-4-c,18152
292
+ maxframe/dataframe/datasource/read_odps_table.py,sha256=bwb07XfFDQTwKbXVqfPAhlpEq0pQjdJlmNCqYq2KqMo,10262
293
+ maxframe/dataframe/datasource/read_parquet.py,sha256=JcXzF89JtUBB00G96_0wnEdu054edmZ-jn7Xc244IFU,15195
294
+ maxframe/dataframe/datasource/series.py,sha256=9GmE-UVQ_eeFI53UuWiF6rQSqQ1mp4RkBVRWIhKNw2k,1964
295
+ maxframe/dataframe/datasource/tests/__init__.py,sha256=4LpNXO11JAdLjSut3p036oEEXlDEB-6AURW9oci5W5Y,609
296
+ maxframe/dataframe/datasource/tests/test_datasource.py,sha256=bjNMlhdqzjqtrdpUroYqtcO1AKrN5gleGUA-CRYtSB8,22078
297
+ maxframe/dataframe/datastore/__init__.py,sha256=KbGUgDoSvqGe_6Jm89Mh3KxU2N4mmMrn4prA4Jk933g,810
298
+ maxframe/dataframe/datastore/core.py,sha256=uNAcFyUgjn_LxUHk7IjqRlAWNeru77Ub-dZ15M5WDjA,762
299
+ maxframe/dataframe/datastore/to_csv.py,sha256=VVKPr3Ja3oyE5Z2T1tPoH-wNhng4QyKvxFGoTslZg1s,8090
300
+ maxframe/dataframe/datastore/to_odps.py,sha256=SVGfltALyFldcpkSw6ynPYkBu4cDPYy3Kn9e_roiQS8,8603
301
+ maxframe/dataframe/datastore/tests/__init__.py,sha256=4LpNXO11JAdLjSut3p036oEEXlDEB-6AURW9oci5W5Y,609
302
+ maxframe/dataframe/datastore/tests/test_to_odps.py,sha256=biPyEnfSF8IeoUuI2T7dLYoY4C-l3iU-McghOL6vIIA,3088
303
+ maxframe/dataframe/extensions/__init__.py,sha256=zqyUgCoY-KOpOVfRvLeGbh_dXSYI8RtfoTfSAnU8-LE,1997
304
+ maxframe/dataframe/extensions/accessor.py,sha256=9OkIrawtEl-_kKG_j6_3EKsuXForPseXAVMDlFZBRqA,1066
305
+ maxframe/dataframe/extensions/apply_chunk.py,sha256=j6b-1FyQNrgrIu8JE1zIUiCtPSF6aN96n6eFwjHBhAE,24207
306
+ maxframe/dataframe/extensions/flatjson.py,sha256=nQLC1iuNOp5p-psLfcfox4p-2APQPQxyODGyTpjGuxY,4544
307
+ maxframe/dataframe/extensions/flatmap.py,sha256=mAVAREjA2fmjqAO9ZWNg9UyLE10x2LI-8SXYn3-fsMM,10847
308
+ maxframe/dataframe/extensions/reshuffle.py,sha256=ICsXOCTCS_dmusMatU_o6_mOown3qFdnBoqq3d4D1n8,2718
309
+ maxframe/dataframe/extensions/tests/__init__.py,sha256=4LpNXO11JAdLjSut3p036oEEXlDEB-6AURW9oci5W5Y,609
310
+ maxframe/dataframe/extensions/tests/test_apply_chunk.py,sha256=XzZ2wqgzxrM-6sPGU2zLDiNRKtFZXCQyOLqN16vQIVs,6035
311
+ maxframe/dataframe/extensions/tests/test_extensions.py,sha256=0A8zL_uyZ805eVe3BazJNAnBxWYvcsZvnT4pV-pyp5U,4923
312
+ maxframe/dataframe/fetch/__init__.py,sha256=q9Eu7odmT29Xp2iPsNdOp46T-w2_4LxT4pb26sXhTKc,668
313
+ maxframe/dataframe/fetch/core.py,sha256=_g0LTJr-p5Z5AIHbgB3ibLcdP7NPlhs5KDd5s43RLf8,3841
314
+ maxframe/dataframe/groupby/__init__.py,sha256=ECJSoCi-RYbxKHZ3xhEHzHQi9y-O-uGsly9uLd9eQ0Y,3905
315
+ maxframe/dataframe/groupby/aggregation.py,sha256=JO4F1Bl3lwgFdecLCFcR61tMm4EmpswYmR-GnNXKiE4,13821
316
+ maxframe/dataframe/groupby/apply.py,sha256=1gpexJDVlpUSxA-ijj5rMN0mGS5Rk_SNhcp7AI4kmYs,8696
317
+ maxframe/dataframe/groupby/apply_chunk.py,sha256=LHMA28F5DWXHPi5DJ7QAPn5RNQAiY_kixXh6ZYOafa4,14264
318
+ maxframe/dataframe/groupby/core.py,sha256=t49qTZiKIEmHfme23HeY8zpXgza3bTdU_E9VxYWaLUo,8721
319
+ maxframe/dataframe/groupby/cum.py,sha256=unzOfw0d1so-0cNf2e2iQ0cOOetARK2UH2N0xWGfuN8,3806
320
+ maxframe/dataframe/groupby/extensions.py,sha256=IPjoLxFGTDzpdRAqiif9Y-qDytAu0JpSYbHKXfJBnks,941
321
+ maxframe/dataframe/groupby/fill.py,sha256=i21rxWRn5HeOtR7YCeuV243Y5VvwxM_xf8OvXNBWWjA,5034
322
+ maxframe/dataframe/groupby/getitem.py,sha256=Oego1g611FFTD6vn2yXD8FIjJ6JBj9-mD_0iZWdMTJU,3513
323
+ maxframe/dataframe/groupby/head.py,sha256=i2K2fcOTfrhYHUmKENde-VqtCmekS52_tvsiiEJ06kw,3371
324
+ maxframe/dataframe/groupby/sample.py,sha256=SSYQHc44VS6pTyhBVbMCjaNE61Cq_WMglT4iw4B8rIo,7221
325
+ maxframe/dataframe/groupby/transform.py,sha256=ClJ5zMD1cWjTgWroB0LebNiqIYOXr62pGF0PzbRXeVk,8837
326
+ maxframe/dataframe/groupby/tests/__init__.py,sha256=4LpNXO11JAdLjSut3p036oEEXlDEB-6AURW9oci5W5Y,609
327
+ maxframe/dataframe/groupby/tests/test_groupby.py,sha256=zXNvsGQSQyKbkRBr5WnoHRLN4o67cA4QxrGC53i9oHg,12736
328
+ maxframe/dataframe/indexing/__init__.py,sha256=4imqvsyjImWlF1ok6vgceEhLbur9Me4KqqjFALOjTwE,3297
329
+ maxframe/dataframe/indexing/add_prefix_suffix.py,sha256=BktGLizrnQ6Ccq_PHJ-Ga4dAiaBQuYXBNMhEfFwrv5k,3076
330
+ maxframe/dataframe/indexing/align.py,sha256=Pq68HmHdpJXgNkhaz2WVgylcUdl_9RG6gjwWv3owZSk,12509
331
+ maxframe/dataframe/indexing/at.py,sha256=96TI3VkkKBh9RKvWjd3aYHAWLvXkOHcUL0dvlsSzLC0,2300
332
+ maxframe/dataframe/indexing/getitem.py,sha256=ZhQesfrUtpIFDRMaq2lnY5RSd2jsKxmA5u-ydrMdSW4,8042
333
+ maxframe/dataframe/indexing/iat.py,sha256=YIuk6nvBuUU37BWtMUe5ZTAMIFJUnAVYv-riCRv68Mk,1164
334
+ maxframe/dataframe/indexing/iloc.py,sha256=BrkIHjNkV2BipqlgkW_l5393J5tVBl7Qy8U5JBwTUiQ,18240
335
+ maxframe/dataframe/indexing/insert.py,sha256=XM478NoYQzxPoZFMs-G4p9jsZtElYG1qf7B33JxfhcY,3114
336
+ maxframe/dataframe/indexing/loc.py,sha256=8zEAAmcpjF0xEHHLA6PUmGRExeK4GPn1HO59s-jPczY,15464
337
+ maxframe/dataframe/indexing/reindex.py,sha256=vTucXNQ-UX-eU860K0_aWcitbFcTh-pL9bOgMVyq5ww,19510
338
+ maxframe/dataframe/indexing/rename.py,sha256=XiXi65OLCYcc43aPvqOauzv6Uy00BN_0z650ubzvXbk,13331
339
+ maxframe/dataframe/indexing/rename_axis.py,sha256=rcfpkoZLGtny_idSwdOC9W0QA5IpoyBOULlmtO3hj58,6795
340
+ maxframe/dataframe/indexing/reset_index.py,sha256=G6KcFTbaasWTXfKvtnABUpM_GLNzR4OEURWtyC7XdGQ,13476
341
+ maxframe/dataframe/indexing/sample.py,sha256=SSITIjqAaEIb7AhKkyEbKKVZ50W3F6cbzIv-LYJ3q2I,8502
342
+ maxframe/dataframe/indexing/set_axis.py,sha256=3tFwmij_eAIWPCOr45QytuOM6Mxku5ul21oJAwp9q-I,5820
343
+ maxframe/dataframe/indexing/set_index.py,sha256=NbOpr4adgNx6MIM46d4xplhrtAq2RmE3t0mveYMQTUs,4323
344
+ maxframe/dataframe/indexing/setitem.py,sha256=XzItLjEvwh7avwlImr5mDR7_sJIHeKlDUVDwvdzVYG4,5228
345
+ maxframe/dataframe/indexing/where.py,sha256=07Q8mTMrAXTYXWMcHKjUZijaeRiHCmKZXaW7pP_fofU,8963
346
+ maxframe/dataframe/indexing/tests/__init__.py,sha256=4LpNXO11JAdLjSut3p036oEEXlDEB-6AURW9oci5W5Y,609
347
+ maxframe/dataframe/indexing/tests/test_indexing.py,sha256=9vjCrHEW3yJxVLMUZ2aKnHgb-9pY7ILQz27ZQwWKDfA,16099
348
+ maxframe/dataframe/merge/__init__.py,sha256=-jy3XeGFdEvPsuZi3zfxLF5Y0nVK3jA8ISVMftGzRzU,1135
349
+ maxframe/dataframe/merge/append.py,sha256=GahlHZYsn2mtKMhOgcGbpofxzhfzjh_hTUG7kRuuqhw,4973
350
+ maxframe/dataframe/merge/concat.py,sha256=nsF0Ra9jMcRX8RwSKZ46iYK3AVFjwa3G9JiKT-da2Vk,11599
351
+ maxframe/dataframe/merge/merge.py,sha256=DZr3JtN_SgPqi7kuvQLZJozYCOUtix3n6U1rB7PaTbw,30670
352
+ maxframe/dataframe/merge/tests/__init__.py,sha256=4LpNXO11JAdLjSut3p036oEEXlDEB-6AURW9oci5W5Y,609
353
+ maxframe/dataframe/merge/tests/test_merge.py,sha256=RSSYcqSB5aqjPHyk7slUpxLvGoN2Q_LkkfmESmwSbEo,13355
354
+ maxframe/dataframe/misc/__init__.py,sha256=tFb6W2_A3BoGmAVlzemEVUdtU_e7i2Sq1mpRwcr0-S8,4979
355
+ maxframe/dataframe/misc/_duplicate.py,sha256=-dR2s0aPWXFIv9T0m-PeE5srH0OJ3L4h1UsdgIQ1RyI,1634
356
+ maxframe/dataframe/misc/apply.py,sha256=SmlBb3bKbOVNv1oLfxBpCTr-1qY-i8Bh9l0JR3lUmnE,24867
357
+ maxframe/dataframe/misc/astype.py,sha256=fxgBonaj5ybTZ2Grgy94X3n9ftK50OR7H8ImZRqhnTc,8110
358
+ maxframe/dataframe/misc/case_when.py,sha256=m3KQNZhdPD2q-80CcSIKhFyuYKD4JtS2-H_kuiuaEiA,5128
359
+ maxframe/dataframe/misc/check_monotonic.py,sha256=v8UA6vci4LkFNoVTK8pDb7IPKXtaHKEMGmgl7mMqEjo,2506
360
+ maxframe/dataframe/misc/cut.py,sha256=6-tNY7WheRZ2kBX28exyNaq-uLZCZTtTNDfBfMXbKXo,14436
361
+ maxframe/dataframe/misc/describe.py,sha256=oSbm5hCTHkvz2-5b6q42wwTzXHhM-EK10bOyggLnbQo,4597
362
+ maxframe/dataframe/misc/diff.py,sha256=iUHG2GZ8lyCmgSF5TKOyiWNaMQuTUKJE3Z_TdjHypx0,5701
363
+ maxframe/dataframe/misc/drop.py,sha256=bjc0G0dZ_oTPZ34pnIZtLHTD8kMeINJ7vQo9GivC2nA,13492
364
+ maxframe/dataframe/misc/drop_duplicates.py,sha256=whaghpL0YAKuSkTfbQTM8M0Fv-lqLYc6OEhIIHqft8c,8940
365
+ maxframe/dataframe/misc/duplicated.py,sha256=38FDeOilNVe5_C9rU80bgGQ8ulxbDZSA63OVFNJv8-c,8826
366
+ maxframe/dataframe/misc/eval.py,sha256=QLrm2IoB4ihVQNtWPb6XYoRHy2Kxv-sL118za_GCEyQ,25043
367
+ maxframe/dataframe/misc/explode.py,sha256=_Z1DVOmQ3-kytbUaUOXBUtd9nqCtxu__X7AUHPrr8rc,5182
368
+ maxframe/dataframe/misc/get_dummies.py,sha256=Sug9x_JFihm7Dj3I-qcg63tZH8F7gkiu2su8kh-SXYg,7889
369
+ maxframe/dataframe/misc/isin.py,sha256=zRCrBB0FLaAfMC-y3ZLYClux0dPYWJGIqtAYzuiq8KE,7231
370
+ maxframe/dataframe/misc/map.py,sha256=gzGxyZ9zkgtymSAV_wbgRsgQvmcOW7WERZPkN4cj4po,9084
371
+ maxframe/dataframe/misc/melt.py,sha256=IFFVwxtQ_VkrfCmJkjeDWsZQDeEcho_qZN4g0DMyBTk,5639
372
+ maxframe/dataframe/misc/memory_usage.py,sha256=Y3aXu020mGVt02LDOHQndC38WEz3h4P6ICBRTRWv6BU,8137
373
+ maxframe/dataframe/misc/pct_change.py,sha256=QqnfdWFCMX5JJzzbBDPhllruhKHRmMyX5zG_83rB-zg,2584
374
+ maxframe/dataframe/misc/pivot.py,sha256=bus18qgJxj8zQQZnHXN5pS7ZaMeBQpLmNe9NvXFWD3o,7976
375
+ maxframe/dataframe/misc/pivot_table.py,sha256=gsHrurN6MTg9jjGkLWwF-55YAfnukbLDMmEW6YE1zn0,10344
376
+ maxframe/dataframe/misc/qcut.py,sha256=1Br0gy9aEX7WJVH-WrnghNrofrUVrQftavwLvAN_9Hc,3841
377
+ maxframe/dataframe/misc/rechunk.py,sha256=t_kC4OoRcRG4-nvBiBzbGx9RWqejjmbKKg6Mp2QUH5I,2015
378
+ maxframe/dataframe/misc/select_dtypes.py,sha256=427Uisn1SGCHUSs_mXvZHVv7QcTIGUuQy3IGVBcQGmU,3248
379
+ maxframe/dataframe/misc/shift.py,sha256=ZmZRSSSo-xYwz44biGTRlIe_uGGqCa0Y3V40atS6wF0,9287
380
+ maxframe/dataframe/misc/stack.py,sha256=DIkfGxsLiN1CnMSm_x1a1o0aDZLGYoOb96X5E5FAnrY,8289
381
+ maxframe/dataframe/misc/to_numeric.py,sha256=stvfycjsm6XeNz04aAC0LOl6BRcmQB3l-wfx5KboZe0,6440
382
+ maxframe/dataframe/misc/transform.py,sha256=phzNOx-JpNLAezrDRGcaFVNnwK9UGS9dBWCE753zLUs,11283
383
+ maxframe/dataframe/misc/transpose.py,sha256=8SLGhzgOvIi1-mMfPTL7wEZIXu_NiYXnvAmSYHDzTww,3772
384
+ maxframe/dataframe/misc/value_counts.py,sha256=3N4X7TSbKBVgiFwNLiLTQ3AtEievzNTHa9Whj0VmdNw,5486
385
+ maxframe/dataframe/misc/tests/__init__.py,sha256=4LpNXO11JAdLjSut3p036oEEXlDEB-6AURW9oci5W5Y,609
386
+ maxframe/dataframe/misc/tests/test_misc.py,sha256=7x2ZcCkxyc1e6I4PFkPQzybZM9Ja6L3L7PevlMAewMg,20453
387
+ maxframe/dataframe/missing/__init__.py,sha256=6MeY8HvRUJEQu_a15Cmt2Q8_a3G6kg6ti9LA3olZr7Q,1866
388
+ maxframe/dataframe/missing/checkna.py,sha256=kq5Bve_rcy32IWhIzXTaLVyU6a09p3x3-Jo4SB-gWLg,7113
389
+ maxframe/dataframe/missing/dropna.py,sha256=JMl7tHdFNmq-UZnOjI5NNjfSI0Z4GZRIGwLIEkva8Xs,8834
390
+ maxframe/dataframe/missing/fillna.py,sha256=S8_4wnOQC6-Iwrcc7gN4H---Oyf7OkyrAW50uv3mE_I,9441
391
+ maxframe/dataframe/missing/replace.py,sha256=kvrFi7gJ2mfiwQiW5ZDnr4oCLF3zght6SkSP9dSSUJM,13893
392
+ maxframe/dataframe/missing/tests/__init__.py,sha256=4LpNXO11JAdLjSut3p036oEEXlDEB-6AURW9oci5W5Y,609
393
+ maxframe/dataframe/missing/tests/test_missing.py,sha256=LUSuQmhAtGceWGRWBbv9kxYRHqS4cPr6G-J8cwR8RLs,3217
394
+ maxframe/dataframe/reduction/__init__.py,sha256=vWzViXiIiaOx0Yu2kWYkelVwYGGsv4OfUPLrFHKmXKI,4445
395
+ maxframe/dataframe/reduction/aggregation.py,sha256=sPds9Xn_ZVZ8861jGjAPYaPGkkUgUtgf6owdZel-6lQ,17297
396
+ maxframe/dataframe/reduction/all.py,sha256=_g8SKDcjwjLOZJmlBXy6jAGexJvG-A-jNwg9G3fKJk4,2044
397
+ maxframe/dataframe/reduction/any.py,sha256=eTAF8iEkcICIkRCiICB7LL5Tjf01L_QKAbcNscYJF3M,2048
398
+ maxframe/dataframe/reduction/core.py,sha256=-mEAvplbK7oJMZiqlmy8Qz4iThGrubVLWtMgUP6W6fY,31877
399
+ maxframe/dataframe/reduction/count.py,sha256=1L55Exc7cO8a55s7r3AZP85aHtbL1RCK3HQQvhD-l-A,1800
400
+ maxframe/dataframe/reduction/cummax.py,sha256=d8b1RxCiadkHtX7E-2hIe8vKdo1wFp8TQvfVilaLTmg,1043
401
+ maxframe/dataframe/reduction/cummin.py,sha256=4OXs4ZGXyONlV_94qt3qSq1z674-S-BI1lT7ituFTs8,1043
402
+ maxframe/dataframe/reduction/cumprod.py,sha256=F3YODmHpG6bxXmb8XGmjvHXFRUkuXyfcg1TOueWBBmM,1048
403
+ maxframe/dataframe/reduction/cumsum.py,sha256=CNyjRfbmFh0VCqAFrJrCyIq4-vo5j9n2FkpvQqzcmb4,1043
404
+ maxframe/dataframe/reduction/custom_reduction.py,sha256=5eXhi50SA9_udeRTlcia0ZM4OUVClWphWtEyZhQyqdE,1477
405
+ maxframe/dataframe/reduction/kurtosis.py,sha256=tr26wVZ_bKV7O2upuK8HpD-7DalblSLPyCAqC48x4S8,2944
406
+ maxframe/dataframe/reduction/max.py,sha256=_fpWa2x_sjPYXGweqIKWr2OCE3F1Evu92O25Cc4VzXc,1725
407
+ maxframe/dataframe/reduction/mean.py,sha256=MqgK5PxsZ-lpGZlAiIyobKkilN-i_gdLIoKky7-Disg,1673
408
+ maxframe/dataframe/reduction/median.py,sha256=ZFw-ULaxQh2eKRLwMxJU9a3mksCITlsZb--8Q2OLE6c,1649
409
+ maxframe/dataframe/reduction/min.py,sha256=mvPPCVXK8H2AzfJxnwzhxRNIp6pwYUmthxrOMpf5yn8,1725
410
+ maxframe/dataframe/reduction/nunique.py,sha256=Uejilql8X7UTjZIQ8yTa6K7j91OPjk2y4Fo9k-kdKTg,3608
411
+ maxframe/dataframe/reduction/prod.py,sha256=knmn4AuCxtj1NvJYuw-Oj0hQA2-8Ou75HHkMRitbpig,2125
412
+ maxframe/dataframe/reduction/reduction_size.py,sha256=EDEm7PLKuXI18W05Y2TObxDNL4iV5SU9Q2VIPdeC07k,1156
413
+ maxframe/dataframe/reduction/sem.py,sha256=qzLPN1Eizneb09KxuoY503qMEpMzfDq1UM6W5VO-CHw,1932
414
+ maxframe/dataframe/reduction/skew.py,sha256=60mqE6C4DdSsexqeL7SXxCJ1hkXcs1_yl2eO0INLE5A,2627
415
+ maxframe/dataframe/reduction/std.py,sha256=FEIYOOy_RWvKy5J4PxWrcyHdCXM1vhzCzcJbGkUs3BY,1408
416
+ maxframe/dataframe/reduction/str_concat.py,sha256=D6Zg0Nn3zte6maia2d0tEDS4YTcdPJCxulLERLywouU,1705
417
+ maxframe/dataframe/reduction/sum.py,sha256=pHoFT1rx_kI6EEAzywuNHqw1-IFQQaWSxPJlRgHC48o,2126
418
+ maxframe/dataframe/reduction/unique.py,sha256=HezZnCRH5Tuwk9lSxDYDi5Q2qZaKNwviYpYwxU_KoSs,4708
419
+ maxframe/dataframe/reduction/var.py,sha256=3lxeX6F5cWZBzcly6x8fVXmDrj79D7VG606A_kslADs,2080
420
+ maxframe/dataframe/reduction/tests/__init__.py,sha256=4LpNXO11JAdLjSut3p036oEEXlDEB-6AURW9oci5W5Y,609
421
+ maxframe/dataframe/reduction/tests/test_reduction.py,sha256=7d-JvUT4uIr3IELkc_0pCcSVtTXyyFocA_i-jYZngwk,19250
422
+ maxframe/dataframe/sort/__init__.py,sha256=-RklhcFXmM4jroF3Uwv1jKYWtkvpyiXNqPULFu-Ywj8,1194
423
+ maxframe/dataframe/sort/core.py,sha256=EV_0wRwwatjWJxCSs-bndm8oNBoYKSULzaJmjmroRV8,1260
424
+ maxframe/dataframe/sort/sort_index.py,sha256=-K5_EGDspBpZrIOpeZPoQuaKpEbOK91sjdgdR3TqxpE,5565
425
+ maxframe/dataframe/sort/sort_values.py,sha256=hvUvy-e8xV-8UIhTaUXeHo5mjaNb009dUT0-WKDXTsc,9003
426
+ maxframe/dataframe/sort/tests/__init__.py,sha256=4LpNXO11JAdLjSut3p036oEEXlDEB-6AURW9oci5W5Y,609
427
+ maxframe/dataframe/sort/tests/test_sort.py,sha256=pCxHG5WJ4N7rk25nxRkkWS--j1GmBg04z9va1KlyK34,2685
428
+ maxframe/dataframe/statistics/__init__.py,sha256=1ICpYa5QWI7JGl-YiA9HND2Zrkv33Xd_5ET3gj_h7Bg,1117
429
+ maxframe/dataframe/statistics/corr.py,sha256=uPNF7LFUvco0KLV9rKWBl6S7xSnEGikLkVbDs7GgCWw,9856
430
+ maxframe/dataframe/statistics/quantile.py,sha256=6UafIlsbWfDXNWo6-Z_LOmsxMUDMvC9gHX4TmopRiBk,11948
431
+ maxframe/dataframe/statistics/tests/__init__.py,sha256=4LpNXO11JAdLjSut3p036oEEXlDEB-6AURW9oci5W5Y,609
432
+ maxframe/dataframe/statistics/tests/test_statistics.py,sha256=EgObO0EeNbw-H_Y6CAGWYswyQBHh7nEOPf8T26aBafE,2888
433
+ maxframe/dataframe/tests/__init__.py,sha256=4LpNXO11JAdLjSut3p036oEEXlDEB-6AURW9oci5W5Y,609
434
+ maxframe/dataframe/tests/test_initializer.py,sha256=OyC8odxqZlOIMvz2dzhne-0-82wchp4Ti0-drGm9Kd0,2060
435
+ maxframe/dataframe/tests/test_utils.py,sha256=TPse4YJdfWPUgDucXKHpEqlT3qIixLTI1nlI1I5SC_4,3113
436
+ maxframe/dataframe/tseries/__init__.py,sha256=4LpNXO11JAdLjSut3p036oEEXlDEB-6AURW9oci5W5Y,609
437
+ maxframe/dataframe/tseries/to_datetime.py,sha256=UBx8ayibVzmZb0OAAbkpErfRGbPRd_IGwPlrvNdJsMQ,11725
438
+ maxframe/dataframe/tseries/tests/__init__.py,sha256=4LpNXO11JAdLjSut3p036oEEXlDEB-6AURW9oci5W5Y,609
439
+ maxframe/dataframe/tseries/tests/test_tseries.py,sha256=jxK8Qz-lgfHliRc-axttpW1VWRNse2PS-yXOQYv9Wpk,1019
440
+ maxframe/dataframe/ufunc/__init__.py,sha256=kEWEf887PkENrw2Ua3Rrl0U2HIxPmxe4gZJybY07IUI,916
441
+ maxframe/dataframe/ufunc/tensor.py,sha256=FN151gfgAYE6XjnIlzVik3wYGe3jWtvwwhfta4DeGgk,1672
442
+ maxframe/dataframe/ufunc/ufunc.py,sha256=uyw2zb9Qtt8-y2kWffoElmyN232UQ9ZRql2afuj2MWk,1705
443
+ maxframe/dataframe/window/__init__.py,sha256=Y1EmErhxp5aSWnLFadSNEpvE7pAQgggjvP_1kXnwgME,939
444
+ maxframe/dataframe/window/aggregation.py,sha256=rm89zzL-x3sGUJYeVK-vV_OvFLq9lBQHhm_JmVf-ujo,3890
445
+ maxframe/dataframe/window/core.py,sha256=P9R-NicSgb32LhpLBHSe3PZc5rBV3g6QK5flIytSGzI,2274
446
+ maxframe/dataframe/window/ewm.py,sha256=lnJDOURJe1mF4Ehq5QPwQeT9hYCFdzXgXW_CW1Ojp0A,8038
447
+ maxframe/dataframe/window/expanding.py,sha256=GzYS6bL5HiiKtHiG-ab2KnVuFcB88GhVVWusgSIDGRI,4067
448
+ maxframe/dataframe/window/rolling.py,sha256=OYyoQ-vbGvGrI52k3t41mzPcDFlT0wXnSzrkZyy1tVs,12537
449
+ maxframe/dataframe/window/tests/__init__.py,sha256=4LpNXO11JAdLjSut3p036oEEXlDEB-6AURW9oci5W5Y,609
450
+ maxframe/dataframe/window/tests/test_ewm.py,sha256=yJhYVg8fufOx8_u7S7Y6ubTBhzBiyLTYQHmVsE6pCJM,2130
451
+ maxframe/dataframe/window/tests/test_expanding.py,sha256=3HnbUh5ELF2NKhfiVEcV6wGXEw0zb2Eqh_pP5f7fU6g,1982
452
+ maxframe/dataframe/window/tests/test_rolling.py,sha256=48qEq43M4ZQH-lxFnc8SvamFzw2BJaNM7utDOoQchqE,1771
453
+ maxframe/io/__init__.py,sha256=4LpNXO11JAdLjSut3p036oEEXlDEB-6AURW9oci5W5Y,609
454
+ maxframe/io/objects/__init__.py,sha256=wq8AHIuxvoIqoVOIVZ7DIPeDqmoh4yB0zsC-iVghYSI,778
455
+ maxframe/io/objects/core.py,sha256=iadSP56p1GPZxl9udhPGfwuog6Npi7YqJ1XI5ltU4fo,5459
456
+ maxframe/io/objects/tensor.py,sha256=_1oowrferb_fNJw5UlPySGNUF17dhNgwvrZxqJNnE-U,4786
457
+ maxframe/io/objects/tests/__init__.py,sha256=4LpNXO11JAdLjSut3p036oEEXlDEB-6AURW9oci5W5Y,609
458
+ maxframe/io/objects/tests/test_object_io.py,sha256=87ftkGDQWE4XqDPlgpz7feIzdKLWKlFqfdjbzmbh32Y,2670
459
+ maxframe/io/odpsio/__init__.py,sha256=mGMCS99Gsdl5_pYBQYpXekRrY_4eM2waP9OG0wTQSb4,940
460
+ maxframe/io/odpsio/arrow.py,sha256=As_x8HrdXrJMvf1Uk4UJoEAODwA_zpRusEQaCl0-ATk,6805
461
+ maxframe/io/odpsio/schema.py,sha256=2P7olzWL1QwqzucFqL-fUe2ANrgdxy3fOtk7LYxewqM,17307
462
+ maxframe/io/odpsio/tableio.py,sha256=_pCW_--WaH9vNs_u1f9ijHQIJUIaSKjTDSb73WPIj_4,25553
463
+ maxframe/io/odpsio/volumeio.py,sha256=FErxOK2oYs09mLAguE5XS9KqKbip2Ruuhp6NMRFdZFM,3483
464
+ maxframe/io/odpsio/tests/__init__.py,sha256=4LpNXO11JAdLjSut3p036oEEXlDEB-6AURW9oci5W5Y,609
465
+ maxframe/io/odpsio/tests/test_arrow.py,sha256=sHubxnSLpRp1WdK0LMVG_5LzYgZ7XPwK4lLl8XEpRg0,4582
466
+ maxframe/io/odpsio/tests/test_schema.py,sha256=udqOedPalRexlUcdvIYUL0rLCKk1P5wqGKusQN6I0ds,18951
467
+ maxframe/io/odpsio/tests/test_tableio.py,sha256=MD_NE8bVn2og8BZSb9UOngZEJQiCgc3AeG2UN1SmVpw,7323
468
+ maxframe/io/odpsio/tests/test_volumeio.py,sha256=bxI5WOEE558jE5gGZCakzCv2BvzZq8UZDs3Q2bM_bz4,2414
469
+ maxframe/learn/__init__.py,sha256=6461tNiEVUPehmLk5RJo_f4Z9DduUG04IePiEkp4PJY,713
470
+ maxframe/learn/core.py,sha256=cwm5EdVNSvbL0EPCzR318HjHG8TYeXKG9wgJh0Ig1z8,10429
471
+ maxframe/learn/contrib/__init__.py,sha256=zMShuxOubDzh94IvRLSwULLHJQGKBWZGyXGqRq2frww,693
472
+ maxframe/learn/contrib/models.py,sha256=MamERXWLwUiTueKSrWNCVJ2aidU1F1-0OrIuESv9eZ0,3625
473
+ maxframe/learn/contrib/utils.py,sha256=NkvJsTktz4_7kLHo0viiUihB6Jzh0hxgxmVS_UjtHns,3491
474
+ maxframe/learn/contrib/graph/__init__.py,sha256=fJSzTCpcrJB0Y89M5IIiZ5uRX3l_yludjUyW9keIte4,667
475
+ maxframe/learn/contrib/graph/connected_components.py,sha256=djOm9bVFCw7_sly2Wx3LaFLZFYROVnQFGFpdu73TGGg,7389
476
+ maxframe/learn/contrib/graph/tests/__init__.py,sha256=4LpNXO11JAdLjSut3p036oEEXlDEB-6AURW9oci5W5Y,609
477
+ maxframe/learn/contrib/graph/tests/test_connected_components.py,sha256=6o157hNhSkn7zM0OD2PlhtJ9XFq39Mc7_XWSSEcPYpk,1662
478
+ maxframe/learn/contrib/lightgbm/__init__.py,sha256=QUTbJFTHldpLFyVGJf9n3KQpaG1IGzvAWmyJ8vWWXE8,1101
479
+ maxframe/learn/contrib/lightgbm/_predict.py,sha256=l8YhKnPoItuSAwYbOuXyn0iJduK8-XoNXMwfj3aNTJU,4513
480
+ maxframe/learn/contrib/lightgbm/_train.py,sha256=FHbNPIGkm3MInA-LkxdwwNE6NsOx6OfukJgVTtwpu08,5731
481
+ maxframe/learn/contrib/lightgbm/callback.py,sha256=rDsLB3lojLBPVQuASr7SWwJsdBLCbjhFr-HMWWELjCw,3906
482
+ maxframe/learn/contrib/lightgbm/classifier.py,sha256=3rEbojqtoYLg9IF0C2gEvTHOokc9523IrTt9YLEmSaw,7442
483
+ maxframe/learn/contrib/lightgbm/core.py,sha256=mtepkRXK0cK-3QNEvPHA0GLycFspHDPDEYZpFVk0VE8,12144
484
+ maxframe/learn/contrib/lightgbm/dataset.py,sha256=0rXbWW5awXvcqfZwHwbvvpjh1wmBSXtZrmChNswaV8g,5163
485
+ maxframe/learn/contrib/lightgbm/regressor.py,sha256=DDdgQN81BHna_GD-IfhOAQxr6VrPojlRYhPHy3BB2lk,966
486
+ maxframe/learn/contrib/lightgbm/tests/__init__.py,sha256=4LpNXO11JAdLjSut3p036oEEXlDEB-6AURW9oci5W5Y,609
487
+ maxframe/learn/contrib/lightgbm/tests/test_callback.py,sha256=chJzk4R97itBKF15LHz2TRPxjJhmTZvgiySiDecbnjQ,2111
488
+ maxframe/learn/contrib/llm/__init__.py,sha256=Ikv8Bw62gQNCaVVu8VfaTmZQEvCCqNO2SBeJXXaEYpk,666
489
+ maxframe/learn/contrib/llm/core.py,sha256=HdHJOTt5ONZIqOJd6o-269BGMjtRNCvMTgEbriBWCfc,2798
490
+ maxframe/learn/contrib/llm/multi_modal.py,sha256=a6fy8K0j9luOMR0JnU6yjlzuzqDNv8mE7_1lezTNmGc,5541
491
+ maxframe/learn/contrib/llm/text.py,sha256=ZGhx6dyMNWZTy-wlpfQMs8Rm0JdALSTyP9NMR1ASRj4,9646
492
+ maxframe/learn/contrib/llm/models/__init__.py,sha256=xdT-QE7V6VbAciHW7ubViTMTG0XCuIbCVY7SIIYzFlc,676
493
+ maxframe/learn/contrib/llm/models/dashscope.py,sha256=jFw3KmO-ioWg7VwlJwt8TrdTrSMDhc3GwR1TU7Rx9qo,3530
494
+ maxframe/learn/contrib/llm/models/managed.py,sha256=OcD3ug3alfq1ayg0qVuRE4zWJkTRped7GNj_WK0cu2o,1635
495
+ maxframe/learn/contrib/pytorch/__init__.py,sha256=OFSs9YoYbKxEmyP8OLxqMPHvaDlgesD02QtOvjpHrv4,703
496
+ maxframe/learn/contrib/pytorch/run_function.py,sha256=c_S2U3VTZ7vFmDlqVDBBiM-r5EFLb-d1JU64t8UZ0Fk,3354
497
+ maxframe/learn/contrib/pytorch/run_script.py,sha256=XBed8ypahK9KIOs-mQ-SsQZCtsUkV6RdXiyagSPySmE,3213
498
+ maxframe/learn/contrib/pytorch/tests/__init__.py,sha256=4LpNXO11JAdLjSut3p036oEEXlDEB-6AURW9oci5W5Y,609
499
+ maxframe/learn/contrib/pytorch/tests/test_pytorch.py,sha256=WgA-VI-XlpwaSdD-zpMVeSCPnjqXMzisyUCQ8FGlZdI,1444
500
+ maxframe/learn/contrib/xgboost/__init__.py,sha256=ChqbAiGx91jbI4H0MQloiXx2hWGmSte_IO34t2YRLT8,1084
501
+ maxframe/learn/contrib/xgboost/callback.py,sha256=MtPt83a_WoJLW6obhBrLAPzv-5uJGOFZ4_rS-klCqBQ,2776
502
+ maxframe/learn/contrib/xgboost/classifier.py,sha256=9ipyolx8DX4gYOXeqo_EFcqRyGxZmNBfBa_ZtroSz5Q,4128
503
+ maxframe/learn/contrib/xgboost/core.py,sha256=-QEtSRdx4vmYr6mG4zBh-bUYKb1YFGcwe5BHfIVr8zU,12578
504
+ maxframe/learn/contrib/xgboost/dmatrix.py,sha256=aa4_PUm-ogKQEZxx1vLxFvYGZcey9zgr7704eSBVUfE,5363
505
+ maxframe/learn/contrib/xgboost/predict.py,sha256=Duo9fIAjAEkD3-PliVBTesqJbFL9nws65YWe9Q_baDk,4317
506
+ maxframe/learn/contrib/xgboost/regressor.py,sha256=qIJmZJPhhegc3h2wjsCfNj9pGUPNGpzJlWFzowMouT8,2972
507
+ maxframe/learn/contrib/xgboost/train.py,sha256=rLxor77Z4_wqFlqBIOsJEGp2TAioqjm5CVHUsDQTFAM,5925
508
+ maxframe/learn/contrib/xgboost/tests/__init__.py,sha256=4LpNXO11JAdLjSut3p036oEEXlDEB-6AURW9oci5W5Y,609
509
+ maxframe/learn/contrib/xgboost/tests/test_callback.py,sha256=U-_aORr2-jrwpxpcmDkQ9lYHk5pfeMN85172pd7eTTk,1583
510
+ maxframe/learn/contrib/xgboost/tests/test_core.py,sha256=0ZI07rGLA_yO_bKO4OXv_0_nwB-l0sI3JCxjQko0Qaw,1449
511
+ maxframe/learn/datasets/__init__.py,sha256=YzqTqa-PoyyJdsPS2fWnR46xN6jboOxR4KYNaBHJb24,740
512
+ maxframe/learn/datasets/samples_generator.py,sha256=wLByrFvr0Kj3ESFJe_5r5dqrc4bzFL7balLRexmJids,22613
513
+ maxframe/learn/linear_model/__init__.py,sha256=Xr5oT7sWxl4A6AtQiBT-hz95kQgCatWtshmF1Qt6-a8,651
514
+ maxframe/learn/linear_model/_base.py,sha256=UOKbiaDL_DWMMOQ1ejKiIjzg_-eXS-SGBYlGm19uX4A,5493
515
+ maxframe/learn/linear_model/_lin_reg.py,sha256=FIrTID75NcQOL7v6mTKYs5Z-DupeVdOOW2mpj9S85_M,6422
516
+ maxframe/learn/metrics/__init__.py,sha256=26VLOBmUQ0191A5EGmgIYXza_31PVJhAgT4PXlrama4,878
517
+ maxframe/learn/metrics/_check_targets.py,sha256=ajUJqXOTzyv9Hlk09GJydPP7H7Cmw5GFHYtLWwipemU,3172
518
+ maxframe/learn/metrics/_classification.py,sha256=K1w1hBnzIkV4J5rB6y0XEDi5qR10Z4MayWtfwcDCPho,42796
519
+ maxframe/learn/metrics/_regression.py,sha256=DJJVtsirl-OMij35QDLdNUK9NMYC70FMrssjxgSDXDw,9077
520
+ maxframe/learn/model_selection/__init__.py,sha256=HsniD8ZJ065to5myNfj61niEN5w-377tIqom6URkBIM,656
521
+ maxframe/learn/model_selection/_split.py,sha256=E9ZojZ2E7b6xw2bVFEjw9LmHtrphvyXGwcc8doOz_ns,16587
522
+ maxframe/learn/model_selection/tests/__init__.py,sha256=4LpNXO11JAdLjSut3p036oEEXlDEB-6AURW9oci5W5Y,609
523
+ maxframe/learn/model_selection/tests/test_split.py,sha256=GFWgkkIidxOx4Qag6Gyx6x1jvZvpkTyAZB9nzXV0AX4,5139
524
+ maxframe/learn/preprocessing/__init__.py,sha256=KlXv6rnanHq2QtLHtPrqvQKgh0v-gs5xU0v6PQp3O5c,758
525
+ maxframe/learn/preprocessing/_data/__init__.py,sha256=EWSiyiLZ8gYr2Z6Jkj5fdrgXZPCX5KX4gd9iQNN7Yds,753
526
+ maxframe/learn/preprocessing/_data/min_max_scaler.py,sha256=vI-10sFY8BVYull83LltMbT13OA0DcJNW1xSmuxH0Ww,13026
527
+ maxframe/learn/preprocessing/_data/normalize.py,sha256=fHEYISdKjfVlz4BSS2po-88VJQfFwtqneabejyfX6uw,4563
528
+ maxframe/learn/preprocessing/_data/standard_scaler.py,sha256=zjIedPSMnECkLqDpltkFovJkvf1v9B_SFkDo3BlQqaQ,18741
529
+ maxframe/learn/preprocessing/_data/utils.py,sha256=3lYrIyIXBUgWDfARHrqDl53FduolRfhGq9PrGfI9n_E,2950
530
+ maxframe/learn/preprocessing/_label/__init__.py,sha256=yOWCM1whXO7p_191LX0A_1S-4NqPEzJkPszBnlUtX9s,732
531
+ maxframe/learn/preprocessing/_label/_label_binarizer.py,sha256=C6S8Q8psg829nJkVoyvXLQa8PSR9ldTF73Z-F3aRsAQ,19988
532
+ maxframe/learn/preprocessing/_label/_label_encoder.py,sha256=nhJwHmyajfwyARUfwvII08yY-ufz_3hrBEVk0kLRykE,5672
533
+ maxframe/learn/utils/__init__.py,sha256=FBisI0K2p0U3LzBaLNzlZaRq0DhEjXf-SEOMF3Y7IYg,834
534
+ maxframe/learn/utils/_encode.py,sha256=iqvRXVapbp3Ut_NWaUtyHw6W8s-0hh6ItJpjpFOlTGI,10018
535
+ maxframe/learn/utils/checks.py,sha256=-1J_1R84FaiIOB92mR1b_nMnpuw_xvM8vC9z8c_mo5g,5274
536
+ maxframe/learn/utils/core.py,sha256=lG6sx7ogNJEo9lUvPVgGNOMa4MNuqorjmIMohQmlKz8,1696
537
+ maxframe/learn/utils/extmath.py,sha256=biUZAqY08yCbBnYe9P0DZravOiQAB4LyZOXIsfh4vD0,6665
538
+ maxframe/learn/utils/multiclass.py,sha256=lq9cap8f5hVlRzdFNyQuAfRpiaqEO7is1pWaqpda3zU,9334
539
+ maxframe/learn/utils/shuffle.py,sha256=x64KVCvrpQrTq9sqDm8-xuh6BbmGw2SwIuUpkCw7ybM,4435
540
+ maxframe/learn/utils/sparsefuncs.py,sha256=6_qzQMarQqRk8N5ay7sZtAViawLv7P76SaLgTW0TYiU,2831
541
+ maxframe/learn/utils/validation.py,sha256=AGllGoL7yZerS7VC-Plv7mIIqdmQZbA5dBcdmBuX3G4,27850
542
+ maxframe/lib/__init__.py,sha256=4LpNXO11JAdLjSut3p036oEEXlDEB-6AURW9oci5W5Y,609
543
+ maxframe/lib/compat.py,sha256=vqM6avpMK_UpbxYwslJWq_-7jdnvJ-SplxeOauG9Nzk,4881
544
+ maxframe/lib/compression.py,sha256=8F0QEOlrgrFz8Yzeyap4ud3PYe1I5LUWUHWvQg1YKq0,1497
545
+ maxframe/lib/functools_compat.py,sha256=1a-R_fcKQo7gUZnyk6L-qt_Ozhm3Gb0y86Fd3ROeTcw,2697
546
+ maxframe/lib/mmh3.cp38-win32.pyd,sha256=sCqZQo8zZrEC3vIUsjnKdtG9gshFhsCc6-rRk0GdZpA,15360
547
+ maxframe/lib/mmh3.pyi,sha256=ad6KZrDA7dznE5Qv0lnGB32rw1Zl2DBwNIH0BI_bFQU,1537
548
+ maxframe/lib/version.py,sha256=NqxzCX2pLHIMTj-7HTA6xU3iyd_DVeqyyW1n-Rk8MCQ,18941
549
+ maxframe/lib/wrapped_pickle.py,sha256=Yazeydh6vOAd4ibsv_tn_8LgAC7kVkoResQYFW8RXNw,3976
550
+ maxframe/lib/aio/__init__.py,sha256=j45XJga8B4YUKCOwFkqn7Wq8In3MNtLHpPEjG0Hs8so,963
551
+ maxframe/lib/aio/_runners.py,sha256=wo4EfFJJ4B3RkilV_iClAx0ySRaiG8IcnTMfaORqiL4,5367
552
+ maxframe/lib/aio/_threads.py,sha256=uqIMyQWxlXgYzdtInMoOl3i-blXYT-mcxikNmssfpcc,1363
553
+ maxframe/lib/aio/base.py,sha256=3XkYWXQmMIeTPQFauVDt-jfk8Y-I592OdwLirY1kxug,2240
554
+ maxframe/lib/aio/file.py,sha256=jqKcfIbV0k_AsggAqURQUhdXw81r2RxXunlwg_moIeI,2097
555
+ maxframe/lib/aio/isolation.py,sha256=j7bQod9PPyPkjaXPNsnmObjmMRi8o-1r3AOYLqexJTc,2861
556
+ maxframe/lib/aio/lru.py,sha256=ACbRRGnYwOGoa_zBJymjPiqwy2IaXFmPlcJyZ15bHbk,7133
557
+ maxframe/lib/aio/parallelism.py,sha256=ncai0TMJQInRk7_zmnawXy17pL3PmCZlQKPgGX4t0p0,1272
558
+ maxframe/lib/aio/tests/__init__.py,sha256=4LpNXO11JAdLjSut3p036oEEXlDEB-6AURW9oci5W5Y,609
559
+ maxframe/lib/aio/tests/test_aio_file.py,sha256=WnU2jQMZ1jVPT8l9m3h4lytLUDhAHTIa9_mTMHpo224,1713
560
+ maxframe/lib/cython/__init__.py,sha256=4LpNXO11JAdLjSut3p036oEEXlDEB-6AURW9oci5W5Y,609
561
+ maxframe/lib/cython/libcpp.pxd,sha256=lNA9YvEGLS0xMarsmvllh2qMdPxu-_Tl2ymT2EQw14c,1130
562
+ maxframe/lib/dtypes_extension/__init__.py,sha256=sO6wef7yir_E-En40NTcd-dHl4dP9QWmWv0Ya4NYXHI,686
563
+ maxframe/lib/dtypes_extension/dtypes.py,sha256=q5V6tvS7cC-N-e2gtfRiuh1TKXdcm0eCbjJbS6FQrJE,2219
564
+ maxframe/lib/dtypes_extension/tests/__init__.py,sha256=4LpNXO11JAdLjSut3p036oEEXlDEB-6AURW9oci5W5Y,609
565
+ maxframe/lib/dtypes_extension/tests/test_dtypes.py,sha256=dpqCS6qfyXb8w5paTjx52pQgaWZ5xbb4FcDShV5gbU4,1426
566
+ maxframe/lib/filesystem/__init__.py,sha256=1LjZ5ZPdXZHKaJ5TZY34dnoLgYMy1qiB3DcE5k9YjaU,855
567
+ maxframe/lib/filesystem/_glob.py,sha256=H1wRnnhFAK6PqshJf6ALo0jxVZ9em1zhi3d9Q5rXpLk,6708
568
+ maxframe/lib/filesystem/arrow.py,sha256=QKH1gtjx-0jUyBNMKBF0nLJZCKuOwDIGko8biBBgQkQ,8647
569
+ maxframe/lib/filesystem/base.py,sha256=zT3zMZr3tg08jpn_e8NZysZIp1aKdnm30RY3rhNAYow,6897
570
+ maxframe/lib/filesystem/core.py,sha256=Ein0lutQrxeXbzl0ESlN6lWJk1D-_VPyjzxs2heks_c,3027
571
+ maxframe/lib/filesystem/fsmap.py,sha256=uZoFQuI2XbNaUOBlDfPRgB5SL9ZtlHhDQxJ3mGvQztg,5426
572
+ maxframe/lib/filesystem/hdfs.py,sha256=RGEnP-REb1TmkHYqy-qqAd_E22lWoNezgFY_uVrNsu8,1096
573
+ maxframe/lib/filesystem/local.py,sha256=N8CF6yJhW1cj-qlxPxFM5vVEgVoie5oP9evS2fFSvjo,3700
574
+ maxframe/lib/filesystem/oss.py,sha256=11w2BhSvgIGAdFIZ5cJigx4SZlnwKpD0gn8c3NxnG_I,5174
575
+ maxframe/lib/filesystem/_oss_lib/__init__.py,sha256=4LpNXO11JAdLjSut3p036oEEXlDEB-6AURW9oci5W5Y,609
576
+ maxframe/lib/filesystem/_oss_lib/common.py,sha256=-Jv3GisWDK5-ZA_ei7uS7a5hS6l0llECu079NsopWnA,6813
577
+ maxframe/lib/filesystem/_oss_lib/glob.py,sha256=3raGtAmJIsjrKTTKg80HswVTIPKiSEl4HCbwDjWy3D8,4983
578
+ maxframe/lib/filesystem/_oss_lib/handle.py,sha256=1Em8B-SPYNSB9p4WYn2yVeBXDgb_lJNuW0WBgVxC1Vg,4998
579
+ maxframe/lib/filesystem/tests/__init__.py,sha256=4LpNXO11JAdLjSut3p036oEEXlDEB-6AURW9oci5W5Y,609
580
+ maxframe/lib/filesystem/tests/test_filesystem.py,sha256=lYlNEWJ-PN-Srjx0PuAQ4bcHNXQErY_gNImIbP4djT4,7597
581
+ maxframe/lib/filesystem/tests/test_oss.py,sha256=SYdN5sgE32REQmTGAu-DoHEVhlY56TxLsQox37JbSco,6076
582
+ maxframe/lib/mmh3_src/MurmurHash3.cpp,sha256=3aoHr2GNYsXizcf4DosqiMmZvy8l9Jxt3pAkYHr90Cg,8435
583
+ maxframe/lib/mmh3_src/MurmurHash3.h,sha256=JgEfh0M_o4gHt2mtzv9sQIQyEqs8ZutkDaPO2L3UwGU,1306
584
+ maxframe/lib/mmh3_src/mmh3module.cpp,sha256=bEBXHjhQuXceV6MFyNvs-YG4WUKt5Us_kmgrOKQw7Qk,11991
585
+ maxframe/lib/sparse/__init__.py,sha256=0pxuL34RHZR2-utDMULa2gB11iYueMhGqtPE8F8OR0A,18840
586
+ maxframe/lib/sparse/array.py,sha256=em0B_o6HPyNet8Z1C4Zd1kweJh1EST_k89jAzbuk5lQ,54937
587
+ maxframe/lib/sparse/core.py,sha256=AxCx08nvdqHIZF0zYqvO5W4gcfV-M6KLArqNC8aYUN0,2200
588
+ maxframe/lib/sparse/linalg.py,sha256=Vzp4VRUlchnOkLn1S2jgrBY6dBzuRWhWYF77cSC7_eU,990
589
+ maxframe/lib/sparse/matrix.py,sha256=KDc1u4YxNjRaivn8GuNjak6bmyb4ZG9TYRmbRiF9Dwo,7438
590
+ maxframe/lib/sparse/vector.py,sha256=FWGztVGJI6twg4VlU8zu-xAn5lYK9vnd-y16Vw2ef8c,4911
591
+ maxframe/lib/sparse/tests/__init__.py,sha256=4LpNXO11JAdLjSut3p036oEEXlDEB-6AURW9oci5W5Y,609
592
+ maxframe/lib/sparse/tests/test_sparse.py,sha256=c6ZPaoRoLvdavniIzQIBHNkXVHxyx2W4pi8C4RP3M8s,15933
593
+ maxframe/lib/tblib/LICENSE,sha256=UV8te2W7BnvQ7rMYp9I2IjrJ7C79BfoIV82EXAK2ACU,1350
594
+ maxframe/lib/tblib/__init__.py,sha256=6QQyWUaDhJwfGikR0g8ij-seILLevfOjBBedxmfwaD4,10205
595
+ maxframe/lib/tblib/cpython.py,sha256=KY4eqJ5Oohbq2xHfWitd7p80S8SkMhiB0OWFRpulJQA,2501
596
+ maxframe/lib/tblib/decorators.py,sha256=377HT3gnD9B2dcxw75pHM17--ABkcgi_GQGmdA_MiJI,1107
597
+ maxframe/lib/tblib/pickling_support.py,sha256=D9A0eX7gJeyqhXWxJJZ1GRwwcc5lj86wBRh0tmo6GHk,3025
598
+ maxframe/lib/tests/__init__.py,sha256=4LpNXO11JAdLjSut3p036oEEXlDEB-6AURW9oci5W5Y,609
599
+ maxframe/lib/tests/test_wrapped_pickle.py,sha256=euQ4u_YU-TYvSExtqeQ9fnCiUQiGaFxY08ld5yL0PpY,1575
600
+ maxframe/remote/__init__.py,sha256=m9h2lTNEayNKWsmJeAjitnG00atQROYRitjE9R1h4B8,747
601
+ maxframe/remote/core.py,sha256=RRG8Eh5wYi5epjxG2zsK6vw2XSqWIQbEG0QqNwGZFPc,6759
602
+ maxframe/remote/run_script.py,sha256=lG1tfysaPu8CX5CHM-jwjs7FOJPj7FQfHrp7hOO64sQ,3775
603
+ maxframe/serialization/__init__.py,sha256=nluqAwXyGrWuYtZ0QksoqZ98A3sRRM_XiYHf2cUb9pU,1028
604
+ maxframe/serialization/arrow.py,sha256=DUq7e9V8kJrpj_Z67F767jo_wxgkkXygSPByzMqfB4M,3513
605
+ maxframe/serialization/core.cp38-win32.pyd,sha256=pn7yRvaw1352lF5cwBKd1Y8UC2yTsLKmkgHrkIjfVgc,396800
606
+ maxframe/serialization/core.pxd,sha256=x8_6jYkU0BnV-0KUEjnqvXXn1c9HPvyt660mi7u9fE0,1580
607
+ maxframe/serialization/core.pyi,sha256=jOgVcThRuPekxQVyxWWnF-8Udgzo6kDpZThYVQsYeog,2327
608
+ maxframe/serialization/core.pyx,sha256=PdmooZnLD-srKzc0sPiqIT51U4wgMzFtN2G121YDOUM,39812
609
+ maxframe/serialization/exception.py,sha256=JmkTT7maDzIuDYWhDQYqfLXp3P00i2ATMvACA0sPsck,3079
610
+ maxframe/serialization/maxframe_objects.py,sha256=QXJyxTpLhU3oB7gUwV5JWAvW4tm3jJOskvhJA0_4fDo,1404
611
+ maxframe/serialization/numpy.py,sha256=blU5A21RVz7x7RA_65fSB02REFYwqluBJm50akHng1s,3639
612
+ maxframe/serialization/pandas.py,sha256=WzLrAgXxHAoCvm047RvBII4k2sqoNpM_HERb3WWxCSk,8874
613
+ maxframe/serialization/scipy.py,sha256=eeFCcNp6Vgv8ftRIotOTazP-I3ln1xHnfWSMgHOJtMQ,2498
614
+ maxframe/serialization/serializables/__init__.py,sha256=9SEXt3nT_Ii8EuMKCPKOGmV4p9a7NrKRuZkpXq3195g,1406
615
+ maxframe/serialization/serializables/core.py,sha256=VGjm2djSWf8laldHrsiuGy9plnONFD3YR6pPes5zzms,17468
616
+ maxframe/serialization/serializables/field.py,sha256=a7NTwVoua6rCq5Q7fJfcxHtHjj8KW2uVuKsOZbZITZ0,16637
617
+ maxframe/serialization/serializables/field_type.py,sha256=AMq_nn_RCOIU9ClvoF4UWEFmvP-044MD6NJ0d8MQ3YM,15525
618
+ maxframe/serialization/serializables/tests/__init__.py,sha256=4LpNXO11JAdLjSut3p036oEEXlDEB-6AURW9oci5W5Y,609
619
+ maxframe/serialization/serializables/tests/test_field_type.py,sha256=_vW3SNw8zcYinNx_BGPfja3b7bJbmg3wolsXdzg0qFQ,4452
620
+ maxframe/serialization/serializables/tests/test_serializable.py,sha256=rdxPNvxqaq8vNkrtMHHvlNJJvSXJ2GnHseDWupAGj68,11007
621
+ maxframe/serialization/tests/__init__.py,sha256=4LpNXO11JAdLjSut3p036oEEXlDEB-6AURW9oci5W5Y,609
622
+ maxframe/serialization/tests/test_serial.py,sha256=naz-n4WYzueTZdhLtYKWxLVN_wGTuNw88sJswTyfxy4,14491
623
+ maxframe/tensor/__init__.py,sha256=xndvw0V86lp0jHx5ploOe0jHfmBfAHrieF6PTJH1HTQ,5679
624
+ maxframe/tensor/array_utils.py,sha256=306wjTM_xpUmVOAsrSOqTPGom-aU3FiVaU4T-bFFQjg,4537
625
+ maxframe/tensor/core.py,sha256=OALjbEP5zrgXkXkQReDC0qkhejm8_WdvlBmyxGzd20s,18588
626
+ maxframe/tensor/operators.py,sha256=rYnU_DqTdgtdj-jYDipz_ABbYseZJSDm7e0z2vlFXyo,2340
627
+ maxframe/tensor/utils.py,sha256=UjPLNVjIVBkg0vVJ_tthbi_gCdZwe1Unqb_zzDwe6es,23629
628
+ maxframe/tensor/arithmetic/__init__.py,sha256=SUtXw1x228EEOFsLmxxe--0cM_ITRiHrc_9KrZ9aekk,9707
629
+ maxframe/tensor/arithmetic/abs.py,sha256=o9cEGybgFZbKo9Y4J5afZLodPbFuBIUpnnZiuCo737M,2200
630
+ maxframe/tensor/arithmetic/absolute.py,sha256=FHPhvWBQ-E-3c_ydz3h8Yb2t6Hzeq5hy7IxtNEBJ6N4,2230
631
+ maxframe/tensor/arithmetic/add.py,sha256=CUvQt_oe2DU8ZnIOTmmEO-K7BqC0cWrZq4BmwKlgBk8,3677
632
+ maxframe/tensor/arithmetic/angle.py,sha256=jhVPIorak6QAvERvtIHHTZ4cqdYoqzd445othn0yfTE,2161
633
+ maxframe/tensor/arithmetic/arccos.py,sha256=Mx2NUJ5oX4WbmO4nLgXdGUhV1O7y4wUsHqLyG2G3iCc,3573
634
+ maxframe/tensor/arithmetic/arccosh.py,sha256=n8dRDb6SUDBkLzZl9N1DuTZPkYI0ZFb4pF2pyE-vqIo,3074
635
+ maxframe/tensor/arithmetic/arcsin.py,sha256=4djU74RXXHMN_GoE-7zJgUFLD3lgzjhn_fWCXaT42RY,3290
636
+ maxframe/tensor/arithmetic/arcsinh.py,sha256=01d-xNEq-UHEhkFhEbMG-1pWPycJEHuP7exhb17mk88,3069
637
+ maxframe/tensor/arithmetic/arctan.py,sha256=sr13ayhcGJWIq7-eVx5yv13WmxHyROm_QN-5gap-M-M,3620
638
+ maxframe/tensor/arithmetic/arctan2.py,sha256=mH6diR-DssoA2s03vb_trKtJCwL5IvFYRMCS6Nb7lJM,4523
639
+ maxframe/tensor/arithmetic/arctanh.py,sha256=iCECyRnCZEWUEMz-d3e6oxut-WCIS4PH_dMqvTxJvjQ,3047
640
+ maxframe/tensor/arithmetic/around.py,sha256=RKTbWwbUH3tIsR3HmYRdiKmDzimOH0qMeVkQ9S1EkTc,3892
641
+ maxframe/tensor/arithmetic/bitand.py,sha256=ZBNSsx41UOCZOhABn2KD2oTa200DXxQg6TNkr4x3QgY,2964
642
+ maxframe/tensor/arithmetic/bitor.py,sha256=h9UN6EcTeX7sW57jT0m1UhhRX9df1d4i5HTOcbeBdHU,3367
643
+ maxframe/tensor/arithmetic/bitxor.py,sha256=uldnGBLNIrwFdpQzc6thKwEmjSwWCgWGursLypM-FG8,2956
644
+ maxframe/tensor/arithmetic/cbrt.py,sha256=bqezgEBMZPDxJXL2UA7mKM5X4DTj-fJIsABfz1awyYQ,2133
645
+ maxframe/tensor/arithmetic/ceil.py,sha256=cCy79KE1h9RlE60oGWm7DKmA4UQ8bBh6UfyPGjWvW3s,2275
646
+ maxframe/tensor/arithmetic/clip.py,sha256=cwjBwyPRTOqzEmpeDXA61bymTv_AQd2sbaA090rYcPs,5710
647
+ maxframe/tensor/arithmetic/conj.py,sha256=LilBDr2EkQFAkFvyXWgpOVD6RxeHoMHrbN5H7yupYh8,2253
648
+ maxframe/tensor/arithmetic/copysign.py,sha256=I9R0JziZR9ABWuE0bo1eeunX2XxRskjskW1vbV2JY7c,2535
649
+ maxframe/tensor/arithmetic/core.py,sha256=dAEBmAq0gT5m2UaOtzl1jIi3Op7MVgW4y8ZSKALLu7U,18124
650
+ maxframe/tensor/arithmetic/cos.py,sha256=VHvzjOfO6cC9HeAvwg1e2RWKKo5s5zDFEynzW3xvpP4,2774
651
+ maxframe/tensor/arithmetic/cosh.py,sha256=AIpEClqB6IIOGjSxcA6psNzo_NESzIGvI6svixI1YmI,2242
652
+ maxframe/tensor/arithmetic/deg2rad.py,sha256=2esXb3MN4SAT6fCkW-ZF9rTqwFaiDOAcj5lFo1COkzQ,2195
653
+ maxframe/tensor/arithmetic/degrees.py,sha256=TSjZZfQIHk5n7dTd_4mg5m17z6RrXjLLJnc6T131HPo,2404
654
+ maxframe/tensor/arithmetic/divide.py,sha256=78cuFhfY10VRHCfIeyyr_vsTVPJOPWfsgUJyjg1yfhU,3776
655
+ maxframe/tensor/arithmetic/equal.py,sha256=hSXwOG_cEf0JwQ-cWnDaKfPBJRZKizkXj7XFU4u-3Wo,2421
656
+ maxframe/tensor/arithmetic/exp.py,sha256=Ixhv99P7IYEF83mQK7_d7cQrZ9sWu_YLK7Cu_xMOAJ8,3848
657
+ maxframe/tensor/arithmetic/exp2.py,sha256=-NgRFBAu5xj7Oq8ULZkNLgrmVuJiIaDG85lvY8lavSc,2016
658
+ maxframe/tensor/arithmetic/expm1.py,sha256=RFlBxkPoIwDWQ8P-j6nidAfAjnnVSimr3GH7iVLfFNg,2452
659
+ maxframe/tensor/arithmetic/fabs.py,sha256=qmfOT3xJBHrNZuepBaS9URk4tQT7FyoSd7TYLe1bUA0,2456
660
+ maxframe/tensor/arithmetic/fix.py,sha256=AN_XlIPeMgIejhhFc0cbRiy5KZt6OpR6BBDWv40mT9Q,1781
661
+ maxframe/tensor/arithmetic/float_power.py,sha256=c9G4xkUyxuVdu1Wp8YuTJTKkKNKhvqX4HD_s5QdKeDU,3419
662
+ maxframe/tensor/arithmetic/floor.py,sha256=gtdvW7b65Xfj0KO0czZsKPz1jbMIpkn5RlVuLduH5TE,2471
663
+ maxframe/tensor/arithmetic/floordiv.py,sha256=I1iNcJJ_1Bfl5qTIx-FYx6TpebhpiHHzKKb_gdfomM4,3033
664
+ maxframe/tensor/arithmetic/fmax.py,sha256=3uxG4DGkIUJtV7wDkgSax7BBScLm_NOnsvtC-9-epqk,3631
665
+ maxframe/tensor/arithmetic/fmin.py,sha256=WJ6Q6Fn_wXo_gUSmuRiEvVYwntNGfuSkYiYHeiN7bkM,3625
666
+ maxframe/tensor/arithmetic/fmod.py,sha256=XolA4B5FodrOVRqVPPKttLuVufu2SIRF1UZfko7xdNo,3263
667
+ maxframe/tensor/arithmetic/frexp.py,sha256=tmOU8SATr4OGgA5wm3SKNvAlBHV22Go0CH40dnMr33k,3339
668
+ maxframe/tensor/arithmetic/greater.py,sha256=KgFZc5igoLPMN2p6hEJCVUjxIapbbkIp4ZtKvhBMpvM,2484
669
+ maxframe/tensor/arithmetic/greater_equal.py,sha256=bVn6xCmOkN6RtCI39wuqICQ56P1dZ1JAbCXnOUeaa0g,2325
670
+ maxframe/tensor/arithmetic/hypot.py,sha256=869vvDYB29pl63s--nbO_U360aq-X_eZR1dIvyJvPLc,2550
671
+ maxframe/tensor/arithmetic/i0.py,sha256=2vxx5Avu2xYmK8yi3Fr9SR0M49jxd0_-S67l-LvXUYo,2959
672
+ maxframe/tensor/arithmetic/imag.py,sha256=cuKoZZ4Ws2kaSyLBRx0SsHqXLUxH5QkRq4QAOCeTD7U,1787
673
+ maxframe/tensor/arithmetic/invert.py,sha256=6xMsAXFHeHB2V296SYz7uratEwNyGkBCGo4qRg6Q77Q,3531
674
+ maxframe/tensor/arithmetic/isclose.py,sha256=wGDJBex7thAvlKzrE86uQsOrANKXlYbQrZ_eDiJnNjk,3763
675
+ maxframe/tensor/arithmetic/iscomplex.py,sha256=P05i_nj-JB4r44ZTsTHLY68Y1M0NzasrLv32hT5guZc,1720
676
+ maxframe/tensor/arithmetic/isfinite.py,sha256=98J1uKbMx60H16hHhTJh7cMHvc09xG3TWtn1JYB2jic,3663
677
+ maxframe/tensor/arithmetic/isinf.py,sha256=pJ_7X2S1XWeaFlkGH-8NMAX1MevbiysPQHiwBnfVWJo,3517
678
+ maxframe/tensor/arithmetic/isnan.py,sha256=pVQZP0Fm3WAE3P4zNKOu6hh9YJG8w20fWNUCwYG71GM,2723
679
+ maxframe/tensor/arithmetic/isreal.py,sha256=nfxhx7sRL68lsm5hIERTjoVSaOyFEUM3EplRSVpOUs0,1665
680
+ maxframe/tensor/arithmetic/ldexp.py,sha256=bfF4u7puNb-il-m2TQxJJ45ByC8x7YG9wkRmSm96Ld4,3216
681
+ maxframe/tensor/arithmetic/less.py,sha256=S4PrrLvof1mq0TuKeODW-wEEx28dcuU3S1uST34BDKA,2286
682
+ maxframe/tensor/arithmetic/less_equal.py,sha256=bl0zX_U9xTUEuRWuzCO_hTS96Z3QuLPhuoWs1BIiejg,2314
683
+ maxframe/tensor/arithmetic/log.py,sha256=hEHpRfZ7w1aLYvlLzbdtHLizji33KiwF8DUnpAVFJkE,3201
684
+ maxframe/tensor/arithmetic/log10.py,sha256=0JzfN8_8EP0ISECf23ZS_ZcJSDyoWVB-U1UrnwZJMTI,3068
685
+ maxframe/tensor/arithmetic/log1p.py,sha256=YH4WKdfiZiE3BRVAQ1SQAcunidxOK07hdZQgyWxQXAw,3293
686
+ maxframe/tensor/arithmetic/log2.py,sha256=K452tIuzyki62eSMuQmTP7lNixKRBgF4qprHLW7Msws,2910
687
+ maxframe/tensor/arithmetic/logaddexp.py,sha256=lBKQ9WcG2DAcoyOaJ1v0JcO2gTHSg5WOQ3-RKGZTxKY,2761
688
+ maxframe/tensor/arithmetic/logaddexp2.py,sha256=ej_FxuFJBmChQp8RyidhgDi51tBqnqWfjP2lESKLuME,2775
689
+ maxframe/tensor/arithmetic/logical_and.py,sha256=3puAqf48dkAK2rUyEjwaUY4CeL7_xQkZuaK2MlU1CwE,2603
690
+ maxframe/tensor/arithmetic/logical_not.py,sha256=HvXpUYWk7sY7_5RgEvOdE-wPZ6gyCq-fqjGOqlJqbK4,2376
691
+ maxframe/tensor/arithmetic/logical_or.py,sha256=68oC9o3KUxcyE3F5P46hRFVor-lGYSdX8U3_af8Hi2g,2623
692
+ maxframe/tensor/arithmetic/logical_xor.py,sha256=o7jehIh5Mv8TAC1dJvbt2e8EY4iWFru8Ow8C2UW1uT4,2930
693
+ maxframe/tensor/arithmetic/lshift.py,sha256=EU05hHjIZ5WsPqWWq9u69Crbu-iJQR1GTfi2NWx11bA,2668
694
+ maxframe/tensor/arithmetic/maximum.py,sha256=yQUU9hwyG15SYG678zKg8xKJdYh1z00PaDgPXxQJKx8,3754
695
+ maxframe/tensor/arithmetic/minimum.py,sha256=Lznb5X5hpw2WCN5hcZMhIz93CAB_OijPsaEFJCfS9ug,3755
696
+ maxframe/tensor/arithmetic/mod.py,sha256=kC6r3hE0bgpQslpueFovhZEYg-81EEYeLRMvzxCPEpc,3301
697
+ maxframe/tensor/arithmetic/modf.py,sha256=suLQEHx3rLAqxuKPX06dgisO49rrcEtSF8DL0BcWKp0,2767
698
+ maxframe/tensor/arithmetic/multiply.py,sha256=XcRwDZZ17tElYa8kRK9Dr9rvuBW4DgtD5fp54C-nanw,3686
699
+ maxframe/tensor/arithmetic/nan_to_num.py,sha256=7V6pMpaJGdops9JNynYOFS2X1oirNgUoUO3tkxqcmOE,3300
700
+ maxframe/tensor/arithmetic/negative.py,sha256=g7aLqTVTLGWcS2-Iolp0AJS-4O6A1VjHWVm86mC3re4,2105
701
+ maxframe/tensor/arithmetic/nextafter.py,sha256=hWYO93vGly1e6Zn0dnbaM27b8j-Fcbt1-s-slaNjq-8,2350
702
+ maxframe/tensor/arithmetic/not_equal.py,sha256=eEOL-vIc_A7Q7ezAh4hI8izVfs2nqvhHvAWqrH91mFU,2298
703
+ maxframe/tensor/arithmetic/positive.py,sha256=qajygE_hP7JYWIEqqlBF0buy6nmsy6rzg2RNjBOr1kA,1311
704
+ maxframe/tensor/arithmetic/power.py,sha256=VKi_EQphivYk1jOcaN99rps9GT1om6oD1qVffD2hCp4,3261
705
+ maxframe/tensor/arithmetic/rad2deg.py,sha256=y_AvnWxK2JVpKveJMRp6RdsuYK9DuBKYz_HOUf2Z4RU,2125
706
+ maxframe/tensor/arithmetic/radians.py,sha256=I3nW6JlD2HHIAFzi1WXmj6MBMRKz-rHvMtp5TAlv-iw,2409
707
+ maxframe/tensor/arithmetic/real.py,sha256=k-k3KenvK_SR71V9d45NAOnJSOW42QlFE49pimN2ax4,1853
708
+ maxframe/tensor/arithmetic/reciprocal.py,sha256=lgGf4e7ehbQsR-0CP4FnKymdN887AcT0JeF_QQIy97U,2481
709
+ maxframe/tensor/arithmetic/rint.py,sha256=OPBIr8DShcniOo7y0rLrAFVlZbqoBf-VgkZe15m3jZA,2142
710
+ maxframe/tensor/arithmetic/rshift.py,sha256=pSYHIk9t2yAQjmem4niTho0s3a6SDtskQw1hBkrJAHk,2588
711
+ maxframe/tensor/arithmetic/setimag.py,sha256=2sHoDr1kV9_re9KqQjm6ZZCQgkeNpAQ2TYvxCleu5GI,925
712
+ maxframe/tensor/arithmetic/setreal.py,sha256=j9aqQ01YTtr46TwgTbZAG6pMFpvdCAo97uq-AOQc3cE,925
713
+ maxframe/tensor/arithmetic/sign.py,sha256=z-igjgsycxO7PhYdB8vTtnqAdqSDYdiskpj1O1hV-vM,2584
714
+ maxframe/tensor/arithmetic/signbit.py,sha256=rES0keGMx2HpNswV5gkdfHklqeW8JhdVplTxn5UnYAY,2129
715
+ maxframe/tensor/arithmetic/sin.py,sha256=k1kEKr7gNRp3nJfudgTyViPO0pBo35JCRFEws7NFqg8,3370
716
+ maxframe/tensor/arithmetic/sinc.py,sha256=V6FcHOUG5_blD3jkVlvYKb65hTkQBz6gKAT24FkTUvA,3548
717
+ maxframe/tensor/arithmetic/sinh.py,sha256=d7Ue5WYmCuCRIPHqSt8GouBm6s5ZjDVRXYdGRmDXGJw,2962
718
+ maxframe/tensor/arithmetic/spacing.py,sha256=8QzzS1OJXv3veqg_g35QfMwnrSmx0rriDL2gaTWSaAU,2337
719
+ maxframe/tensor/arithmetic/sqrt.py,sha256=9rInQabOKk0Nk3s732y2wcUudmLkB9jjLaSlvf2keQM,2838
720
+ maxframe/tensor/arithmetic/square.py,sha256=tw1PHSMt_LraGT4tIFQ95J-vMcWBEqNcxJlXABs1Fgw,2109
721
+ maxframe/tensor/arithmetic/subtract.py,sha256=1_33fqKvu_ox2BQJTdMRP9Wmn0HzPNrvmJyljURAxEA,2676
722
+ maxframe/tensor/arithmetic/tan.py,sha256=4Gwm2MryW3_3xWLb0sta3iKBLayk4U62FKtrMU3azWA,2883
723
+ maxframe/tensor/arithmetic/tanh.py,sha256=B_fSRBtqGSC2bxwpe0-gSKcts2ASUdBY5b7CCghF7g8,3089
724
+ maxframe/tensor/arithmetic/truediv.py,sha256=3ei369dOJaFulpXhBPUczmdOQCCqnbeczgQErA1kP1I,3403
725
+ maxframe/tensor/arithmetic/trunc.py,sha256=zCEIrvwbnm7lbnNKgg60kGrRy-CKchPakT4LmplC3_A,2327
726
+ maxframe/tensor/arithmetic/utils.py,sha256=KR9kDOJuD-dmKbiXb6XNNvFVsLOz369HJWK14AeQfh8,3278
727
+ maxframe/tensor/arithmetic/tests/__init__.py,sha256=4LpNXO11JAdLjSut3p036oEEXlDEB-6AURW9oci5W5Y,609
728
+ maxframe/tensor/arithmetic/tests/test_arithmetic.py,sha256=Gps279mhaP0ogT0a3hvzQdKfd3i_ULkP-eUBa8rBAP8,13011
729
+ maxframe/tensor/datasource/__init__.py,sha256=RMFXElSi2UvOK7HM3qKOegNEyaNW5DQXISJuR9Au38U,1523
730
+ maxframe/tensor/datasource/arange.py,sha256=BlocdN5GsTozwnBQWsbmJi63I0BsVUswQcSaLk7kxrw,5584
731
+ maxframe/tensor/datasource/array.py,sha256=6I9Qy_2G0bRyKIFFmZEerzoa4IgBHZL4LA7vmU7EdyI,12786
732
+ maxframe/tensor/datasource/core.py,sha256=hmiKxEjhV0zZARM48ujmiCI4XYMn5d8ZIm0EnHJDMdk,3677
733
+ maxframe/tensor/datasource/diag.py,sha256=9EYI1W-qEpUPwMmQNtfur2aRi4se98ct5SHaWTJKYQY,4503
734
+ maxframe/tensor/datasource/diagflat.py,sha256=cPMXABEwAP8NwIxs77tYGDrVlS-u10bGm6F7-xoXVBo,2226
735
+ maxframe/tensor/datasource/empty.py,sha256=o_TVwWPy6RKYq6u9q_bM3CY0Cqh_rsNK5vwPv8CW0wI,5971
736
+ maxframe/tensor/datasource/eye.py,sha256=z8mHCFYvMQ2arNuX43ofmVQ4Q7sHYU9WXuvw2z3qBI4,3114
737
+ maxframe/tensor/datasource/from_dataframe.py,sha256=7VujyewHpglrZMguKN6W8oFmJXSKMjG6y-ClKABL-TE,2525
738
+ maxframe/tensor/datasource/from_dense.py,sha256=khx-qh19H42A7h1JjIANajd35h-400byPPFYP_VpU70,1190
739
+ maxframe/tensor/datasource/from_sparse.py,sha256=yEqLjz01bc8wQWXyjafCyLCymDlFGP35F_stVE40aHA,1545
740
+ maxframe/tensor/datasource/full.py,sha256=gSI8zsITXJJA5eEdwn3VyeP9zLj9605XB0OpuRsMHuo,6414
741
+ maxframe/tensor/datasource/identity.py,sha256=nqxIVxEDIDtHQvKv0lg5XEVuzi7Q_bnlpEz8BtB_8bk,1731
742
+ maxframe/tensor/datasource/indices.py,sha256=tRce25rCTALAsIzXDi4ZxIZWPIh8_bh6oAm2iK4PBLo,3390
743
+ maxframe/tensor/datasource/linspace.py,sha256=0isKSLklR77YBqFAARniwVCzMEwHerDGwv1-2Et2Yq0,4562
744
+ maxframe/tensor/datasource/meshgrid.py,sha256=EpbylyOOjroPHQhZdzhdqfbpK1f0k6Hd-RbuNXJTa_0,4579
745
+ maxframe/tensor/datasource/ones.py,sha256=EVKfrOWYGrl7Np_E5HVMrs0P2HmkWZ6EYIAU6O-jPNc,5345
746
+ maxframe/tensor/datasource/scalar.py,sha256=Gj-A_jb6RDkDHAl1Xyqn_5elV36fJGPxep4OJKqRqYw,1196
747
+ maxframe/tensor/datasource/tri_array.py,sha256=mSBXAA7bHhBaHnmsMIItHFE0NHGjCOUTeqIoR3Ooohw,3025
748
+ maxframe/tensor/datasource/zeros.py,sha256=F5EMplGU5feKJ7DpQrz8enp-X7yyj62DvpSTGk50l-I,5989
749
+ maxframe/tensor/datasource/tests/__init__.py,sha256=4LpNXO11JAdLjSut3p036oEEXlDEB-6AURW9oci5W5Y,609
750
+ maxframe/tensor/datasource/tests/test_datasource.py,sha256=WsxX11IhdX31Z_ZvYtzbEJyN9-lwOJHvJkUaajhOSrc,8969
751
+ maxframe/tensor/extensions/__init__.py,sha256=ehmkYVIj5VuQxj-zgDPz_8vIDyEl0a4zW8-nw2mNrJE,1027
752
+ maxframe/tensor/extensions/accessor.py,sha256=YRw4xx30AgH9MpeM1LngSUV8aQPNHq0x0o5pikiyGmY,843
753
+ maxframe/tensor/extensions/apply_chunk.py,sha256=3e3nu53-ApH7sZB7tjb8CKrtDc-SZ-hJS-oZtZ-N7CQ,4557
754
+ maxframe/tensor/fetch/__init__.py,sha256=eWgriJX2psoMcsc3UawOkOyZq_N9GrDPHfaHlpKf300,662
755
+ maxframe/tensor/fetch/core.py,sha256=E1-PciVwugKHJxOfii9jw907n2ybxCMBwYSQhgBirQU,1872
756
+ maxframe/tensor/indexing/__init__.py,sha256=RpPNpVJJxTmZFKt6q0rabqN1qzdvrV1MXzzwQsk0ipg,1612
757
+ maxframe/tensor/indexing/choose.py,sha256=6yyo0bNk-BxYjtyAHSYQ8B2vljxPEKGhorf1jiXfmdc,7842
758
+ maxframe/tensor/indexing/compress.py,sha256=d5-zQhRYlnddA5Gt38al6zwfN3Nwj_u-vs4QxdjFnbU,4105
759
+ maxframe/tensor/indexing/core.py,sha256=VIiNK72XC_8SDXUiJO-iVNuXa3V7pqFNJ3BhCsVdiG8,7212
760
+ maxframe/tensor/indexing/extract.py,sha256=HZnG59C9n1AaSvA4vRZ5Oo020YB3JT2o8lTzDVYsZAA,2091
761
+ maxframe/tensor/indexing/fill_diagonal.py,sha256=ZGwqyOFwfxyoRMXMDBypRQL-7xbAF1I1kTz4POxEUlU,5582
762
+ maxframe/tensor/indexing/flatnonzero.py,sha256=8AYZcyiWuRWb2_mcIeqrT6XCXa4wS3SMdB0pAJA82vg,1650
763
+ maxframe/tensor/indexing/getitem.py,sha256=vZJNuqip9_eXVsYkcTiZkYuIsO1O-Futy4ONyYJPe4o,4912
764
+ maxframe/tensor/indexing/nonzero.py,sha256=aYG4_4dLaygjjLzmHif8yiTWQcjmtv3HEwkGMQ4gNTo,3611
765
+ maxframe/tensor/indexing/setitem.py,sha256=TkgbQG9cTgZNSbSdIf6j_YGxoGhaUUy4oMYGXBTdVrI,4867
766
+ maxframe/tensor/indexing/slice.py,sha256=yeAoMOggEmogI7Hpt7OFVk7tbCzn4vbbZX3jSSP5FLU,1162
767
+ maxframe/tensor/indexing/take.py,sha256=gQRXrUzWp1gQ96F2h97s087_5fXzcie7Tbcwiasy3bQ,4336
768
+ maxframe/tensor/indexing/unravel_index.py,sha256=ofiHUAQpvXaI2i-z0gaLBg6ua5aToYvJJHyHNC1j1X8,3376
769
+ maxframe/tensor/indexing/tests/__init__.py,sha256=4LpNXO11JAdLjSut3p036oEEXlDEB-6AURW9oci5W5Y,609
770
+ maxframe/tensor/indexing/tests/test_indexing.py,sha256=ziQxTRyAmotSb2kTYBymNjqzAoLSq72vb7_TT8x2ALg,6838
771
+ maxframe/tensor/lib/__init__.py,sha256=ihyVtman53JRKIstoaPm91_BrGtyvcoG6ey7n2G1dYU,674
772
+ maxframe/tensor/lib/index_tricks.py,sha256=mXWiQscGOAGiymJeLdTJqtOemwV_8qSLUpm150CZ6wA,14546
773
+ maxframe/tensor/linalg/__init__.py,sha256=SDx22ivVN7RLEzw5ApeCHjjgiTvSM28Nn51IJc63wCo,1210
774
+ maxframe/tensor/linalg/dot.py,sha256=ZHDo5RYaButlQvZbeVpoQ_vmYBdk1ldCdG_KM7Qjsvg,4794
775
+ maxframe/tensor/linalg/inner.py,sha256=DeJqBFdtRPWfCMF8Dkt_Hywll3VhBvXACsUzMNEgHDw,1175
776
+ maxframe/tensor/linalg/inv.py,sha256=NTh2TQu3zC4Gm4jFM_Ue_cE01a6ErDlFQFo0Vf2NaPg,2546
777
+ maxframe/tensor/linalg/lu.py,sha256=_UWFRg9ykDSuY81Seg38TBnmnG6F2JhqZhDCFVjRcwY,3319
778
+ maxframe/tensor/linalg/matmul.py,sha256=PDActLN76e-S1uVmF3ZerGc3hmuqS98mdAMjxujtUOk,7338
779
+ maxframe/tensor/linalg/qr.py,sha256=LigVOCCxiPTPUO-K8uWgKbJZT5Ms-Z9-MF-jvApW5vs,3863
780
+ maxframe/tensor/linalg/solve_triangular.py,sha256=Qu5SjIQ_2A5c9bDCUeDeq7lq5NYomewgy2-2IlORZF8,3476
781
+ maxframe/tensor/linalg/svd.py,sha256=I67uQ4MmpItQEJcu_jdUgqsDA7BzhqU_TlaJ2gYlOFI,6311
782
+ maxframe/tensor/linalg/tensordot.py,sha256=QONtrHHvpcWaN2G6jiikbQ5ogPX6vEBYUKI_oyUIYA4,7306
783
+ maxframe/tensor/linalg/vdot.py,sha256=d3P3cNulnX0nypBRGJadxEsoBKErNFbxxB9lct7JNNk,2322
784
+ maxframe/tensor/merge/__init__.py,sha256=kx52MUmweJJ8j1K8gv8LbNUTCUzWVqm4_PJG7fN4l0c,827
785
+ maxframe/tensor/merge/append.py,sha256=j3E4k5--govpbLQqv_r75N7vl0NUOuRUhkxb8RLbuOg,2540
786
+ maxframe/tensor/merge/column_stack.py,sha256=LmiwpYa9kzzeWuG0JRsWfJfRU_R8SrbAKapQzYAopJk,1799
787
+ maxframe/tensor/merge/concatenate.py,sha256=yLnL7nPdqdcB6vf_R-YDgMtT9_b6ELmgperTV7qP7PQ,3383
788
+ maxframe/tensor/merge/dstack.py,sha256=-qbVNhnjmQta1wt2QM68fREzGkRYdU7kwTn8f4NYp-0,2416
789
+ maxframe/tensor/merge/hstack.py,sha256=bmfroUCXJCSUBxEAUt0Xf5VB4UIIrcoIA5-lZCYay10,2427
790
+ maxframe/tensor/merge/stack.py,sha256=6TqVEIpgQrkt32LGq-eLX2kDREyrJuzLAzuWaKYC_ss,4229
791
+ maxframe/tensor/merge/vstack.py,sha256=OWetsKXO3DpznVsBvEe-HcwSD5ZTh8BZTWBWiaCqW14,2342
792
+ maxframe/tensor/merge/tests/__init__.py,sha256=4LpNXO11JAdLjSut3p036oEEXlDEB-6AURW9oci5W5Y,609
793
+ maxframe/tensor/merge/tests/test_merge.py,sha256=QAtldu9m4McIZSf8EO0eOfg3ytHI0lIgDx7N-TlTNds,2243
794
+ maxframe/tensor/misc/__init__.py,sha256=5GSJ5vM8xn1-hR1P75m9KpGWothW0olNa5nEosjFJuo,1730
795
+ maxframe/tensor/misc/astype.py,sha256=mmtHbVZs5hokgJNPuxFnPMpXhx56tdQJq37EcIIfeO4,4580
796
+ maxframe/tensor/misc/atleast_1d.py,sha256=cEGHYACn577OC9hlfzR988EBDxPt3DF1Z_H8TgRows4,1944
797
+ maxframe/tensor/misc/atleast_2d.py,sha256=e3z_ADGUTHUAvK6DEiZiSEZCVaASbmKTRtQNoYJQ5r4,2028
798
+ maxframe/tensor/misc/atleast_3d.py,sha256=nQQr-ARc1AJ3T0PtWtgeZfdjOPJVYUQn4qxxF-pK-48,2477
799
+ maxframe/tensor/misc/broadcast_to.py,sha256=Yi0-LHKbyPK9r6G7wsNXg-FIFAbH1q3qhLPfM5-zUj0,2781
800
+ maxframe/tensor/misc/copy.py,sha256=sOmS5Rz7KN4DjP_TbXeYSZbiIx--QsTkP60wgL-g7VI,1844
801
+ maxframe/tensor/misc/diff.py,sha256=K-HKzzEJ3uSsgXZolVe67KsIY1YOKChu6geEBYUzeo8,3718
802
+ maxframe/tensor/misc/flatten.py,sha256=QXGZX3EGB7n8Qt8uMe207SR0TYlPFUE2Q-zKVlwBFSU,2002
803
+ maxframe/tensor/misc/in1d.py,sha256=AYsuxmMsz3Bx941QjUOfixTeAzj4NCI2wXfhYtkjvEE,3341
804
+ maxframe/tensor/misc/isin.py,sha256=BA4AJxNzMi0oXx90lqbT6w0BE6itevsd9q6MLbZ5Dck,4606
805
+ maxframe/tensor/misc/ndim.py,sha256=SLuiOuHIJtu8nHACOpyTVwAagNMNwzttl_Z5oDhD1dI,1442
806
+ maxframe/tensor/misc/ravel.py,sha256=3Y9FqmXBn_a-gUxy2LlDoiNF0axVYKny0CKldrGAR84,3217
807
+ maxframe/tensor/misc/repeat.py,sha256=jTa4GhvqlKmOqUdXQyX3YyiNld4D20Lde-YmuaUfaFo,4048
808
+ maxframe/tensor/misc/searchsorted.py,sha256=Iy9nJ-VSH_kkzAy5PecwOJdLBrDi3ssaiAe3lDh1TV8,4891
809
+ maxframe/tensor/misc/setdiff1d.py,sha256=rGLvSWB6aTaYsrgaFsXAW3zrKcWammCSDiadxMzwR54,1811
810
+ maxframe/tensor/misc/squeeze.py,sha256=JwrSZo-7JO5Z7kdad2IHBaNiEuvuzRDhkGiuR8lu5ss,3687
811
+ maxframe/tensor/misc/swapaxes.py,sha256=E0itYJYiJGWH6SpZM0VmZLkobKARUOcTCG8G_ExsLDk,3228
812
+ maxframe/tensor/misc/transpose.py,sha256=gIIKCqlQErZ-M6EfDFL62oW8Fd3_RoCg5OffWJjxK6k,4287
813
+ maxframe/tensor/misc/trapezoid.py,sha256=Uh_Ia5h83f8oqlmvy2YH2Hp1tLB8-lxf3LVYTc7VM_U,3911
814
+ maxframe/tensor/misc/unique.py,sha256=X8kSXqiozzr0cDLEZIs6ehl3XHXKM__NbjqtYDX4ZzY,7009
815
+ maxframe/tensor/misc/where.py,sha256=oWDAsnGKJWwBSxrTvdUR-YS6ZQ1eEzUFjlQQESH_dgU,4213
816
+ maxframe/tensor/misc/tests/__init__.py,sha256=4LpNXO11JAdLjSut3p036oEEXlDEB-6AURW9oci5W5Y,609
817
+ maxframe/tensor/misc/tests/test_misc.py,sha256=knuVLxfIb0EMmTs6-IZelOJS8Xxr84XcqmZJ7J09VNU,2909
818
+ maxframe/tensor/random/__init__.py,sha256=LqfxhJpELuwXPTlluFhz-l-N6KTXDPk9-54rs9Vnen0,7159
819
+ maxframe/tensor/random/beta.py,sha256=f0jS_mc21zY8XYQboipOOixWL-u4p0A9Ln43CFV8Gvo,3200
820
+ maxframe/tensor/random/binomial.py,sha256=ExI1sBPYDVgd0QBK1AFQn_729fHeGX1KBjVzStcHl8E,5380
821
+ maxframe/tensor/random/bytes.py,sha256=3kB1rbcmA1-sVJ8qBZKHlQbUJd7jINjeySb9FqCBB4Q,1045
822
+ maxframe/tensor/random/chisquare.py,sha256=nrqME6pRjoE2jc-Et_U_cGJgyemP1Wv5Tff1J2-4wmI,3816
823
+ maxframe/tensor/random/choice.py,sha256=z8EfJVdl8AZaDwFqnMbMxfxoYhXtpWcOHWdiRv5UOjI,6200
824
+ maxframe/tensor/random/core.py,sha256=-XEJ3OGB_gCi-msAMlCMu6Z57TkDktpeV4G6KJA47Ig,7995
825
+ maxframe/tensor/random/dirichlet.py,sha256=Laupfyqi2tDXoSXvytJ5nlvw0VDb9Qw0v5oS6ZtD1XQ,4459
826
+ maxframe/tensor/random/exponential.py,sha256=UMIoY5uB5T0TLXqCoNnKCu1erUIJp_PA5UlWw64w0kE,3629
827
+ maxframe/tensor/random/f.py,sha256=MaSraBuIXtHN3rDlBMXXahsgmbbICJP4sUwo_OST5Cg,5186
828
+ maxframe/tensor/random/gamma.py,sha256=wiZg38y3uLrQTLM3sFISNB464J2xVX8VorBP4SHlI4I,4699
829
+ maxframe/tensor/random/geometric.py,sha256=Nr8ZpuaMw--mQ-z-p2bZfhF7pCabeN_cz4G3lCEhzXQ,3395
830
+ maxframe/tensor/random/gumbel.py,sha256=odtpa0PeMcUx04ERzH_RehHBAZ5wJbfukmz-nYU7y7U,6440
831
+ maxframe/tensor/random/hypergeometric.py,sha256=VPspOZzbxACDLfP5BYN-gTVbFND3Xcftd500SrRLcTo,5733
832
+ maxframe/tensor/random/laplace.py,sha256=b56U3mn1PCS64y0dXHXXziYqrjSG8mtmLuOa1Qjda7Q,5100
833
+ maxframe/tensor/random/logistic.py,sha256=pVcYEnjXQjpJR-nKJuMG86DfjKOlyeeOVAKitKLKuwo,4809
834
+ maxframe/tensor/random/lognormal.py,sha256=VBiB4tvzcWg840ESY1TbCSwLuK1UbgHyel_ao_AwHvs,6166
835
+ maxframe/tensor/random/logseries.py,sha256=av9T6V_ajcxIDyXCCVng3XhkvwGswMLI01liY19ivvU,4511
836
+ maxframe/tensor/random/multinomial.py,sha256=ucEXMZ9EYY4KcjeSNNVEXGKZ5itoopi-8ci2IqTgYTw,4856
837
+ maxframe/tensor/random/multivariate_normal.py,sha256=yEsTHoKCcFlhSoHSefQdU641yuhGfP-NajLXpSFKIVU,6910
838
+ maxframe/tensor/random/negative_binomial.py,sha256=UD1UVsYeZTS_2QeiI3757ordfznZ-Lk6qrXIv3yCZiY,4916
839
+ maxframe/tensor/random/noncentral_chisquare.py,sha256=_jo6EbPc27r1zmu2tEUqyXOcPI6lmqMardnci506RaQ,5021
840
+ maxframe/tensor/random/noncentral_f.py,sha256=wXbK7Mrp5d7U3erfY96nwRqlIZVOiU0zOCmq4On7Nn4,5047
841
+ maxframe/tensor/random/normal.py,sha256=QrH3OBgK8FXWH9vaQJPIvUdl0f665o-1v50p-WDq7jU,5304
842
+ maxframe/tensor/random/pareto.py,sha256=KTaAvcLygRmvLtZCjvg6Whdm09BEQX1ir7GbvBpU15E,5481
843
+ maxframe/tensor/random/permutation.py,sha256=CrwmS7UNjKE6RuKPXwA_r4q9Vc7w6IWRgmjP7r27fMM,3640
844
+ maxframe/tensor/random/poisson.py,sha256=5ETJmwuOr-4m94TgB3NGFUHz1IS8g2a_U3C_2XcW5Mc,3949
845
+ maxframe/tensor/random/power.py,sha256=w-2HIpt-1Uiw7zed9_cn_M0XKSX2YituTvkpHMYih8E,4939
846
+ maxframe/tensor/random/rand.py,sha256=edJBYb8wlE0auCH9R2ktR-tG2qVS5M1MZScrWd5pSq4,2572
847
+ maxframe/tensor/random/randint.py,sha256=mrh6p9NR23Fz0FRgZg-6wbfgN98DK1fF3Lm4TfV2pCQ,4292
848
+ maxframe/tensor/random/randn.py,sha256=N_wzwG4xxvtTu5KGOH8uvP5Tsn0fzOfzkev-tDlxXV0,3389
849
+ maxframe/tensor/random/random_integers.py,sha256=BZB78YF1jxImjlruTCeDDkUY4MQshL4zKWdtlm-BhQ0,4435
850
+ maxframe/tensor/random/random_sample.py,sha256=kpgt90B4GaWfZyNuaNo6jbeHfn5RqMoshRnHQwb4dY4,3043
851
+ maxframe/tensor/random/rayleigh.py,sha256=xCfnz64OL99SyBK7TUsV2_fqa-bF58jIRlKLafpEFOA,4018
852
+ maxframe/tensor/random/shuffle.py,sha256=b1olWtGM6A32gRo5q4_LupcNMuVVJ_0hritmQxPpRFs,1823
853
+ maxframe/tensor/random/standard_cauchy.py,sha256=0QS9DnGBOkrE1IJO4jXzexbEUs5kAenU4HI5CTDiFC8,3918
854
+ maxframe/tensor/random/standard_exponential.py,sha256=L8wq0G1qd8_vPzaPYfVamS16I4AxkXPfNBOLxmloyW0,2462
855
+ maxframe/tensor/random/standard_gamma.py,sha256=FfS8bsBRPoasgUkyO3APNKTC5XSX4ounukZLGugiE7U,4321
856
+ maxframe/tensor/random/standard_normal.py,sha256=xllofhZ9RaGUzwNDj0LjsawyuDGBxN0lEHyULKVr6tU,2579
857
+ maxframe/tensor/random/standard_t.py,sha256=bc4PB-tzA-JZE7RziHtcRoEGYzmjn_M9ZAs5bOn7XO4,5006
858
+ maxframe/tensor/random/triangular.py,sha256=nUkhGN8oUNNOa3EVb23zPp_CnJfsOlbTb9nlWOG5O4c,4419
859
+ maxframe/tensor/random/uniform.py,sha256=tY57yzeVwhLuVIrOXiu4NyqR0K5-4SGsG3yY87yGKR8,4782
860
+ maxframe/tensor/random/vonmises.py,sha256=vHYS2i6pC_jnpQmnfIWTXHq9TZPCL-HFbz7J3NmdVBc,4882
861
+ maxframe/tensor/random/wald.py,sha256=BdROhwfUth7kIvBoU91P_Cf7GMyL_S4xflW4qQUze2M,4436
862
+ maxframe/tensor/random/weibull.py,sha256=FQhxeCMQM4jjlWVNHKWMpqfI0Z4ttwa4g4SuNjt8lp8,4987
863
+ maxframe/tensor/random/zipf.py,sha256=hunJyZluulpKX7B7zSdMUTwnu52zPC63zMx8UMckrIc,4165
864
+ maxframe/tensor/random/tests/__init__.py,sha256=4LpNXO11JAdLjSut3p036oEEXlDEB-6AURW9oci5W5Y,609
865
+ maxframe/tensor/random/tests/test_random.py,sha256=kgr4L3gHjYyieJJ_E6t7LzVtfos4PzH3AetQqdTM2WM,4394
866
+ maxframe/tensor/rechunk/__init__.py,sha256=V3ptEn5VvZ_upn_u6qgPaf2scyUrPfBsVx0ib3u6djs,823
867
+ maxframe/tensor/rechunk/rechunk.py,sha256=jXCMOVnl1kbMVAV0eG22R3vd0Z3m5bD3yewGYXyqXS4,1435
868
+ maxframe/tensor/reduction/__init__.py,sha256=sp2oe5SCFH8zVpgsrwd9AaKQUhUE5ydwJTiAD4P9jDc,2336
869
+ maxframe/tensor/reduction/all.py,sha256=tvh70kbnZcZsYPWvsApfkerTgZUd30rHhvtYO4nSbdc,3522
870
+ maxframe/tensor/reduction/allclose.py,sha256=G0olYHeOw4WC23U2VwPfcr58NBcatmXXdXpDyYjjzgg,2982
871
+ maxframe/tensor/reduction/any.py,sha256=kDmO7-5GjiC_K3A9SchXG0iKDYaN35g4ZM7k-3YciSk,3628
872
+ maxframe/tensor/reduction/argmax.py,sha256=JHCv9PKr0HrGAfbqA-NltHNadVKncAVaWEy53bkWz-s,3095
873
+ maxframe/tensor/reduction/argmin.py,sha256=8Tg0s9MlSFYTp35JNzPZkEGUxgdhHxaVhv2OqHk1K1c,3085
874
+ maxframe/tensor/reduction/array_equal.py,sha256=LP9_KZBJeRKhjY--WVmsSf9attn6wjkNZfZ1XXl5PCw,1811
875
+ maxframe/tensor/reduction/core.py,sha256=uKruQJwNK-4rNoKkk_zBjj9v8bFI066EhQ9I0HGVSLA,5209
876
+ maxframe/tensor/reduction/count_nonzero.py,sha256=jkRFcOfxmX0SaDiba7kyNebMtsWZ6QFVQt6_gSm6uNY,2788
877
+ maxframe/tensor/reduction/cumprod.py,sha256=phKFFDe8I8kl6ktBFqI8X5XzopQYWyQK5Scy7GopW4A,3321
878
+ maxframe/tensor/reduction/cumsum.py,sha256=ifmqiacEgnCv6g2tTTPqnjKihOE0WOz-73qhh2mUKsI,3544
879
+ maxframe/tensor/reduction/max.py,sha256=2Jv01SqlvrZtSBdLPZo9Ng7Mo0UnDCZtjCMdQtRl_UE,4051
880
+ maxframe/tensor/reduction/mean.py,sha256=HvqmWEVKKA72W_QgAV3u7aPs6BBsUUXE7FMhw7MzDZQ,4455
881
+ maxframe/tensor/reduction/min.py,sha256=5m9gikAujhJGuJv3kDKCmyKT6MW96igxpkilgiG4YsM,4052
882
+ maxframe/tensor/reduction/nanargmax.py,sha256=RD5epq3q0yEOxbSE_Grht_EgxJgOEtTbqUChVptVzbA,2515
883
+ maxframe/tensor/reduction/nanargmin.py,sha256=BV64LT99TlPV8jStHuCrNkaUpv_Q56Cmyo_NS1V1x4c,2231
884
+ maxframe/tensor/reduction/nancumprod.py,sha256=6gHbE5N4_80wuskQiUfkpQSng-65u1x7IXEZVjNwZnM,3164
885
+ maxframe/tensor/reduction/nancumsum.py,sha256=rau43BRt-LLg7UKVnPn4En3MNBTeL7IhnD9L08r1usQ,3329
886
+ maxframe/tensor/reduction/nanmax.py,sha256=37mOOOVG76NctRehJVL6JA0NVwZoyz-hDBmb_lUsHeo,4013
887
+ maxframe/tensor/reduction/nanmean.py,sha256=Fu5_Q7P4jpSKXqGmCZC6PrEyB-JhrzLk9Dk5PeapUfc,4030
888
+ maxframe/tensor/reduction/nanmin.py,sha256=yrEGxGR13wScKqqMtYa0xjXmVVG3VOrX5uMZjT1vY-s,4010
889
+ maxframe/tensor/reduction/nanprod.py,sha256=mb1uG_2KYpOXNUYEvV0zwsJACjaMX-X3LF79K2UsSpU,3360
890
+ maxframe/tensor/reduction/nanstd.py,sha256=0llmq5klTRXp_Ka0XBEr0rm3v7o553d4OgeTes7uLKM,4969
891
+ maxframe/tensor/reduction/nansum.py,sha256=0_SWz2XES4eAAf-RSsrMCKG6NaWYmvUqPDuJWXYOiTA,4133
892
+ maxframe/tensor/reduction/nanvar.py,sha256=ZCzp-lLqURbOix0zwskHBQkXrTLQlo8LGJ2MKM7OBXk,5573
893
+ maxframe/tensor/reduction/prod.py,sha256=gSmTuNwfpXfdAMLGDIeVomnNnFBXvMrRHL4nMsWnp90,4488
894
+ maxframe/tensor/reduction/std.py,sha256=4JMXt8fwt-uzS3NadjqsqSZOlijW4s7RWbLkzFJ-LIU,5221
895
+ maxframe/tensor/reduction/sum.py,sha256=9isQVN6SvL5gVpQh18_FDj2mo4w4jz1JYyJJqrYaKqs,4323
896
+ maxframe/tensor/reduction/var.py,sha256=tQg1FCBEk582bYK5SAMuadAQQWxuWC8PwIVl32EjooI,6434
897
+ maxframe/tensor/reduction/tests/__init__.py,sha256=4LpNXO11JAdLjSut3p036oEEXlDEB-6AURW9oci5W5Y,609
898
+ maxframe/tensor/reduction/tests/test_reduction.py,sha256=Yg-hncHGc0EOq5bq2tyu8hh82df9yNoaTENoi5J58Ww,6296
899
+ maxframe/tensor/reshape/__init__.py,sha256=B0NaIfLj02AEIKITelPbnqPNNGMPYzAZQewlMjrpMqQ,641
900
+ maxframe/tensor/reshape/reshape.py,sha256=uXp-FUK9LoxXosYUfLn-2Nl3wqf4UJNLADTDMYOVd0M,6749
901
+ maxframe/tensor/reshape/tests/__init__.py,sha256=4LpNXO11JAdLjSut3p036oEEXlDEB-6AURW9oci5W5Y,609
902
+ maxframe/tensor/reshape/tests/test_reshape.py,sha256=jRvg8ZoQI6fHvIXUdhvx2Dstcz2xqQyeTwyAt6ahXe0,1092
903
+ maxframe/tensor/sort/__init__.py,sha256=fHwJlUxeOYtElszVTDYaGUSkJZCKXRX4PTRGxqnjCFI,665
904
+ maxframe/tensor/sort/argsort.py,sha256=344P5nBdIoN7uRQvmXASQASwFAG7QMR-NRaluKLBlIs,5037
905
+ maxframe/tensor/sort/sort.py,sha256=35NjPg08UDtYdysRIxGAucpwMZJ3U2udiKhxhi9z6Hk,11424
906
+ maxframe/tensor/special/__init__.py,sha256=weIQjTnixuPwzMKCD2P7K-FTeOl5XtNNpVdryO7jkik,1066
907
+ maxframe/tensor/special/core.py,sha256=k1py8k0hdmGdGUN4BSEg_J1jgzys6UzduIFSF7Fm5_I,1255
908
+ maxframe/tensor/special/misc.py,sha256=40RyODqoP4sG6C7De7GAxOXDuBU8RfdwJKS7OpWnM-0,4631
909
+ maxframe/tensor/special/statistical.py,sha256=h_t4oUKVMMqaHWPkV8yHxtzgsP1gR8UBaWza0LKDol4,1727
910
+ maxframe/tensor/statistics/__init__.py,sha256=0ZT2cgBIEwVS_csigp7JYQbGBGLHX_GOV3WAJp1Mn5U,741
911
+ maxframe/tensor/statistics/average.py,sha256=9_7TmnYIjbVnwob2H1ire2GP_xsQmwuo9-mwEEw2d_c,5199
912
+ maxframe/tensor/statistics/bincount.py,sha256=ntXpw95S9_b0IUWPbmRogpwyq6Yn7P3tsh3PxIoAYDw,4844
913
+ maxframe/tensor/statistics/percentile.py,sha256=RcEbf_uUIxkOnCADRNq9LFgicvyCJtOX1zjm-xRhv_M,6222
914
+ maxframe/tensor/statistics/quantile.py,sha256=rJ2ciAoi7XoIGCJXH6v1dNTflWczFtAom-NXjBZYVsA,9837
915
+ maxframe/tensor/ufunc/__init__.py,sha256=dqEJnXd0eZMRRdRksr-z31CCu2t7Cs5rBJDawdG70_U,773
916
+ maxframe/tensor/ufunc/ufunc.py,sha256=OHHRgqfNr5oHXwbC1QJTZtBJwjLc-FxfrX6Gb7TLCps,7335
917
+ maxframe/tests/__init__.py,sha256=4LpNXO11JAdLjSut3p036oEEXlDEB-6AURW9oci5W5Y,609
918
+ maxframe/tests/test_protocol.py,sha256=tEClIngXq1fSXcAN56hTDSPuK5Y-Tez8G7KTxYVoEBg,6299
919
+ maxframe/tests/test_utils.py,sha256=LvHJphFSMj5oq64DOcWP9HjSOLOWHKPDxCI3KNDxq2Y,19112
920
+ maxframe/tests/utils.py,sha256=EEdNLezV_GgSxNGGc18nz3hEMDDSinJI_istcmiLFeA,7250
921
+ maxframe_client/__init__.py,sha256=lMXPcrevOU4QUF8NIK1K-piVGPllfmuQ11TQivyuuYo,705
922
+ maxframe_client/conftest.py,sha256=gw1eaUzIa4sSlYmeV8yGqCz-R-8sLt46iQ5yzxkbJ2Q,658
923
+ maxframe_client/fetcher.py,sha256=giZOhWCs3pMZQzVYL5HHeP46d87Pa_fzQ-ZG00Xswtc,12626
924
+ maxframe_client/clients/__init__.py,sha256=4LpNXO11JAdLjSut3p036oEEXlDEB-6AURW9oci5W5Y,609
925
+ maxframe_client/clients/framedriver.py,sha256=ZOgp3XC8cX78Tv1GmMj_ZiCV55hvSkCDgI3A5oHbmig,5112
926
+ maxframe_client/session/__init__.py,sha256=d6y_gZ3JEWmVi55pwnHjVcU4JmdynVxZcu9QY7B0dAE,854
927
+ maxframe_client/session/consts.py,sha256=GvAxFLM_LUUgCpKkykCsWmKt00mbb6mAELfVTXob4w0,1430
928
+ maxframe_client/session/graph.py,sha256=4Nuyt5Ui9t4AWVG9VGq_TFgDQCnyZ2gOVGGuwUaEn1Q,4501
929
+ maxframe_client/session/odps.py,sha256=zahZoVzrMX7BIUOQWFcuLbpZcR90cRwkyKLNUQLu1Qs,31292
930
+ maxframe_client/session/task.py,sha256=jm1_6V3IQAMv09Vz6o0xVaJWU0uqPynEIpOfuSrOXlA,12422
931
+ maxframe_client/session/tests/__init__.py,sha256=4LpNXO11JAdLjSut3p036oEEXlDEB-6AURW9oci5W5Y,609
932
+ maxframe_client/session/tests/test_task.py,sha256=qtKtseHpc13xQCe4SsDaM7UToVOTkPIAb0yMw12Js8M,4817
933
+ maxframe_client/tests/__init__.py,sha256=4LpNXO11JAdLjSut3p036oEEXlDEB-6AURW9oci5W5Y,609
934
+ maxframe_client/tests/test_fetcher.py,sha256=-KG_OshShJEa66Hg_RKuT745AxadH2LMWasHo5hhIow,4265
935
+ maxframe_client/tests/test_session.py,sha256=BsWX-sGtSI9AaL1wzVpqp-fMPXmDd0QUCv_gWVkUeRI,12845
936
+ maxframe-2.0.0.dist-info/METADATA,sha256=sYlXsOHL9srfANWYx1pV-bL5-ybQGVq-6QWKLYea9lY,3290
937
+ maxframe-2.0.0.dist-info/WHEEL,sha256=BsoMMMHJGneA25n2FDquZW143lDYOuIAMJ0po_3Su94,95
938
+ maxframe-2.0.0.dist-info/top_level.txt,sha256=64x-fc2q59c_vXwNUkehyjF1vb8JWqFSdYmUqIFqoTM,31
939
+ maxframe-2.0.0.dist-info/RECORD,,