maxframe 1.3.1__cp38-cp38-macosx_10_9_universal2.whl → 2.0.0__cp38-cp38-macosx_10_9_universal2.whl

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

Potentially problematic release.


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

Files changed (640) hide show
  1. maxframe/_utils.cpython-38-darwin.so +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.cpython-38-darwin.so +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 +9 -8
  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 +65 -3
  242. maxframe/dataframe/reduction/core.py +3 -1
  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/models.py +38 -9
  279. maxframe/learn/contrib/utils.py +55 -0
  280. maxframe/learn/contrib/xgboost/callback.py +86 -0
  281. maxframe/learn/contrib/xgboost/classifier.py +26 -30
  282. maxframe/learn/contrib/xgboost/core.py +54 -42
  283. maxframe/learn/contrib/xgboost/dmatrix.py +19 -12
  284. maxframe/learn/contrib/xgboost/predict.py +16 -9
  285. maxframe/learn/contrib/xgboost/regressor.py +28 -27
  286. maxframe/learn/contrib/xgboost/tests/test_callback.py +41 -0
  287. maxframe/learn/contrib/xgboost/train.py +59 -16
  288. maxframe/learn/core.py +252 -0
  289. maxframe/learn/datasets/__init__.py +20 -0
  290. maxframe/learn/datasets/samples_generator.py +628 -0
  291. maxframe/learn/linear_model/__init__.py +15 -0
  292. maxframe/learn/linear_model/_base.py +163 -0
  293. maxframe/learn/linear_model/_lin_reg.py +175 -0
  294. maxframe/learn/metrics/__init__.py +25 -0
  295. maxframe/learn/metrics/_check_targets.py +95 -0
  296. maxframe/learn/metrics/_classification.py +1121 -0
  297. maxframe/learn/metrics/_regression.py +256 -0
  298. maxframe/learn/model_selection/__init__.py +15 -0
  299. maxframe/learn/model_selection/_split.py +451 -0
  300. maxframe/learn/model_selection/tests/__init__.py +13 -0
  301. maxframe/learn/model_selection/tests/test_split.py +156 -0
  302. maxframe/learn/preprocessing/__init__.py +16 -0
  303. maxframe/learn/preprocessing/_data/__init__.py +17 -0
  304. maxframe/learn/preprocessing/_data/min_max_scaler.py +390 -0
  305. maxframe/learn/preprocessing/_data/normalize.py +127 -0
  306. maxframe/learn/preprocessing/_data/standard_scaler.py +503 -0
  307. maxframe/learn/preprocessing/_data/utils.py +79 -0
  308. maxframe/learn/preprocessing/_label/__init__.py +16 -0
  309. maxframe/learn/preprocessing/_label/_label_binarizer.py +599 -0
  310. maxframe/learn/preprocessing/_label/_label_encoder.py +174 -0
  311. maxframe/learn/utils/__init__.py +4 -0
  312. maxframe/learn/utils/_encode.py +314 -0
  313. maxframe/learn/utils/checks.py +161 -0
  314. maxframe/learn/utils/core.py +33 -0
  315. maxframe/learn/utils/extmath.py +176 -0
  316. maxframe/learn/utils/multiclass.py +292 -0
  317. maxframe/learn/utils/shuffle.py +114 -0
  318. maxframe/learn/utils/sparsefuncs.py +87 -0
  319. maxframe/learn/utils/validation.py +775 -0
  320. maxframe/lib/__init__.py +0 -2
  321. maxframe/lib/compat.py +145 -0
  322. maxframe/lib/filesystem/_oss_lib/glob.py +1 -1
  323. maxframe/lib/mmh3.cpython-38-darwin.so +0 -0
  324. maxframe/lib/sparse/__init__.py +10 -15
  325. maxframe/lib/sparse/array.py +45 -33
  326. maxframe/lib/sparse/core.py +0 -2
  327. maxframe/lib/sparse/linalg.py +31 -0
  328. maxframe/lib/sparse/matrix.py +5 -2
  329. maxframe/lib/sparse/tests/__init__.py +0 -2
  330. maxframe/lib/sparse/tests/test_sparse.py +53 -53
  331. maxframe/lib/sparse/vector.py +0 -2
  332. maxframe/mixin.py +59 -2
  333. maxframe/opcodes.py +13 -5
  334. maxframe/protocol.py +67 -14
  335. maxframe/remote/core.py +16 -14
  336. maxframe/remote/run_script.py +6 -3
  337. maxframe/serialization/__init__.py +2 -0
  338. maxframe/serialization/core.cpython-38-darwin.so +0 -0
  339. maxframe/serialization/core.pxd +3 -0
  340. maxframe/serialization/core.pyi +3 -1
  341. maxframe/serialization/core.pyx +82 -4
  342. maxframe/serialization/pandas.py +5 -1
  343. maxframe/serialization/serializables/core.py +6 -5
  344. maxframe/serialization/serializables/field.py +2 -2
  345. maxframe/serialization/serializables/tests/test_field_type.py +3 -5
  346. maxframe/serialization/tests/test_serial.py +27 -0
  347. maxframe/session.py +4 -71
  348. maxframe/sperunner.py +165 -0
  349. maxframe/tensor/__init__.py +35 -2
  350. maxframe/tensor/arithmetic/__init__.py +2 -4
  351. maxframe/tensor/arithmetic/abs.py +0 -2
  352. maxframe/tensor/arithmetic/absolute.py +0 -2
  353. maxframe/tensor/arithmetic/add.py +34 -4
  354. maxframe/tensor/arithmetic/angle.py +0 -2
  355. maxframe/tensor/arithmetic/arccos.py +1 -4
  356. maxframe/tensor/arithmetic/arccosh.py +1 -3
  357. maxframe/tensor/arithmetic/arcsin.py +0 -2
  358. maxframe/tensor/arithmetic/arcsinh.py +0 -2
  359. maxframe/tensor/arithmetic/arctan.py +0 -2
  360. maxframe/tensor/arithmetic/arctan2.py +0 -2
  361. maxframe/tensor/arithmetic/arctanh.py +0 -2
  362. maxframe/tensor/arithmetic/around.py +0 -2
  363. maxframe/tensor/arithmetic/bitand.py +0 -2
  364. maxframe/tensor/arithmetic/bitor.py +1 -3
  365. maxframe/tensor/arithmetic/bitxor.py +1 -3
  366. maxframe/tensor/arithmetic/cbrt.py +0 -2
  367. maxframe/tensor/arithmetic/ceil.py +0 -2
  368. maxframe/tensor/arithmetic/clip.py +13 -13
  369. maxframe/tensor/arithmetic/conj.py +0 -2
  370. maxframe/tensor/arithmetic/copysign.py +0 -2
  371. maxframe/tensor/arithmetic/core.py +47 -39
  372. maxframe/tensor/arithmetic/cos.py +1 -3
  373. maxframe/tensor/arithmetic/cosh.py +0 -2
  374. maxframe/tensor/arithmetic/deg2rad.py +0 -2
  375. maxframe/tensor/arithmetic/degrees.py +0 -2
  376. maxframe/tensor/arithmetic/divide.py +0 -2
  377. maxframe/tensor/arithmetic/equal.py +0 -2
  378. maxframe/tensor/arithmetic/exp.py +1 -3
  379. maxframe/tensor/arithmetic/exp2.py +0 -2
  380. maxframe/tensor/arithmetic/expm1.py +0 -2
  381. maxframe/tensor/arithmetic/fabs.py +0 -2
  382. maxframe/tensor/arithmetic/fix.py +0 -2
  383. maxframe/tensor/arithmetic/float_power.py +0 -2
  384. maxframe/tensor/arithmetic/floor.py +0 -2
  385. maxframe/tensor/arithmetic/floordiv.py +0 -2
  386. maxframe/tensor/arithmetic/fmax.py +0 -2
  387. maxframe/tensor/arithmetic/fmin.py +0 -2
  388. maxframe/tensor/arithmetic/fmod.py +0 -2
  389. maxframe/tensor/arithmetic/frexp.py +6 -2
  390. maxframe/tensor/arithmetic/greater.py +0 -2
  391. maxframe/tensor/arithmetic/greater_equal.py +0 -2
  392. maxframe/tensor/arithmetic/hypot.py +0 -2
  393. maxframe/tensor/arithmetic/i0.py +1 -3
  394. maxframe/tensor/arithmetic/imag.py +0 -2
  395. maxframe/tensor/arithmetic/invert.py +1 -3
  396. maxframe/tensor/arithmetic/isclose.py +0 -2
  397. maxframe/tensor/arithmetic/iscomplex.py +0 -2
  398. maxframe/tensor/arithmetic/isfinite.py +1 -3
  399. maxframe/tensor/arithmetic/isinf.py +0 -2
  400. maxframe/tensor/arithmetic/isnan.py +0 -2
  401. maxframe/tensor/arithmetic/isreal.py +0 -2
  402. maxframe/tensor/arithmetic/ldexp.py +0 -2
  403. maxframe/tensor/arithmetic/less.py +0 -2
  404. maxframe/tensor/arithmetic/less_equal.py +0 -2
  405. maxframe/tensor/arithmetic/log.py +1 -3
  406. maxframe/tensor/arithmetic/log10.py +1 -3
  407. maxframe/tensor/arithmetic/log1p.py +1 -3
  408. maxframe/tensor/arithmetic/log2.py +1 -3
  409. maxframe/tensor/arithmetic/logaddexp.py +0 -2
  410. maxframe/tensor/arithmetic/logaddexp2.py +0 -2
  411. maxframe/tensor/arithmetic/logical_and.py +0 -2
  412. maxframe/tensor/arithmetic/logical_not.py +1 -3
  413. maxframe/tensor/arithmetic/logical_or.py +0 -2
  414. maxframe/tensor/arithmetic/logical_xor.py +0 -2
  415. maxframe/tensor/arithmetic/lshift.py +0 -2
  416. maxframe/tensor/arithmetic/maximum.py +0 -2
  417. maxframe/tensor/arithmetic/minimum.py +0 -2
  418. maxframe/tensor/arithmetic/mod.py +0 -2
  419. maxframe/tensor/arithmetic/modf.py +6 -2
  420. maxframe/tensor/arithmetic/multiply.py +37 -4
  421. maxframe/tensor/arithmetic/nan_to_num.py +0 -2
  422. maxframe/tensor/arithmetic/negative.py +0 -2
  423. maxframe/tensor/arithmetic/nextafter.py +0 -2
  424. maxframe/tensor/arithmetic/not_equal.py +0 -2
  425. maxframe/tensor/arithmetic/positive.py +0 -2
  426. maxframe/tensor/arithmetic/power.py +0 -2
  427. maxframe/tensor/arithmetic/rad2deg.py +0 -2
  428. maxframe/tensor/arithmetic/radians.py +0 -2
  429. maxframe/tensor/arithmetic/real.py +0 -2
  430. maxframe/tensor/arithmetic/reciprocal.py +5 -3
  431. maxframe/tensor/arithmetic/rint.py +1 -3
  432. maxframe/tensor/arithmetic/rshift.py +0 -2
  433. maxframe/tensor/arithmetic/setimag.py +0 -2
  434. maxframe/tensor/arithmetic/setreal.py +0 -2
  435. maxframe/tensor/arithmetic/sign.py +0 -2
  436. maxframe/tensor/arithmetic/signbit.py +0 -2
  437. maxframe/tensor/arithmetic/sin.py +0 -2
  438. maxframe/tensor/arithmetic/sinc.py +1 -3
  439. maxframe/tensor/arithmetic/sinh.py +0 -2
  440. maxframe/tensor/arithmetic/spacing.py +0 -2
  441. maxframe/tensor/arithmetic/sqrt.py +0 -2
  442. maxframe/tensor/arithmetic/square.py +0 -2
  443. maxframe/tensor/arithmetic/subtract.py +4 -2
  444. maxframe/tensor/arithmetic/tan.py +0 -2
  445. maxframe/tensor/arithmetic/tanh.py +0 -2
  446. maxframe/tensor/arithmetic/tests/__init__.py +0 -2
  447. maxframe/tensor/arithmetic/tests/test_arithmetic.py +43 -9
  448. maxframe/tensor/arithmetic/truediv.py +0 -2
  449. maxframe/tensor/arithmetic/trunc.py +0 -2
  450. maxframe/tensor/arithmetic/utils.py +32 -6
  451. maxframe/tensor/array_utils.py +3 -25
  452. maxframe/tensor/core.py +6 -6
  453. maxframe/tensor/datasource/__init__.py +10 -2
  454. maxframe/tensor/datasource/arange.py +0 -2
  455. maxframe/tensor/datasource/array.py +3 -22
  456. maxframe/tensor/datasource/core.py +15 -10
  457. maxframe/tensor/datasource/diag.py +140 -0
  458. maxframe/tensor/datasource/diagflat.py +69 -0
  459. maxframe/tensor/datasource/empty.py +0 -2
  460. maxframe/tensor/datasource/eye.py +95 -0
  461. maxframe/tensor/datasource/from_dataframe.py +0 -2
  462. maxframe/tensor/datasource/from_dense.py +0 -17
  463. maxframe/tensor/datasource/from_sparse.py +0 -2
  464. maxframe/tensor/datasource/full.py +0 -2
  465. maxframe/tensor/datasource/identity.py +54 -0
  466. maxframe/tensor/datasource/indices.py +115 -0
  467. maxframe/tensor/datasource/linspace.py +140 -0
  468. maxframe/tensor/datasource/meshgrid.py +135 -0
  469. maxframe/tensor/datasource/ones.py +8 -3
  470. maxframe/tensor/datasource/tests/test_datasource.py +32 -1
  471. maxframe/tensor/datasource/tri_array.py +107 -0
  472. maxframe/tensor/datasource/zeros.py +7 -3
  473. maxframe/tensor/extensions/__init__.py +31 -0
  474. maxframe/tensor/extensions/accessor.py +25 -0
  475. maxframe/tensor/extensions/apply_chunk.py +137 -0
  476. maxframe/tensor/indexing/__init__.py +1 -1
  477. maxframe/tensor/indexing/choose.py +8 -6
  478. maxframe/tensor/indexing/compress.py +0 -2
  479. maxframe/tensor/indexing/extract.py +0 -2
  480. maxframe/tensor/indexing/fill_diagonal.py +9 -6
  481. maxframe/tensor/indexing/flatnonzero.py +1 -3
  482. maxframe/tensor/indexing/getitem.py +10 -43
  483. maxframe/tensor/indexing/nonzero.py +2 -4
  484. maxframe/tensor/indexing/setitem.py +19 -9
  485. maxframe/tensor/indexing/slice.py +6 -3
  486. maxframe/tensor/indexing/take.py +0 -2
  487. maxframe/tensor/indexing/tests/__init__.py +0 -2
  488. maxframe/tensor/indexing/tests/test_indexing.py +0 -2
  489. maxframe/tensor/indexing/unravel_index.py +6 -6
  490. maxframe/tensor/lib/__init__.py +16 -0
  491. maxframe/tensor/lib/index_tricks.py +404 -0
  492. maxframe/tensor/linalg/__init__.py +36 -0
  493. maxframe/tensor/linalg/dot.py +145 -0
  494. maxframe/tensor/linalg/inner.py +36 -0
  495. maxframe/tensor/linalg/inv.py +83 -0
  496. maxframe/tensor/linalg/lu.py +115 -0
  497. maxframe/tensor/linalg/matmul.py +225 -0
  498. maxframe/tensor/linalg/qr.py +124 -0
  499. maxframe/tensor/linalg/solve_triangular.py +103 -0
  500. maxframe/tensor/linalg/svd.py +167 -0
  501. maxframe/tensor/linalg/tensordot.py +213 -0
  502. maxframe/tensor/linalg/vdot.py +73 -0
  503. maxframe/tensor/merge/__init__.py +4 -0
  504. maxframe/tensor/merge/append.py +74 -0
  505. maxframe/tensor/merge/column_stack.py +63 -0
  506. maxframe/tensor/merge/concatenate.py +3 -2
  507. maxframe/tensor/merge/dstack.py +71 -0
  508. maxframe/tensor/merge/hstack.py +70 -0
  509. maxframe/tensor/merge/stack.py +0 -2
  510. maxframe/tensor/merge/tests/test_merge.py +0 -2
  511. maxframe/tensor/misc/__init__.py +18 -5
  512. maxframe/tensor/misc/astype.py +10 -8
  513. maxframe/tensor/misc/broadcast_to.py +1 -1
  514. maxframe/tensor/misc/copy.py +64 -0
  515. maxframe/tensor/misc/diff.py +115 -0
  516. maxframe/tensor/misc/flatten.py +63 -0
  517. maxframe/tensor/misc/in1d.py +94 -0
  518. maxframe/tensor/misc/isin.py +130 -0
  519. maxframe/tensor/misc/ndim.py +53 -0
  520. maxframe/tensor/misc/ravel.py +0 -2
  521. maxframe/tensor/misc/repeat.py +129 -0
  522. maxframe/tensor/misc/searchsorted.py +147 -0
  523. maxframe/tensor/misc/setdiff1d.py +58 -0
  524. maxframe/tensor/misc/squeeze.py +117 -0
  525. maxframe/tensor/misc/swapaxes.py +113 -0
  526. maxframe/tensor/misc/tests/test_misc.py +0 -2
  527. maxframe/tensor/misc/transpose.py +8 -4
  528. maxframe/tensor/misc/trapezoid.py +123 -0
  529. maxframe/tensor/misc/unique.py +0 -1
  530. maxframe/tensor/misc/where.py +10 -8
  531. maxframe/tensor/operators.py +0 -34
  532. maxframe/tensor/random/__init__.py +3 -5
  533. maxframe/tensor/random/binomial.py +0 -2
  534. maxframe/tensor/random/bytes.py +0 -2
  535. maxframe/tensor/random/chisquare.py +0 -2
  536. maxframe/tensor/random/choice.py +9 -8
  537. maxframe/tensor/random/core.py +20 -5
  538. maxframe/tensor/random/dirichlet.py +0 -2
  539. maxframe/tensor/random/exponential.py +0 -2
  540. maxframe/tensor/random/f.py +2 -4
  541. maxframe/tensor/random/gamma.py +0 -2
  542. maxframe/tensor/random/geometric.py +0 -2
  543. maxframe/tensor/random/gumbel.py +0 -2
  544. maxframe/tensor/random/hypergeometric.py +0 -2
  545. maxframe/tensor/random/laplace.py +2 -4
  546. maxframe/tensor/random/logistic.py +0 -2
  547. maxframe/tensor/random/lognormal.py +0 -2
  548. maxframe/tensor/random/logseries.py +0 -2
  549. maxframe/tensor/random/multinomial.py +0 -2
  550. maxframe/tensor/random/multivariate_normal.py +0 -2
  551. maxframe/tensor/random/negative_binomial.py +0 -2
  552. maxframe/tensor/random/noncentral_chisquare.py +0 -2
  553. maxframe/tensor/random/noncentral_f.py +1 -3
  554. maxframe/tensor/random/normal.py +0 -2
  555. maxframe/tensor/random/pareto.py +0 -2
  556. maxframe/tensor/random/permutation.py +6 -3
  557. maxframe/tensor/random/poisson.py +0 -2
  558. maxframe/tensor/random/power.py +0 -2
  559. maxframe/tensor/random/rand.py +0 -2
  560. maxframe/tensor/random/randint.py +0 -2
  561. maxframe/tensor/random/randn.py +0 -2
  562. maxframe/tensor/random/random_integers.py +0 -2
  563. maxframe/tensor/random/random_sample.py +0 -2
  564. maxframe/tensor/random/rayleigh.py +0 -2
  565. maxframe/tensor/random/standard_cauchy.py +0 -2
  566. maxframe/tensor/random/standard_exponential.py +0 -2
  567. maxframe/tensor/random/standard_gamma.py +0 -2
  568. maxframe/tensor/random/standard_normal.py +0 -2
  569. maxframe/tensor/random/standard_t.py +0 -2
  570. maxframe/tensor/random/tests/__init__.py +0 -2
  571. maxframe/tensor/random/tests/test_random.py +0 -2
  572. maxframe/tensor/random/triangular.py +0 -2
  573. maxframe/tensor/random/uniform.py +0 -2
  574. maxframe/tensor/random/vonmises.py +0 -2
  575. maxframe/tensor/random/wald.py +0 -2
  576. maxframe/tensor/random/weibull.py +0 -2
  577. maxframe/tensor/random/zipf.py +0 -2
  578. maxframe/tensor/reduction/__init__.py +0 -2
  579. maxframe/tensor/reduction/all.py +0 -2
  580. maxframe/tensor/reduction/allclose.py +0 -2
  581. maxframe/tensor/reduction/any.py +0 -2
  582. maxframe/tensor/reduction/argmax.py +1 -3
  583. maxframe/tensor/reduction/argmin.py +1 -3
  584. maxframe/tensor/reduction/array_equal.py +0 -2
  585. maxframe/tensor/reduction/core.py +0 -2
  586. maxframe/tensor/reduction/count_nonzero.py +0 -2
  587. maxframe/tensor/reduction/cumprod.py +0 -2
  588. maxframe/tensor/reduction/cumsum.py +0 -2
  589. maxframe/tensor/reduction/max.py +0 -2
  590. maxframe/tensor/reduction/mean.py +0 -2
  591. maxframe/tensor/reduction/min.py +0 -2
  592. maxframe/tensor/reduction/nanargmax.py +0 -2
  593. maxframe/tensor/reduction/nanargmin.py +0 -2
  594. maxframe/tensor/reduction/nancumprod.py +0 -2
  595. maxframe/tensor/reduction/nancumsum.py +0 -2
  596. maxframe/tensor/reduction/nanmax.py +0 -2
  597. maxframe/tensor/reduction/nanmean.py +0 -2
  598. maxframe/tensor/reduction/nanmin.py +0 -2
  599. maxframe/tensor/reduction/nanprod.py +0 -2
  600. maxframe/tensor/reduction/nanstd.py +0 -2
  601. maxframe/tensor/reduction/nansum.py +0 -2
  602. maxframe/tensor/reduction/nanvar.py +0 -2
  603. maxframe/tensor/reduction/prod.py +0 -2
  604. maxframe/tensor/reduction/std.py +0 -2
  605. maxframe/tensor/reduction/sum.py +0 -2
  606. maxframe/tensor/reduction/tests/test_reduction.py +1 -4
  607. maxframe/tensor/reduction/var.py +0 -2
  608. maxframe/tensor/reshape/__init__.py +0 -2
  609. maxframe/tensor/reshape/reshape.py +6 -5
  610. maxframe/tensor/reshape/tests/__init__.py +0 -2
  611. maxframe/tensor/reshape/tests/test_reshape.py +0 -2
  612. maxframe/tensor/sort/__init__.py +16 -0
  613. maxframe/tensor/sort/argsort.py +150 -0
  614. maxframe/tensor/sort/sort.py +295 -0
  615. maxframe/tensor/special/__init__.py +37 -0
  616. maxframe/tensor/special/core.py +38 -0
  617. maxframe/tensor/special/misc.py +142 -0
  618. maxframe/tensor/special/statistical.py +56 -0
  619. maxframe/tensor/statistics/__init__.py +5 -0
  620. maxframe/tensor/statistics/average.py +143 -0
  621. maxframe/tensor/statistics/bincount.py +133 -0
  622. maxframe/tensor/statistics/quantile.py +10 -8
  623. maxframe/tensor/ufunc/__init__.py +0 -2
  624. maxframe/tensor/ufunc/ufunc.py +0 -2
  625. maxframe/tensor/utils.py +21 -3
  626. maxframe/tests/test_protocol.py +3 -3
  627. maxframe/tests/test_utils.py +210 -1
  628. maxframe/tests/utils.py +59 -1
  629. maxframe/udf.py +76 -6
  630. maxframe/utils.py +418 -17
  631. {maxframe-1.3.1.dist-info → maxframe-2.0.0.dist-info}/METADATA +4 -1
  632. maxframe-2.0.0.dist-info/RECORD +939 -0
  633. maxframe_client/clients/framedriver.py +19 -3
  634. maxframe_client/fetcher.py +113 -6
  635. maxframe_client/session/odps.py +173 -38
  636. maxframe_client/session/task.py +3 -1
  637. maxframe_client/tests/test_session.py +41 -5
  638. maxframe-1.3.1.dist-info/RECORD +0 -705
  639. {maxframe-1.3.1.dist-info → maxframe-2.0.0.dist-info}/WHEEL +0 -0
  640. {maxframe-1.3.1.dist-info → maxframe-2.0.0.dist-info}/top_level.txt +0 -0
@@ -0,0 +1,939 @@
1
+ maxframe-2.0.0.dist-info/RECORD,,
2
+ maxframe-2.0.0.dist-info/WHEEL,sha256=WSC5vw88KFdc7PZTZHSa_uVa_pn3BLiNkYp0y_C2kkQ,112
3
+ maxframe-2.0.0.dist-info/top_level.txt,sha256=O_LOO6KS5Y1ZKdmCjA9mzfg0-b1sB_P6Oy-hD8aSDfM,25
4
+ maxframe-2.0.0.dist-info/METADATA,sha256=VhfoHkmd7T_-NZ01Ap_x15T7F0fpCa1WWb4aSEmlmwg,3182
5
+ maxframe_client/conftest.py,sha256=JkQKlLZqd9uJekiO8HvMvEegidF-6KlCVFcg-KmQLLY,643
6
+ maxframe_client/__init__.py,sha256=z4QT02esANpxtSVZPO_96693bqSvhG82e4suaD6Ll1E,689
7
+ maxframe_client/fetcher.py,sha256=HPzpm2FM6KkY0HH2Rg-HVYCBdkudsxxGVWaT9jOhiUU,12246
8
+ maxframe_client/clients/__init__.py,sha256=YsJxv7HbG4YYJmqAJZPYb8iHFRQX5JGpGn2PInDXvY8,596
9
+ maxframe_client/clients/framedriver.py,sha256=OFMN1EDsF34kAXbPAKukl9gAS8W24Zpk9OeAKXl7X6Y,4975
10
+ maxframe_client/tests/test_session.py,sha256=KoggvuZGC8bJH6NgIMaxw3ya53pw_9ku0X6DoL5ep_0,12463
11
+ maxframe_client/tests/__init__.py,sha256=YsJxv7HbG4YYJmqAJZPYb8iHFRQX5JGpGn2PInDXvY8,596
12
+ maxframe_client/tests/test_fetcher.py,sha256=SJwtLrUvchJDi8vMJVbNgLYHoKxxWbAJ9bccUZt25l8,4158
13
+ maxframe_client/session/task.py,sha256=vTGUw6vInv7xlcLtg6a4BdXgpVxiWmejBMGt9oGXkxQ,12100
14
+ maxframe_client/session/graph.py,sha256=GUq6gNpi4m5PAdnERBE8zJRcYXLLoBueEEmmel4x5qE,4376
15
+ maxframe_client/session/__init__.py,sha256=NgquxV2h6TAb_0xLh0mQip-2i-Glxy3fjWiWXfRTLRE,832
16
+ maxframe_client/session/consts.py,sha256=E6PnPNyn2Bt9MHuGXATnb40m1AN0QfLG1Pl0KvsYFvk,1391
17
+ maxframe_client/session/odps.py,sha256=uwK4txjrRTY7LXN5e8Buq_RVRraBSFJV8qrJ30jlPu0,30495
18
+ maxframe_client/session/tests/test_task.py,sha256=Q5srH-w58vYS3NVeuY_59hLn2d-ANJh8nu2dbI7rRFA,4702
19
+ maxframe_client/session/tests/__init__.py,sha256=YsJxv7HbG4YYJmqAJZPYb8iHFRQX5JGpGn2PInDXvY8,596
20
+ maxframe/_utils.pyx,sha256=d427G0Uo9Ggx6-PCx5J2f3zdpqwnlCBDypfTaVoRoJE,17028
21
+ maxframe/conftest.py,sha256=GzkbLDw7_tQX3pnqg9Ep58HEilM8HP4W8rLQwudJqnM,7176
22
+ maxframe/opcodes.py,sha256=4btWUbGmmCS-Rz-Jvk-enlbQKQOoMiPArzDjG_m0izM,11139
23
+ maxframe/env.py,sha256=ZvORA7u_4qjNTLONJuvkJVcAUguTRBSggDd3Ta7yTjA,1455
24
+ maxframe/mixin.py,sha256=4raAFPQ59wGdHlgeEw0TZgDT4_ZECLmK23JtMYzAmUM,5645
25
+ maxframe/protocol.py,sha256=ctqynoquwYvUPYCToe2dbREomS9YuGEkDEeKkTZD9PE,20386
26
+ maxframe/session.py,sha256=6EE_lJebgJYbHRMrw4-1rdOFYsKH-m5dX8EkJQ4OqEA,34784
27
+ maxframe/__init__.py,sha256=Gws_d9VblPR6Ld36_hSueVzs5mdN1ns4fMpgvbcEsxo,1004
28
+ maxframe/_utils.pyi,sha256=-Rd4BZ7kF1695nNtjivOS3Zavpq99NYWO4tBMOL7Tac,916
29
+ maxframe/_utils.cpython-38-darwin.so,sha256=SNiGRJbf90W8K_YzXGGJv4ZgHDMNLRl-mUdrAXhFv6s,846672
30
+ maxframe/utils.py,sha256=myu__DECLUXG5m4bulrv_qGUW0ccqqGRMTC-vC3GMXI,46878
31
+ maxframe/extension.py,sha256=4u9K2lerFnwziWv2Aibm7S7nD_2nSPR4MKuegYpK8fM,2939
32
+ maxframe/sperunner.py,sha256=H-cHHPt-SBbqonKRfInSseGdOCi67xbR6jUoD25ML00,5572
33
+ maxframe/errors.py,sha256=aWFrndbs5Kf3CX9ZWG8n0cORrVpS6OA7UtUTJUwKs1M,1249
34
+ maxframe/udf.py,sha256=11WDJwhvohtNs7XfGReE96wsChedCf4ARK4MtMYotjw,7515
35
+ maxframe/typing_.py,sha256=V-xuayMMepLmG2Kg0V3bi8qRosRd2FV9mJ-kAWdhOjQ,1180
36
+ maxframe/_utils.pxd,sha256=ShrQD7uWMFVLT7j-zAMV6yWjQIlCbty_e7MHO6dzKv8,1154
37
+ maxframe/dataframe/arrays.py,sha256=e-swkQgnUYymt8WONknNf-pMFAxwRhriYoh93m3G1k8,28752
38
+ maxframe/dataframe/__init__.py,sha256=tFcEht0i3A_rAl_Y6Ybb0aCczI-kWBcJAwvwimmXtAw,2274
39
+ maxframe/dataframe/core.py,sha256=VU4bTeTnQ-drCFTFJPdRWeumBVT171bqN9y3lMCkRgQ,75293
40
+ maxframe/dataframe/initializer.py,sha256=lnsLYJHcWQ9Kkqh7MrLTuOL4iZBOpB798YLs4G5Qzik,10852
41
+ maxframe/dataframe/utils.py,sha256=r6GFJAqiAeqvbf-Mkb2DDi0dQorBjO2FabteTcIZs3k,54282
42
+ maxframe/dataframe/operators.py,sha256=OReFOB5F5H-AAYA-oE-_PPiVKK7QVVyOyj0VewqBmwM,6590
43
+ maxframe/dataframe/statistics/corr.py,sha256=bJi8kL3q-tQDW2xXBVerV5WfESNmuUF790hUAbEpW7Q,9573
44
+ maxframe/dataframe/statistics/quantile.py,sha256=ZizLXzuNOm1q8OB-a7-NCbX1nPkbZow4VBteg5TDScw,11610
45
+ maxframe/dataframe/statistics/__init__.py,sha256=CYcsBvDyz-6anAaoKkjoM9gXUeiYVqPt9FioHchM9Tw,1084
46
+ maxframe/dataframe/statistics/tests/test_statistics.py,sha256=y6C1nYoHQKqdAoG-ZpxWytIj_o8CQDKbeHf_b-08nys,2806
47
+ maxframe/dataframe/statistics/tests/__init__.py,sha256=YsJxv7HbG4YYJmqAJZPYb8iHFRQX5JGpGn2PInDXvY8,596
48
+ maxframe/dataframe/misc/describe.py,sha256=xVos9wd8KTkWvRhcEbV3Svocy2olHr2J6cWXT93GaiM,4485
49
+ maxframe/dataframe/misc/astype.py,sha256=QKo19cVwJkHbGieiSYoWDeRxajxz5RtUnqCTXlJBn7M,7873
50
+ maxframe/dataframe/misc/to_numeric.py,sha256=p6pMks9pVnF_Y61XeaLuoK9wq2ayB07pZbJaJo2w4dM,6262
51
+ maxframe/dataframe/misc/case_when.py,sha256=7eAYl4ruKnIR-N04zYiBPt44sLnHj3capN4A7RJu4fg,4983
52
+ maxframe/dataframe/misc/check_monotonic.py,sha256=Vak5n_YBYQE3WBvKz0s0WqGlX8t79ehfsQVJdEEi4_I,2422
53
+ maxframe/dataframe/misc/cut.py,sha256=O09PhsPHWPuMZq4Qvay0Jfpstk2yZETn2d6wt4xbyzY,14050
54
+ maxframe/dataframe/misc/get_dummies.py,sha256=jYDNUcNK4UAP3NEw_Zj0StkJSA7RXzRClquQUm8Y568,7652
55
+ maxframe/dataframe/misc/__init__.py,sha256=8lAnPE8x-Rczj7T4m2Or_hdCOhQwXd4ApIAxe1nb4S4,4854
56
+ maxframe/dataframe/misc/qcut.py,sha256=LbItYs5OkMhEWMepTkVDLkt6tN683PybQbjmuHlM9n4,3737
57
+ maxframe/dataframe/misc/pct_change.py,sha256=WgzbMOMLhc6iEvE6cT8_11lclLL5klkvokNjq7UKi94,2516
58
+ maxframe/dataframe/misc/duplicated.py,sha256=DkqcNnlbYhWKt6PkAg2WqZJfiI_wz5imjPjpkdJuC0M,8534
59
+ maxframe/dataframe/misc/pivot_table.py,sha256=RfUNNlyUFp2facbELxe8p_5nxmmSHGuteewpSY8osQ0,10070
60
+ maxframe/dataframe/misc/map.py,sha256=ojt7qjbAConl0a2cGIxTyIZMVWFFeHd2Asgo40ubDik,8831
61
+ maxframe/dataframe/misc/memory_usage.py,sha256=-5HJK6WVEQd9mtML7cY2MpGbZ_MOsLTwmqGzlOBsLj4,7889
62
+ maxframe/dataframe/misc/isin.py,sha256=aAxcjr-VTLW93mS-Cvj_RvQUqkpzXl3QQsqp5PB1oBk,7011
63
+ maxframe/dataframe/misc/rechunk.py,sha256=Z4QC2C1_xwtrbG6Km0KWQ5_7kZ35_dKIWtS8ooN6uxE,1956
64
+ maxframe/dataframe/misc/shift.py,sha256=pHfLjNJToO81UGM72t9jStKLfx7CXLeEPjzRRrqxe2A,9028
65
+ maxframe/dataframe/misc/transpose.py,sha256=wtTLmdKccdszt1K_PmrtMdIm7ekH4XIV1Igo7rg_1hk,3636
66
+ maxframe/dataframe/misc/melt.py,sha256=shuliyrzoOFDXqgFD8eOcd40rXYdasFYlQcPcwvNjcQ,5470
67
+ maxframe/dataframe/misc/stack.py,sha256=CKy_CW9mhYbXXFuciN1UcshKBVFEcwtPIrUCTv-gzSg,8049
68
+ maxframe/dataframe/misc/transform.py,sha256=ARxtNQgKBegQ8BslCH67JbhVeh5S5BRnuW-J-GSVe2w,10944
69
+ maxframe/dataframe/misc/explode.py,sha256=zpEnxb3-g47MoMevKQ98ewv33rBxRMkTW6DyNdU7KZQ,5011
70
+ maxframe/dataframe/misc/diff.py,sha256=xKG4cPOTvjEeu6zXsb5nGPIXvfya17Zi1sb_zz76EuI,5491
71
+ maxframe/dataframe/misc/drop_duplicates.py,sha256=k2yY0n8XivukkLvTQ_AhG4cT_4ddoI1KZDrLCCzbkAU,8689
72
+ maxframe/dataframe/misc/_duplicate.py,sha256=Rf0sp0aI0P_QDWslXnMBYyIGxvzGls54It9JHsHlXcM,1584
73
+ maxframe/dataframe/misc/eval.py,sha256=-7MMIJvkyBvOLkiG4up5mRi1OzWiPIKl26a8Tl7qVtc,24313
74
+ maxframe/dataframe/misc/value_counts.py,sha256=SheHbTPw2Hz0YVYtsqnjzWLO7fV2krmWDHWz1PVRIqs,5314
75
+ maxframe/dataframe/misc/select_dtypes.py,sha256=ktsfTu9cBf76XUGqYxBtCTZLnZTCyN7L6Iw8zRYvR5k,3144
76
+ maxframe/dataframe/misc/pivot.py,sha256=xwqdvr4kmrurQ9pldUF3REVKuf38zRyWHj3NWeuw3dM,7744
77
+ maxframe/dataframe/misc/drop.py,sha256=mSTGrgH9pjm8nd-7qt7T_O8xnoHXEes7s8i9fCNU-ZM,13050
78
+ maxframe/dataframe/misc/apply.py,sha256=tw3Qeh2Cd4diEfRVxfSnqXzkVfyllkn_6trRnMhIa5c,24137
79
+ maxframe/dataframe/misc/tests/test_misc.py,sha256=WtsngNeN-vOVYg_k2FBFFga_QmNL1UjZ8ZmhfSpbOhI,19849
80
+ maxframe/dataframe/misc/tests/__init__.py,sha256=YsJxv7HbG4YYJmqAJZPYb8iHFRQX5JGpGn2PInDXvY8,596
81
+ maxframe/dataframe/datasource/index.py,sha256=09h_YKyTIhpy8aUb2dsRJJDciiIloLNFyTDGTg2ESgg,4401
82
+ maxframe/dataframe/datasource/read_csv.py,sha256=Y7jMkVHzYu9BH7ipRaZIu8CfDngZzBb9JIyb_1iGuQ0,24392
83
+ maxframe/dataframe/datasource/from_index.py,sha256=WeHlwR2C4RRuKYtkt9uJdD9dkdJlWfrQvMYLtGEqimE,1964
84
+ maxframe/dataframe/datasource/dataframe.py,sha256=-V8qjEhRwaFeOYeFzjf8h5A1gqpgH_-GbNCf4Au7VRM,2023
85
+ maxframe/dataframe/datasource/series.py,sha256=Sou6J9hg3JJdSxuTcJjsD5EWPmvVB1J5I_ys24IkBe4,1909
86
+ maxframe/dataframe/datasource/__init__.py,sha256=LaVpAg_oMJ2OofTlyjw-v9YLRQNfPQYHNVkWnCXPRCc,640
87
+ maxframe/dataframe/datasource/read_odps_query.py,sha256=EG-H5EP0YZE_04jjYcz6OC_b0JMcScNZ5Zf-dhKo-Tw,17639
88
+ maxframe/dataframe/datasource/core.py,sha256=UfV0vLzh96fnWkwPwK1PiwHZkSydf8DR2aBNrlSXU7c,2958
89
+ maxframe/dataframe/datasource/date_range.py,sha256=tYKZPn8eAU_gxpEDNgNX-SCQneYwXCOPuGk5b19HkLM,17527
90
+ maxframe/dataframe/datasource/read_odps_table.py,sha256=l5Nq5VLsBFhwDp7YZtkWGTpupLDe5RiNm04ReYK-QC8,9989
91
+ maxframe/dataframe/datasource/read_parquet.py,sha256=zxP2DXen443dP83wUItw_5Yi6X_wZn731-pAqycwmOw,14769
92
+ maxframe/dataframe/datasource/from_tensor.py,sha256=NVgD9l9kTfW9VcVCLQw0Jr2tefWWVPLFy46rShisvbo,15159
93
+ maxframe/dataframe/datasource/from_records.py,sha256=84pnH79qJOgD3tp-8aJxZN7tfNC-HPOWBGSpTp5OmkM,3699
94
+ maxframe/dataframe/datasource/tests/test_datasource.py,sha256=gYev6k8NLokjn7_2iNJwFybJjW6BbPVjOzA-ig1EoxA,21452
95
+ maxframe/dataframe/datasource/tests/__init__.py,sha256=YsJxv7HbG4YYJmqAJZPYb8iHFRQX5JGpGn2PInDXvY8,596
96
+ maxframe/dataframe/sort/sort_index.py,sha256=gmv55CmKkAsWrA9bWf45JfX8IvMc0FuFloqb6D3cziI,5412
97
+ maxframe/dataframe/sort/__init__.py,sha256=E76aFGW1nejyX-_YV4AXlbl3vj0gSANgif5kbrmMWL4,1160
98
+ maxframe/dataframe/sort/sort_values.py,sha256=GXoghiR8K750Wh6now-wSwYGpcPYsXgi0rA3C95dyzQ,8702
99
+ maxframe/dataframe/sort/core.py,sha256=NRb7dUrDCn6YMwcAgf4BslVbig42nsaD8sAQdHlpI8s,1224
100
+ maxframe/dataframe/sort/tests/__init__.py,sha256=YsJxv7HbG4YYJmqAJZPYb8iHFRQX5JGpGn2PInDXvY8,596
101
+ maxframe/dataframe/sort/tests/test_sort.py,sha256=wgKIfOb9VY200i7I3suSru7ZNhA5zg_vQuKcprOQUD4,2604
102
+ maxframe/dataframe/merge/merge.py,sha256=F7Gjfv4bDLiwgotRoVFYTWUp4mcden53DChuQwso4W4,29864
103
+ maxframe/dataframe/merge/concat.py,sha256=_rqs7eCwunyOxVp2AFhnZNuJvO6AWq50BnPLERYRf98,11282
104
+ maxframe/dataframe/merge/__init__.py,sha256=VVhOQiIOKqA4cNoAOzFK8pJvqWX76O6JF8Ym8CFqUsA,1096
105
+ maxframe/dataframe/merge/append.py,sha256=_dRDcT6EvDUVnwP1QQv-85DWRu0u25HCt1jVntRlpro,4852
106
+ maxframe/dataframe/merge/tests/__init__.py,sha256=YsJxv7HbG4YYJmqAJZPYb8iHFRQX5JGpGn2PInDXvY8,596
107
+ maxframe/dataframe/merge/tests/test_merge.py,sha256=-mJirUWZJ5qT-BSW0TwS-fhGSgrChf9nXYp6RHrN1PQ,12965
108
+ maxframe/dataframe/accessors/__init__.py,sha256=HuRxxHBHRti4hQkHHHHKdAABkLKSbeYr-prI3NlSAKg,654
109
+ maxframe/dataframe/accessors/string_/accessor.py,sha256=5g0KVtl4DPzz-hA0qYZ_P5XwwMK2Tagn7L1DF6KJy5k,8054
110
+ maxframe/dataframe/accessors/string_/__init__.py,sha256=wRjIeDqzEHGUcxe0G1UKfJC5c_HyImUhn6xtWcSQeMQ,1073
111
+ maxframe/dataframe/accessors/string_/core.py,sha256=y4Tvg1hZvmOdC1sh6yl3N3AL0-1YB-etviJ4MOAEx5s,8193
112
+ maxframe/dataframe/accessors/string_/tests/__init__.py,sha256=YsJxv7HbG4YYJmqAJZPYb8iHFRQX5JGpGn2PInDXvY8,596
113
+ maxframe/dataframe/accessors/string_/tests/test_string_accessor.py,sha256=NE5pAtKPJgs-pJp-G-SRiWH6T6wZlrT3anmgsF3XU-A,2476
114
+ maxframe/dataframe/accessors/list_/accessor.py,sha256=4gyVqugtrz6XbGnHUG1ZjI_WOe1sSbQXM0sneNtQ9a0,1309
115
+ maxframe/dataframe/accessors/list_/length.py,sha256=1-0Ttc4hDM9FraQzANOSNQXFm-wliE5gDLO98H-EOC4,2134
116
+ maxframe/dataframe/accessors/list_/__init__.py,sha256=1viWNK-Xxq05LbYF0fRMAQZeKMzZgsVAz2A1vIzlQgo,1248
117
+ maxframe/dataframe/accessors/list_/getitem.py,sha256=PpfQ4GW6Mx7UvoL_ZInA8vDKOFDKupXFI9taITkzLcI,3744
118
+ maxframe/dataframe/accessors/list_/tests/__init__.py,sha256=YsJxv7HbG4YYJmqAJZPYb8iHFRQX5JGpGn2PInDXvY8,596
119
+ maxframe/dataframe/accessors/list_/tests/test_list_accessor.py,sha256=jC7WRktqnntX4BAz0utVG0_Z2rzpqDvl8Kmzk_pus8w,2381
120
+ maxframe/dataframe/accessors/dict_/accessor.py,sha256=0lC_5yk16pdHRLiop_X_O5AWF4bCe9YsVbYgVOfS7e8,1308
121
+ maxframe/dataframe/accessors/dict_/setitem.py,sha256=2kbDnyRRm9EWbRfDfPkD4PIiyjMkae9kLUyygRd845g,2953
122
+ maxframe/dataframe/accessors/dict_/length.py,sha256=etPPuTrUUSKwuXefqhFfTlEWkOP6mgJ9Z4MtK4q8jbk,2207
123
+ maxframe/dataframe/accessors/dict_/remove.py,sha256=PrCCexC_IWsw0Esu1T6VytP5LuA8u5g3XtyJtZz6FAQ,2986
124
+ maxframe/dataframe/accessors/dict_/__init__.py,sha256=uZJdw98WvCzfHiSjOSrbeCEN0eL2lWziUGXvsqe4oks,1503
125
+ maxframe/dataframe/accessors/dict_/getitem.py,sha256=cQcqzpU9BnoFbJIEvcKRvEMpuo9xg-kJpU177hVdzoc,4395
126
+ maxframe/dataframe/accessors/dict_/contains.py,sha256=qZze6k0tzpmGCO2bGoFgGd6ZLSweQZX6WbTsvT_Jalw,2527
127
+ maxframe/dataframe/accessors/dict_/tests/__init__.py,sha256=YsJxv7HbG4YYJmqAJZPYb8iHFRQX5JGpGn2PInDXvY8,596
128
+ maxframe/dataframe/accessors/dict_/tests/test_dict_accessor.py,sha256=tfHWfpNCPXJlySOoFekI94V9c91wz1sw-tDciIoIlo8,3915
129
+ maxframe/dataframe/accessors/plotting/__init__.py,sha256=BvuibZ5Wj6WcFvSrgDltgXQhRPdQksBwxlBdrL9liMg,1388
130
+ maxframe/dataframe/accessors/plotting/core.py,sha256=h_O3Jsalv55yLrPLzaLrNEHNP8pb8M95H5Gq9twzuTg,2235
131
+ maxframe/dataframe/accessors/plotting/tests/test_plotting_accessor.py,sha256=o_yRgHBLWrspYWd7pS-LUR6Vv2dKzLQbBca21EZyoWg,4123
132
+ maxframe/dataframe/accessors/plotting/tests/__init__.py,sha256=YsJxv7HbG4YYJmqAJZPYb8iHFRQX5JGpGn2PInDXvY8,596
133
+ maxframe/dataframe/accessors/datetime_/accessor.py,sha256=ai1Hqn8WCU30n7KGGMnxIXuehJ1yU7tia_I4pW1hjH0,2222
134
+ maxframe/dataframe/accessors/datetime_/__init__.py,sha256=k22-FodYSO_hU8mGiiVFpA3PWEz8g4IIg1Cyaq3zYNs,1084
135
+ maxframe/dataframe/accessors/datetime_/core.py,sha256=nTdwF4B4Nkh7mNmOAd36jR4qCesTyTyhFNaheqnqUB8,2604
136
+ maxframe/dataframe/accessors/datetime_/tests/test_datetime_accessor.py,sha256=E5qo7BfyUqWVzLBNx3a7fA119QMTQKBhyh-J-Cm5Eo0,1395
137
+ maxframe/dataframe/accessors/datetime_/tests/__init__.py,sha256=YsJxv7HbG4YYJmqAJZPYb8iHFRQX5JGpGn2PInDXvY8,596
138
+ maxframe/dataframe/tseries/__init__.py,sha256=YsJxv7HbG4YYJmqAJZPYb8iHFRQX5JGpGn2PInDXvY8,596
139
+ maxframe/dataframe/tseries/to_datetime.py,sha256=rvVcXBqbc7Xf7TlTUEhTNIqw9k3J-BQhvVVt5MVK8I0,11426
140
+ maxframe/dataframe/tseries/tests/__init__.py,sha256=YsJxv7HbG4YYJmqAJZPYb8iHFRQX5JGpGn2PInDXvY8,596
141
+ maxframe/dataframe/tseries/tests/test_tseries.py,sha256=ECx22AkI-TFT-293amPHdR6vydTgSOM7wNFa0_f5G0o,989
142
+ maxframe/dataframe/tests/test_utils.py,sha256=3Qf3yVPDgUnSLOZACmgnEgaxfvqmn90LhTnY6C4phgQ,3012
143
+ maxframe/dataframe/tests/__init__.py,sha256=YsJxv7HbG4YYJmqAJZPYb8iHFRQX5JGpGn2PInDXvY8,596
144
+ maxframe/dataframe/tests/test_initializer.py,sha256=9tyTBnNBHSuD89N7odLa83CmklK9EZKbWbTewijlD_M,2000
145
+ maxframe/dataframe/ufunc/ufunc.py,sha256=TFD5VnP-yUPwbo5oDwegG2OTPlfcNUs9grmoTLwOIFI,1652
146
+ maxframe/dataframe/ufunc/__init__.py,sha256=GM5LuPDJD8WHK_-sPPBC6cMyEuTyuDWY2JUnhq3VJ4k,889
147
+ maxframe/dataframe/ufunc/tensor.py,sha256=iBUpqvpgYuooh_Iv8iUN9haQ_bxo6sD5LVdrHuaNv0A,1618
148
+ maxframe/dataframe/missing/dropna.py,sha256=ODqgHGhF6DFbkGkMFtpmX48SEWEiRK-oZl2PtLNDDXg,8545
149
+ maxframe/dataframe/missing/fillna.py,sha256=dNX7Jwb705kGFaU3hkoJO6X2NWuRvLKHlRX6hUa7vMY,9158
150
+ maxframe/dataframe/missing/checkna.py,sha256=g6IOUnRGJOf7T-i7MmS5ibXjzI2gdfspWDtqEBrM5FE,6890
151
+ maxframe/dataframe/missing/__init__.py,sha256=wETXRj4oWTruI67Vq_EKlUjGrOo7bvFFBM2Qxf2dIG4,1813
152
+ maxframe/dataframe/missing/replace.py,sha256=yop4G6kG4AlWLiLXLE4Qmu_VJMzObSeF-HOInImgf6U,13450
153
+ maxframe/dataframe/missing/tests/test_missing.py,sha256=8pIE9U6TeeWjPYarouMhpMwKNTsM0O1SLnglr-WfFDM,3127
154
+ maxframe/dataframe/missing/tests/__init__.py,sha256=YsJxv7HbG4YYJmqAJZPYb8iHFRQX5JGpGn2PInDXvY8,596
155
+ maxframe/dataframe/extensions/accessor.py,sha256=QkHJq6n_qayJDM5qZalLVFVZgwCcdjMBJt-V5a6UtJs,1031
156
+ maxframe/dataframe/extensions/flatjson.py,sha256=GvHU07tIt91k5m5Vpn-P1pd69Nz0lXgvQP-RGB79o7g,4412
157
+ maxframe/dataframe/extensions/apply_chunk.py,sha256=V9153ail0HL7M-vm1vMMDmVYAUmZFzgDyfP_N0sagU4,23500
158
+ maxframe/dataframe/extensions/__init__.py,sha256=TLCGoy4JUO0UGuBFGSyYIigUh137rtgyMZ7jy7stqb0,1943
159
+ maxframe/dataframe/extensions/reshuffle.py,sha256=Ig8XtZZZa4lwl6RoQfQMr_U2dAjTCWXP8sZtlviUUQY,2635
160
+ maxframe/dataframe/extensions/flatmap.py,sha256=xnrqkbYLG6CqkQ35IFxZtRP-DhIwXJXaHdvPwCPNgkI,10518
161
+ maxframe/dataframe/extensions/tests/test_apply_chunk.py,sha256=_NF_2sKBbbKyce2G7_HIQs7EsLRaQeYVg-PXxrV4pkM,5848
162
+ maxframe/dataframe/extensions/tests/test_extensions.py,sha256=zEt9CfM9se4kkgLHIgnXSPZ43VmU2ZbA59iTL86boZc,4779
163
+ maxframe/dataframe/extensions/tests/__init__.py,sha256=YsJxv7HbG4YYJmqAJZPYb8iHFRQX5JGpGn2PInDXvY8,596
164
+ maxframe/dataframe/groupby/aggregation.py,sha256=992fSehwNbFOi-7Tz4EVHP9blJWtNF6sDkm4SMM0NRQ,13417
165
+ maxframe/dataframe/groupby/fill.py,sha256=LLyDAhiETT7Epccs5vCFUGmJdvwMGdU--Dq5VbkHtis,4885
166
+ maxframe/dataframe/groupby/apply_chunk.py,sha256=DNig32JPwEf9_9xLSx2jCfTKLltb7XY4uc1yMIEw1dw,13871
167
+ maxframe/dataframe/groupby/cum.py,sha256=ITaWHRngx_QtiWY--agEHUdyjY-IdYaQLkF7tOolUEc,3683
168
+ maxframe/dataframe/groupby/__init__.py,sha256=FcNLgvg7JLvi5mKWPG_CA_il0s4oudDKL_1nmZRF9FY,3815
169
+ maxframe/dataframe/groupby/getitem.py,sha256=V7CyoGOSdwUFZ39e8kXEqNhyEOWkMyTI00yFBq0xA2Q,3415
170
+ maxframe/dataframe/groupby/core.py,sha256=bQR8IHpxPAz70dM6yy1WCYTW92w5ejmYru_R9lkFrxg,8479
171
+ maxframe/dataframe/groupby/extensions.py,sha256=c9pfAtHuEDFm5in6QTt5fQIdlqXw5ihfl65GeanKyZU,915
172
+ maxframe/dataframe/groupby/transform.py,sha256=3_ozy344yoeTZNDU-Fp_W3ZRRbdCNi5Lpyc98joeULY,8573
173
+ maxframe/dataframe/groupby/head.py,sha256=o5B_sgQDKjFxVlKB02tuG2hdXVhacCFbi1CuRdVXD3Q,3266
174
+ maxframe/dataframe/groupby/sample.py,sha256=0sI9MSn274iHnmR9zs1g1g7DPsjxvF6FZ2S4XKhcaro,7007
175
+ maxframe/dataframe/groupby/apply.py,sha256=T64zq-KtS-s9DS8Cb8ZA28_sN9FgrZWsHM6RwHCl9Zw,8461
176
+ maxframe/dataframe/groupby/tests/__init__.py,sha256=YsJxv7HbG4YYJmqAJZPYb8iHFRQX5JGpGn2PInDXvY8,596
177
+ maxframe/dataframe/groupby/tests/test_groupby.py,sha256=KhjhpjdYbCPH7r2q9DcdUGeRn_BBnNNNWz3Uj-FvhLY,12358
178
+ maxframe/dataframe/datastore/__init__.py,sha256=f__5rpYJSz1S0FzyJq1oE0bTXmAa4Azxa6gAFrwD7MY,784
179
+ maxframe/dataframe/datastore/core.py,sha256=USIY-JV6gmGI7DFl5F_YptytNxnHFPErsDctzAN2Ivw,743
180
+ maxframe/dataframe/datastore/to_csv.py,sha256=fUyAkEN8imZzCEgBgYO-CCOBi9penk5i-2hB7YlurfU,7859
181
+ maxframe/dataframe/datastore/to_odps.py,sha256=K-XEI0WazY0ySfdXnBA29blqf1F6Eug44esOyMcK8bk,8371
182
+ maxframe/dataframe/datastore/tests/__init__.py,sha256=YsJxv7HbG4YYJmqAJZPYb8iHFRQX5JGpGn2PInDXvY8,596
183
+ maxframe/dataframe/datastore/tests/test_to_odps.py,sha256=ftaUeXpGr_daZOn9dtWq0QEFiLg9i3kGfEo7F2Z3ss4,2989
184
+ maxframe/dataframe/fetch/__init__.py,sha256=Mlwm89_WXweFj-zQNbIEnnIZD8vHh7z5A2WPXxN7KE4,653
185
+ maxframe/dataframe/fetch/core.py,sha256=GP5E5tCodXgyPOj1CNX4TcaVJUG7VwtI3-TE8S84Qu4,3744
186
+ maxframe/dataframe/reduction/max.py,sha256=M6y3jKLd8ecJTc3LNb49tr74LaGPs6MCpuPWQJ-qWgU,1660
187
+ maxframe/dataframe/reduction/nunique.py,sha256=qaovc5DAxZFfGXdEaJy0uNHX69p2RnlmaUi7gmQbd54,3467
188
+ maxframe/dataframe/reduction/cummax.py,sha256=Odo-Ahex2Ey4cwO6_uJEuafbOovnkzZOw9pmyXs4i9A,1013
189
+ maxframe/dataframe/reduction/aggregation.py,sha256=VwihLfTCxWz7chpHGHvZ8ZJcKjSYBjluK0CpMVf0EmM,16827
190
+ maxframe/dataframe/reduction/skew.py,sha256=n4zYukXUYv1UFHGJFs1m2oToBKKnZ7ilhHBrRK1dHuQ,2538
191
+ maxframe/dataframe/reduction/custom_reduction.py,sha256=QjPVQ_8hdXjyWmOgeVlxsH8oir2zC_fa5NWK5wPtkik,1435
192
+ maxframe/dataframe/reduction/unique.py,sha256=fFV4qh4Ulgm4KXelrsGQuuHa22_YARiG-AkSjpPgNa0,4572
193
+ maxframe/dataframe/reduction/std.py,sha256=GmIp-lXVxZGFO2jZVcTmWwHz7rZfhhm2ONKTqZfU8LA,1355
194
+ maxframe/dataframe/reduction/str_concat.py,sha256=Wzuh57my-QOIqYMlnGn4i0mgH13dv4eWM53wEd11Iog,1657
195
+ maxframe/dataframe/reduction/__init__.py,sha256=6Xh-aQQmrGsPnsm3f-7chhsbMKTV1kWV9Y42ZJ6BTic,4335
196
+ maxframe/dataframe/reduction/core.py,sha256=F6UOWk3QGjPcWQLhqESuXGjNQGz_Eixmr_G5cZ5n7Hw,31026
197
+ maxframe/dataframe/reduction/all.py,sha256=Amnoyro0zLqtk5ytuq0ntAOu7UqGHfhc8n3EONXmyUo,1966
198
+ maxframe/dataframe/reduction/cummin.py,sha256=dysmKMEMF_BiABSE8DNYzdWfzPNsHYPl_U8WMBbztow,1013
199
+ maxframe/dataframe/reduction/min.py,sha256=79EW7-KqVut9QULQ4l5UXzbCeYlrXtvYdlDzM328eFc,1660
200
+ maxframe/dataframe/reduction/mean.py,sha256=5cvduC-QtLJs-acdpz716dI0Hg1WblDzBqDPbSB13dw,1612
201
+ maxframe/dataframe/reduction/var.py,sha256=ZdC_y8nG0LSFueMfDO4-4MBQTNG8y4iHnRBamnuRBPk,2008
202
+ maxframe/dataframe/reduction/median.py,sha256=HALfRFoAe6Fo9LUGbhgAF0FHFYRCNgV3gh7Ml7qmhq4,1593
203
+ maxframe/dataframe/reduction/kurtosis.py,sha256=S1M_IP99nsabMqRRmG4tDUED5ZvRopCxljU0OL33NyI,2840
204
+ maxframe/dataframe/reduction/sum.py,sha256=_nZentdtTwY475Wk-VGpxuHQ3zMGhDhrP9RTAXn6Rro,2049
205
+ maxframe/dataframe/reduction/prod.py,sha256=nn-Lmm9f8OTshX7BQCgoBe-Qr2ytjE93L3rvLswofEk,2049
206
+ maxframe/dataframe/reduction/cumsum.py,sha256=UO9CFa5PCcZ8zmCzJLMWhYI2Y79Gut3NtoVJArw6JTA,1013
207
+ maxframe/dataframe/reduction/any.py,sha256=vVjm9uEcWK0aIdsXGPuJKRanXoz9GqDS7BfMQWRQmdQ,1970
208
+ maxframe/dataframe/reduction/sem.py,sha256=un4SZsFZ83HX-H32XvGyosfZNfAth1C787JDskX5Zm8,1863
209
+ maxframe/dataframe/reduction/cumprod.py,sha256=RZd7znJrSiZ9ptQpWbrDvMivRhx6vgFezS7VoeQdX0g,1018
210
+ maxframe/dataframe/reduction/count.py,sha256=m0c0j3dMsLzVjeSB_ibo4Qwa35iP6b0hZahhX2qiEO4,1741
211
+ maxframe/dataframe/reduction/reduction_size.py,sha256=SAprwQF8dJ3ZAZkLcHvsPsLiTDHmMnFtnVVy8Zn1UYo,1120
212
+ maxframe/dataframe/reduction/tests/__init__.py,sha256=YsJxv7HbG4YYJmqAJZPYb8iHFRQX5JGpGn2PInDXvY8,596
213
+ maxframe/dataframe/reduction/tests/test_reduction.py,sha256=31V29OWPi1Ia52b3BRl9VpvOp08k5xYFqeIJJBzpVCc,18721
214
+ maxframe/dataframe/window/aggregation.py,sha256=lui1PvodeuPpOzb6VBSHvy_TnhEK-GMYiirdJG8g3Os,3794
215
+ maxframe/dataframe/window/ewm.py,sha256=5avuJh8WlvjvDe85AE4DYQSQAIYu1r04Ra0hBB2yKjs,7789
216
+ maxframe/dataframe/window/__init__.py,sha256=kRKsdMgSYsFZeDQV_sXy2yyVdALKsYLK5NM3zjnx0uM,910
217
+ maxframe/dataframe/window/core.py,sha256=PBlauTddI7l1c78Ft5QhvQHzw3da5f5LlSt3LZlKkTU,2205
218
+ maxframe/dataframe/window/rolling.py,sha256=T5FOrr01gQ8NmhGawnjKOEESVJnX9lnQlL_ygOB4xJ4,12158
219
+ maxframe/dataframe/window/expanding.py,sha256=hQha2jrVGNLaduB1ZJkvdi53_aoMCVXSzAjDfrJaDr8,3918
220
+ maxframe/dataframe/window/tests/test_expanding.py,sha256=iGdKMbMIGbeES-XFmywMisfrSpi21g49UvCU9DoNw4w,1916
221
+ maxframe/dataframe/window/tests/test_rolling.py,sha256=UA5osZ_vo2NRo9_E4rIehoYKZYJGPVoei8DcJQtaXkQ,1714
222
+ maxframe/dataframe/window/tests/__init__.py,sha256=YsJxv7HbG4YYJmqAJZPYb8iHFRQX5JGpGn2PInDXvY8,596
223
+ maxframe/dataframe/window/tests/test_ewm.py,sha256=-T3TnHMnTtQflSyvCIvNw5Sc97QkpbMAib6fDc0lNiY,2060
224
+ maxframe/dataframe/arithmetic/arctan.py,sha256=wcm495plAIICdazKVlicsr0609uyyqGM6ulSRlX3YtA,930
225
+ maxframe/dataframe/arithmetic/arccos.py,sha256=sUbV04rkR19C8qq3igR2m2f37ES-DDUoWcw-pinhpmM,930
226
+ maxframe/dataframe/arithmetic/arctanh.py,sha256=oWxciY632zxW3437ZedvlFnkFQwNG5D-8f74yXdCTnU,935
227
+ maxframe/dataframe/arithmetic/trunc.py,sha256=2ZbWaL-yO8oG-JxNsqBpE6CcISKpT2Zx1tfvF47zt9s,925
228
+ maxframe/dataframe/arithmetic/tanh.py,sha256=96uHglT0BdttAfAKIfDPbLwqhvCxXNe7JgoiJCWrfTo,920
229
+ maxframe/dataframe/arithmetic/equal.py,sha256=c5Ps1XwODLOM-tZA6ogfoywH6Kwx2Ms_GbGRIK6KzZo,1517
230
+ maxframe/dataframe/arithmetic/add.py,sha256=OdTvTdC3CS13pQq8gb0aZy05QfqdgfYj5skqVqbWYSQ,1706
231
+ maxframe/dataframe/arithmetic/subtract.py,sha256=UTjNymNVfZRcoZk09xDyU1iQd3j0z_OzC7aq_1YRTa4,1780
232
+ maxframe/dataframe/arithmetic/sqrt.py,sha256=y6VmP12L-Ryd4omj2YMG3OOo0hDTvgj3pwoGeqleyZg,920
233
+ maxframe/dataframe/arithmetic/less_equal.py,sha256=buY_fn7P6RTXk5-6T1KuWfnIN1Pke2aNiCXF9ISiABU,1557
234
+ maxframe/dataframe/arithmetic/log.py,sha256=a8ahgBMzMnvq_ZOddN-YHObZ3ALdRWa9iW2mvocPzR0,915
235
+ maxframe/dataframe/arithmetic/negative.py,sha256=uq9c-KhkHDn1hs0iTKbYyN7zX5Zv3zXXPbWpYZ6RXVo,1007
236
+ maxframe/dataframe/arithmetic/multiply.py,sha256=-cQYhnBHBqBv0A7s2OggEZ2Q-ptLHVR-Lgi4_-v3gDI,1733
237
+ maxframe/dataframe/arithmetic/degrees.py,sha256=caKuVKu1ukyWOW5pR4ifZweKxAYi71KTQOcXvHiyF18,935
238
+ maxframe/dataframe/arithmetic/cos.py,sha256=O4P-XDbyADP_E2Dz7flNaPLJs6HmyK6NKH1hVVFVnz0,915
239
+ maxframe/dataframe/arithmetic/tan.py,sha256=YYcDjP4NqXvUGYafUsVH4bByg6rBk7wNtKlW_ZXzd30,915
240
+ maxframe/dataframe/arithmetic/abs.py,sha256=IK6Zxy1w9C4KOCgPl2Zx2MHsaUTTkpVublbK263bWZc,983
241
+ maxframe/dataframe/arithmetic/__init__.py,sha256=LUk6ISdDemrkg9lq342zh9g_vjep8W_Wof1ZQyAtaTg,12478
242
+ maxframe/dataframe/arithmetic/core.py,sha256=OVt7T5UtcZpKUAjSLj6t9La4gdA-Po6SLdSoI4IInSA,14497
243
+ maxframe/dataframe/arithmetic/floor.py,sha256=aomnYTbh4Fs8CtY82b6OgfGXj0xCg2j6kiAK-rlie48,925
244
+ maxframe/dataframe/arithmetic/around.py,sha256=bNjon55vUgBIOy2OBMsPJcETNv14Hdn3eNTEp_fqSD0,3823
245
+ maxframe/dataframe/arithmetic/is_ufuncs.py,sha256=7DO49HO9Ha347Pay7DHIgLDx96gn6h5rjuULiOSVwtY,1736
246
+ maxframe/dataframe/arithmetic/ceil.py,sha256=2baxYINaqkKgbb6UhJ4-XEz-O0H02liJ2I_PyGxohDY,920
247
+ maxframe/dataframe/arithmetic/bitwise_or.py,sha256=FvGNn64GtiOhQbn3fACkoiLIlhSTvnVWeWaqMtRzE2U,1546
248
+ maxframe/dataframe/arithmetic/bitwise_and.py,sha256=7gJstDeVKIrw-oyGerrXz_VbL3t4yBrQd85Vm9azuuc,1427
249
+ maxframe/dataframe/arithmetic/log10.py,sha256=1S65Ux7RorVduQbViKYA37hixWam5Y2CJ6zt6OIF4fY,925
250
+ maxframe/dataframe/arithmetic/docstring.py,sha256=maE6SmYaTCLmp3BWCOg70hkS3x3GSYa3V3P-7ZxzAhY,11691
251
+ maxframe/dataframe/arithmetic/truediv.py,sha256=ovrp5MI3jAsdbWuynU6ZrlRL9_HVbf4r9vWjvSbHSro,1808
252
+ maxframe/dataframe/arithmetic/exp2.py,sha256=QVzw4bJgh24tXm6q-PaNJm22CWZdAkXl19rBHXTCgRI,920
253
+ maxframe/dataframe/arithmetic/expm1.py,sha256=UlN5R1uk2aL65vMOK_9sh_HljmgnVyUs-RdslRhl3RI,925
254
+ maxframe/dataframe/arithmetic/arcsin.py,sha256=1_x_XEwX6yvpd629WsgGgfiurueKqoj99b4ahXoLt18,930
255
+ maxframe/dataframe/arithmetic/floordiv.py,sha256=ARgAdYuFMAHV-OX13OW_NpbL2OiiJ6ZFXPpHW2kSs6I,1827
256
+ maxframe/dataframe/arithmetic/bitwise_xor.py,sha256=vgep0FL1ge1npbhLSeu65gKZJm27WUkfzMEEvn34sBs,1426
257
+ maxframe/dataframe/arithmetic/invert.py,sha256=Dj9pzPSVtd5qxpTFQcJjO5zZTLOJdOe2BPvfmoIx2eA,985
258
+ maxframe/dataframe/arithmetic/greater.py,sha256=5lxWrVGp-wcmm3xFbiWFsVwKGHUnpAlWLRnMvd6d-SI,1547
259
+ maxframe/dataframe/arithmetic/log2.py,sha256=Hr5FIsBTxtzCxlqt1cwkMujwTTJ5seP6YYSELg3QyoQ,920
260
+ maxframe/dataframe/arithmetic/less.py,sha256=NBU7UdXRF1a8IHNOgqNyaiTJRGUSc9Tyrm6-wyr5pN0,1518
261
+ maxframe/dataframe/arithmetic/cosh.py,sha256=wEJ4_x_y3kfiAeaSRm7Q0KhjjHDjKg1G6oJEpfw7oeA,920
262
+ maxframe/dataframe/arithmetic/sinh.py,sha256=DhEzpGkxj2zYDSvgLKF6rF5sP7dp-UbWjWQCLmDbpq8,920
263
+ maxframe/dataframe/arithmetic/mod.py,sha256=F6U397-V7OQQSlxAoTO7CP-YDDMi4dDdHhgBsz8Axqw,1702
264
+ maxframe/dataframe/arithmetic/greater_equal.py,sha256=8T8CW_kSKIVSfPItdTs5NtB6JQcPr1Y_UdblwN48jQ0,1572
265
+ maxframe/dataframe/arithmetic/exp.py,sha256=B7RZSR49SRluVfJfXwfGI50s8wBpiKo9tXfISxPSD1w,915
266
+ maxframe/dataframe/arithmetic/arcsinh.py,sha256=PwtG-g8rE-aYmfjla-Guyj98tXQPkj_FbYRcpAceK88,935
267
+ maxframe/dataframe/arithmetic/arccosh.py,sha256=ZoKCSivmprQUx9mDiOVcpeZC9NCHBFbADQduHSSHP3M,935
268
+ maxframe/dataframe/arithmetic/power.py,sha256=qex-AWb0uy7kHGryi2vJwyL_ye8XDVgk3SnQDsYmD7Y,1811
269
+ maxframe/dataframe/arithmetic/not_equal.py,sha256=-ZabKMy7V8tgn7AonTdgKdAxQlpn-L0iRCnXLa2vFlE,1533
270
+ maxframe/dataframe/arithmetic/radians.py,sha256=rdTJ0PUJfJFQDv1iclz2i3nAj9DNTdUJqYix2Tc9MBQ,935
271
+ maxframe/dataframe/arithmetic/sin.py,sha256=8ztWpvcfYPXLGUDQxNFFj8OTI-S2T8g_Wh1DC5Z0-XU,915
272
+ maxframe/dataframe/arithmetic/tests/__init__.py,sha256=YsJxv7HbG4YYJmqAJZPYb8iHFRQX5JGpGn2PInDXvY8,596
273
+ maxframe/dataframe/arithmetic/tests/test_arithmetic.py,sha256=f73zN23-WDeCflMyxJ12zqBjxeq6hErEoxOXV4S5Nbg,25396
274
+ maxframe/dataframe/indexing/reset_index.py,sha256=5oxutzt7-pPAahK6EGkFkhjhoP_gFFVjJe1_i9IU9Xc,13076
275
+ maxframe/dataframe/indexing/iat.py,sha256=2Oxgg16ND8Tbi5tVKu_rqmO8PYMlq1TjBc2fq9umDEs,1127
276
+ maxframe/dataframe/indexing/loc.py,sha256=n51haFUtqKGxcDf-hhPWYOldabQRj1ykOEObzhzY_Z8,15050
277
+ maxframe/dataframe/indexing/align.py,sha256=Ubnckcpe99ihPGeEuN6bORE7d_jhIEJv46b4LsgvTwU,12159
278
+ maxframe/dataframe/indexing/rename.py,sha256=6AVBDCru7HX1cwuvxWNvVu5h1BaNYDeJBP6AiavpBk0,12892
279
+ maxframe/dataframe/indexing/setitem.py,sha256=MNaDihQo9q6nwRaBRboDXeOoDVtvX7Sd6_Tw8UcfLAY,5095
280
+ maxframe/dataframe/indexing/where.py,sha256=SkPf4-wS7FvdB0jqyVDXTC4cEeFNo_pCZGxoz-9sB_U,8652
281
+ maxframe/dataframe/indexing/iloc.py,sha256=Lfc_EX1iiYtlfOcyVWPHy1xdSq8zE5GV5iVOlAVq0B8,17669
282
+ maxframe/dataframe/indexing/__init__.py,sha256=y15QNLqU9xn_bl4W2F-JqlaB1AM_bdILkhNi-IYA16Y,3213
283
+ maxframe/dataframe/indexing/getitem.py,sha256=6LRc68w1GML1-K93TinLLwvA7QsujJuQtRunnLOEDMQ,7837
284
+ maxframe/dataframe/indexing/set_index.py,sha256=omR_cfnV47LFwTev-MyfyC10CmmteU5nzjwxD_PuVy0,4195
285
+ maxframe/dataframe/indexing/at.py,sha256=m1Zl8H4Fit4IaIU5v3gtho2_0jvLog3jn9iNooAP_m0,2217
286
+ maxframe/dataframe/indexing/rename_axis.py,sha256=iE783in_plJuQPLPTCBuIePX-We02Mze7r0YGLHtB04,6578
287
+ maxframe/dataframe/indexing/add_prefix_suffix.py,sha256=XtYVxHDmJmI1XsAxvdD5BgItRMUXfAJjPFJHliVWINU,2966
288
+ maxframe/dataframe/indexing/insert.py,sha256=MPypGv3Hn9lpjEHQNzxcjVOEVTM1bVTDX97MjUDhZFk,3024
289
+ maxframe/dataframe/indexing/sample.py,sha256=jW6Vw4eTaNGnqY-PFx9xL5VpFBjrdsNt43stqML4XlY,8278
290
+ maxframe/dataframe/indexing/set_axis.py,sha256=EhVI8rS6yfxQYELsgto__qaTOpOV7gYZ9_vl2t03b4Q,5623
291
+ maxframe/dataframe/indexing/reindex.py,sha256=Xb2dBhGynwYbrHl297BgVKbIa5P9rEDbgRz-QPrAAww,18978
292
+ maxframe/dataframe/indexing/tests/__init__.py,sha256=YsJxv7HbG4YYJmqAJZPYb8iHFRQX5JGpGn2PInDXvY8,596
293
+ maxframe/dataframe/indexing/tests/test_indexing.py,sha256=J7nmc7k7pCzAz-iolMmDk2hSjWGpY44-Vo5VcmKvRtQ,15611
294
+ maxframe/learn/__init__.py,sha256=fxwG8rpVTQ3cVFqSiQcvkkXtg6xpWHON8IUjeDr-a_A,696
295
+ maxframe/learn/core.py,sha256=JvCSc-WXGgxoUATPgZ5vMADKa_E0MWoNjQOsD9O7CXE,10151
296
+ maxframe/learn/metrics/_classification.py,sha256=plj0QXa_ovj-ObvJTXlshJIeTLOPOylnbekyh7TKUa4,41675
297
+ maxframe/learn/metrics/_regression.py,sha256=i3sIabvpiFwIPxmOc4xzAoUiwDRKXqpwwOVKoqYbZbs,8821
298
+ maxframe/learn/metrics/__init__.py,sha256=VfomRjkJa4i7lUZ2WvVG7H81rxLVZYvBUsa3IzZJ7fQ,853
299
+ maxframe/learn/metrics/_check_targets.py,sha256=IUiTTlDhHxPLKE5kjFxl4s-cIMcVILzWqbmWx61jyhQ,3077
300
+ maxframe/learn/datasets/samples_generator.py,sha256=rrRHoHNzzlKjSnv6Xxd4Y0QS5eLjEkNHcCKKr-pVmQg,21985
301
+ maxframe/learn/datasets/__init__.py,sha256=d9Y7Il4Ii38KYqXQUbtRwnLflpgNPn9Y4Vq912wzbo8,720
302
+ maxframe/learn/linear_model/_base.py,sha256=1prHwbYdTa0QRNp-T332tvYuDf5vdz-NJLV5LPBD1Sk,5330
303
+ maxframe/learn/linear_model/_lin_reg.py,sha256=3Khyc6IhcSoHBtR9-m36jN5EObJsGTVsdEovBdV4QWA,6247
304
+ maxframe/learn/linear_model/__init__.py,sha256=Wv6xpF5f7Nt3Qm410Xz-xC-940RoFna4Oun3jlsMBAA,636
305
+ maxframe/learn/utils/multiclass.py,sha256=NDo3D6cvsoibyoODfD8R38w9pqB7ShUkVgixzOkURms,9042
306
+ maxframe/learn/utils/checks.py,sha256=hBq-vLaJc8Usfpjy98hZG12ZlNQ0HG3AcUz0f7nE37s,5113
307
+ maxframe/learn/utils/__init__.py,sha256=Y1lO_Ab_-HQElm5UWJzqLqh8afU1tTs4GxjKdEvx4Jw,815
308
+ maxframe/learn/utils/core.py,sha256=SquqLL-4L2Vl48K7_VEiI80WEgxtS4PmqAkVi8dBEx8,1634
309
+ maxframe/learn/utils/shuffle.py,sha256=HbHv17gd4OdUXy8FQa-KnInRAOjKFnFdeQxZTm9AwyQ,4321
310
+ maxframe/learn/utils/extmath.py,sha256=niBV86RB01ImGretjqTT2CCwfVfDpOoRpXoxdQDwREU,6489
311
+ maxframe/learn/utils/_encode.py,sha256=9uX8gP9kVP6pOdootrNfaVBNTJz1Cbr_Jh_23nk1O4s,9704
312
+ maxframe/learn/utils/sparsefuncs.py,sha256=KjVClmdDaPzXXprAHpsDsEBmGJdaXmmjvsPnBCxTrqQ,2744
313
+ maxframe/learn/utils/validation.py,sha256=s7TpjAyDvGTe3wKOT71DCq1Iu74tVYH8JiRNJ9Cdc3I,27075
314
+ maxframe/learn/contrib/models.py,sha256=l6IAxAYa2EK4BBnCqIfoNaMjJ_91Wg5nptVRPCHsPz0,3519
315
+ maxframe/learn/contrib/__init__.py,sha256=7ayYHlGHqy5fkl89n3ceoAR1ZHi57sb9FF85PS9Hwpg,676
316
+ maxframe/learn/contrib/utils.py,sha256=Mqm5peCV45D2Q6qF4wZS57GdD2aGlVe03YFBqJ4fAIY,3383
317
+ maxframe/learn/contrib/llm/multi_modal.py,sha256=C6Vq-U8JRUSZMUDsrWt9m1GBPyp9f9V8ZaTzBNhsA9U,5406
318
+ maxframe/learn/contrib/llm/__init__.py,sha256=MBEWoYEQtBpZL070GOh721OYMvH3D2Y5BzyB4_DXZjY,649
319
+ maxframe/learn/contrib/llm/core.py,sha256=Z4s1ZssXCf5ebl-uDxGGlJ3KmXsbAm2wVZvikJZd6BM,2723
320
+ maxframe/learn/contrib/llm/text.py,sha256=Imsg_7cw0XOis4dmTuZTSw1iP0RIRta7rKVjx6TW35Y,9344
321
+ maxframe/learn/contrib/llm/models/__init__.py,sha256=I_l0NIpKILLkpPj_3xOv176QvHTeGstPq4xi688Z40c,661
322
+ maxframe/learn/contrib/llm/models/dashscope.py,sha256=X8FLgZ73U9UW_35wgFfk_2p11sCsDU41rLcy8eo6B2Q,3422
323
+ maxframe/learn/contrib/llm/models/managed.py,sha256=QeJ3J65TepG4CKllvV2kEBSiVJPBm30yhnfp_7QuM0o,1581
324
+ maxframe/learn/contrib/xgboost/callback.py,sha256=k66jfODZLxtwKQOfHYiV9N0bf_Fm8OSUAp2YO_oGZ5A,2690
325
+ maxframe/learn/contrib/xgboost/classifier.py,sha256=qUyC8E_HrARlRiq-2hp3G1GLkxIg2B0e6WEo5fmGnhQ,4011
326
+ maxframe/learn/contrib/xgboost/dmatrix.py,sha256=SYrcXqpr91PG1ZNMFvCBE5Y_NO8sztS0-O3CBWhVEhY,5206
327
+ maxframe/learn/contrib/xgboost/predict.py,sha256=_KjOzqKL-mkH1g_1QDAq0CgrKzKlyJ9YwFMp3XitZnI,4186
328
+ maxframe/learn/contrib/xgboost/__init__.py,sha256=HsVMBBNXBQs2GaHMjuJrMdJRhpTDxQ37Amjc1GH7ESw,1051
329
+ maxframe/learn/contrib/xgboost/core.py,sha256=eW_jrZtj4u1D6H1hZIgUdNOma7zCzbwuyzICbN3kG0s,12218
330
+ maxframe/learn/contrib/xgboost/train.py,sha256=9Gs6aHqpLoIVAgpVvxActabHEv2Mc563_scw6IQ8Zg4,5749
331
+ maxframe/learn/contrib/xgboost/regressor.py,sha256=cVMd44FP_x8bvRKcUOBUGd-gMnyPvK-guBhVUH2Y1Vo,2886
332
+ maxframe/learn/contrib/xgboost/tests/test_callback.py,sha256=W4NZDAIrTZ6aJliPWXlsYgoAMOFpHafPERDGz-hPtfY,1542
333
+ maxframe/learn/contrib/xgboost/tests/test_core.py,sha256=VrWhBeUCXzofVr-QAbtmK4wVeQqV1Erd1Rwj32lNceQ,1406
334
+ maxframe/learn/contrib/xgboost/tests/__init__.py,sha256=YsJxv7HbG4YYJmqAJZPYb8iHFRQX5JGpGn2PInDXvY8,596
335
+ maxframe/learn/contrib/graph/connected_components.py,sha256=pZp_tPhr2Oew4kofOlaLOvKiB6FYpFGohJbcOQ_n1TQ,7173
336
+ maxframe/learn/contrib/graph/__init__.py,sha256=tg-z-cuRHgjwGj9bJVzL5Bs-A32NcSamQUHXfpG8dus,652
337
+ maxframe/learn/contrib/graph/tests/__init__.py,sha256=YsJxv7HbG4YYJmqAJZPYb8iHFRQX5JGpGn2PInDXvY8,596
338
+ maxframe/learn/contrib/graph/tests/test_connected_components.py,sha256=b6IvOvJKm367wbC58KAZwnceeG6cq9Ir9nKoritQycY,1609
339
+ maxframe/learn/contrib/lightgbm/callback.py,sha256=SW0cqhoPuZ9fdoHZBMmjyxILY0f7O3m1IZUUen6vEkQ,3792
340
+ maxframe/learn/contrib/lightgbm/classifier.py,sha256=aAuV-PPjiG6Yf2pdi_ahOzDWdJUeLTAJD90fX8iIN1U,7243
341
+ maxframe/learn/contrib/lightgbm/_predict.py,sha256=-pf1m4q2K2jItizci2bxaS3TZi5KSF5FeJ_c9L8JQns,4375
342
+ maxframe/learn/contrib/lightgbm/__init__.py,sha256=Xr3skhoN7uXE136r_TnRcqa-dOaoRmFAdqmKH6CaS1w,1068
343
+ maxframe/learn/contrib/lightgbm/core.py,sha256=TTL_5YATrx8Hi9nzUez2AuWI1U4EqxjCnQ0XA3YP_RA,11772
344
+ maxframe/learn/contrib/lightgbm/dataset.py,sha256=qOy6KLFLvot2YCKFn_gi2Jfa8d_pDfOoYtctkWtl51M,5010
345
+ maxframe/learn/contrib/lightgbm/regressor.py,sha256=z8FSVy0sqye_41qVhP4tTKpQo_GZt9KSR7OpASWk6UE,937
346
+ maxframe/learn/contrib/lightgbm/_train.py,sha256=0YHObIccoXQ_7zwZTdOsLO23qi4V8PJxJhVe1_E8xtA,5568
347
+ maxframe/learn/contrib/lightgbm/tests/test_callback.py,sha256=_fIzgh2v_oSM6vzrzlXFtUJhy98pNMvAGKQaCNsyiBY,2053
348
+ maxframe/learn/contrib/lightgbm/tests/__init__.py,sha256=YsJxv7HbG4YYJmqAJZPYb8iHFRQX5JGpGn2PInDXvY8,596
349
+ maxframe/learn/contrib/pytorch/run_script.py,sha256=twBB5FkAtfvhYr8G4K09Vu3SugzJ0tqChHJX0DGq2KU,3111
350
+ maxframe/learn/contrib/pytorch/__init__.py,sha256=5XIVR1QprAe0mpkj_HZ-_Tl_SWooIOSK3b3rBIII_qY,687
351
+ maxframe/learn/contrib/pytorch/run_function.py,sha256=gJrPHOGugRaAA7jr8m89XRfy58nDeR0NrIAIlM3vPCs,3244
352
+ maxframe/learn/contrib/pytorch/tests/__init__.py,sha256=YsJxv7HbG4YYJmqAJZPYb8iHFRQX5JGpGn2PInDXvY8,596
353
+ maxframe/learn/contrib/pytorch/tests/test_pytorch.py,sha256=5ZC8SxGjZiSScpRyxie72E_-sHuaV-u2AY4M8vFy2P4,1402
354
+ maxframe/learn/preprocessing/__init__.py,sha256=ilbU8tlFxhs_5gtD119mnyuuAu-ZIJr_BtP1WCQivBI,742
355
+ maxframe/learn/preprocessing/_label/_label_encoder.py,sha256=9_bK6nzKkH7IvtQtXtqQmko5UhHWWikNK_x71Bgd0Io,5498
356
+ maxframe/learn/preprocessing/_label/__init__.py,sha256=_G7GALgaKvimDYN2coWX0LuAMxe9YrLC4-xQnepyOkY,716
357
+ maxframe/learn/preprocessing/_label/_label_binarizer.py,sha256=2e1_tyLHgpIywMki8xtErtJTYWnNrXbE7mtCuIzfiWI,19389
358
+ maxframe/learn/preprocessing/_data/standard_scaler.py,sha256=vgpv6-m3iRji2Ui6pRjPIzRAwujzfr4owFlLzvc5f0g,18238
359
+ maxframe/learn/preprocessing/_data/normalize.py,sha256=U0IodvGbGviSPrWVsXFwXRUk9udiDRcBOUkiZYJjnKo,4436
360
+ maxframe/learn/preprocessing/_data/__init__.py,sha256=E1IFflOcEfqa_pMinbygf26HDTrLpAxrvg9qIslVXnA,736
361
+ maxframe/learn/preprocessing/_data/min_max_scaler.py,sha256=bMbJaJw0LB1pAzL4Ftj_z4AFShHS9F4jntu7gjjXiuc,12636
362
+ maxframe/learn/preprocessing/_data/utils.py,sha256=dzAM2UmZSHpigf1W2XMg2t-HAsZksNTMFIRW6f5sxYs,2871
363
+ maxframe/learn/model_selection/__init__.py,sha256=hr1hzAL5c-1FA8kSocJbzfaPWCdFWbDt3JfoinPCNI8,641
364
+ maxframe/learn/model_selection/_split.py,sha256=p_hmHKEg46_-jpEjvaAGdFmE71leiU7Bx50KPbaP-Kk,16136
365
+ maxframe/learn/model_selection/tests/test_split.py,sha256=fbA0pYK1sB1ajDFaNXC9aKxZLC5JbmC4JzJaV8_tbO0,4983
366
+ maxframe/learn/model_selection/tests/__init__.py,sha256=YsJxv7HbG4YYJmqAJZPYb8iHFRQX5JGpGn2PInDXvY8,596
367
+ maxframe/core/accessor.py,sha256=htuml0N9rF3VAtTitTAqIIVEEb5DZa4D_bcwfQz_PHQ,1482
368
+ maxframe/core/__init__.py,sha256=LAezPKNkPMrREcttR3e9_xkP37tm2SQxT1AHYYRYuKk,1537
369
+ maxframe/core/mode.py,sha256=NABIkrhsArHlHH2ozusVdEet4lryS95ltUZnn0IBZNc,3011
370
+ maxframe/core/context.py,sha256=eYHFQ-chSQs3M-D7jOnVgrqmD8hm2ynUFdjHAvDVkss,2556
371
+ maxframe/core/base.py,sha256=qlIzixwSL-MtAgFdta8j7wydD4KCaehcbH5P0T7aG6M,4535
372
+ maxframe/core/entity/tileables.py,sha256=cXBEJdP8NB8RZjjEpJ2bNAJ3X21d_CfS1R3vRqhiqwc,11395
373
+ maxframe/core/entity/__init__.py,sha256=mKIcm8ffxA4LUwTzwniBPdOSMNIag0XVYPav5J89Kz0,1096
374
+ maxframe/core/entity/core.py,sha256=Itv6FPRZhcnaupL8H7yVHT4llyRzFEf3oo9bSQdAF5U,3846
375
+ maxframe/core/entity/utils.py,sha256=9tj2tU9c1hZEjw-0Eui3gyzR6E4I8s8MR4jF7rGsmBo,1445
376
+ maxframe/core/entity/executable.py,sha256=-MpsiRTSybMrIUw8ifmYn1Zn8FwClKKvZLGhi1a7Fmk,10956
377
+ maxframe/core/entity/output_types.py,sha256=OHRKfvOWMpABBR46E3MBobETlk376mgaNiq2wLpOoA4,2753
378
+ maxframe/core/entity/objects.py,sha256=7oBbZ3mYeEgn3TJFCAdQffPChRk8DK47Yj-wvqyYYd4,4125
379
+ maxframe/core/entity/tests/__init__.py,sha256=YsJxv7HbG4YYJmqAJZPYb8iHFRQX5JGpGn2PInDXvY8,596
380
+ maxframe/core/entity/tests/test_objects.py,sha256=KiUM7EKwN48OvC8jaizpFJ3TVLZWIolQZIgzunpIuMA,1423
381
+ maxframe/core/graph/__init__.py,sha256=1jzaIyQZosmCj7Hw70fNOLcmuaLq6DbKSqi1YSF3aEA,873
382
+ maxframe/core/graph/entity.py,sha256=OKMyU4awrjxGpw6RreXrSpsNXyY1l0A4k7Vpvco63WQ,5195
383
+ maxframe/core/graph/core.cpython-38-darwin.so,sha256=JE81aJWMq14eZc15YOeUNioWrNQ1rTuFZ1ou3bmDwyc,685872
384
+ maxframe/core/graph/core.pyx,sha256=2P9KckxokoUwSOWIeyxB6VJOjdcBdi__KorxLG5YUQU,16104
385
+ maxframe/core/graph/tests/__init__.py,sha256=YsJxv7HbG4YYJmqAJZPYb8iHFRQX5JGpGn2PInDXvY8,596
386
+ maxframe/core/graph/tests/test_graph.py,sha256=bLHOAiPQ_eMfnlpRgY1VRQnSvjoiCe1NamILiQcneFc,7462
387
+ maxframe/core/graph/builder/__init__.py,sha256=dKs7S7e1GH-fy4LKfR6yAJHKLDkOhewCn9a1jZ7wTkY,640
388
+ maxframe/core/graph/builder/utils.py,sha256=wgpWSdfYekvcdXT86VZmHV3TKMq42k2pv332xs-1wKo,1316
389
+ maxframe/core/graph/builder/tileable.py,sha256=x-HHhoJ3I5TN-ZnNuaa0tq0aP1hUzywG-ixObry0BrY,1173
390
+ maxframe/core/graph/builder/base.py,sha256=mu2KodJ0nNK4Wv2uJT9nmEEAnu4oWC1ig_KchBLOZVw,2621
391
+ maxframe/core/tests/__init__.py,sha256=YsJxv7HbG4YYJmqAJZPYb8iHFRQX5JGpGn2PInDXvY8,596
392
+ maxframe/core/tests/test_mode.py,sha256=DUEuDy4HuKMxB-D-8qg10Uh4zTHJZqLOcpwRFWSx7lA,2432
393
+ maxframe/core/operator/fetch.py,sha256=Ie2rkI-FHxBad_y23b85WJm5E5MAvKiQGKOS9Jd3SEM,1371
394
+ maxframe/core/operator/__init__.py,sha256=lP5MnQc5nqZs6Ywg4Q2CoMkRP3NsgO6fqamlRDPciMI,1089
395
+ maxframe/core/operator/core.py,sha256=D2e8RU75-MRk7-2UAlM4Tx69Bu7sFMHEDHb-_QjACYU,10022
396
+ maxframe/core/operator/shuffle.py,sha256=7yjkAq2D0ByU7Uw5o-WyW9rCbCUoxnH9h2r0uO2qk9k,1801
397
+ maxframe/core/operator/utils.py,sha256=QeeLO8013Od4LkvlI2-VajkBKqqD0VQiYztojqUkw5M,1706
398
+ maxframe/core/operator/objects.py,sha256=ieJW2EsXm6hCyETbzYPE5ZKtkaMsZRWOEDvL3irenSI,1395
399
+ maxframe/core/operator/base.py,sha256=USFcJ30H8cPxVd3cgsVA06w4Qv-vKkZLlBjIsVHtRUs,16156
400
+ maxframe/core/operator/tests/test_core.py,sha256=wBUmt-if0yOTPX22bvMYOVH0ltxj7Jac3mAyOG2Oslk,1691
401
+ maxframe/core/operator/tests/__init__.py,sha256=YsJxv7HbG4YYJmqAJZPYb8iHFRQX5JGpGn2PInDXvY8,596
402
+ maxframe/config/config.py,sha256=p4gtE8-73fPf2yPtvMf_1UUngofH6qYlnwEKctGqGj0,17460
403
+ maxframe/config/validators.py,sha256=m1DMvljF_2RWuB6u230AIBKSI_Ww7oqZOR_UlAg54cM,2616
404
+ maxframe/config/__init__.py,sha256=wxR1LzWT15vQDv12MFazycX2fwdMLGZLrqcpuEFqFck,656
405
+ maxframe/config/tests/__init__.py,sha256=YsJxv7HbG4YYJmqAJZPYb8iHFRQX5JGpGn2PInDXvY8,596
406
+ maxframe/config/tests/test_validators.py,sha256=hf1ibJpBA0mVuc-ne-F1s6GLrYF3xQ1GFqtOELXYt48,1240
407
+ maxframe/config/tests/test_config.py,sha256=DfNGfb_nhTBAvg_jqBPBVSG4z0PzjXlwmur70TUPMCI,3219
408
+ maxframe/serialization/exception.py,sha256=1Vv2o4LYaTPzuTGx_1f4c4qGGLChqUEbmvkVfC72vcQ,2993
409
+ maxframe/serialization/core.pxd,sha256=1fF5QiN1W45ZdBLdyo4DLBheBhqOmz43Ph2z7dVYoGU,1530
410
+ maxframe/serialization/pandas.py,sha256=PJf-ceGUpXBXQluRlQ6RDmSCPKQT8mf23mQzI5FRMRA,8633
411
+ maxframe/serialization/core.pyi,sha256=n5VtRZOVHU0jiDNpKVM6CtqJYWFD0kjPMgpzjO9D08k,2261
412
+ maxframe/serialization/arrow.py,sha256=A1gDQ7BmsLk_57qPd34e5SIMSqbuMZrfKsixLtHrpeg,3418
413
+ maxframe/serialization/__init__.py,sha256=HLNqwNIamJgsiCv8yuDNrtJLY2_SZPyW3xCWrci_rJ0,998
414
+ maxframe/serialization/maxframe_objects.py,sha256=Ha2pFpBivutH_YES1EQN-zpWu3TbKtotJHiuc8Cs8S8,1365
415
+ maxframe/serialization/numpy.py,sha256=IbNaCDceyG7Bl3d_rT2NRnB0OaaWo82h1tycjiF2YZ8,3540
416
+ maxframe/serialization/scipy.py,sha256=W4P_r-4tAGGfVAFhwqcaHBxdW-dpZ6rIMLuppQzMXjo,2427
417
+ maxframe/serialization/core.cpython-38-darwin.so,sha256=LODYBa8joASzd68N-DtbCzPTOYxc0ppHyUshiqUpGQU,1233264
418
+ maxframe/serialization/core.pyx,sha256=dMVZPqMYvAGMklImTIxQBZfG9pwkmJxzAo4G140RmrY,38585
419
+ maxframe/serialization/tests/test_serial.py,sha256=UBdBo41pAGSmApOYbMue5DZ-dliZ8FkmUctT8jy0QWo,14031
420
+ maxframe/serialization/tests/__init__.py,sha256=YsJxv7HbG4YYJmqAJZPYb8iHFRQX5JGpGn2PInDXvY8,596
421
+ maxframe/serialization/serializables/field.py,sha256=MRZHAqtDwt8iutTV8lH4bWMH4AjE1ilFSbUpj4ZLliM,16013
422
+ maxframe/serialization/serializables/__init__.py,sha256=nPvrC735pSrvV2kKSb7SQ_GMlVEfZiQb0svsla1_mpk,1351
423
+ maxframe/serialization/serializables/core.py,sha256=6oyargx9bCUG0R7cSsfFBDKhc8BezAopEDlqZQQYUS0,16999
424
+ maxframe/serialization/serializables/field_type.py,sha256=6dVvesMhxWc6gtkcp_uDm4GasLxhs9HnR1vWRQtub8I,14933
425
+ maxframe/serialization/serializables/tests/test_field_type.py,sha256=KwsN4yyyS2inFDBbb882lLkrmRX09TT9A0yWKY-NUmA,4333
426
+ maxframe/serialization/serializables/tests/__init__.py,sha256=YsJxv7HbG4YYJmqAJZPYb8iHFRQX5JGpGn2PInDXvY8,596
427
+ maxframe/serialization/serializables/tests/test_serializable.py,sha256=RwbUv0VDJdsyMuYaCmueQ0brFtZuIC84gn6xYw_YBMQ,10694
428
+ maxframe/io/__init__.py,sha256=YsJxv7HbG4YYJmqAJZPYb8iHFRQX5JGpGn2PInDXvY8,596
429
+ maxframe/io/odpsio/tableio.py,sha256=2agl5Sbq-WCq7LPIaV17srZYSGUaQppjTq8FOuTBdhM,24831
430
+ maxframe/io/odpsio/arrow.py,sha256=Wf4XReyY50O-jxnFBpdta1zS-ABGh7JFoP78A1zS_h4,6644
431
+ maxframe/io/odpsio/__init__.py,sha256=P4CtAyeOmu5u1J8_tNPrSSY5jB3hBciC5c8N8PUmKsk,917
432
+ maxframe/io/odpsio/volumeio.py,sha256=9HcDvl87qkVM0cd_mSINBGGkLifp7NALK_M_M0RIxkc,3381
433
+ maxframe/io/odpsio/schema.py,sha256=20PjFh6D3D84dLNKkMSqSXO_oHfvdPhPPnGUTBAUh0o,16817
434
+ maxframe/io/odpsio/tests/test_tableio.py,sha256=m9ACNirwoPbxZP3pLtIYyXYCkUEyldCQ51hrGzkZXLc,7118
435
+ maxframe/io/odpsio/tests/__init__.py,sha256=YsJxv7HbG4YYJmqAJZPYb8iHFRQX5JGpGn2PInDXvY8,596
436
+ maxframe/io/odpsio/tests/test_schema.py,sha256=Y-Qc4N0z1dic1FT_sppxyQAnGXkVWzzikmlZ3c7judc,18486
437
+ maxframe/io/odpsio/tests/test_arrow.py,sha256=OTlIobm_TprI-LCdq-z9OT65H1L9Zt8bfImcHYg-MzE,4450
438
+ maxframe/io/odpsio/tests/test_volumeio.py,sha256=amai2vlGvtFOCOVou8ZQ87wfoZuQfIBCSepw_9w4qXc,2339
439
+ maxframe/io/objects/__init__.py,sha256=MPpsLluYCLU7chOY9pauznYk_PHJqVbKns6sjdGFLFk,754
440
+ maxframe/io/objects/core.py,sha256=bWlnncGLSa9f3_YIDhEA-7XTMjpSBX0oXeAhvsqTgUw,5303
441
+ maxframe/io/objects/tensor.py,sha256=GC19xpremk8awz530OcAplGpyrnWf5HoyapGfZdR0hw,4654
442
+ maxframe/io/objects/tests/test_object_io.py,sha256=a5kFyYMveAoMaPn-QbfUzgIJgMgW2gZR_DEEFsT1fAk,2591
443
+ maxframe/io/objects/tests/__init__.py,sha256=YsJxv7HbG4YYJmqAJZPYb8iHFRQX5JGpGn2PInDXvY8,596
444
+ maxframe/tests/test_utils.py,sha256=NovUVZmLnh9AaZLC9M9MQ1z8r9KXkajCK1E8dITrFUE,18539
445
+ maxframe/tests/test_protocol.py,sha256=bKfuDfN0B0DatPpDs2na6t9CNoh0N6UdhZpchjnln4o,6121
446
+ maxframe/tests/__init__.py,sha256=YsJxv7HbG4YYJmqAJZPYb8iHFRQX5JGpGn2PInDXvY8,596
447
+ maxframe/tests/utils.py,sha256=fpgi5Kui-TaHVzLgppXCR4IMvEMjl131Uyf3ShThe2Q,7003
448
+ maxframe/codegen/__init__.py,sha256=xHY0SUB8nLeqnwaw42RBw08AWrp86R_ubsQzkwlG8-I,865
449
+ maxframe/codegen/core.py,sha256=fenVW3Ft0WCG3rjGaBqtF9IW4PqNHxWA1IbgVy-swLY,20215
450
+ maxframe/codegen/spe/remote.py,sha256=W3EwT5uwsbf6nRtCdanAD4RTDdbI8Of-POCC9UD23eQ,1254
451
+ maxframe/codegen/spe/__init__.py,sha256=okS1N8ei8xvlLLNVToDiMNWcOuqSEXr4xoxAg4FqBls,688
452
+ maxframe/codegen/spe/core.py,sha256=l2QvEVp_VzFNB-rQPupxLsgaLY2XkF2CoCoWSAo1vZc,10545
453
+ maxframe/codegen/spe/utils.py,sha256=deUrkoMo6IejKyKkr90mK7Ky_auX6porpF_heOm40pA,2011
454
+ maxframe/codegen/spe/objects.py,sha256=6D0qIQdOlk4RnB8RIA0Z8w65tn4rLBj8ETykccL8SPY,1043
455
+ maxframe/codegen/spe/dataframe/fetch.py,sha256=QERcNnGxiLSgdhAYpZeecP_1t9dhsIgFpQXK24tmlDU,1051
456
+ maxframe/codegen/spe/dataframe/arithmetic.py,sha256=4wDKlMw-rXWQOZVEflLlXwVANzpSuQteepjOKzhQ3Lk,3403
457
+ maxframe/codegen/spe/dataframe/misc.py,sha256=4sExeLfiGjxwSu5DXlIJChea3KmI5HFI_xYUF1WUGpU,11247
458
+ maxframe/codegen/spe/dataframe/missing.py,sha256=_e8R5nYRwCg8Oawcxq7rPcmuSNlfcFf0dcQVR7ldkYU,2812
459
+ maxframe/codegen/spe/dataframe/merge.py,sha256=mozCd86LCfMaMFxTt3dLdFdOXbBE1gDMY2iw63zKpFU,2761
460
+ maxframe/codegen/spe/dataframe/window.py,sha256=IidMfs1m3TjHdQ0fgCmfTfcgufYZ9PLrEi3yAPQlNX0,2947
461
+ maxframe/codegen/spe/dataframe/reduction.py,sha256=TFlRyMisVcT73oRgd574x9JVl32eoYNeOGN1NA7m1lQ,5254
462
+ maxframe/codegen/spe/dataframe/sort.py,sha256=ZMvuSPg0f53IhqlKogSur1RRj8XHYTCNi7lRbjRNFvE,2781
463
+ maxframe/codegen/spe/dataframe/__init__.py,sha256=2Q86asDgb2oo1kKpEi8H-1eyqUBB1Ddnmn8cpvmvo4Y,896
464
+ maxframe/codegen/spe/dataframe/datasource.py,sha256=altNY_hoxSxzQ8Z0QYLU7Utn_iOdvbWnpQMjecuw-DQ,6759
465
+ maxframe/codegen/spe/dataframe/extensions.py,sha256=gj0i65bUS3LCTVWXDZABgZRy4jmw6wXTyZqeHy56Oz4,2779
466
+ maxframe/codegen/spe/dataframe/statistics.py,sha256=WBMNkQqx84IyHCzKqlD80-CUgR6i3AcSpPU4Y7AwbY4,1787
467
+ maxframe/codegen/spe/dataframe/tseries.py,sha256=2XW9HH2H5YlcvZgKhixYoEr8z076M48vjQsaWwLUKt0,1816
468
+ maxframe/codegen/spe/dataframe/udf.py,sha256=q7b6kEvHMkLd3-RuOhpX5AdQtDYIMOO2j1cDjXEULBs,2127
469
+ maxframe/codegen/spe/dataframe/indexing.py,sha256=Sz6gpO37jKxfEid0jbsC8XBEup0M-NvOf4GpuJGpvqU,9544
470
+ maxframe/codegen/spe/dataframe/value_counts.py,sha256=XyyJRcrT_5DshId-st_Bh2qnNrto8m6tqiB6-WFgn8c,1354
471
+ maxframe/codegen/spe/dataframe/groupby.py,sha256=dJgvT5-cACDktukwlmDBYZsOzdi2upwwFHngSzXQwz4,9525
472
+ maxframe/codegen/spe/dataframe/datastore.py,sha256=npfs_au_az0p6lyCAm4AmxZYFMZbHHYebXfbvdJ77TQ,8111
473
+ maxframe/codegen/spe/dataframe/accessors/dict_.py,sha256=foy0qrCl4zgbww6qeNR9HVsfuYKxmwqW4p0vB4j5n_8,7411
474
+ maxframe/codegen/spe/dataframe/accessors/__init__.py,sha256=JdWwxGimtqrbrN8USfnv4PeRpF6M5lHrUOyKfRikvoI,630
475
+ maxframe/codegen/spe/dataframe/accessors/list_.py,sha256=K713_cmpE5fQsQi8mdjMjYpWlecbnI9rDH5y2fVyomw,3103
476
+ maxframe/codegen/spe/dataframe/accessors/base.py,sha256=I9-mTTTSNuGA-QB4GEtvV8X9DNgyc7HbVQSe_S-mu7w,2179
477
+ maxframe/codegen/spe/dataframe/tests/test_value_counts.py,sha256=ljzH0DnSiMGpBaY0uA1P6JS4UIro1aN2xCifq2_k7kk,2010
478
+ maxframe/codegen/spe/dataframe/tests/test_statistics.py,sha256=W8NYJQ2DIL30oK1Aer5rPjBW9tm50NM8Swv59V_N9Qo,2271
479
+ maxframe/codegen/spe/dataframe/tests/test_extensions.py,sha256=oyTaxhMP8ryzBoWexAueG2_PQtzyw1fhXHIxhUZXTWE,3082
480
+ maxframe/codegen/spe/dataframe/tests/test_datastore.py,sha256=2BoBnyzj65AdwGsVQEiVx_M7ddjknGIsqhYBzQh1uZw,7007
481
+ maxframe/codegen/spe/dataframe/tests/test_datasource.py,sha256=4bMzo_0pwWZGRKz_k_Z99I8sWPiwgEJqf_s6IarvMbg,7136
482
+ maxframe/codegen/spe/dataframe/tests/__init__.py,sha256=YsJxv7HbG4YYJmqAJZPYb8iHFRQX5JGpGn2PInDXvY8,596
483
+ maxframe/codegen/spe/dataframe/tests/test_sort.py,sha256=IkUIbYw2EgwTCg86UTCOXkVYqWGLQrhyk8fa3yhwpNQ,5276
484
+ maxframe/codegen/spe/dataframe/tests/test_reduction.py,sha256=Q-YBNvJjCadl-uDkq_uLN6MFIpuDIyDJyqChfJ00UgQ,3407
485
+ maxframe/codegen/spe/dataframe/tests/test_merge.py,sha256=R3R949XEZTr3Y0FlHn8u8rcC7vFqY9cDjwxKRJkS-x4,12949
486
+ maxframe/codegen/spe/dataframe/tests/test_window.py,sha256=3q6lWsxCrvDd24mZHHS6_Ddb88FBu8ZVFHrZAPTQAN4,2275
487
+ maxframe/codegen/spe/dataframe/tests/test_groupby.py,sha256=l87QElAk-2_dCGJ2UHYRoHPBsc1O040YONjmU8p60jg,7869
488
+ maxframe/codegen/spe/dataframe/tests/test_arithmetic.py,sha256=uBoDXIGYJ7i_CsYw7pZkOvirQw5zPYYP1zDELTsQm_o,2639
489
+ maxframe/codegen/spe/dataframe/tests/test_tseries.py,sha256=n-IgozLlwjZ6zRLky3RgdDNsBM6yJ1-pO6sZTgznV0Q,1234
490
+ maxframe/codegen/spe/dataframe/tests/misc/test_misc.py,sha256=e35z0OGwwqeeiUdRqNxbJVV4Y-tPWdeadhLhh8L9NDI,7302
491
+ maxframe/codegen/spe/dataframe/tests/misc/test_drop_duplicates.py,sha256=ZjuBexbLQ4oM8ooQ8qemw04Hr-yNTVDrTC9YxF6cKQ0,2620
492
+ maxframe/codegen/spe/dataframe/tests/misc/__init__.py,sha256=YsJxv7HbG4YYJmqAJZPYb8iHFRQX5JGpGn2PInDXvY8,596
493
+ maxframe/codegen/spe/dataframe/tests/misc/test_apply.py,sha256=1CHLT7KQI1YkOiNI6BZ6jEiTsAtkNf82N904HZy6M0Y,4380
494
+ maxframe/codegen/spe/dataframe/tests/accessors/test_list.py,sha256=YNoNfs6kj4R2PAXkafzSq0KQDRf2JergacustwF-76I,3836
495
+ maxframe/codegen/spe/dataframe/tests/accessors/__init__.py,sha256=YsJxv7HbG4YYJmqAJZPYb8iHFRQX5JGpGn2PInDXvY8,596
496
+ maxframe/codegen/spe/dataframe/tests/accessors/test_base.py,sha256=tuh_gXmxvfH6azymWg2-PJgA6E2eRGEzAmiKyGjYFPQ,1266
497
+ maxframe/codegen/spe/dataframe/tests/accessors/test_dict.py,sha256=O_M387mxhFS7Ym1sPfuTmNcJLADlDnSjHOm0Zqs8Qrg,8890
498
+ maxframe/codegen/spe/dataframe/tests/missing/__init__.py,sha256=YsJxv7HbG4YYJmqAJZPYb8iHFRQX5JGpGn2PInDXvY8,596
499
+ maxframe/codegen/spe/dataframe/tests/missing/test_checkna.py,sha256=mcBK76t_lRlHEy671biWr6Er_tEnzcBwQjyZoDmzXDU,2940
500
+ maxframe/codegen/spe/dataframe/tests/missing/test_dropna.py,sha256=bhRto8o9NqOKKTEBH5zwzZRE54VZzqtn7w4J0gKTsWM,1718
501
+ maxframe/codegen/spe/dataframe/tests/missing/test_fillna.py,sha256=Ntjk_oB-jHbHk8SWQAuRA8_P2dnwAYHWWHxZXA41jZQ,3025
502
+ maxframe/codegen/spe/dataframe/tests/missing/test_replace.py,sha256=mlDaS9CgQkd4eU9pj0ur4rFkJmVxajz15hvioMvynmU,1557
503
+ maxframe/codegen/spe/dataframe/tests/indexing/conftest.py,sha256=7j8sAMBJW5qHOeNdmoGPY7ku1aaJAaKvPHXHH_QhbJw,1481
504
+ maxframe/codegen/spe/dataframe/tests/indexing/test_sample.py,sha256=wl-tlYVXjLO0C1hRCjXjJFyXSzRRp0bqCtj4qP5IYkM,1721
505
+ maxframe/codegen/spe/dataframe/tests/indexing/test_reset_index.py,sha256=W3tn9D5MSX2iJXycKVA4U_DPAvKg7OZCGynPaLRRB1k,3112
506
+ maxframe/codegen/spe/dataframe/tests/indexing/test_getitem.py,sha256=T9bt9xIoxY1UfzWyE4J-nStnMSWdduNZMwEEAmm5XXA,4471
507
+ maxframe/codegen/spe/dataframe/tests/indexing/test_setitem.py,sha256=SvmGRVtPSZEkcDw_HduPVxYJbnIpnTDTufuoH_7ZtOg,1707
508
+ maxframe/codegen/spe/dataframe/tests/indexing/test_iloc.py,sha256=92BeKCQqrJjNQiKnYq4MNsy6aGeZ4RTIYAS2rJ8ooAk,2697
509
+ maxframe/codegen/spe/dataframe/tests/indexing/__init__.py,sha256=YsJxv7HbG4YYJmqAJZPYb8iHFRQX5JGpGn2PInDXvY8,596
510
+ maxframe/codegen/spe/dataframe/tests/indexing/test_indexing.py,sha256=vMn-cNJkV49M0Q4qjrJtVk2IjDFbcQCba3-kh8_Li0k,1447
511
+ maxframe/codegen/spe/dataframe/tests/indexing/test_set_axis.py,sha256=R1NJFASCyGZN99BLs9hgVO4vt0SUxSrDOHz5mIg0Esw,1627
512
+ maxframe/codegen/spe/dataframe/tests/indexing/test_rename.py,sha256=UmZ4J8YHWpwhxxiuLh8ozcZzrdKeuEM0dYCxkdgVIQo,1867
513
+ maxframe/codegen/spe/dataframe/tests/indexing/test_set_index.py,sha256=3AXDlLRkUka3d-uOCc5a5gQienbogpm3QYi4T88PhO0,1457
514
+ maxframe/codegen/spe/learn/__init__.py,sha256=8xMcRbU54OUaqauoxm9UNRo2C7hb418FQlsBpSZbXXU,650
515
+ maxframe/codegen/spe/learn/metrics/_classification.py,sha256=41JuDrz5FNNRfyqKYUZnt9jL5AS3IxUTXlifEAGH7AU,4249
516
+ maxframe/codegen/spe/learn/metrics/__init__.py,sha256=nV_oeSgrFfDu20Ig5-OAueMlxb1RoQKoSxwJWmWhwG0,627
517
+ maxframe/codegen/spe/learn/metrics/tests/__init__.py,sha256=YsJxv7HbG4YYJmqAJZPYb8iHFRQX5JGpGn2PInDXvY8,596
518
+ maxframe/codegen/spe/learn/metrics/tests/test_classification.py,sha256=MUSoYOv322q0VhtpeolqtvADlSoc1aGKGw60t2fdiho,3368
519
+ maxframe/codegen/spe/learn/utils/multiclass.py,sha256=h6aY2di1lKi0KQvTraT-V8JsGElS7LP5gyP4uLOgWgw,2433
520
+ maxframe/codegen/spe/learn/utils/checks.py,sha256=qk4G5iz-aOaGNgg_WWdYaH6XrBJakE0NYi-maegBhic,2199
521
+ maxframe/codegen/spe/learn/utils/__init__.py,sha256=JXp0y5mcVVhsprGgaLr4XFNGgOqGRYGLeukExgJh2ns,655
522
+ maxframe/codegen/spe/learn/utils/shuffle.py,sha256=6U_UcI-NiwoYjaxqLS_UN2vtY35L12svpSztj6QDdO4,3849
523
+ maxframe/codegen/spe/learn/utils/sparsefuncs.py,sha256=aa7xjdPcbNbDVl87B4Bvwb_ijQTAE-lsWSVhNtfK7lg,1391
524
+ maxframe/codegen/spe/learn/utils/validation.py,sha256=KbcOYGxFQTzflU1zzAmn_jqykniu5nBNQq5RXcpyrs8,1525
525
+ maxframe/codegen/spe/learn/utils/tests/test_validation.py,sha256=N3HaGx7aBYJ-tAHKyraxVW9yem9gFaHDHJPPHEJtczU,1572
526
+ maxframe/codegen/spe/learn/utils/tests/__init__.py,sha256=YsJxv7HbG4YYJmqAJZPYb8iHFRQX5JGpGn2PInDXvY8,596
527
+ maxframe/codegen/spe/learn/utils/tests/test_multiclass.py,sha256=9E4XT1FDKk0lkHHGsKziVrvHcpjif3hUdNvfXqxk6C8,1826
528
+ maxframe/codegen/spe/learn/utils/tests/test_shuffle.py,sha256=H48bEgLqXo-_Iej8zQQqN42qo9TiI_iY6nFgike-y-8,1937
529
+ maxframe/codegen/spe/learn/utils/tests/test_sparsefuncs.py,sha256=OJYc4vQMQGl6Mbvb8kFwctZtLrwFVdyHrsQzVOyVbNc,1167
530
+ maxframe/codegen/spe/learn/utils/tests/test_checks.py,sha256=RM-r6uti_95mS5ECmRsPJ01IGDoHil2wzPykNgEyA2I,1653
531
+ maxframe/codegen/spe/learn/contrib/lightgbm.py,sha256=Vl881BeRFjTDkOZTlvBzessM3JXJkEb0I-vH52p_2Y8,5663
532
+ maxframe/codegen/spe/learn/contrib/models.py,sha256=I6X5vGEJvJZwZVqgMnXeBPqzQ6JF3BFJa1QYDxViF30,1779
533
+ maxframe/codegen/spe/learn/contrib/__init__.py,sha256=l_GYxlFugI5Wm9DzBRlAdrXQX-d3sfuc_lxiFj9S8iM,646
534
+ maxframe/codegen/spe/learn/contrib/pytorch.py,sha256=6TI3kgsA4OLdkTHhkHMtBw1UY_QBovhnARr7ibA379o,1898
535
+ maxframe/codegen/spe/learn/contrib/xgboost.py,sha256=TyA42QfjeZz_v5zA3Ij0lOyh0RbLyPStVxHp-mT175Q,5243
536
+ maxframe/codegen/spe/learn/contrib/tests/test_lightgbm.py,sha256=IZu3RvPjX9b2WYqq-P48Qtr5b3r3Gpol3BvFJc7tZL4,4459
537
+ maxframe/codegen/spe/learn/contrib/tests/__init__.py,sha256=YsJxv7HbG4YYJmqAJZPYb8iHFRQX5JGpGn2PInDXvY8,596
538
+ maxframe/codegen/spe/learn/contrib/tests/test_pytorch.py,sha256=rt9-ZdT54J-l8cVv0KW3wofk4n17xMkYVRHDorhRMQ8,1564
539
+ maxframe/codegen/spe/learn/contrib/tests/test_models.py,sha256=1AZDcmlzF6lOsTdqzx1teLfux7Q1DUsLSIE36B23Rfc,1362
540
+ maxframe/codegen/spe/learn/contrib/tests/test_xgboost.py,sha256=QndQSDd44lTr7gvJ6BYHlduoGgT9kmUCe-aeHqJ14Dk,3620
541
+ maxframe/codegen/spe/learn/preprocessing/_data.py,sha256=AHuTCBMWKasNip7niwTSY0Fe_bPeQYH5a2j9SjI6xSk,1453
542
+ maxframe/codegen/spe/learn/preprocessing/__init__.py,sha256=iADIZIGEYpEBk2jr2u5arkmGvFeF19tX8oCLMskYLOM,617
543
+ maxframe/codegen/spe/learn/preprocessing/_label.py,sha256=eo2sUNegsBfLq_lPEql0HayWSDWX2vuDi8zwqkGjidI,1886
544
+ maxframe/codegen/spe/learn/preprocessing/tests/test_label.py,sha256=czbir8odgMJ3n2U5kZ9YXMI2gR6RsrBVnE8uKlqdw6U,1582
545
+ maxframe/codegen/spe/learn/preprocessing/tests/__init__.py,sha256=YsJxv7HbG4YYJmqAJZPYb8iHFRQX5JGpGn2PInDXvY8,596
546
+ maxframe/codegen/spe/learn/preprocessing/tests/test_data.py,sha256=k0ZSooHYuRyxDoP9eqgUnwBCggAwWWyzgztfbzG6y7E,1133
547
+ maxframe/codegen/spe/learn/model_selection/__init__.py,sha256=YsJxv7HbG4YYJmqAJZPYb8iHFRQX5JGpGn2PInDXvY8,596
548
+ maxframe/codegen/spe/learn/model_selection/tests/test_split.py,sha256=Zc_5GBRY7c7AguBfLqcZU2Kk2GzeHJiLY5X3EbHMXuI,1664
549
+ maxframe/codegen/spe/learn/model_selection/tests/__init__.py,sha256=YsJxv7HbG4YYJmqAJZPYb8iHFRQX5JGpGn2PInDXvY8,596
550
+ maxframe/codegen/spe/tests/test_spe_codegen.py,sha256=ofe5sZE-hcPRn-4wrjgHqBJbWHPcL43-g-vth9zZdiU,4242
551
+ maxframe/codegen/spe/tests/__init__.py,sha256=YsJxv7HbG4YYJmqAJZPYb8iHFRQX5JGpGn2PInDXvY8,596
552
+ maxframe/codegen/spe/tests/test_remote.py,sha256=bYAjPUXrDme8rMHG93Kqktnbr7_vnGq2B89RtsR_i6A,1031
553
+ maxframe/codegen/spe/tensor/fetch.py,sha256=sQQMwgVjFlPXoQ4bNpx2yl5hoOq2XPA1YvRcMIGNAwQ,1036
554
+ maxframe/codegen/spe/tensor/arithmetic.py,sha256=ZCqagjY-D0q_0BMmi3r8rohaqyDSr4dh9OTcuECIZGM,3662
555
+ maxframe/codegen/spe/tensor/misc.py,sha256=PFBuUyR1kooXMLJwiNTO_YDU74ruQ_9R8lLIVmjcKwQ,4062
556
+ maxframe/codegen/spe/tensor/merge.py,sha256=2hM3dxFSFT3XXppz_6mB5FqEh9-NXEFQO8SJ_z_mQdc,1384
557
+ maxframe/codegen/spe/tensor/reduction.py,sha256=UiO57E4nmlUKIDjxfnYWAiXu5hQTh3xFkHaalmJn9g4,1486
558
+ maxframe/codegen/spe/tensor/sort.py,sha256=b55Ul7E6K74jlN7HH5eqf42iDC88llU2hOMhvhjaySs,1608
559
+ maxframe/codegen/spe/tensor/reshape.py,sha256=mwU9FCQRZM5G6FkMa2O34gzAwaRnBboHUwVl0oH5YMg,869
560
+ maxframe/codegen/spe/tensor/__init__.py,sha256=XXahbQNBEgCqa9n7ltv24Px8aO0JTX8TjnPyEgbaK60,774
561
+ maxframe/codegen/spe/tensor/core.py,sha256=VAktRFtN3Neap2PYFkDDOAca74LNAw_PSalsy9goM4I,1531
562
+ maxframe/codegen/spe/tensor/random.py,sha256=iAKwjv5dtOAcn5nKJZDnRga271vlMLdqJ6mPsR1cosU,1276
563
+ maxframe/codegen/spe/tensor/datasource.py,sha256=2o3F3wy_A1FpjMEWWckVlAmimR5LLVog9XSNYLyxDlg,6250
564
+ maxframe/codegen/spe/tensor/extensions.py,sha256=dvORRucZYf8higMgjZ2ru938XD9d_Fw0Waaj0l0fIm0,1509
565
+ maxframe/codegen/spe/tensor/linalg.py,sha256=61Hwg6N35JIJ_OT1BvfAv5iiISPJYN3BMxpItoc4M6k,2281
566
+ maxframe/codegen/spe/tensor/statistics.py,sha256=bAmugNENewXsXu4LuqyppyPmg3mp5KSXPj0WLf1msik,860
567
+ maxframe/codegen/spe/tensor/indexing.py,sha256=YIBUksWANMJmIfgyeZ7gMlbsRJHGu_a1Pt5ion1DevA,2349
568
+ maxframe/codegen/spe/tensor/special.py,sha256=6kqD8m_h4yDnNswouogCNZZK9yaFoMquf_pTieZWyk4,1261
569
+ maxframe/codegen/spe/tensor/tests/test_linalg.py,sha256=TjQmeyQPuztnhpTxMuc9G431uk7iArLcPXXsE9uvI_A,1406
570
+ maxframe/codegen/spe/tensor/tests/test_statistics.py,sha256=w5CwfL_J_VB8TDcnpx085Vc017-6C7EF-z9ZUuL4yd8,1117
571
+ maxframe/codegen/spe/tensor/tests/test_misc.py,sha256=urKFqDWfeVzpy6x0Gnl2ltZtsr-PvK5QubMQapvAkDU,3210
572
+ maxframe/codegen/spe/tensor/tests/test_extensions.py,sha256=SumQwhUwGgJcNlgJjG3XNdDY-T1CuT71U2Rbgihl5R0,1389
573
+ maxframe/codegen/spe/tensor/tests/test_datasource.py,sha256=QucUPFBHc7Ywh3WB8Pd3_iZxuFCT4x88WyVvE-oF3hc,3374
574
+ maxframe/codegen/spe/tensor/tests/__init__.py,sha256=YsJxv7HbG4YYJmqAJZPYb8iHFRQX5JGpGn2PInDXvY8,596
575
+ maxframe/codegen/spe/tensor/tests/test_reshape.py,sha256=lLV0MXz3dQPf-sInJu852Ukbxd6l6OeTRb3g5FySImg,1465
576
+ maxframe/codegen/spe/tensor/tests/test_sort.py,sha256=yUB2PILCrLKCgqqqJBIVTzI-MP2Ur5ZNOnvZRwSlBBo,1883
577
+ maxframe/codegen/spe/tensor/tests/test_indexing.py,sha256=8fu26YNOltoCV3Vuho4-Ab_bd6AZSPitO181k9n2fEY,1481
578
+ maxframe/codegen/spe/tensor/tests/test_reduction.py,sha256=xMh7TYFMY-V0FLovF1GNnaeRNtNmPXcKZVUEC6cxDF8,2032
579
+ maxframe/codegen/spe/tensor/tests/test_merge.py,sha256=x4eI9Q1LRUtNUVT3LwLpe0MNFvyFV72-QuZXknYVOm8,1079
580
+ maxframe/codegen/spe/tensor/tests/test_special.py,sha256=Y6L-gQ__scSeY66qDJph1ItvlTxpgGaZty8Xp8ihq8M,1051
581
+ maxframe/codegen/spe/tensor/tests/test_arithmetic.py,sha256=n7IBz3oyx5SuqlzKwScKlTaJg38Ab3ql8O2zQW6MoEs,3232
582
+ maxframe/codegen/spe/tensor/tests/test_random.py,sha256=qKnK711XA1j99Oce4LB7IkTP7k2LF6W7fWG47S65LrY,1894
583
+ maxframe/codegen/tests/__init__.py,sha256=YsJxv7HbG4YYJmqAJZPYb8iHFRQX5JGpGn2PInDXvY8,596
584
+ maxframe/codegen/tests/test_codegen.py,sha256=TM6teK4idJIhEnnXuzUqjs745e01HtFNFlS2Eif2aac,2129
585
+ maxframe/lib/wrapped_pickle.py,sha256=4qWVAbDcTJm4WAvs631fFXrV3NEyzGSnG1jSKHSzdv4,3836
586
+ maxframe/lib/version.py,sha256=krhgFvMhLdoNCJk3d9U-yyIAHixCR4S9-NggKdqrnHQ,18321
587
+ maxframe/lib/compat.py,sha256=olFW2HW9-_ber1UbdH_RfpyGHpD5nwnp81VcX1ETwMo,4736
588
+ maxframe/lib/compression.py,sha256=QPxWRp0Q2q33EQzY-Jfx_iz7SELax6fu3GTmyIVyjGY,1442
589
+ maxframe/lib/__init__.py,sha256=YsJxv7HbG4YYJmqAJZPYb8iHFRQX5JGpGn2PInDXvY8,596
590
+ maxframe/lib/mmh3.cpython-38-darwin.so,sha256=0wtvtxq6l90vwTC8CC8u7EVjETDwjDylLothqFnRu3s,119784
591
+ maxframe/lib/mmh3.pyi,sha256=R_MzTIyUSTn8TF4Gs2hRP7NSWfWi0SeuUauh4eZJc-g,1494
592
+ maxframe/lib/functools_compat.py,sha256=c3gOw--FLvQNbamt0V8oqsTNRhPlASPEOzhMrzA2was,2616
593
+ maxframe/lib/mmh3_src/mmh3module.cpp,sha256=9J9eA42eKWTl546fvfQPNuIM3B2jpWSADpgIw3tr2jg,11604
594
+ maxframe/lib/mmh3_src/MurmurHash3.h,sha256=lg5uXUFyMBge2BWRn0FgrqaCFCMfDWoTXD4PQtjHrMA,1263
595
+ maxframe/lib/mmh3_src/MurmurHash3.cpp,sha256=kgrteG44VSftwp5hhD7pyTENDRU9wI_DqLD1493-bP0,8096
596
+ maxframe/lib/tests/__init__.py,sha256=YsJxv7HbG4YYJmqAJZPYb8iHFRQX5JGpGn2PInDXvY8,596
597
+ maxframe/lib/tests/test_wrapped_pickle.py,sha256=uuCnMlMqcWUBi2KUh4zV6yQC26b1TjAD8XY4Mc9WUZE,1524
598
+ maxframe/lib/cython/__init__.py,sha256=YsJxv7HbG4YYJmqAJZPYb8iHFRQX5JGpGn2PInDXvY8,596
599
+ maxframe/lib/cython/libcpp.pxd,sha256=ZlvASgyu7Haa1rA0KlxkVf_emxhB_1zdQt7nHUwnJWs,1100
600
+ maxframe/lib/aio/isolation.py,sha256=O59AZ82HKxZuzZbRvdUBOrgWAEfyS3vzGZMpFZDSCFc,2761
601
+ maxframe/lib/aio/__init__.py,sha256=e88qMrxcMCoVRu7edj_GaN0mpvPRNEMSB2Ha-3bZrRk,936
602
+ maxframe/lib/aio/_threads.py,sha256=BoRdKiGj9E5y0rZ_Cssg-cvD3eQNVhrJaga_zfjITSk,1328
603
+ maxframe/lib/aio/file.py,sha256=VE7sl_FimYoYiGQSxRfWrOHqXLW1X6suaS7edE6qXGo,2012
604
+ maxframe/lib/aio/lru.py,sha256=tVeMXJAVmAcMBskS7daRu8_vtpVX1FgKHAtgzCZzTJU,6891
605
+ maxframe/lib/aio/_runners.py,sha256=pr8s980UtS7uz4gdYOlS30nTKOthQchHcU62W2H3tgA,5205
606
+ maxframe/lib/aio/parallelism.py,sha256=OxtxQ8IR5OlNp6UWrBFWaKsJkTE67ABAE5X1vqhOjeM,1235
607
+ maxframe/lib/aio/base.py,sha256=izhPLdy_wXeOWhlt-pEK57WcBD7VO0d8H4Q8sluZJvM,2158
608
+ maxframe/lib/aio/tests/__init__.py,sha256=YsJxv7HbG4YYJmqAJZPYb8iHFRQX5JGpGn2PInDXvY8,596
609
+ maxframe/lib/aio/tests/test_aio_file.py,sha256=d5j0t2tzXnb1EB8DMm8WxL8XWapfTWF5ZDwrx9F-9Wo,1658
610
+ maxframe/lib/filesystem/local.py,sha256=zAMnODenIQJH25txHZU7Uad6a6OksHwTOa-ngASczAw,3588
611
+ maxframe/lib/filesystem/arrow.py,sha256=FtzTJIJrCQEe48FpOsbBGg09bGpB_PoreZ0HlrrDkhg,8411
612
+ maxframe/lib/filesystem/_glob.py,sha256=pUyuiKsdi7zS1xnrH0iJ2BHr2SIkYR52kc9K1tDMNsw,6535
613
+ maxframe/lib/filesystem/__init__.py,sha256=mHRo2N1GXAXI-PbpUdsci2iahNWX3qiRzuAjCbsKzS4,834
614
+ maxframe/lib/filesystem/core.py,sha256=vtTnBAPwB2nE1W2eQFDeVKZ--_kSFzbaHrBdqwXVvtg,2932
615
+ maxframe/lib/filesystem/oss.py,sha256=8j8fjFVgQ_GYPNmJ6NmOnbPXQetOxtWroSkpEVe9aMI,5017
616
+ maxframe/lib/filesystem/fsmap.py,sha256=ZG_q-qjYBZ-U8LxAzNBFj27J5JKK4w4ffx80c1IiJzs,5262
617
+ maxframe/lib/filesystem/hdfs.py,sha256=J4rAxSM4-D0OPJsoVrH1opl4UTAaKowa-V_q8PsF6Ys,1065
618
+ maxframe/lib/filesystem/base.py,sha256=vUfv1bi5a6OR7hdiFS56KY6ANb8ddY2e783yLjFnXlI,6634
619
+ maxframe/lib/filesystem/tests/__init__.py,sha256=YsJxv7HbG4YYJmqAJZPYb8iHFRQX5JGpGn2PInDXvY8,596
620
+ maxframe/lib/filesystem/tests/test_filesystem.py,sha256=-YxKI8WC_3h44aA_cur-iOL5ikZ4cfbi7Zg-JpNWGfQ,7372
621
+ maxframe/lib/filesystem/tests/test_oss.py,sha256=ydFmp33W1TVzlnQel8TX3qVquGBZBJgJC7P_Ql1m_Bg,5894
622
+ maxframe/lib/filesystem/_oss_lib/handle.py,sha256=EqXngu4ScEvEzWoVhk8SdcFHVd3ethXj9kpzQbtrJMY,4842
623
+ maxframe/lib/filesystem/_oss_lib/__init__.py,sha256=YsJxv7HbG4YYJmqAJZPYb8iHFRQX5JGpGn2PInDXvY8,596
624
+ maxframe/lib/filesystem/_oss_lib/glob.py,sha256=xlDbTJpZ4yMEI-Sul8U3PK9WR3hRIXxXagP2LcLH7Vs,4836
625
+ maxframe/lib/filesystem/_oss_lib/common.py,sha256=zbhcqv_UKLHmk9cPT7T_9i43Uf2iz1DH_Uis8DJPOfs,6615
626
+ maxframe/lib/dtypes_extension/__init__.py,sha256=xTGtTMm8c-h3lj3Bvbc2Oc08rScLfbrGkj-fkdRnTRM,671
627
+ maxframe/lib/dtypes_extension/dtypes.py,sha256=LYZ8XK0C5Anpz0VgIElhNLF_QgbPDF3dbUfKEaIck-s,2153
628
+ maxframe/lib/dtypes_extension/tests/__init__.py,sha256=YsJxv7HbG4YYJmqAJZPYb8iHFRQX5JGpGn2PInDXvY8,596
629
+ maxframe/lib/dtypes_extension/tests/test_dtypes.py,sha256=V2s_6SzMjam11la_92y0a3m-EZE4KQ34TY_7VSH8CEg,1378
630
+ maxframe/lib/sparse/matrix.py,sha256=ure8NNTMIjyU74y35NgnOw5BjWADMPGnJBpJyrK2hCw,7194
631
+ maxframe/lib/sparse/vector.py,sha256=1GQU5etr42YKZ4gyyvmd6h4RORQ7a6uh1w6Mdmp_geo,4763
632
+ maxframe/lib/sparse/__init__.py,sha256=XZeVvlYpJXHOSwGvD_f5c2VYsN30je9ALwwIr2PkIps,17984
633
+ maxframe/lib/sparse/core.py,sha256=-DafCJJbYt5XBm4sQMgBzmVWA12zDvMUjDLykp_psK4,2110
634
+ maxframe/lib/sparse/linalg.py,sha256=Joium8bKcbGbONtKYtoMJ0sv-Nvo9OcV_6XXM_kMJYI,959
635
+ maxframe/lib/sparse/array.py,sha256=ba9lzSolbOWgWOvzTOposwTan10SuFvIQryWuKrt14A,53321
636
+ maxframe/lib/sparse/tests/test_sparse.py,sha256=BgTLERqTLObFT5Q7H-ETwbetRkbZ9ZZKsT76FeFjL5s,15457
637
+ maxframe/lib/sparse/tests/__init__.py,sha256=YsJxv7HbG4YYJmqAJZPYb8iHFRQX5JGpGn2PInDXvY8,596
638
+ maxframe/lib/tblib/pickling_support.py,sha256=w72oyWoA7LLtFYwU2wgw2J-ckM7BrFXn6W0MzTpss84,2935
639
+ maxframe/lib/tblib/LICENSE,sha256=GFqWP6gjbSgxqNcmj0rE1Cj9-7bOaEEqbOHlMPYXwtQ,1330
640
+ maxframe/lib/tblib/__init__.py,sha256=c4aVldbxJdS-bFsSDcmDQy_mW0qAcMrb4pHS2tjYhYY,9878
641
+ maxframe/lib/tblib/cpython.py,sha256=FQ0f6WTQyQHoMRhgPqrA0y0Ygxlbj5IC53guxA4h9Cw,2418
642
+ maxframe/lib/tblib/decorators.py,sha256=bcllK3kVuPnj6SNZGmlJGxTK0ovdt7TJDXrhA4UE5sQ,1063
643
+ maxframe/tensor/array_utils.py,sha256=VsWQR84ifDV26-IfrgLRAXyt9FLZ2YAuKjQ6NKUqYv4,4373
644
+ maxframe/tensor/__init__.py,sha256=Ac2Y3OyijuT8Nh1_52cy5-BqkMfOnzmJZ2A345CJq-g,5384
645
+ maxframe/tensor/core.py,sha256=n6_vPx8SecSp9Wu2IGvhQiXfQ1ylqGs21jE43y3tqB0,17995
646
+ maxframe/tensor/utils.py,sha256=iEzMffVfM64tFqH1EGldUoq8_q2xAPBBzsHFYy6ZDo8,22913
647
+ maxframe/tensor/operators.py,sha256=EGWyiohMZXMgSOtFTVCvZ6IdQXwssxmoS1UVTI0wBKg,2257
648
+ maxframe/tensor/statistics/quantile.py,sha256=uDVI-Z00MEF3kxd62H29MSxDU70Jpm579uxTx9ZE9ho,9547
649
+ maxframe/tensor/statistics/__init__.py,sha256=RmBLkC-xfaN2sBIGvEO2mCBad3bTAI-FNIBwHuIQMGc,723
650
+ maxframe/tensor/statistics/bincount.py,sha256=6d0MUbznEkc5fFVuUtHWdO4adsPBj5PnsBy3tnWA7jk,4711
651
+ maxframe/tensor/statistics/average.py,sha256=BT_rw1IEbJrdIS4mpEv_JJ2c4Mh0-uuucjRlwUIIzGc,5056
652
+ maxframe/tensor/statistics/percentile.py,sha256=DMqIWDtCU012M-FILSgR1TmbLAgjRIzDCVK8qW8F58M,6047
653
+ maxframe/tensor/reshape/reshape.py,sha256=wKYcB8ROlqbwPwqFqlCnN03YrquFuySQrYAiIx_RnrU,6557
654
+ maxframe/tensor/reshape/__init__.py,sha256=_QbUbxl7S2TS7mKd2tGd_bB0a-40G18qW-OKuIqhNk4,626
655
+ maxframe/tensor/reshape/tests/__init__.py,sha256=YsJxv7HbG4YYJmqAJZPYb8iHFRQX5JGpGn2PInDXvY8,596
656
+ maxframe/tensor/reshape/tests/test_reshape.py,sha256=c1y2IM4yCn1W2ZF3UMWgU7Y7TgspyD5VDf7BJNxrj8A,1057
657
+ maxframe/tensor/misc/setdiff1d.py,sha256=PpEaTq2fPz_9pqtzSGHEdWFLcTdM4nAyKeHwM4dA9rU,1753
658
+ maxframe/tensor/misc/astype.py,sha256=NRUFbVmnpDefHcC_ZdVGPRNqLmjGg-_xCfwZPEtL9F0,4459
659
+ maxframe/tensor/misc/flatten.py,sha256=gnVtVp6nOt4xmors2jQVk_2doRUsI_SsTk8YfpewbFA,1939
660
+ maxframe/tensor/misc/where.py,sha256=cODatKKVSVHLejJxS5iR6JFFtNVOrg7kqNKo3vrMvnQ,4084
661
+ maxframe/tensor/misc/unique.py,sha256=oS4H4ftm9NuxdFP_pmWNstMr3vOArvNIUXAp0U4Yhv0,6804
662
+ maxframe/tensor/misc/__init__.py,sha256=pX1rJVegGAnCHi01Qq1_lbPkPALhsNn6_JIccoAvTSk,1681
663
+ maxframe/tensor/misc/copy.py,sha256=Xjh-LFRd3_nbjldJiV4JTaRDSiMFxMSOkJxBU2uhfEc,1780
664
+ maxframe/tensor/misc/isin.py,sha256=lUlmCqzyoCLCusglJk0iv38CNlS0fT-DnguW5sPjS-I,4476
665
+ maxframe/tensor/misc/repeat.py,sha256=MD5zFUBkPLHoXFzQxmaJMWyJplmMMt3GwtNeGMi_A4Q,3919
666
+ maxframe/tensor/misc/transpose.py,sha256=GHg1ohg6YKy2AuPAhYyMLHxyGUdfOWXuWZAccJmAwEk,4154
667
+ maxframe/tensor/misc/in1d.py,sha256=tQgOlGq0W6tY8eGRHorUwWslBiDdfDGqithx8Eysnqc,3247
668
+ maxframe/tensor/misc/swapaxes.py,sha256=ABQUhv5U6HBpRP4YTy3n1Sscoavsm4cR4aJQPnEu8sQ,3115
669
+ maxframe/tensor/misc/diff.py,sha256=vuGCkudN-BC1GTVj1YcB4oi2E1DLx1BgWrqE1w9LYw0,3603
670
+ maxframe/tensor/misc/atleast_3d.py,sha256=unXlEgoYuHcnzkBSr8UXWlJI_yteoqb-HSPyx_eoVeo,2392
671
+ maxframe/tensor/misc/trapezoid.py,sha256=gWNYFJBIZumc8IrcgeM0yoyDtbEcXJagyerKScmQV1s,3788
672
+ maxframe/tensor/misc/searchsorted.py,sha256=uI0XdbmOPF4IQlpsn4MambP-3Ev67h_NsTjEWWyQcTc,4744
673
+ maxframe/tensor/misc/ravel.py,sha256=5fyHLfBNBTIivLlK7SIwnOjaoVqG2pSiB68xt9a99YA,3127
674
+ maxframe/tensor/misc/atleast_2d.py,sha256=sXuQvWy_uWd-wgax5psey5UhAR-4OT-QVzpf13aQqqY,1958
675
+ maxframe/tensor/misc/broadcast_to.py,sha256=axolRo7v9MBRdRgNfLcKP2uCUgLNk2Ful0Xg2YyM8Fw,2692
676
+ maxframe/tensor/misc/ndim.py,sha256=RaB9DZ9P-JCqQYXGyuiJyRfrGHogTt9yv_xS-WqStaY,1389
677
+ maxframe/tensor/misc/atleast_1d.py,sha256=Za9A2LbW4TsVwmduh1Eh_bbk9JkyexewNitzm_zVH8s,1872
678
+ maxframe/tensor/misc/squeeze.py,sha256=XywYcdpPg1PBR83CLmaQtxosk-2Aa390egRMpkzx8vQ,3570
679
+ maxframe/tensor/misc/tests/test_misc.py,sha256=G8sRqbKou_tqBFuI8_ru8ObHp-iFRiAF_a0QPNFWjOU,2797
680
+ maxframe/tensor/misc/tests/__init__.py,sha256=YsJxv7HbG4YYJmqAJZPYb8iHFRQX5JGpGn2PInDXvY8,596
681
+ maxframe/tensor/datasource/from_dataframe.py,sha256=fahvjYmNUIKfWiMjGJg0mwkk8S1gUgnQPnXyLkVYNB4,2457
682
+ maxframe/tensor/datasource/diagflat.py,sha256=Aj15jGyVh_JyVeVE7iX1pDMIcwwsTNuue59oVpuqGHU,2157
683
+ maxframe/tensor/datasource/zeros.py,sha256=DV3GDUUp7Ct42QSdTEl8fBwTalSnM_uLRbMUYxAaScs,5797
684
+ maxframe/tensor/datasource/from_dense.py,sha256=NQuEKZqHnwIQRpHhbDNWeGYY6ydmPO_jilapJVjuBSs,1153
685
+ maxframe/tensor/datasource/eye.py,sha256=sDXDXfSqe2NHOeweEr-A1EtXSziYBsniP83BfgoDJ_M,3019
686
+ maxframe/tensor/datasource/scalar.py,sha256=70yrrp1RHwm9ASYhHocxx-G8MPgHOFoe7rwOs1k7Ncc,1156
687
+ maxframe/tensor/datasource/linspace.py,sha256=6DI83KK-JJe4ALAuutZIQHPXsR5dpI99au0KUgme3PA,4422
688
+ maxframe/tensor/datasource/empty.py,sha256=I5s4U4DhMzK01z8mRHO2z8UqyAk1-s--VslgodG8Nvo,5804
689
+ maxframe/tensor/datasource/__init__.py,sha256=bGBDUXlnQRllNPTVx-TaGDopYGeZQz9u19Ck5wcwEeU,1483
690
+ maxframe/tensor/datasource/core.py,sha256=J5Xh5oBXyE3Pa2L6SWYD-6w6xzyjxNKCTVKhGP67I_A,3563
691
+ maxframe/tensor/datasource/full.py,sha256=ARrrLLmcGP00n7v7pZ9YBDrTzw79VL1V68G3BLTByz4,6230
692
+ maxframe/tensor/datasource/meshgrid.py,sha256=OEPXzO1og5uS-Lo2gMaZvt78GsecimGDJPvUH9_wlrE,4444
693
+ maxframe/tensor/datasource/diag.py,sha256=Zfb8soF9aaI8D2jwMKSKkE0TQPtF-RsMLyDeoi55aNI,4363
694
+ maxframe/tensor/datasource/arange.py,sha256=pl02HfL6UJWup8KUWnzu6EF7jbLDhSmwHQrWDmapwOI,5430
695
+ maxframe/tensor/datasource/indices.py,sha256=otz_nTe1GSNuwsT0VIq07EDWlqw3NM2GnBgo_tGZ2d0,3275
696
+ maxframe/tensor/datasource/array.py,sha256=anpU-w-aR-zW0tGrp0sQMKFtZ17xV9ot516hfZzfk7M,12387
697
+ maxframe/tensor/datasource/from_sparse.py,sha256=zBkgvXQRb0ek4KpKDSgPXNbzPBsoVMKBfE-oNOA_VVs,1500
698
+ maxframe/tensor/datasource/identity.py,sha256=CVhDm0aFHSH8hxRIKF8uvJzoWygPOlBDS6CNPb77nlI,1677
699
+ maxframe/tensor/datasource/tri_array.py,sha256=1OEiW8PGulIHY6D44Q68pi9NK2QtO-lOKRGwXz2xM_0,2918
700
+ maxframe/tensor/datasource/ones.py,sha256=_hUZjNK16Hc16ERMCuWWvTWA03SB_APnJq6iLDjvnx4,5167
701
+ maxframe/tensor/datasource/tests/test_datasource.py,sha256=0hEBAxtSM-JBhqO2FaAYjKSo89j4dRBWWfdfcvXEB8c,8660
702
+ maxframe/tensor/datasource/tests/__init__.py,sha256=YsJxv7HbG4YYJmqAJZPYb8iHFRQX5JGpGn2PInDXvY8,596
703
+ maxframe/tensor/linalg/matmul.py,sha256=EsaPI2ic0SFqmQpTwqOiBfRLmutp1fF7_xjSPJsBhlY,7113
704
+ maxframe/tensor/linalg/inner.py,sha256=uFyvIh1_IMbQUex-gcjsBGD3YmisbrFAm-OlHdnohAo,1139
705
+ maxframe/tensor/linalg/inv.py,sha256=umo55u-r5__85_XZjRECZ1KA5gQpwmbhGFE5-voJgt0,2463
706
+ maxframe/tensor/linalg/__init__.py,sha256=pghIrKGKubLdVIYCSx3jfuDeWxeAcC3WMoNDyT0Ukrc,1174
707
+ maxframe/tensor/linalg/svd.py,sha256=eNz1ooYTRWms9d3KfjBrE-Lg4T_l-ThgmHhYmaucNfQ,6144
708
+ maxframe/tensor/linalg/vdot.py,sha256=0Gosg2jCXnrfH4dyVQ01ghX7FFJTZiemUSk-V0Si0uo,2249
709
+ maxframe/tensor/linalg/tensordot.py,sha256=bJCBZCtyv6vfGQvEbh5mjHqD7p1mCOtMJL4E5M7wyuQ,7093
710
+ maxframe/tensor/linalg/qr.py,sha256=cFoGviuRBCwFDbj3YcM2WVDG617AtvbsF7zvlIFrUQU,3739
711
+ maxframe/tensor/linalg/lu.py,sha256=4ijWtGTr1iaHQcOJ2uxcL1DQYUSGTqk-Rap2pPQ1kQY,3204
712
+ maxframe/tensor/linalg/solve_triangular.py,sha256=L3YY4iCa8e5YZu8TMeHNc_sWeI3-UjUE1AxzccBqPXI,3373
713
+ maxframe/tensor/linalg/dot.py,sha256=jyYiPBLdprTDn_gbB31tt0TRH9yGLC0edeqkUkY8fV0,4649
714
+ maxframe/tensor/sort/argsort.py,sha256=7ALZVxxN8T9t3sk0fJBbqybiNgNU5Vilw2sfE-JTpnY,4887
715
+ maxframe/tensor/sort/sort.py,sha256=24Ghtpm2dot7mxtNtZy4zVMDsIqe0-PP4uesxPvPnuQ,11129
716
+ maxframe/tensor/sort/__init__.py,sha256=Huqx9HhamXrck1mB20_7a9-NN4ujUtgEt1plMsR2y48,649
717
+ maxframe/tensor/rechunk/__init__.py,sha256=r4ae0JUXxgHnRFpIfoFNpNEiQ7oUne1vhE5Ebov2Qqs,797
718
+ maxframe/tensor/rechunk/rechunk.py,sha256=VqOInL92Qd9u2dNyJRjGKt9sIQrMD6mrgNI2ucMGhO8,1392
719
+ maxframe/tensor/merge/concatenate.py,sha256=B9ogoLIy3MfC1s4Y2fE9NeWXZOJcCuIhTzY_fmxFt70,3280
720
+ maxframe/tensor/merge/column_stack.py,sha256=4Y9ipLB7dNkeIRkk61ByUKtNh8rYKXIFWE-XpRK4oCo,1736
721
+ maxframe/tensor/merge/vstack.py,sha256=NhVnxCalp7ZFig6fubNmDeb5Cm4YMdBnJxh6_T7B9KY,2268
722
+ maxframe/tensor/merge/hstack.py,sha256=ttw1kJ95zHKZziTOBO0j7QncnYvc6mGvj3AhVBOc8eQ,2357
723
+ maxframe/tensor/merge/__init__.py,sha256=FyP73Q9xgjqetnsYWN7aIg4zOjy8e5VC_UrrFul_EV4,806
724
+ maxframe/tensor/merge/stack.py,sha256=smn0qfi-xl2JsPjVVxu8MD1QS3xkAt2hCLw0fOHXpp0,4099
725
+ maxframe/tensor/merge/dstack.py,sha256=USo_oKUEvN7AJeFsOrvNgHp2ozh5EXh07hH0QmDjJX0,2345
726
+ maxframe/tensor/merge/append.py,sha256=mzWwKVL2n00qbBDKKN8IDRBcSOQmjPIvBmo0Hst2jto,2466
727
+ maxframe/tensor/merge/tests/__init__.py,sha256=YsJxv7HbG4YYJmqAJZPYb8iHFRQX5JGpGn2PInDXvY8,596
728
+ maxframe/tensor/merge/tests/test_merge.py,sha256=ef4Mh9ignZLj7LAbynl8dVE0D0M9xfT_6Q6rLicu2bo,2164
729
+ maxframe/tensor/ufunc/ufunc.py,sha256=mARoZbAO77fX1LuCVC_N62NE3PC4KIZO_D-mnw0WgsI,7137
730
+ maxframe/tensor/ufunc/__init__.py,sha256=nroGEX4rm2eziyc2CMLDVw_u5bmDcy48cpNxiiEM7Qk,749
731
+ maxframe/tensor/extensions/accessor.py,sha256=fW7h8TXFrzJrFsdJl-6hGit6oB3rlaSZmMdVvS_h_gY,818
732
+ maxframe/tensor/extensions/apply_chunk.py,sha256=ONTfmespXTahBfdHtzk7EVVOew4n3XlXpwYLi4jh5vc,4420
733
+ maxframe/tensor/extensions/__init__.py,sha256=mj6dzxSSwZPYNkVlNvvABp0OTFVJr8eRjroCSya-tm4,996
734
+ maxframe/tensor/special/misc.py,sha256=iomWTcxhyEPVYSFiSWe0H2CKlKII-cEJxehBLHf4oPY,4489
735
+ maxframe/tensor/special/statistical.py,sha256=WUCXm_1X9IeQWBdR2iH0mf3ZYe2Z8kU8yWNjvDM4QJA,1671
736
+ maxframe/tensor/special/__init__.py,sha256=Onn9Qc5BHI52Ls0jIEjpaNUjTV8MQ1DkLb8I_93VxT0,1029
737
+ maxframe/tensor/special/core.py,sha256=gs6HgKvAGvobX2fWIi1MbdB103BIU1aqR6DStWt2wiA,1217
738
+ maxframe/tensor/fetch/__init__.py,sha256=m_wEDMVtz0FIx7kKCZJmGmPezsIYaYdxFjb8rIy1t5Q,647
739
+ maxframe/tensor/fetch/core.py,sha256=hbrnZNgibYz-lA1Gk-RjWYArqdlpaSFSbbKYmYdaMj8,1818
740
+ maxframe/tensor/reduction/nanprod.py,sha256=1J2CFf_Yu2p9K8K5eL6ukZSBBGA9E6BcjWDq3a_vTHU,3268
741
+ maxframe/tensor/reduction/max.py,sha256=lGPaQSUqr_ypMJS0FKpm_abgaQffbKZpHQI0YHlrfcc,3933
742
+ maxframe/tensor/reduction/allclose.py,sha256=LAKHsZiKnOfaNnGAK2gplwvmFBOaZpdOgShaT8E3r3U,2896
743
+ maxframe/tensor/reduction/nanmin.py,sha256=FYz0NVq5TQGuDzGN2H5KIocZpwIGch586qK1raudqRY,3901
744
+ maxframe/tensor/reduction/nanvar.py,sha256=rhoTKk6500PDQwjk28sS3Uyn3s5Xh__LmNz6fYGohrY,5424
745
+ maxframe/tensor/reduction/count_nonzero.py,sha256=zQKEmEPv4Hqd8ULLNV6xUXxG1MSk1-AhmrGzsDHRUxQ,2708
746
+ maxframe/tensor/reduction/nanmean.py,sha256=ZK-rS2lnXpwQVQa63ZCMvBqPPU1VhIHQgUPB4f7EZy0,3925
747
+ maxframe/tensor/reduction/nancumsum.py,sha256=Rr8ZxXGiQkz4VAmLRbbMNsb3qoSYigkKN_1R7iABK5k,3237
748
+ maxframe/tensor/reduction/nansum.py,sha256=v13T2StC6jG9IpOrSJ4K40QJwiAwb_9Yu-KAWjqtjkI,4020
749
+ maxframe/tensor/reduction/std.py,sha256=BSymKAl5czzcvNP175v4cSnXU3TVNpwE3QirdExpcCI,5089
750
+ maxframe/tensor/reduction/__init__.py,sha256=miwNEUnKLyr6RhCTrOpNCTvJ0HKK8VYqgokeSmVmo4U,2272
751
+ maxframe/tensor/reduction/argmax.py,sha256=yTJYyOx5S9MUUjTEDH2rLFVWRUa7py2shG0KfQLiWuo,2994
752
+ maxframe/tensor/reduction/core.py,sha256=cHLHcbUwKAgNydkjbJFhIq1tWFCk1bXFBv4pkEl0vKI,5043
753
+ maxframe/tensor/reduction/all.py,sha256=9Cc9KApQ3_OY8HPgiWoQMPhUqaL1XVdpToRE8ZxgB04,3421
754
+ maxframe/tensor/reduction/nanargmin.py,sha256=Y-7Is490vdm3UNXWOGGxtnxM6rbb-CUClLiiB3fLKB4,2157
755
+ maxframe/tensor/reduction/min.py,sha256=U8CxvvpCiD_Vsb5tee56Y383VknbfbLIwetgx3hf1fI,3934
756
+ maxframe/tensor/reduction/mean.py,sha256=_yOw9n1Y01VRgRmgI_UhZunF-xC0U0h1fWWNiV7RxM0,4333
757
+ maxframe/tensor/reduction/var.py,sha256=c--5r9GNMHGSGqg_8HHKBvf5msFJ18gN-sL3CDEhFcY,6258
758
+ maxframe/tensor/reduction/nanmax.py,sha256=XcFJ7MvSnGyROBX2hqN8pD01tCgdujsA1kFuUpq0G2U,3904
759
+ maxframe/tensor/reduction/array_equal.py,sha256=SN26A9A2pXIqLOmOwb1MnDLBROh_krJcu3x_8DKsk6w,1749
760
+ maxframe/tensor/reduction/sum.py,sha256=h8M_VHFwLty9D_3_I8sgScb2Oy2H9BI_HBTlDN-hTp0,4200
761
+ maxframe/tensor/reduction/prod.py,sha256=8J7aYKCgTr592Pp7IEAi-RIf7EZZFAph_iZ18_NoWAo,4360
762
+ maxframe/tensor/reduction/cumsum.py,sha256=4uKptBW1MNakR2t4Ii9oyxLfQkd4RCWraiIPtCqqBMk,3445
763
+ maxframe/tensor/reduction/any.py,sha256=kX1W8F2LcWMTQ9s2t5Vn7154m2yPliZ3Bnsna5blFcE,3525
764
+ maxframe/tensor/reduction/cumprod.py,sha256=JFDFeeN0tKyBVoElQvATthtNWgV2S5E1xe1kVMJfWpo,3226
765
+ maxframe/tensor/reduction/nanargmax.py,sha256=0hJcNnYXCYEemjqEM4jwyj7fppDTK9pLPgNNVxHSuwo,2435
766
+ maxframe/tensor/reduction/nanstd.py,sha256=JmIb2j4v0gFJJpLzBob_5riOXVUglMuw1-DLUbH_aiM,4845
767
+ maxframe/tensor/reduction/nancumprod.py,sha256=eV_JFQIP6OScatylj_VZzetFbY7w0GYyAxsBdxQw1RA,3075
768
+ maxframe/tensor/reduction/argmin.py,sha256=ey6goGbgtX1ozmmXlxngcIznf4dvH3hbltncZOkUeFk,2984
769
+ maxframe/tensor/reduction/tests/__init__.py,sha256=YsJxv7HbG4YYJmqAJZPYb8iHFRQX5JGpGn2PInDXvY8,596
770
+ maxframe/tensor/reduction/tests/test_reduction.py,sha256=8LytMQWJyQVGiBV-qradmCaWnmZMriCiU0ykyAMEyiY,6107
771
+ maxframe/tensor/arithmetic/copysign.py,sha256=nAlXP85IGf_CBLW4arIzHDtckC4fJbyUxxxi5g5UHYo,2459
772
+ maxframe/tensor/arithmetic/spacing.py,sha256=K-xaGzBUU4ut59JMtFcmgPzYCu69mF3vgYNHQlRFqfc,2267
773
+ maxframe/tensor/arithmetic/arctan.py,sha256=SNmFIWAT_IvJQZOjzEtDFOUB_v9ptBG1pSt-t5cIido,3516
774
+ maxframe/tensor/arithmetic/arccos.py,sha256=ikr8sHgwNYh4ZbfofmvlPAGT5Yp4N9yAIGsJhRxM9Ro,3472
775
+ maxframe/tensor/arithmetic/arctanh.py,sha256=qCLHLhBJldA69yxZcYTzAS5sTWYlZ3cAosUoCGBFcLc,2963
776
+ maxframe/tensor/arithmetic/trunc.py,sha256=35syZ1Vkl_xKbrwW6FP0DwYajG_liHEG_A4VCKpvmiQ,2257
777
+ maxframe/tensor/arithmetic/setimag.py,sha256=_p8BSQ4y7zA9FDycF4DpLfPz1BVwR88b7mgzPJAcr6A,898
778
+ maxframe/tensor/arithmetic/signbit.py,sha256=uMmSAB1TRtIkBB6d7503k14Zp78kqiIsrBD4iZxRAHQ,2066
779
+ maxframe/tensor/arithmetic/logical_and.py,sha256=EHR3E1T_AJVT04o00ZOeTkb9Dvw6q1NEs7VlpOHBrH4,2524
780
+ maxframe/tensor/arithmetic/tanh.py,sha256=07lqmB0lGu-_2_yIV2-G0lP5UWPlVkNHZSGObqkqYUs,2999
781
+ maxframe/tensor/arithmetic/isinf.py,sha256=gl-NNDe4LrR-i3cAKgQ6zKsyOlUPdiliNE4xsTl9tRU,3416
782
+ maxframe/tensor/arithmetic/equal.py,sha256=7b6Q3pz4kJHAZIb8iyb78X-mXvJkZNhofMXsplip0mc,2347
783
+ maxframe/tensor/arithmetic/nextafter.py,sha256=exajwOJGcMP_bEbccX2KmTRsEa7-i_XrVdW7vF3ATFI,2284
784
+ maxframe/tensor/arithmetic/fmod.py,sha256=X41e4X8ikycx57n1jCeoohv6t3nNQ-WMgug9KG-eWbY,3166
785
+ maxframe/tensor/arithmetic/add.py,sha256=946JrxdiSU7CLSLi4iIEPhQnhHD0jjiH-DR5ZoxsPUU,3565
786
+ maxframe/tensor/arithmetic/hypot.py,sha256=I8QMnCFmf5D8rKk9sukRo582zl_G0eHuogjfk4jAUqk,2475
787
+ maxframe/tensor/arithmetic/isreal.py,sha256=bKb9YAasbWW0ONfDULEMYUT6IDzUJk6eb3ZIeMcuQe8,1604
788
+ maxframe/tensor/arithmetic/isnan.py,sha256=rtWJuGgGS3l1AqVrGzbTtHDqdITGY8WDfOEbIsjuKCo,2643
789
+ maxframe/tensor/arithmetic/subtract.py,sha256=LEGu4-0XGarmN3Esy97BENRQ3xFzIUlyQ-tcGN4iNyw,2593
790
+ maxframe/tensor/arithmetic/iscomplex.py,sha256=IrJLYbAcld7VPBxMXt8OwknjMHPky4n7vJDv9Kxf3Fs,1658
791
+ maxframe/tensor/arithmetic/positive.py,sha256=joONl-qKNJk4gTZi2_v1DNTCInKPqQFaxyujdW-UfI4,1266
792
+ maxframe/tensor/arithmetic/sqrt.py,sha256=X-dPTXuu4ORcj1ul4tGMH2EV2WYsJ7oA8pMdNKQbv9c,2759
793
+ maxframe/tensor/arithmetic/less_equal.py,sha256=OvMksLsOlGYhb_eHYJ0zcjkgsLeXFdgS1VUwW8anogY,2247
794
+ maxframe/tensor/arithmetic/rad2deg.py,sha256=u3LI00lnGgOAAKwB9pnp7yGhmFHCbjxiJ5jw87hHeZk,2056
795
+ maxframe/tensor/arithmetic/log.py,sha256=jutuPE1NWtZK0E1gSF069brCksjUvGsbHPMf5Ykiu_I,3111
796
+ maxframe/tensor/arithmetic/negative.py,sha256=Lit9vZLkRjMEEFjRVlDRGTrcTpFM2kC1PW4Mq8sZX5Y,2042
797
+ maxframe/tensor/arithmetic/angle.py,sha256=4nBja8mqYTMvNap1z-nhu-c5OjGow7VZVxIO0yWaHTU,2091
798
+ maxframe/tensor/arithmetic/multiply.py,sha256=UFMj5eswzMGsEQ1Y-qygETm3kqVMEFrwiJiy2ndS8A8,3572
799
+ maxframe/tensor/arithmetic/fmin.py,sha256=O23qtyRbIkO1UXVPL_aShKs9pTmQ8fDTSPLyKXorghQ,3521
800
+ maxframe/tensor/arithmetic/degrees.py,sha256=hyuGSvSubdwG74-gP7RuLhhglEMy7Zj5Lk9616B322E,2329
801
+ maxframe/tensor/arithmetic/logical_not.py,sha256=ppJMPisz48Y9QOgmJ6GikE3NYQquo2FHiprOnlmKVtY,2304
802
+ maxframe/tensor/arithmetic/absolute.py,sha256=mMj271ebgmvaa-zdoIMEhKKefzvZEhACECIlfqQzTwQ,2164
803
+ maxframe/tensor/arithmetic/cos.py,sha256=yTehnYu595DBUw43U70-GjXG67vXQ-y-7IenKE2O51g,2691
804
+ maxframe/tensor/arithmetic/tan.py,sha256=BG_h65lqjArkjmBZrl7TZi62Y0RpghJU261perUK9lk,2797
805
+ maxframe/tensor/arithmetic/logaddexp.py,sha256=GbgL9xONddcbWsrSoYgg9EiD8h72-Wi2yctSjAXu1Ng,2683
806
+ maxframe/tensor/arithmetic/modf.py,sha256=bB0uK8S9o2skU18odW5c-LhiDEudoG5EQcuxp8vUMaw,2680
807
+ maxframe/tensor/arithmetic/abs.py,sha256=FUsZSFXWLcjtG8-oOX5gziCfFyD8nWeRjuxqJD-HI1c,2134
808
+ maxframe/tensor/arithmetic/ldexp.py,sha256=HTf8DdLzwipB7mRWgdVAuiPI7k--27oNPpPUpsW3uPM,3119
809
+ maxframe/tensor/arithmetic/__init__.py,sha256=A_GsabIOZAGSP8g5EY07gJoq83cprHEJtha2vchvU8E,9394
810
+ maxframe/tensor/arithmetic/divide.py,sha256=LWPQDOUP3SwqVDTVbbVEvLdntc6PkSRLRuVNw23GDh8,3664
811
+ maxframe/tensor/arithmetic/float_power.py,sha256=gT-tz2mYU9XXwYtKoZg9Qrt4K-lXdMRAWcLGFu1dx3o,3318
812
+ maxframe/tensor/arithmetic/logical_xor.py,sha256=yzSEB2nqOgpCbCUwQcsG-NdBwpgzuiCtbldUGKPyiP0,2844
813
+ maxframe/tensor/arithmetic/core.py,sha256=WaCaaj5C-4XGTmWERi2VTIhH0ppyPGH8IUvBpfcLTOc,17572
814
+ maxframe/tensor/arithmetic/floor.py,sha256=51M0Xo8Wn75-jUdLC1ViHDYhuDraCXaIVs4LrSeZJnQ,2396
815
+ maxframe/tensor/arithmetic/real.py,sha256=z8dbQjaKdzzfbR01HOAxdwatEl2ZPk6jTDCdZGJEIew,1785
816
+ maxframe/tensor/arithmetic/around.py,sha256=42tL30_etreKQaPpi6alEAo7M8vcborusyPFcbU4U_0,3780
817
+ maxframe/tensor/arithmetic/nan_to_num.py,sha256=1mWPBGZZUXfTbr8Y27bFnhDIlbdTX8KDDGiUY4-orlo,3203
818
+ maxframe/tensor/arithmetic/ceil.py,sha256=JJTdl69dzxUPOMvgUXtVgegO0Gq6iJdQfTryz0-nMpo,2206
819
+ maxframe/tensor/arithmetic/isclose.py,sha256=mk7f2AYOuJWhGiBPsJpAaD9wwah-ohSCnPkD_A5zFPc,3649
820
+ maxframe/tensor/arithmetic/maximum.py,sha256=Ekj3mfMuUnQaMp3uvKy6dknjS39hEBPydkriSjL_py8,3648
821
+ maxframe/tensor/arithmetic/log10.py,sha256=QMps4RcxLRC6LQHh52qexWtCElqnDyriJ6SS4yLxAg4,2985
822
+ maxframe/tensor/arithmetic/frexp.py,sha256=u6BCwEGerv8zsh4vmColFeCHPo15okr9BKvUqiA9PN8,3243
823
+ maxframe/tensor/arithmetic/rint.py,sha256=IHIuL5t0Wmo9xEZJiu7Sj3XDXU9rnQ8lS49TODnne64,2076
824
+ maxframe/tensor/arithmetic/truediv.py,sha256=klW-rKeYjp8-ucK8I2Zgts2jSwSiIRGKokwwbGhhJSY,3301
825
+ maxframe/tensor/arithmetic/imag.py,sha256=RHDOBxRZWGvQjjapGxtDLcnOEx9L43ulaGKTnbqcDk0,1722
826
+ maxframe/tensor/arithmetic/minimum.py,sha256=x9LHNH13-2CfdETO4fi0bABigbrnNgMS2PDybBb8yd0,3649
827
+ maxframe/tensor/arithmetic/utils.py,sha256=Se6Q8eLzIt2l2d-IpsbczqSlgh4EIUUbNKlzOFshH2c,3187
828
+ maxframe/tensor/arithmetic/exp2.py,sha256=LDwo0fX0pHVsDZOYMLdAeOWKmRsDXObEcnGi6L8I_TM,1951
829
+ maxframe/tensor/arithmetic/isfinite.py,sha256=yVbgASsHmw5bzEkqbqdrHV8Z5_iLrOMpAGBgdggwXFA,3559
830
+ maxframe/tensor/arithmetic/fix.py,sha256=ZmngKffdQKqvjfh_ZlpM38mV7DZ9Frm4wZkkyrOXKgA,1714
831
+ maxframe/tensor/arithmetic/expm1.py,sha256=C-JDhxJFoLBo92WC2HGBtQVyrehgoJGhchodOx4LZjk,2375
832
+ maxframe/tensor/arithmetic/arctan2.py,sha256=UbVPKReOrXOaSipQP9WpzLSz1CcxsgCyTUSPNWWeR-I,4397
833
+ maxframe/tensor/arithmetic/logaddexp2.py,sha256=zmHd5PdcdOezhnVByShlID5Oqz-kZKCZnPNZbHKelB0,2699
834
+ maxframe/tensor/arithmetic/fabs.py,sha256=czGONjDadQCFAvi6_fAKO8ZE5r1qgwXFR9B9CpD8uOM,2384
835
+ maxframe/tensor/arithmetic/lshift.py,sha256=ySu949Dk2F7AKJZCWbVTt3xIVsRiypl-SuHaLsMxykw,2588
836
+ maxframe/tensor/arithmetic/sinc.py,sha256=gYl-OxZeK1ks5uLCGOZui1Q27w1EpCqoObo2H3af0-g,3448
837
+ maxframe/tensor/arithmetic/arcsin.py,sha256=BAVbk2CvZ-5iTdFuWs6HHLP4NjdOoviGr0IK-MnQ8uM,3198
838
+ maxframe/tensor/arithmetic/bitand.py,sha256=Lof_Xe0hE28BvMlbaMJcou_vAI0DU5WsL2uuabFE-xY,2871
839
+ maxframe/tensor/arithmetic/floordiv.py,sha256=a05c8ToRhJnmRzq5snxUlHGefZsAJ6FQ_FVCKAR0Hok,2941
840
+ maxframe/tensor/arithmetic/bitor.py,sha256=QSnnttxtnZqaRMhc3uMWzB6QBkvpD1l7-bN4D4_hU_Q,3267
841
+ maxframe/tensor/arithmetic/invert.py,sha256=l2KI3DpBZvxM46ZIgp7UfBRbyvHIrAUhV0HEmSLsycI,3423
842
+ maxframe/tensor/arithmetic/i0.py,sha256=fr230OukWfu6Dl07-p7A_Ltz1u-sh3ps5UexIjh2k5U,2872
843
+ maxframe/tensor/arithmetic/greater.py,sha256=VkGCc4JmRkZOpjM4VJ_ElvMgTcsIvt9rmNbne1tbl8M,2409
844
+ maxframe/tensor/arithmetic/log2.py,sha256=i_aCCdIfFlRFKr9uA7DBTaRNPJDw6YBSRlODvUvfFT0,2827
845
+ maxframe/tensor/arithmetic/less.py,sha256=dsX_MSE6J2bU8EV83LIFt3AK4DwICfp49GIihGVNO74,2219
846
+ maxframe/tensor/arithmetic/square.py,sha256=0rOHxXvj0OEfMFIxffp_cdE_ZxVFoZfyhAC3QLQSTPo,2042
847
+ maxframe/tensor/arithmetic/conj.py,sha256=ZBZjeZgu9NmFQNioLUIEP3kKJhmOw8vAfFw6wQQuVtU,2181
848
+ maxframe/tensor/arithmetic/cosh.py,sha256=iMgA9W_9YGTYy7E2-OoAzLpScSfbDLPwBLdEnsgJ0KQ,2172
849
+ maxframe/tensor/arithmetic/clip.py,sha256=9hNiH2TTxyb6s27myagMC1IqsMHdtPkMCL2nYvpZxXA,5545
850
+ maxframe/tensor/arithmetic/setreal.py,sha256=uA5ZghkYuF9Ny3tZvmJc1VK4kxC2Jf5TW1F1ieX6aok,898
851
+ maxframe/tensor/arithmetic/rshift.py,sha256=hRhH3nNUpl92q0GoqMpU3JJ0ZioHF-DMP-gUsKK0FEo,2509
852
+ maxframe/tensor/arithmetic/sign.py,sha256=fjHjRMZANFIcVVjjXeKzXR3g9MiSruBC7VNUZpKHess,2505
853
+ maxframe/tensor/arithmetic/sinh.py,sha256=9qEde9-QG83iRjDhdnTjd_pkmsnYswRYX11d3MfwIfo,2871
854
+ maxframe/tensor/arithmetic/logical_or.py,sha256=diAQjMaZNTxKOGm-Zs9gLkMA1fyHL2BjQELiN62x6xA,2543
855
+ maxframe/tensor/arithmetic/fmax.py,sha256=m4EX8iEZTMt2zTzgbzMQOTATyOsX-UN5DLaUXc_bjmA,3528
856
+ maxframe/tensor/arithmetic/mod.py,sha256=IGudpYvi3VFWHJOnzXhjqsO4LEryxd96t3hfr-AAfzY,3199
857
+ maxframe/tensor/arithmetic/greater_equal.py,sha256=Dqyy2Hcpo812dZWJPQjkCFhIzAUKr0_R2AZpEfeAw-8,2258
858
+ maxframe/tensor/arithmetic/deg2rad.py,sha256=_ZyUOC2v3KylLt4VGIPVVfAG7T1Y__5Zun3tF2hAx-4,2125
859
+ maxframe/tensor/arithmetic/exp.py,sha256=yZ-6sdJc4nAOYoJlgyCvKB_EYUTyLB7dtdGQeW56klQ,3744
860
+ maxframe/tensor/arithmetic/arcsinh.py,sha256=jxDesIe0uZFbqO-eVa28WcUd7HNQh_rD5IJ43zuKd9U,2985
861
+ maxframe/tensor/arithmetic/arccosh.py,sha256=DbGbi_qY_sB6bFud6YZjERYIDiGYqmS0qSIMP1CziJ4,2985
862
+ maxframe/tensor/arithmetic/log1p.py,sha256=0jKIblj2mn7TbK2b-Pbwb64qOF9UeNCDThDQIvpU3yE,3200
863
+ maxframe/tensor/arithmetic/cbrt.py,sha256=D8BAaAuYbND1g1e21TkRu3QH5LNxsLEfZegGpS7t100,2069
864
+ maxframe/tensor/arithmetic/power.py,sha256=22xd8tTX63QBTU3HFbBRLul3UWIB43RWnFGC5z-tirU,3157
865
+ maxframe/tensor/arithmetic/not_equal.py,sha256=omwM3H8PZnaemV7kYxzYXso_9V0YdqZjWkRHNf_OxiE,2228
866
+ maxframe/tensor/arithmetic/radians.py,sha256=AZLnkjXtoK3KMRNFgUPF6mvBeum8FCM5sTRuX-5r1g0,2334
867
+ maxframe/tensor/arithmetic/sin.py,sha256=zAI8inhDFTjS2i1PXbE2P3F-djXDP8TEJX1qLFqEu4A,3274
868
+ maxframe/tensor/arithmetic/reciprocal.py,sha256=XQpGtYw7LjpS6q6d6a4evmBqbT-FjvvcGh4jJqMkTCQ,2403
869
+ maxframe/tensor/arithmetic/bitxor.py,sha256=TX1zzXoiEdjlDJKMu4m9kA0_a2ucCNIFTnGncbyOWwo,2863
870
+ maxframe/tensor/arithmetic/tests/__init__.py,sha256=YsJxv7HbG4YYJmqAJZPYb8iHFRQX5JGpGn2PInDXvY8,596
871
+ maxframe/tensor/arithmetic/tests/test_arithmetic.py,sha256=BGS-hwNO_SM5XXeW_RDSqkBeXfCjfEEh2sPiH2CkZqM,12559
872
+ maxframe/tensor/lib/__init__.py,sha256=zna2_lR6uuQAuS0wBqg1EkC3V0eeHuJdCv4VEI-MFQw,658
873
+ maxframe/tensor/lib/index_tricks.py,sha256=BRRnjvaRAqJe95FTUDjYsmYM50ibvFzYcvnHEA_WB9E,14142
874
+ maxframe/tensor/indexing/choose.py,sha256=nV6P_z3kp4sVpGjPNXPE5S6U68b7KR7_GMc3zBoFcng,7644
875
+ maxframe/tensor/indexing/nonzero.py,sha256=ng4axHH0IkIvSHkrUZ3t8sGz5F0TKn5TyigRVohgOKI,3493
876
+ maxframe/tensor/indexing/slice.py,sha256=NptsH__F5Qq8mOTwgTR7RejXj8h_FufsIBUknbfqcNQ,1130
877
+ maxframe/tensor/indexing/setitem.py,sha256=Y-u7o2_9UAuf5bqH0AG-BMFldJSGhiNJHNT1y25KE8o,4725
878
+ maxframe/tensor/indexing/__init__.py,sha256=kIbsJTQgW83EUzSw0EonOdNjcoywpxsy1HQ-3Kff3UM,1565
879
+ maxframe/tensor/indexing/getitem.py,sha256=Vb7mxlo0j_FVj967FPkP9dsuN0GSdhj_TjnE2fC_pMc,4768
880
+ maxframe/tensor/indexing/core.py,sha256=evzxbwfrgFLkkO2_itP2C_hfhY4qyrKOhZTfLCIK7BM,7022
881
+ maxframe/tensor/indexing/unravel_index.py,sha256=jZDkGk-0rPfAJ32QCPIDeHcNh24DSEPswaDL36A_FD0,3273
882
+ maxframe/tensor/indexing/flatnonzero.py,sha256=TYWx70TFKzDaJOuq-IN94_VXuBHZd4qDCk0QvQNLQmY,1592
883
+ maxframe/tensor/indexing/fill_diagonal.py,sha256=66UpYKsQLIPfQGvyFD9XRVtcp0b3kxqU_9WSYcfXAwI,5396
884
+ maxframe/tensor/indexing/take.py,sha256=Ho3w4K0vMP3FpnwjrY-TSz7BgdxkU73g3ORU-FUTLjk,4208
885
+ maxframe/tensor/indexing/compress.py,sha256=8wnffG8iYOPP9MVux7FKfDXB8-M_LYiS11-PzhdKPbQ,3983
886
+ maxframe/tensor/indexing/extract.py,sha256=Kr3upYT2ollrwOK1UlvkYG4FmJnTMt2NSSZ1ThV4ldU,2022
887
+ maxframe/tensor/indexing/tests/__init__.py,sha256=YsJxv7HbG4YYJmqAJZPYb8iHFRQX5JGpGn2PInDXvY8,596
888
+ maxframe/tensor/indexing/tests/test_indexing.py,sha256=oZDiAQuhXyL5e8_GumJ9oeab3NeefZiXVeGiGqaUooA,6606
889
+ maxframe/tensor/random/laplace.py,sha256=RJbjJi2A19LYYiNL__q5cZwnJWCKQzCTjsvCcHYX_9k,4969
890
+ maxframe/tensor/random/standard_exponential.py,sha256=advp6svLPcVhUfjz0l9GKEj4nlO9Jpfzv4e8dHfwMFU,2392
891
+ maxframe/tensor/random/dirichlet.py,sha256=qex_kK6uOy56MFZgCkl5bTaxR7UOi7F7fo4j3S6BpOU,4338
892
+ maxframe/tensor/random/standard_normal.py,sha256=vgNemeZESYolCXXP0ZJ4oQYbMKKQ9etVVaoxrmakxtQ,2507
893
+ maxframe/tensor/random/standard_cauchy.py,sha256=HPypGkSLM3IPNfr8gGYU1rw9vaf8K6fFlHNgvXqcLX0,3815
894
+ maxframe/tensor/random/geometric.py,sha256=hOwqVZMMDyza58otMfgYqN7pKndCM4aIXCLcDWcaOxI,3304
895
+ maxframe/tensor/random/weibull.py,sha256=WdbP80lVkf-tkrNYjFV8J38wd45-NYZLgQffbfZ59eM,4849
896
+ maxframe/tensor/random/randn.py,sha256=ie9F0OiSw1YZmy0xbOZpG6iaTX8Q_1mnNmkMXzctlBI,3295
897
+ maxframe/tensor/random/multivariate_normal.py,sha256=Dpj5L0uCBZTE0vSZZU7Oc8UhlSWb_pVlsndssN5b9Jg,6720
898
+ maxframe/tensor/random/normal.py,sha256=xaAuQBNE8jBACtYcKFmsFjiJraqJL0dQLqVZZTyzdHk,5163
899
+ maxframe/tensor/random/poisson.py,sha256=aRwpLB76AQIjHBNHHomt2JR3Wlann1_MhHRwAYbbW58,3840
900
+ maxframe/tensor/random/logistic.py,sha256=PKOrRllimjP1-NVNP7fbglJzl2fF-zxfvXRNyXciy24,4682
901
+ maxframe/tensor/random/beta.py,sha256=AkU7aj1Nq6q5tC2W6wYeY1tql3iQ4RtZ84AzAQDy4GE,3113
902
+ maxframe/tensor/random/choice.py,sha256=vrhJJztKsoYYEXmWXpqtsTjZEptR4kVKHvoDqEMcQxw,6013
903
+ maxframe/tensor/random/__init__.py,sha256=7M5ELFdKRKWmm-ZJB5m1lIC0e1hzIAqGzRfZFKMjNdM,6993
904
+ maxframe/tensor/random/core.py,sha256=hQIjaiMvCcX-aGbjL-vr10DPScmDwtwOtA0Je2cAghA,7746
905
+ maxframe/tensor/random/multinomial.py,sha256=TbYCHFQmHBirL_wFuRVzQWWi4dvTsPN0edxu13mmyPA,4725
906
+ maxframe/tensor/random/exponential.py,sha256=L9Q5Adw0dWdVFMCRSWPmciAUFnIKPhqtapl0UDgLQlw,3537
907
+ maxframe/tensor/random/pareto.py,sha256=PKZZuNpoHoc6vjN18eFFs1RuLbAM8BnnYNVLtEBj9aU,5343
908
+ maxframe/tensor/random/negative_binomial.py,sha256=D_OJdAvPQnb8MAoX9Eg9v43SfkHtQnbPVi7WEW65N_w,4793
909
+ maxframe/tensor/random/randint.py,sha256=VZDaiIyFdR_NKN7mUHQtXAIBo0-vu5c9uM4t32IxwhU,4173
910
+ maxframe/tensor/random/triangular.py,sha256=hQsbwennlH-6RFgvz7xpMeLTloAAUzSUbHyqu2MxAgU,4302
911
+ maxframe/tensor/random/shuffle.py,sha256=4AvPn5hl2YQ0iMaY4-x7AW5b3uFCfNn9Zf7V85_uBvM,1762
912
+ maxframe/tensor/random/hypergeometric.py,sha256=vpc8jeJGglP13oGh-kb4jn2YxlCoVMBfhbZwoKFmJdo,5587
913
+ maxframe/tensor/random/random_sample.py,sha256=EUrTBS9JP48eWpPEUEjRLnlBhKsYYt-tJeVRJIWmbCM,2959
914
+ maxframe/tensor/random/rand.py,sha256=5Y1tPYgb28u1vLUTz37y5-cKEjaG1MJOvNe1LPdB9RU,2492
915
+ maxframe/tensor/random/gumbel.py,sha256=gzxUjqCZZ2q5oW3NuH4HHW4ZTJ9zYahMJjAD4_P6dWs,6275
916
+ maxframe/tensor/random/chisquare.py,sha256=H-JKZAVJRLL1Z_PdLVpa_LpaOTvvzY5krlZPmXuKT_E,3708
917
+ maxframe/tensor/random/rayleigh.py,sha256=zom1drc8bkH-AqmsWt58CzmkV0Zpdmi83te_blVLa7s,3910
918
+ maxframe/tensor/random/noncentral_chisquare.py,sha256=e_cz6TRqQjwZznxmSGzy06OP6F7XuvnHZ-Ioe0dFMBM,4891
919
+ maxframe/tensor/random/standard_gamma.py,sha256=7XpHwc19zC7J3jM31FsC9oaMqK-i00Mb2SnS2hYM_Ms,4203
920
+ maxframe/tensor/random/permutation.py,sha256=PsaD3QavtMFIRKHPqqRcA0ImtCAjNc4Gdj5FwLDyT6k,3533
921
+ maxframe/tensor/random/f.py,sha256=nLiEZMGKm7lRbyhy9D7n1K_vcW8Qu9EUwJ1Owd97_Rw,5053
922
+ maxframe/tensor/random/noncentral_f.py,sha256=EueF5BbjA4gRamStmluylF7R-cxJQrIiL3-zEWUpQQU,4923
923
+ maxframe/tensor/random/uniform.py,sha256=iFx75fNAZlRLQkH_0LkgEIs9tLRFPq_HVGDADPvSmGw,4653
924
+ maxframe/tensor/random/bytes.py,sha256=qU02w79MJ0zcXVOwaEWffNpRaxLEBw4A2wWsjSQiyhU,1008
925
+ maxframe/tensor/random/logseries.py,sha256=FgmHxa8TfxR2KtWNtrSJ9Q17BlWLRLXoyFlUMiSf_b4,4391
926
+ maxframe/tensor/random/standard_t.py,sha256=grT821SZ9x74JbFn-IBGRYGQ0Ye4eyZfYNAjCRNAwgY,4873
927
+ maxframe/tensor/random/zipf.py,sha256=-3fLh4xr0Vl51CNqE7XQvyn7efwTmfkXAy9fcO8RSTU,4045
928
+ maxframe/tensor/random/power.py,sha256=slDqED6uqyF0kdz4FkdNc2gYkeeu9m7Ef7RSNVLsG0I,4799
929
+ maxframe/tensor/random/random_integers.py,sha256=LY4QPKh3QOuz3uzoEXy-Q5gwIY4aLPMjTcUolZws2ZM,4314
930
+ maxframe/tensor/random/vonmises.py,sha256=SF6sW11TUxHRDyl2R2_RzswR4BflxFKdRQbI3v5hRFk,4753
931
+ maxframe/tensor/random/lognormal.py,sha256=K_eeIqvRIqaxfQ7vb5frJgR-8oFdEgG-Bf1VaGkH6Yk,6009
932
+ maxframe/tensor/random/gamma.py,sha256=_aXpPtCBPSse_muDVReUaMpIJzPpD6-lclQYURuTmgM,4573
933
+ maxframe/tensor/random/wald.py,sha256=VWTdrW458HLYR_KXBwK9ryTIYc5J9GxBaW3Nwa3xnVk,4324
934
+ maxframe/tensor/random/binomial.py,sha256=ItnWUoDDGNQuuquEP0KfzANnj1Uh5wPc3NLnjcXRZjY,5245
935
+ maxframe/tensor/random/tests/__init__.py,sha256=YsJxv7HbG4YYJmqAJZPYb8iHFRQX5JGpGn2PInDXvY8,596
936
+ maxframe/tensor/random/tests/test_random.py,sha256=Ff6SPeT-aSQI1KSqH0QfJ3NBQsqYYQ3FNMjIo7z3LOM,4229
937
+ maxframe/remote/run_script.py,sha256=M7g1ZorfEdzH_8fPA4Rcv821UJZ5dD9vgtYA7JAMf_g,3651
938
+ maxframe/remote/__init__.py,sha256=EBfizOWJqWnsbhR6nOom9-TUSuGF7t6C6Hfrt9eP3V4,729
939
+ maxframe/remote/core.py,sha256=FX_XVQB0uz27JMmjCiN48mBiklGXI9peAq39aX51cko,6551