maxframe 1.3.1__cp311-cp311-win_amd64.whl → 2.0.0__cp311-cp311-win_amd64.whl

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

Potentially problematic release.


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

Files changed (640) hide show
  1. maxframe/_utils.cp311-win_amd64.pyd +0 -0
  2. maxframe/_utils.pyi +21 -0
  3. maxframe/_utils.pyx +4 -3
  4. maxframe/codegen/__init__.py +27 -0
  5. maxframe/{codegen.py → codegen/core.py} +49 -43
  6. maxframe/codegen/spe/__init__.py +16 -0
  7. maxframe/codegen/spe/core.py +307 -0
  8. maxframe/codegen/spe/dataframe/__init__.py +37 -0
  9. maxframe/codegen/spe/dataframe/accessors/__init__.py +15 -0
  10. maxframe/codegen/spe/dataframe/accessors/base.py +53 -0
  11. maxframe/codegen/spe/dataframe/accessors/dict_.py +194 -0
  12. maxframe/codegen/spe/dataframe/accessors/list_.py +80 -0
  13. maxframe/codegen/spe/dataframe/arithmetic.py +84 -0
  14. maxframe/codegen/spe/dataframe/datasource.py +181 -0
  15. maxframe/codegen/spe/dataframe/datastore.py +204 -0
  16. maxframe/codegen/spe/dataframe/extensions.py +63 -0
  17. maxframe/codegen/spe/dataframe/fetch.py +26 -0
  18. maxframe/codegen/spe/dataframe/groupby.py +224 -0
  19. maxframe/codegen/spe/dataframe/indexing.py +238 -0
  20. maxframe/codegen/spe/dataframe/merge.py +73 -0
  21. maxframe/codegen/spe/dataframe/misc.py +286 -0
  22. maxframe/codegen/spe/dataframe/missing.py +64 -0
  23. maxframe/codegen/spe/dataframe/reduction.py +160 -0
  24. maxframe/codegen/spe/dataframe/sort.py +83 -0
  25. maxframe/codegen/spe/dataframe/statistics.py +46 -0
  26. maxframe/codegen/spe/dataframe/tests/__init__.py +13 -0
  27. maxframe/codegen/spe/dataframe/tests/accessors/__init__.py +13 -0
  28. maxframe/codegen/spe/dataframe/tests/accessors/test_base.py +33 -0
  29. maxframe/codegen/spe/dataframe/tests/accessors/test_dict.py +310 -0
  30. maxframe/codegen/spe/dataframe/tests/accessors/test_list.py +137 -0
  31. maxframe/codegen/spe/dataframe/tests/indexing/__init__.py +13 -0
  32. maxframe/codegen/spe/dataframe/tests/indexing/conftest.py +58 -0
  33. maxframe/codegen/spe/dataframe/tests/indexing/test_getitem.py +124 -0
  34. maxframe/codegen/spe/dataframe/tests/indexing/test_iloc.py +76 -0
  35. maxframe/codegen/spe/dataframe/tests/indexing/test_indexing.py +39 -0
  36. maxframe/codegen/spe/dataframe/tests/indexing/test_rename.py +51 -0
  37. maxframe/codegen/spe/dataframe/tests/indexing/test_reset_index.py +88 -0
  38. maxframe/codegen/spe/dataframe/tests/indexing/test_sample.py +45 -0
  39. maxframe/codegen/spe/dataframe/tests/indexing/test_set_axis.py +45 -0
  40. maxframe/codegen/spe/dataframe/tests/indexing/test_set_index.py +41 -0
  41. maxframe/codegen/spe/dataframe/tests/indexing/test_setitem.py +46 -0
  42. maxframe/codegen/spe/dataframe/tests/misc/__init__.py +13 -0
  43. maxframe/codegen/spe/dataframe/tests/misc/test_apply.py +133 -0
  44. maxframe/codegen/spe/dataframe/tests/misc/test_drop_duplicates.py +92 -0
  45. maxframe/codegen/spe/dataframe/tests/misc/test_misc.py +234 -0
  46. maxframe/codegen/spe/dataframe/tests/missing/__init__.py +13 -0
  47. maxframe/codegen/spe/dataframe/tests/missing/test_checkna.py +94 -0
  48. maxframe/codegen/spe/dataframe/tests/missing/test_dropna.py +50 -0
  49. maxframe/codegen/spe/dataframe/tests/missing/test_fillna.py +94 -0
  50. maxframe/codegen/spe/dataframe/tests/missing/test_replace.py +45 -0
  51. maxframe/codegen/spe/dataframe/tests/test_arithmetic.py +73 -0
  52. maxframe/codegen/spe/dataframe/tests/test_datasource.py +184 -0
  53. maxframe/codegen/spe/dataframe/tests/test_datastore.py +200 -0
  54. maxframe/codegen/spe/dataframe/tests/test_extensions.py +88 -0
  55. maxframe/codegen/spe/dataframe/tests/test_groupby.py +225 -0
  56. maxframe/codegen/spe/dataframe/tests/test_merge.py +400 -0
  57. maxframe/codegen/spe/dataframe/tests/test_reduction.py +104 -0
  58. maxframe/codegen/spe/dataframe/tests/test_sort.py +159 -0
  59. maxframe/codegen/spe/dataframe/tests/test_statistics.py +70 -0
  60. maxframe/codegen/spe/dataframe/tests/test_tseries.py +29 -0
  61. maxframe/codegen/spe/dataframe/tests/test_value_counts.py +60 -0
  62. maxframe/codegen/spe/dataframe/tests/test_window.py +69 -0
  63. maxframe/codegen/spe/dataframe/tseries.py +46 -0
  64. maxframe/codegen/spe/dataframe/udf.py +62 -0
  65. maxframe/codegen/spe/dataframe/value_counts.py +31 -0
  66. maxframe/codegen/spe/dataframe/window.py +65 -0
  67. maxframe/codegen/spe/learn/__init__.py +15 -0
  68. maxframe/codegen/spe/learn/contrib/__init__.py +15 -0
  69. maxframe/codegen/spe/learn/contrib/lightgbm.py +160 -0
  70. maxframe/codegen/spe/learn/contrib/models.py +41 -0
  71. maxframe/codegen/spe/learn/contrib/pytorch.py +49 -0
  72. maxframe/codegen/spe/learn/contrib/tests/__init__.py +13 -0
  73. maxframe/codegen/spe/learn/contrib/tests/test_lightgbm.py +123 -0
  74. maxframe/codegen/spe/learn/contrib/tests/test_models.py +41 -0
  75. maxframe/codegen/spe/learn/contrib/tests/test_pytorch.py +53 -0
  76. maxframe/codegen/spe/learn/contrib/tests/test_xgboost.py +98 -0
  77. maxframe/codegen/spe/learn/contrib/xgboost.py +152 -0
  78. maxframe/codegen/spe/learn/metrics/__init__.py +15 -0
  79. maxframe/codegen/spe/learn/metrics/_classification.py +120 -0
  80. maxframe/codegen/spe/learn/metrics/tests/__init__.py +13 -0
  81. maxframe/codegen/spe/learn/metrics/tests/test_classification.py +93 -0
  82. maxframe/codegen/spe/learn/model_selection/__init__.py +13 -0
  83. maxframe/codegen/spe/learn/model_selection/tests/__init__.py +13 -0
  84. maxframe/codegen/spe/learn/model_selection/tests/test_split.py +41 -0
  85. maxframe/codegen/spe/learn/preprocessing/__init__.py +15 -0
  86. maxframe/codegen/spe/learn/preprocessing/_data.py +37 -0
  87. maxframe/codegen/spe/learn/preprocessing/_label.py +47 -0
  88. maxframe/codegen/spe/learn/preprocessing/tests/__init__.py +13 -0
  89. maxframe/codegen/spe/learn/preprocessing/tests/test_data.py +31 -0
  90. maxframe/codegen/spe/learn/preprocessing/tests/test_label.py +43 -0
  91. maxframe/codegen/spe/learn/utils/__init__.py +15 -0
  92. maxframe/codegen/spe/learn/utils/checks.py +55 -0
  93. maxframe/codegen/spe/learn/utils/multiclass.py +60 -0
  94. maxframe/codegen/spe/learn/utils/shuffle.py +85 -0
  95. maxframe/codegen/spe/learn/utils/sparsefuncs.py +35 -0
  96. maxframe/codegen/spe/learn/utils/tests/__init__.py +13 -0
  97. maxframe/codegen/spe/learn/utils/tests/test_checks.py +48 -0
  98. maxframe/codegen/spe/learn/utils/tests/test_multiclass.py +52 -0
  99. maxframe/codegen/spe/learn/utils/tests/test_shuffle.py +50 -0
  100. maxframe/codegen/spe/learn/utils/tests/test_sparsefuncs.py +34 -0
  101. maxframe/codegen/spe/learn/utils/tests/test_validation.py +44 -0
  102. maxframe/codegen/spe/learn/utils/validation.py +35 -0
  103. maxframe/codegen/spe/objects.py +26 -0
  104. maxframe/codegen/spe/remote.py +29 -0
  105. maxframe/codegen/spe/tensor/__init__.py +28 -0
  106. maxframe/codegen/spe/tensor/arithmetic.py +95 -0
  107. maxframe/codegen/spe/tensor/core.py +41 -0
  108. maxframe/codegen/spe/tensor/datasource.py +165 -0
  109. maxframe/codegen/spe/tensor/extensions.py +35 -0
  110. maxframe/codegen/spe/tensor/fetch.py +26 -0
  111. maxframe/codegen/spe/tensor/indexing.py +63 -0
  112. maxframe/codegen/spe/tensor/linalg.py +63 -0
  113. maxframe/codegen/spe/tensor/merge.py +31 -0
  114. maxframe/codegen/spe/tensor/misc.py +121 -0
  115. maxframe/codegen/spe/tensor/random.py +29 -0
  116. maxframe/codegen/spe/tensor/reduction.py +39 -0
  117. maxframe/codegen/spe/tensor/reshape.py +26 -0
  118. maxframe/codegen/spe/tensor/sort.py +42 -0
  119. maxframe/codegen/spe/tensor/special.py +35 -0
  120. maxframe/codegen/spe/tensor/statistics.py +24 -0
  121. maxframe/codegen/spe/tensor/tests/__init__.py +13 -0
  122. maxframe/codegen/spe/tensor/tests/test_arithmetic.py +103 -0
  123. maxframe/codegen/spe/tensor/tests/test_datasource.py +99 -0
  124. maxframe/codegen/spe/tensor/tests/test_extensions.py +37 -0
  125. maxframe/codegen/spe/tensor/tests/test_indexing.py +44 -0
  126. maxframe/codegen/spe/tensor/tests/test_linalg.py +38 -0
  127. maxframe/codegen/spe/tensor/tests/test_merge.py +28 -0
  128. maxframe/codegen/spe/tensor/tests/test_misc.py +94 -0
  129. maxframe/codegen/spe/tensor/tests/test_random.py +55 -0
  130. maxframe/codegen/spe/tensor/tests/test_reduction.py +65 -0
  131. maxframe/codegen/spe/tensor/tests/test_reshape.py +39 -0
  132. maxframe/codegen/spe/tensor/tests/test_sort.py +49 -0
  133. maxframe/codegen/spe/tensor/tests/test_special.py +28 -0
  134. maxframe/codegen/spe/tensor/tests/test_statistics.py +29 -0
  135. maxframe/codegen/spe/tests/__init__.py +13 -0
  136. maxframe/codegen/spe/tests/test_remote.py +29 -0
  137. maxframe/codegen/spe/tests/test_spe_codegen.py +141 -0
  138. maxframe/codegen/spe/utils.py +54 -0
  139. maxframe/codegen/tests/__init__.py +13 -0
  140. maxframe/{tests → codegen/tests}/test_codegen.py +3 -5
  141. maxframe/config/__init__.py +1 -1
  142. maxframe/config/config.py +50 -23
  143. maxframe/config/tests/test_config.py +4 -12
  144. maxframe/config/validators.py +5 -0
  145. maxframe/conftest.py +38 -10
  146. maxframe/core/__init__.py +1 -0
  147. maxframe/core/context.py +110 -0
  148. maxframe/core/entity/__init__.py +1 -0
  149. maxframe/core/entity/core.py +0 -7
  150. maxframe/core/entity/objects.py +19 -5
  151. maxframe/core/entity/output_types.py +11 -0
  152. maxframe/core/entity/tests/test_objects.py +11 -12
  153. maxframe/core/entity/tileables.py +3 -1
  154. maxframe/core/entity/utils.py +15 -0
  155. maxframe/core/graph/__init__.py +6 -1
  156. maxframe/core/graph/builder/base.py +5 -1
  157. maxframe/core/graph/core.cp311-win_amd64.pyd +0 -0
  158. maxframe/core/graph/core.pyx +17 -6
  159. maxframe/core/graph/entity.py +18 -6
  160. maxframe/core/operator/__init__.py +8 -3
  161. maxframe/core/operator/base.py +35 -12
  162. maxframe/core/operator/core.py +37 -14
  163. maxframe/core/operator/fetch.py +5 -18
  164. maxframe/core/operator/objects.py +0 -20
  165. maxframe/core/operator/shuffle.py +6 -72
  166. maxframe/dataframe/__init__.py +1 -0
  167. maxframe/dataframe/accessors/datetime_/core.py +7 -4
  168. maxframe/dataframe/accessors/string_/core.py +9 -6
  169. maxframe/dataframe/arithmetic/core.py +31 -20
  170. maxframe/dataframe/arithmetic/tests/test_arithmetic.py +6 -0
  171. maxframe/dataframe/core.py +98 -91
  172. maxframe/dataframe/datasource/core.py +8 -1
  173. maxframe/dataframe/datasource/date_range.py +8 -0
  174. maxframe/dataframe/datasource/from_index.py +9 -5
  175. maxframe/dataframe/datasource/from_records.py +9 -2
  176. maxframe/dataframe/datasource/from_tensor.py +32 -21
  177. maxframe/dataframe/datasource/read_csv.py +8 -2
  178. maxframe/dataframe/datasource/read_odps_query.py +109 -19
  179. maxframe/dataframe/datasource/read_odps_table.py +20 -5
  180. maxframe/dataframe/datasource/read_parquet.py +8 -3
  181. maxframe/dataframe/datasource/tests/test_datasource.py +80 -1
  182. maxframe/dataframe/datastore/tests/test_to_odps.py +52 -1
  183. maxframe/dataframe/datastore/to_csv.py +7 -3
  184. maxframe/dataframe/datastore/to_odps.py +42 -6
  185. maxframe/dataframe/extensions/__init__.py +6 -1
  186. maxframe/dataframe/extensions/apply_chunk.py +96 -136
  187. maxframe/dataframe/extensions/flatjson.py +3 -2
  188. maxframe/dataframe/extensions/flatmap.py +15 -7
  189. maxframe/dataframe/fetch/core.py +12 -1
  190. maxframe/dataframe/groupby/__init__.py +7 -0
  191. maxframe/dataframe/groupby/aggregation.py +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.cp311-win_amd64.pyd +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.cp311-win_amd64.pyd +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-1.3.1.dist-info → maxframe-2.0.0.dist-info}/WHEEL +1 -1
  634. maxframe_client/clients/framedriver.py +19 -3
  635. maxframe_client/fetcher.py +113 -6
  636. maxframe_client/session/odps.py +173 -38
  637. maxframe_client/session/task.py +3 -1
  638. maxframe_client/tests/test_session.py +41 -5
  639. maxframe-1.3.1.dist-info/RECORD +0 -705
  640. {maxframe-1.3.1.dist-info → maxframe-2.0.0.dist-info}/top_level.txt +0 -0
@@ -1,705 +0,0 @@
1
- maxframe/__init__.py,sha256=6Y3yW67GtpKOGqMC1prt4yxqUTc0twHA3yjMEH-5WTw,1036
2
- maxframe/_utils.cp311-win_amd64.pyd,sha256=SFusQ3VQxhyGyAbtDsUsdv8AEr3uajUaX1Fn9AxwLQs,306688
3
- maxframe/_utils.pxd,sha256=ckEN1J8rXAtNYW7CictnSVYamH-sQx-uIuWrQts_OT4,1187
4
- maxframe/_utils.pyx,sha256=oOBAUIaOM0mkKY_dzymY75Vit8bW64vbFrtwzqQpUA8,17564
5
- maxframe/codegen.py,sha256=ua7cT4RntpGndSqgY_kIActdk3bqkcayFUWl1T4sBTs,20560
6
- maxframe/conftest.py,sha256=i1XQkRdAVI-qRFdGyN9d4dcCeLLAk5XRBoc7tkLPJhI,6489
7
- maxframe/env.py,sha256=w0xRzOgA3Vwjr5eK_AcTrySLC6HtnNcG-MoPnG-0Ce0,1435
8
- maxframe/errors.py,sha256=H0aocmLGvM9waIarKKIu4gnKxbpPsO2H9QK76c_CVCA,1066
9
- maxframe/extension.py,sha256=ob4Gysl3pioh2bHKxP72gru8S_EZumxmxPZBxySAhZ4,2816
10
- maxframe/mixin.py,sha256=O1gKFupmJpA6L8zXnVfY9MpZTVkbuy4n017YmHsfxb4,3624
11
- maxframe/opcodes.py,sha256=QZiRjRvreDhAsCPucETOxq3kVzH6YMTpg4T4UXQpjsA,11602
12
- maxframe/protocol.py,sha256=WRqzHPDR1Xy0gLMz2PtsAFTpdkCUj7lWJ84VtMxd8n8,19526
13
- maxframe/session.py,sha256=exh8VZweXcA3lPkp_ao_gJkkd5euq9pFBJ_9cR2t-9k,37710
14
- maxframe/typing_.py,sha256=ncVNpaqtO4zEzDA5yHa-OazpzTG8D8ZLule6wXIgPW0,1220
15
- maxframe/udf.py,sha256=85UyYudOtcQKHEFZQ6wptUHYJnUidm_8U9JZ5c-qPow,5516
16
- maxframe/utils.py,sha256=_VB_sQwA2qjzTJLhVA_EMFAhNKPDFtk1beuvFhtY_eU,36078
17
- maxframe/config/__init__.py,sha256=yypfQ24UqN_KoRI6SYFggZc8q2gck82RPkKkTdaxkRY,698
18
- maxframe/config/config.py,sha256=JUkWscpjFxIX3lbj3rVNru9uEusoEVeRiyBCWc6Tahs,17171
19
- maxframe/config/validators.py,sha256=4sE2Qj9f5sBBUbqbtxgwPztA1NZiI33Coz08wRkZ7Zg,2599
20
- maxframe/config/tests/__init__.py,sha256=4LpNXO11JAdLjSut3p036oEEXlDEB-6AURW9oci5W5Y,609
21
- maxframe/config/tests/test_config.py,sha256=9O25KSKUe4RrOPmnpGCHNURtpISbTZOvUkHTLLgawmo,3405
22
- maxframe/config/tests/test_validators.py,sha256=3V4zWHbgLmOF0dOsP91z_S6qmUcRFpuWy-nCieNiyDI,1274
23
- maxframe/core/__init__.py,sha256=MUmhPWYsoxf2lne8rJITP1oR6_y75e3hzJDxS2VoDaw,1568
24
- maxframe/core/accessor.py,sha256=ghmMSiH_PK4JJ63BlCu5xb85FU94nGhNYCqTc4zMTMQ,1527
25
- maxframe/core/base.py,sha256=LNHcoT5T02MhYAgPXPTVz5HdVHpKFDPD_Z-7NednVjc,4691
26
- maxframe/core/mode.py,sha256=fpvJAQ6if77EiM0SlNq0JEnBwkzFQTgzX3d8wOrlus0,3107
27
- maxframe/core/entity/__init__.py,sha256=drvoJz02A-NDrV6oWTWk2eBN5f9MOJQF-oACiS9sYHY,1108
28
- maxframe/core/entity/core.py,sha256=mIwS18kkS_xeI8V3sVAaZSU5WKFvsCl3mUFHp0dqpks,4170
29
- maxframe/core/entity/executable.py,sha256=xojyy3u8MTQHX7WFPieoquMvlFenHLcZvDlLMuhlu04,11293
30
- maxframe/core/entity/objects.py,sha256=jfyKTIcR3ijflWf1kaiYGPEpQLH2fzNapNPJH3ODSJQ,3882
31
- maxframe/core/entity/output_types.py,sha256=A_Sai1EiTr_nWRIRX7BXKyRnDU7yXZzQZw3WhiNrrzI,2623
32
- maxframe/core/entity/tileables.py,sha256=8nB__HWl5KvZSHmfZZNpfNWsP63uqV3c9Gre0NbzWFM,11636
33
- maxframe/core/entity/utils.py,sha256=Cx7bfNQTbYZjAxNP-1AXjBozZ1mGqJ1KCz7rwDlxn6w,966
34
- maxframe/core/entity/tests/__init__.py,sha256=4LpNXO11JAdLjSut3p036oEEXlDEB-6AURW9oci5W5Y,609
35
- maxframe/core/entity/tests/test_objects.py,sha256=UwJTYFSUr61E255tPrGwnJlhHDGlkpSugFk0kRsJG8Q,1392
36
- maxframe/core/graph/__init__.py,sha256=h7zLVFfnmRPrzaiO7zbuOTMZ0iSNZN5TaD5fB7vuxxA,782
37
- maxframe/core/graph/core.cp311-win_amd64.pyd,sha256=xLR3DcFifE7WxyIu-eBysTsuoDAPketUhUaENqzGeXY,251392
38
- maxframe/core/graph/core.pyx,sha256=DJ3RV_5W1lNDRj113ewpSLosiiHCqXYQNuPVR5mBaVU,16390
39
- maxframe/core/graph/entity.py,sha256=zfijVHeCTOJynagcPSEBEIi194mjMwXcW9p4jopwoZ8,5010
40
- maxframe/core/graph/builder/__init__.py,sha256=NjIcWQ1ZtEbRJalz8XH1UKaQLpsvOqouRPeRBaul5cA,655
41
- maxframe/core/graph/builder/base.py,sha256=JnNwP--BtwwQQGDmdDCEzF89UDFtul8oo8hywXwMFrg,2596
42
- maxframe/core/graph/builder/tileable.py,sha256=OA-ljojBSA-t8VTkxAqmq_33Bb2qVAWsQcK8nwLcW48,1207
43
- maxframe/core/graph/builder/utils.py,sha256=URYL-xfwQqpJVf91FtB9dheAvFd1RfSQst_4esjYNgM,1353
44
- maxframe/core/graph/tests/__init__.py,sha256=4LpNXO11JAdLjSut3p036oEEXlDEB-6AURW9oci5W5Y,609
45
- maxframe/core/graph/tests/test_graph.py,sha256=msKwsorW-eXcUqgFc-9ajGIOSdXM3FzR4cz1V4-TttY,7667
46
- maxframe/core/operator/__init__.py,sha256=txeF8vPlbKQfBRwLU75tqMvW0oTJ0Fro4eW-P6q-WI8,1098
47
- maxframe/core/operator/base.py,sha256=VFZlvpHgbBoY0QXN66PUA-WePpQ9hfHajSwl3aV4hTA,15786
48
- maxframe/core/operator/core.py,sha256=_fmgTjMXOUvNWfCMZdGvqZePu6UMMtMYbx97gd-FU9A,9539
49
- maxframe/core/operator/fetch.py,sha256=cRE0_XonzBULGRJql2oWPi6glXC5zgDnt-070qKbh6c,1563
50
- maxframe/core/operator/objects.py,sha256=-p45U_-VN7T4MqQeW7FOOYLkmCmZ6gtFHzmPkoWIhK0,2028
51
- maxframe/core/operator/shuffle.py,sha256=ezfnMuW9taowpL7FZw_Qapb6fU4wtR4QIxk_OFjXuzI,4857
52
- maxframe/core/operator/utils.py,sha256=ejUrdYNVEDHSdgmBagWRMfIVAiJ_lBDaW8xf-iBFBuU,1761
53
- maxframe/core/operator/tests/__init__.py,sha256=4LpNXO11JAdLjSut3p036oEEXlDEB-6AURW9oci5W5Y,609
54
- maxframe/core/operator/tests/test_core.py,sha256=lM-SyMKNkwqBWdYmBIIULs9eE7qs8-_BqytyRamucWY,1755
55
- maxframe/core/tests/__init__.py,sha256=4LpNXO11JAdLjSut3p036oEEXlDEB-6AURW9oci5W5Y,609
56
- maxframe/core/tests/test_mode.py,sha256=8MN3zXFAkiaxSKhEc_ToY1C91dKBHJIYNvW7nVmqSJ0,2507
57
- maxframe/dataframe/__init__.py,sha256=vzbqBHkHSqAWvrW01uxQTTzZpKtB1nh9VLVcSlZIei8,2325
58
- maxframe/dataframe/arrays.py,sha256=ZHt3mIEA4plITmP-NyLAe7MGSxBOCSI8fw_gcTKU1SM,29616
59
- maxframe/dataframe/core.py,sha256=749CXzFxL_4e-t3IovL2nZAJQI8pguU2ReIqHuyLeNE,77441
60
- maxframe/dataframe/initializer.py,sha256=SiTh1ibIILZf-E3cSZ8bfgNuFd-YpckdWDphUGpMPJE,11150
61
- maxframe/dataframe/operators.py,sha256=mTvT1Er6jgOb-llfkbDfN1FBy4oEuGLDjb6lrWBTs48,7834
62
- maxframe/dataframe/utils.py,sha256=8u5cGv7yuxagv-DfQLnriA2EmnI93rg9VJD8wMS1csY,49381
63
- maxframe/dataframe/accessors/__init__.py,sha256=3WuzauK-nPHEpLyICK0tY-F6OdWZ7EaQdORBAoaHD3o,669
64
- maxframe/dataframe/accessors/datetime_/__init__.py,sha256=WlnK71KZrVpXqwDWJ9-cRE18ZnAOGKPlmO2jnL8uytw,1116
65
- maxframe/dataframe/accessors/datetime_/accessor.py,sha256=OEfGjmItzC-AlgFpaQUrfgVncwqdJ6QiH_OKIAj2xis,2289
66
- maxframe/dataframe/accessors/datetime_/core.py,sha256=CeQnkmCP_cumHdxzB48km20u839iV4hO8018O-N9nEU,2584
67
- maxframe/dataframe/accessors/datetime_/tests/__init__.py,sha256=4LpNXO11JAdLjSut3p036oEEXlDEB-6AURW9oci5W5Y,609
68
- maxframe/dataframe/accessors/datetime_/tests/test_datetime_accessor.py,sha256=P6oBRAdTlrFtSee7tApVeNlrUEP5Otdq6UC-Su5NWG0,1436
69
- maxframe/dataframe/accessors/dict_/__init__.py,sha256=RtTuqfKlvo-644LWf3OsdyJ-pVFs1vvv1vQQdoYKrgs,1546
70
- maxframe/dataframe/accessors/dict_/accessor.py,sha256=FdyYWhYuzbCXSkwmhv89fzmo0wS72xCAFddkNmJg6dc,1347
71
- maxframe/dataframe/accessors/dict_/contains.py,sha256=-QYue1nRqFDEK7L6PtnqcJcrGzH8Lrki49ySNjZShYE,2608
72
- maxframe/dataframe/accessors/dict_/getitem.py,sha256=5xC9YhxuAOIOPOfqUyrx3D4rvnisa7gAKAu19EKsnFo,4539
73
- maxframe/dataframe/accessors/dict_/length.py,sha256=HBFa-GcBUauNnDrvhAwivhXDlOZTXNbm8pwKtXjdnlE,2280
74
- maxframe/dataframe/accessors/dict_/remove.py,sha256=RHZ_2P8qyqUiZkXSTzWKn1orv8qKL-RKux8HHYIsGKA,3073
75
- maxframe/dataframe/accessors/dict_/setitem.py,sha256=zHfUXH4qZCRjYCNazSSpsNjWiA7MfLVoSZ-DZ3WJa9E,3042
76
- maxframe/dataframe/accessors/dict_/tests/__init__.py,sha256=4LpNXO11JAdLjSut3p036oEEXlDEB-6AURW9oci5W5Y,609
77
- maxframe/dataframe/accessors/dict_/tests/test_dict_accessor.py,sha256=FXKY_egcj7OP4M5bQr1v_sqn5GLxockA3dV0QXHmIJk,4043
78
- maxframe/dataframe/accessors/list_/__init__.py,sha256=DU9NWAtG5km6fuu9OPOCYtxjyYqQjJe62K4Wdw0strA,1285
79
- maxframe/dataframe/accessors/list_/accessor.py,sha256=JhxueXfQhFM-hSWFZZ9KVpoP5imiylSze_k8S-ajf2M,1348
80
- maxframe/dataframe/accessors/list_/getitem.py,sha256=wgMJ38gtwInlsiio2z6Po69YI1-GsC51oHQkYfMaa7Q,3879
81
- maxframe/dataframe/accessors/list_/length.py,sha256=LRw4FImg7iEGrWbH4IyOIoesm18pJ-g2K3QAYg3mRxc,2207
82
- maxframe/dataframe/accessors/list_/tests/__init__.py,sha256=4LpNXO11JAdLjSut3p036oEEXlDEB-6AURW9oci5W5Y,609
83
- maxframe/dataframe/accessors/list_/tests/test_list_accessor.py,sha256=Yzop_LU3bWoguD9EXM7dpV-3du4hXnpRavQ8vxR6IPM,2460
84
- maxframe/dataframe/accessors/plotting/__init__.py,sha256=l5Q-Q7IaStM4sM9lcHP2B0EF8FajwZahvbBDiw6rY2w,1428
85
- maxframe/dataframe/accessors/plotting/core.py,sha256=rGzHc_MXEdTTJMQXO8cspf9eY4Otccj5unjNooCRbAo,2313
86
- maxframe/dataframe/accessors/plotting/tests/__init__.py,sha256=4LpNXO11JAdLjSut3p036oEEXlDEB-6AURW9oci5W5Y,609
87
- maxframe/dataframe/accessors/plotting/tests/test_plotting_accessor.py,sha256=UGCrKUU4ax2GQvXGxPnHD7gqePXHWz9t5JAierTw_IY,4259
88
- maxframe/dataframe/accessors/string_/__init__.py,sha256=9aDca_a61YUSAZ2MwT2bByDSD-UTgNbO7Y2oylKwhoQ,1106
89
- maxframe/dataframe/accessors/string_/accessor.py,sha256=2vsY1MBoxILuWr1hlqSZaps6029h_aYTFzNC3qUhOek,8269
90
- maxframe/dataframe/accessors/string_/core.py,sha256=z_DffsA0m5sMSklX7lfkjp_cJKsFQPwPYzFeZUJQeF4,8323
91
- maxframe/dataframe/accessors/string_/tests/__init__.py,sha256=4LpNXO11JAdLjSut3p036oEEXlDEB-6AURW9oci5W5Y,609
92
- maxframe/dataframe/accessors/string_/tests/test_string_accessor.py,sha256=5W5ajKUz6n1kWAIR_JHB7y-IFTWtenlbf8dOlOqsy5E,2549
93
- maxframe/dataframe/arithmetic/__init__.py,sha256=IM3Z2tT4LPJa3j30CVXDJ9TftQGy3DVxjTHoH7zBuyY,12837
94
- maxframe/dataframe/arithmetic/abs.py,sha256=gu1hUmtP5h2ps-X7cB_e2Iyq2xYpj1jT_UzG8S0TvxA,1016
95
- maxframe/dataframe/arithmetic/add.py,sha256=b_nSJ19j5qGrHeWN0yjBNbWOncF3Qmr1EGmRwHQQKao,1766
96
- maxframe/dataframe/arithmetic/arccos.py,sha256=wupyUmd6-A5tH1wdunMg1kMO447Tqn1RW0ZyFwfE90A,958
97
- maxframe/dataframe/arithmetic/arccosh.py,sha256=9cRjhbGmMxchg_rYnRPC0yh1vUy8fP7GIbW8H02Ph-s,963
98
- maxframe/dataframe/arithmetic/arcsin.py,sha256=DIf56tRsfSJJijzxW1k7bR5aS47yMpZCnePi3q4weTU,958
99
- maxframe/dataframe/arithmetic/arcsinh.py,sha256=BlQG8Of4USnyrBy42tD7qC29ODN1GYyhcGpqdTLWDjw,963
100
- maxframe/dataframe/arithmetic/arctan.py,sha256=vM8ca7eQ6F-4NbpdE7MdMoV2yJoTSk-rKc7-C0HzrUM,958
101
- maxframe/dataframe/arithmetic/arctanh.py,sha256=d5hluAcPUs6fZLi-ICaO7G-H7919CCStBM1FhQejlXk,963
102
- maxframe/dataframe/arithmetic/around.py,sha256=JisS-xM1cq3bXTr7uAORB6rB-bxB3fTbnYd4kaFNEfg,3963
103
- maxframe/dataframe/arithmetic/bitwise_and.py,sha256=kh_FY_fNcYDvlxRibhJijcNRigkXbHnqxPGKcL-ZN3s,1473
104
- maxframe/dataframe/arithmetic/bitwise_or.py,sha256=HQnBswMZgP6XU3R2iV4ds9mFGOxspacWNC8koqFQyB0,1596
105
- maxframe/dataframe/arithmetic/bitwise_xor.py,sha256=o5MtjompxrDICBW7HSQl7Tx5jpjwWQu4ewpEB5HpyLo,1472
106
- maxframe/dataframe/arithmetic/ceil.py,sha256=jiNVv1jM8Rn1Pqc6D_jmGaHVd9QUUqmdlXNIOrb1HC0,948
107
- maxframe/dataframe/arithmetic/core.py,sha256=gatboMmCpaG9Nf5u1Svi6IeD1AONBTR7OUVIRFVJj68,14409
108
- maxframe/dataframe/arithmetic/cos.py,sha256=PWDxbtPjwjBRy0rF52utgGHB5Qf1O3P4r7nZnU3eHHE,943
109
- maxframe/dataframe/arithmetic/cosh.py,sha256=Ui5lYjYt_mniSNtiYcbxYhFUYWBVKlIK7Z_YtbUXdsI,948
110
- maxframe/dataframe/arithmetic/degrees.py,sha256=arJKiQ2o0VbIR8IsVKmi5z2_FlPT5hnorG-IZLJqqKI,963
111
- maxframe/dataframe/arithmetic/docstring.py,sha256=N9HJeR_CL9JoBDmqg1dRQqk1PVRRtuFxaYH8R3UCi0g,12107
112
- maxframe/dataframe/arithmetic/equal.py,sha256=e0z17h6jgPyvAbkBq1w33foxFToBlg0XbTG8U8R4vj0,1575
113
- maxframe/dataframe/arithmetic/exp.py,sha256=_PRE96Lrm0YVskh0LjXTGo-lOPZNa8NKX1Nn8m5NkYA,943
114
- maxframe/dataframe/arithmetic/exp2.py,sha256=6tRKMvqZsNpE0NN0fMlgiANF_6aHi2rQ3DZdTnhvb-M,948
115
- maxframe/dataframe/arithmetic/expm1.py,sha256=PXgqDfhs1dtXF_NkGovTAblhW9rqapufBd0JjSpAGFs,953
116
- maxframe/dataframe/arithmetic/floor.py,sha256=OB-FilvjgLIlRu8KNX_QqqZynMcZ07ls3citWJHbryo,953
117
- maxframe/dataframe/arithmetic/floordiv.py,sha256=5ezVBHe5muBJd9K2-wlyx5JdU3_Rw1UiBPiJSmEDERs,1891
118
- maxframe/dataframe/arithmetic/greater.py,sha256=gz6ASbc5W3zXttv-U5-0gVS9A5Tao6Q49a5Wbi3jxSc,1606
119
- maxframe/dataframe/arithmetic/greater_equal.py,sha256=8MZEGCJuKqe4o8Zdu7a8p2fT_j1IkT_sidxtQb1hGTs,1631
120
- maxframe/dataframe/arithmetic/invert.py,sha256=CSg6PRyV2hRiA5DLlGBUi-Vv_uNR1Of3FLXd9Y9eFdc,1018
121
- maxframe/dataframe/arithmetic/is_ufuncs.py,sha256=IcgW9b0wH0NTWg8O1HWXzm5x9eqZLIekkzw-u6B9IJA,1798
122
- maxframe/dataframe/arithmetic/less.py,sha256=XNFgjEnuLq7Zvu2MJbcBttcJbtQ1OiPgUQ7D_QqmkQM,1575
123
- maxframe/dataframe/arithmetic/less_equal.py,sha256=YvF7XZyY1F2m-yTaqcDJ9UFrQGVq7LkhJdC3F6nstoQ,1616
124
- maxframe/dataframe/arithmetic/log.py,sha256=1iXJR5Lr3KW4opfZuI0t11es2MB96hYEm0s3l8LMRyc,943
125
- maxframe/dataframe/arithmetic/log10.py,sha256=gZg8HE0RIz0tp9ss2mjAXRRkVhlN1lH2sFs9ZStCby8,953
126
- maxframe/dataframe/arithmetic/log2.py,sha256=I2mvhdZZ62P_E-6O5okYmQD9WbbIzTPVbAjrgEDuMf8,948
127
- maxframe/dataframe/arithmetic/mod.py,sha256=n2yzITZfnPg4PhpDmD-0qMusNzatyS9MVXa993xKZAo,1762
128
- maxframe/dataframe/arithmetic/multiply.py,sha256=Jb4lrR9QDrvivFqhBrySFB8PfIF4l2Rw_byLi_gVdbo,1793
129
- maxframe/dataframe/arithmetic/negative.py,sha256=B4KcbnUj49PyCIil9x23QKLAR9ONAiQ96tRxKEEss4Q,1040
130
- maxframe/dataframe/arithmetic/not_equal.py,sha256=otvXJqF2sGX_vEIaKHp-XEwnPD1SW59BIvmL-81ds_8,1591
131
- maxframe/dataframe/arithmetic/power.py,sha256=IcVB9B4gfiEHOeygKlniYOkvymT23Go0kpvxLnhrIao,1879
132
- maxframe/dataframe/arithmetic/radians.py,sha256=RlDjhTLxMG1W1p1oioabl1peJqYc6in9ReRoiVHeeeo,963
133
- maxframe/dataframe/arithmetic/sin.py,sha256=u7TDCIVYE3J7DmEwwNuWKXfL76ZaHEyES0eHqvOdvow,943
134
- maxframe/dataframe/arithmetic/sinh.py,sha256=mYLjFaZ3wk78WIeuR-0g1lFxE0vWLHlMxSleQfaY8mE,948
135
- maxframe/dataframe/arithmetic/sqrt.py,sha256=dFhYA0ECH3ZWJTMAr6gnrGGMPFsckPTT9om7x7a5zf4,948
136
- maxframe/dataframe/arithmetic/subtract.py,sha256=KgCD46OJ5t7oj7WU8sVtlNVtuKuI4QWe6gybtETYhf4,1844
137
- maxframe/dataframe/arithmetic/tan.py,sha256=nuuyDXtn2YIUTIqsfDUvIYfZMzQ0DAWPjHldwisrdvM,943
138
- maxframe/dataframe/arithmetic/tanh.py,sha256=fjjxCL3WnncJnxXwEFy9UDvQCL5Unemkqoow9s83_KI,948
139
- maxframe/dataframe/arithmetic/truediv.py,sha256=QKVcc2Y6L1ICDnUj5ahVkwbVCLxsFYenllOQOtW2KLc,1872
140
- maxframe/dataframe/arithmetic/trunc.py,sha256=D_d4GYsEPBdrdfRL1XLFvMrZ6bL1OIGL-uSP3tiExL4,953
141
- maxframe/dataframe/arithmetic/tests/__init__.py,sha256=4LpNXO11JAdLjSut3p036oEEXlDEB-6AURW9oci5W5Y,609
142
- maxframe/dataframe/arithmetic/tests/test_arithmetic.py,sha256=6JgB0q6LbxTlYzVorOy7LfjUwirQnWqpflC4sej6NRo,25881
143
- maxframe/dataframe/datasource/__init__.py,sha256=7iDCTWD3y45JIYXu7fXGsHekb2cGabmy-b9bN77RJPM,655
144
- maxframe/dataframe/datasource/core.py,sha256=Y7LrKahoZEihzvQCnky8M1xK_DdT6kdztgzkGo5zUjw,2768
145
- maxframe/dataframe/datasource/dataframe.py,sha256=_EJaT_b1i6XIZpyqSudAPdOS4n3l_S5aRcKOMov26NQ,2082
146
- maxframe/dataframe/datasource/date_range.py,sha256=nDwadi9M6ypMEGD3k2Mwa2p6wI-JO5MWVoyIkTvwXq4,17731
147
- maxframe/dataframe/datasource/from_index.py,sha256=rj7ADsMHEAkZmRXqSVA35QxFjRD-aGxBk-CsZf-gGWE,1911
148
- maxframe/dataframe/datasource/from_records.py,sha256=5PWL2uGCwdoOjGzpL52O7Yg_mNBM-EINQEqeEpmEnHM,3549
149
- maxframe/dataframe/datasource/from_tensor.py,sha256=kd59E9xEaLzOdsOennQyDkfJlS6eg26gjfn_VrqfdTs,15146
150
- maxframe/dataframe/datasource/index.py,sha256=LUOaSY3jScY65h4TSryXMfQJGdUWWXmnoS1IP9ah5aw,4518
151
- maxframe/dataframe/datasource/read_csv.py,sha256=RyjHDs5eVzti9G6HgHm61QgqvqC8XN1opMTT_98YywE,24668
152
- maxframe/dataframe/datasource/read_odps_query.py,sha256=xk7KDrD3rz-j-wHK_oX81fR8rwLmYz2qpZApoA8qD_I,15071
153
- maxframe/dataframe/datasource/read_odps_table.py,sha256=GztSJFV-vQl20mleqCMWGhMd0tXJ1mSMDm2kI89KS7g,9667
154
- maxframe/dataframe/datasource/read_parquet.py,sha256=dt1PE06wfvnbXxQXWXxVe69jBClIP3bDz6OnkjfVjfE,14952
155
- maxframe/dataframe/datasource/series.py,sha256=9GmE-UVQ_eeFI53UuWiF6rQSqQ1mp4RkBVRWIhKNw2k,1964
156
- maxframe/dataframe/datasource/tests/__init__.py,sha256=4LpNXO11JAdLjSut3p036oEEXlDEB-6AURW9oci5W5Y,609
157
- maxframe/dataframe/datasource/tests/test_datasource.py,sha256=8Dq5EJOmyfH9YqErP-6i39R-MeOj-bf97so1iGcRfLU,19324
158
- maxframe/dataframe/datastore/__init__.py,sha256=KbGUgDoSvqGe_6Jm89Mh3KxU2N4mmMrn4prA4Jk933g,810
159
- maxframe/dataframe/datastore/core.py,sha256=uNAcFyUgjn_LxUHk7IjqRlAWNeru77Ub-dZ15M5WDjA,762
160
- maxframe/dataframe/datastore/to_csv.py,sha256=gWPz0fcKmJA-2cyDJDhbL9C_CSOq79GTNHq9-qAkkek,7974
161
- maxframe/dataframe/datastore/to_odps.py,sha256=49WeN_Z7sDz4X51OMC5-i7ZABQSrF21Z23SceM87AQc,7173
162
- maxframe/dataframe/datastore/tests/__init__.py,sha256=4LpNXO11JAdLjSut3p036oEEXlDEB-6AURW9oci5W5Y,609
163
- maxframe/dataframe/datastore/tests/test_to_odps.py,sha256=1hBiWu2504ZSl-Hzxjq-u6aHzJu6ZyhNBqKXz7FxWaU,1344
164
- maxframe/dataframe/extensions/__init__.py,sha256=zDiwRmObv9fD72c0YMy3DFtlM8k0m2xuEGqM2vKeQuM,1921
165
- maxframe/dataframe/extensions/accessor.py,sha256=9OkIrawtEl-_kKG_j6_3EKsuXForPseXAVMDlFZBRqA,1066
166
- maxframe/dataframe/extensions/apply_chunk.py,sha256=8lYDkjFgQcGgCSPbw2xWIwVsDhnRfURQ5eviJwooylc,26391
167
- maxframe/dataframe/extensions/flatjson.py,sha256=EdDLdwL9mIEEN2wb2qBWfEqS_XLA7SsK6AAhqyGiRw0,4499
168
- maxframe/dataframe/extensions/flatmap.py,sha256=KhcUJLMLKwliAWS2UUo-1nD1x52PLkiCYe4RMZIFkt4,10386
169
- maxframe/dataframe/extensions/reshuffle.py,sha256=ICsXOCTCS_dmusMatU_o6_mOown3qFdnBoqq3d4D1n8,2718
170
- maxframe/dataframe/extensions/tests/__init__.py,sha256=4LpNXO11JAdLjSut3p036oEEXlDEB-6AURW9oci5W5Y,609
171
- maxframe/dataframe/extensions/tests/test_apply_chunk.py,sha256=XzZ2wqgzxrM-6sPGU2zLDiNRKtFZXCQyOLqN16vQIVs,6035
172
- maxframe/dataframe/extensions/tests/test_extensions.py,sha256=0A8zL_uyZ805eVe3BazJNAnBxWYvcsZvnT4pV-pyp5U,4923
173
- maxframe/dataframe/fetch/__init__.py,sha256=q9Eu7odmT29Xp2iPsNdOp46T-w2_4LxT4pb26sXhTKc,668
174
- maxframe/dataframe/fetch/core.py,sha256=pLAVnbE8mZsiBL21CVlxww55qsDG-OBYwWHKgw9j4c0,3424
175
- maxframe/dataframe/groupby/__init__.py,sha256=vmW6do5w7lY2wnYYSGJzn90-rOcae3dSuYFQXZv-iis,3527
176
- maxframe/dataframe/groupby/aggregation.py,sha256=x-vSHCse9b_9REkNbIvF6BzY5a3dwJ4UL9bt956z8XY,13745
177
- maxframe/dataframe/groupby/apply.py,sha256=el9fKRMTiaI3wCpGp8C7GFYBCXE_0hW7qE8JoTBC368,9886
178
- maxframe/dataframe/groupby/core.py,sha256=ttr5YNAmr2mIY0Bj5RjUd75VmTOPEHQiz1BhL779w_I,6255
179
- maxframe/dataframe/groupby/cum.py,sha256=unzOfw0d1so-0cNf2e2iQ0cOOetARK2UH2N0xWGfuN8,3806
180
- maxframe/dataframe/groupby/fill.py,sha256=9FJUaYPJh-XHIYcG4I5J6Pvdw7yXVDvxzO85mdoY2MI,4952
181
- maxframe/dataframe/groupby/getitem.py,sha256=Oego1g611FFTD6vn2yXD8FIjJ6JBj9-mD_0iZWdMTJU,3513
182
- maxframe/dataframe/groupby/head.py,sha256=i2K2fcOTfrhYHUmKENde-VqtCmekS52_tvsiiEJ06kw,3371
183
- maxframe/dataframe/groupby/sample.py,sha256=BGY5wGk5xkmh21E0dsyhEMafoHHldWBnKGpWmzRjjYM,7149
184
- maxframe/dataframe/groupby/transform.py,sha256=ekupMqoL70Y65-e8nbx3OYtt8aGx18azx09BvBMsDgk,9085
185
- maxframe/dataframe/groupby/tests/__init__.py,sha256=4LpNXO11JAdLjSut3p036oEEXlDEB-6AURW9oci5W5Y,609
186
- maxframe/dataframe/groupby/tests/test_groupby.py,sha256=p492T45D9tdlsPl6D826-KHR5CHHH5dZUhSM9L2MrUI,12754
187
- maxframe/dataframe/indexing/__init__.py,sha256=4imqvsyjImWlF1ok6vgceEhLbur9Me4KqqjFALOjTwE,3297
188
- maxframe/dataframe/indexing/add_prefix_suffix.py,sha256=BktGLizrnQ6Ccq_PHJ-Ga4dAiaBQuYXBNMhEfFwrv5k,3076
189
- maxframe/dataframe/indexing/align.py,sha256=QZFWVNA-g_lzSVlrVLpr_Vot_obQP2XN0n_Jm1MebTk,12434
190
- maxframe/dataframe/indexing/at.py,sha256=96TI3VkkKBh9RKvWjd3aYHAWLvXkOHcUL0dvlsSzLC0,2300
191
- maxframe/dataframe/indexing/getitem.py,sha256=n9fHXQI6vO2I8hSCz7e0qmGpAoqv_FIBtRHL2gTnvQA,7958
192
- maxframe/dataframe/indexing/iat.py,sha256=YIuk6nvBuUU37BWtMUe5ZTAMIFJUnAVYv-riCRv68Mk,1164
193
- maxframe/dataframe/indexing/iloc.py,sha256=gbdrYNCfEYxbLyNAR72BImaaH8px77-PTp5RnJqmGz4,17987
194
- maxframe/dataframe/indexing/insert.py,sha256=0ctALp7o2W9UXAxrH4eBpfeDZrfv7BYvkJxiD7AeKII,2997
195
- maxframe/dataframe/indexing/loc.py,sha256=Tr2bZzHfo2HzXqOyrSizVgYC0zSXJMdwlMnH_BDPdg4,15388
196
- maxframe/dataframe/indexing/reindex.py,sha256=kYe8LHA_qoeZQK_ckdbIgRAHtuCzmzrZuECrJZWi01I,19699
197
- maxframe/dataframe/indexing/rename.py,sha256=XiXi65OLCYcc43aPvqOauzv6Uy00BN_0z650ubzvXbk,13331
198
- maxframe/dataframe/indexing/rename_axis.py,sha256=kGOhvuMGOF4Jgk9nS1YbYCcxMDIoR5Zl4S7FASsUWts,6511
199
- maxframe/dataframe/indexing/reset_index.py,sha256=mP_TTlZhuLM_zbgp8aoewDyDD-LgP1AdYXSXAYYg7E8,13524
200
- maxframe/dataframe/indexing/sample.py,sha256=PUw8JVlR44327NrDdT9Q5k7nqLAv1bxx6XBXHqCYfsU,8391
201
- maxframe/dataframe/indexing/set_axis.py,sha256=H0W5jG7vmGpokpLsJLwPlzXNXkQe2gpbWrgKanJBM20,5724
202
- maxframe/dataframe/indexing/set_index.py,sha256=NbOpr4adgNx6MIM46d4xplhrtAq2RmE3t0mveYMQTUs,4323
203
- maxframe/dataframe/indexing/setitem.py,sha256=e96fJ8jd8SH6554AItNhFwXO4RDF7JHNquhVTkPirB0,5134
204
- maxframe/dataframe/indexing/where.py,sha256=2r_uSUOOXUyfJiRjuiutxMY-1QFgn3_Gri8VPhZRGBs,8875
205
- maxframe/dataframe/indexing/tests/__init__.py,sha256=4LpNXO11JAdLjSut3p036oEEXlDEB-6AURW9oci5W5Y,609
206
- maxframe/dataframe/indexing/tests/test_indexing.py,sha256=9vjCrHEW3yJxVLMUZ2aKnHgb-9pY7ILQz27ZQwWKDfA,16099
207
- maxframe/dataframe/merge/__init__.py,sha256=FyFDUW3SFX-ZPfp54E79u7DBWn5VAb8lwEd3NJ7eoN0,1161
208
- maxframe/dataframe/merge/append.py,sha256=GahlHZYsn2mtKMhOgcGbpofxzhfzjh_hTUG7kRuuqhw,4973
209
- maxframe/dataframe/merge/concat.py,sha256=ADDuooWUofYOPWIcVT7T4RepY7VKJiLHV1ymuC8d_GU,12231
210
- maxframe/dataframe/merge/merge.py,sha256=3fpR8d8Y_gHcVa_XpnZj3S9VUSj42Hz07F7tJL4R23o,31270
211
- maxframe/dataframe/merge/tests/__init__.py,sha256=4LpNXO11JAdLjSut3p036oEEXlDEB-6AURW9oci5W5Y,609
212
- maxframe/dataframe/merge/tests/test_merge.py,sha256=RSSYcqSB5aqjPHyk7slUpxLvGoN2Q_LkkfmESmwSbEo,13355
213
- maxframe/dataframe/misc/__init__.py,sha256=CcGTK4dKzU5DfYYBDyoJV4XKWUtXH-EY2tc822uyzuk,4767
214
- maxframe/dataframe/misc/_duplicate.py,sha256=Y0LN40N7145diw9ZDxlbtTUDgAwjTqBWwNh7wBHpUGY,1516
215
- maxframe/dataframe/misc/apply.py,sha256=_dFE892h2Q-XYnH9LmO65ii9VKr0hpbv1GFeLV3RsFE,26712
216
- maxframe/dataframe/misc/astype.py,sha256=27Z-2QKtpzdDOkvavQ6E0v-nqX38Ht2jiekDVEJHObQ,8033
217
- maxframe/dataframe/misc/case_when.py,sha256=KuaOeY0cY-drM5GVsRSWch0bmEKQA9ISQ4SQhB_u3rY,5002
218
- maxframe/dataframe/misc/check_monotonic.py,sha256=v8UA6vci4LkFNoVTK8pDb7IPKXtaHKEMGmgl7mMqEjo,2506
219
- maxframe/dataframe/misc/cut.py,sha256=EuUkSa-9Rgl-UCLEOWmED2gAaWGLwv3zeKRFhrKLN1Q,14354
220
- maxframe/dataframe/misc/describe.py,sha256=jtLYMw_PXh7Sskt5RJTq0oVOFHvNhphyFdjWAbksHvI,4478
221
- maxframe/dataframe/misc/diff.py,sha256=iUHG2GZ8lyCmgSF5TKOyiWNaMQuTUKJE3Z_TdjHypx0,5701
222
- maxframe/dataframe/misc/drop.py,sha256=XRZi-X58bKFJWEbWjuFbGRQiNk1qOct2lrsOv97FIjU,13469
223
- maxframe/dataframe/misc/drop_duplicates.py,sha256=whaghpL0YAKuSkTfbQTM8M0Fv-lqLYc6OEhIIHqft8c,8940
224
- maxframe/dataframe/misc/duplicated.py,sha256=38FDeOilNVe5_C9rU80bgGQ8ulxbDZSA63OVFNJv8-c,8826
225
- maxframe/dataframe/misc/eval.py,sha256=BC71HfVYQQsd0irZ-I3OHnLXaqyHBuZkaSETOs6wASE,25091
226
- maxframe/dataframe/misc/explode.py,sha256=_Z1DVOmQ3-kytbUaUOXBUtd9nqCtxu__X7AUHPrr8rc,5182
227
- maxframe/dataframe/misc/get_dummies.py,sha256=1dUEgpCblOljfrpEwnbPgmH9orPll_QUwrq8NXQYEtg,7295
228
- maxframe/dataframe/misc/isin.py,sha256=bmr6jcPCeZbVuBOzhzCdqnzS2cX-7-Mqi3nWYEzjGQI,7148
229
- maxframe/dataframe/misc/map.py,sha256=fS7PwLPK06p2VW8fx5Arp8IyNcDZ0WvyCS_LBxw8rnM,8503
230
- maxframe/dataframe/misc/melt.py,sha256=EtlhLRm_8_ZYTFvAVWYdp9GjmieiqcOLVp9hLUHXVPQ,5282
231
- maxframe/dataframe/misc/memory_usage.py,sha256=Y3aXu020mGVt02LDOHQndC38WEz3h4P6ICBRTRWv6BU,8137
232
- maxframe/dataframe/misc/pct_change.py,sha256=QqnfdWFCMX5JJzzbBDPhllruhKHRmMyX5zG_83rB-zg,2584
233
- maxframe/dataframe/misc/pivot_table.py,sha256=TGJrYTabgypNIc8VbhafoV5KRp-cyBQ59H5vq8hbr48,9782
234
- maxframe/dataframe/misc/qcut.py,sha256=1Br0gy9aEX7WJVH-WrnghNrofrUVrQftavwLvAN_9Hc,3841
235
- maxframe/dataframe/misc/select_dtypes.py,sha256=427Uisn1SGCHUSs_mXvZHVv7QcTIGUuQy3IGVBcQGmU,3248
236
- maxframe/dataframe/misc/shift.py,sha256=Qo1xhTSQzsJi-pN3JHDTOrivghww2OZgCItAb7YxBVo,9191
237
- maxframe/dataframe/misc/stack.py,sha256=uvhLympacQfx-H8LVxFRU2DCCjveijb_eKngRdjRMb4,8200
238
- maxframe/dataframe/misc/to_numeric.py,sha256=stvfycjsm6XeNz04aAC0LOl6BRcmQB3l-wfx5KboZe0,6440
239
- maxframe/dataframe/misc/transform.py,sha256=psSZNPvg3xLiAtolfeSM4V-qoFXX-2Qo0oDvLXZnlG8,11549
240
- maxframe/dataframe/misc/transpose.py,sha256=8SLGhzgOvIi1-mMfPTL7wEZIXu_NiYXnvAmSYHDzTww,3772
241
- maxframe/dataframe/misc/value_counts.py,sha256=5tThQisBcvNiX3NL7uhrfPlFVI5OwMw-kU-QwtFiIxM,5384
242
- maxframe/dataframe/misc/tests/__init__.py,sha256=4LpNXO11JAdLjSut3p036oEEXlDEB-6AURW9oci5W5Y,609
243
- maxframe/dataframe/misc/tests/test_misc.py,sha256=QZqXKt4od44AWpTlk6Sxe3OqjSbjhS-SG0DYcOShpgY,14517
244
- maxframe/dataframe/missing/__init__.py,sha256=6MeY8HvRUJEQu_a15Cmt2Q8_a3G6kg6ti9LA3olZr7Q,1866
245
- maxframe/dataframe/missing/checkna.py,sha256=kq5Bve_rcy32IWhIzXTaLVyU6a09p3x3-Jo4SB-gWLg,7113
246
- maxframe/dataframe/missing/dropna.py,sha256=zH2HO41JHRe3tAuYXQx0rpEI-ZjMKg6y66t6I4REpig,8520
247
- maxframe/dataframe/missing/fillna.py,sha256=8KqsEUn8O2pPpG8GqHSfhWtca-hm2aiUbx-9UYymo8c,9180
248
- maxframe/dataframe/missing/replace.py,sha256=jDjFGsuU9jnX8X4HZO5rPBEpcIe-Nc5RSZ4PZ1yvE-A,13779
249
- maxframe/dataframe/missing/tests/__init__.py,sha256=4LpNXO11JAdLjSut3p036oEEXlDEB-6AURW9oci5W5Y,609
250
- maxframe/dataframe/missing/tests/test_missing.py,sha256=HdQAgc7pCG9jBve-91n2c_gapsCNerIVdrL7L--UQKM,3225
251
- maxframe/dataframe/reduction/__init__.py,sha256=vWzViXiIiaOx0Yu2kWYkelVwYGGsv4OfUPLrFHKmXKI,4445
252
- maxframe/dataframe/reduction/aggregation.py,sha256=U2Ctf1_v3Apju4gkqkgDe0EZfjI4DgJNJZ_ue12CodE,14856
253
- maxframe/dataframe/reduction/all.py,sha256=_g8SKDcjwjLOZJmlBXy6jAGexJvG-A-jNwg9G3fKJk4,2044
254
- maxframe/dataframe/reduction/any.py,sha256=eTAF8iEkcICIkRCiICB7LL5Tjf01L_QKAbcNscYJF3M,2048
255
- maxframe/dataframe/reduction/core.py,sha256=0DrJg0lv_ySWxj--7WA8ZTz9hPAtJOQ9dTYg66lLg4w,31808
256
- maxframe/dataframe/reduction/count.py,sha256=1L55Exc7cO8a55s7r3AZP85aHtbL1RCK3HQQvhD-l-A,1800
257
- maxframe/dataframe/reduction/cummax.py,sha256=d8b1RxCiadkHtX7E-2hIe8vKdo1wFp8TQvfVilaLTmg,1043
258
- maxframe/dataframe/reduction/cummin.py,sha256=4OXs4ZGXyONlV_94qt3qSq1z674-S-BI1lT7ituFTs8,1043
259
- maxframe/dataframe/reduction/cumprod.py,sha256=F3YODmHpG6bxXmb8XGmjvHXFRUkuXyfcg1TOueWBBmM,1048
260
- maxframe/dataframe/reduction/cumsum.py,sha256=CNyjRfbmFh0VCqAFrJrCyIq4-vo5j9n2FkpvQqzcmb4,1043
261
- maxframe/dataframe/reduction/custom_reduction.py,sha256=5eXhi50SA9_udeRTlcia0ZM4OUVClWphWtEyZhQyqdE,1477
262
- maxframe/dataframe/reduction/kurtosis.py,sha256=tr26wVZ_bKV7O2upuK8HpD-7DalblSLPyCAqC48x4S8,2944
263
- maxframe/dataframe/reduction/max.py,sha256=_fpWa2x_sjPYXGweqIKWr2OCE3F1Evu92O25Cc4VzXc,1725
264
- maxframe/dataframe/reduction/mean.py,sha256=MqgK5PxsZ-lpGZlAiIyobKkilN-i_gdLIoKky7-Disg,1673
265
- maxframe/dataframe/reduction/median.py,sha256=cyy9K0aSuhnjEOtyiE-yBYN-mWl3RdeGfvoS65wQXIY,1649
266
- maxframe/dataframe/reduction/min.py,sha256=mvPPCVXK8H2AzfJxnwzhxRNIp6pwYUmthxrOMpf5yn8,1725
267
- maxframe/dataframe/reduction/nunique.py,sha256=Uejilql8X7UTjZIQ8yTa6K7j91OPjk2y4Fo9k-kdKTg,3608
268
- maxframe/dataframe/reduction/prod.py,sha256=knmn4AuCxtj1NvJYuw-Oj0hQA2-8Ou75HHkMRitbpig,2125
269
- maxframe/dataframe/reduction/reduction_size.py,sha256=EDEm7PLKuXI18W05Y2TObxDNL4iV5SU9Q2VIPdeC07k,1156
270
- maxframe/dataframe/reduction/sem.py,sha256=qzLPN1Eizneb09KxuoY503qMEpMzfDq1UM6W5VO-CHw,1932
271
- maxframe/dataframe/reduction/skew.py,sha256=60mqE6C4DdSsexqeL7SXxCJ1hkXcs1_yl2eO0INLE5A,2627
272
- maxframe/dataframe/reduction/std.py,sha256=FEIYOOy_RWvKy5J4PxWrcyHdCXM1vhzCzcJbGkUs3BY,1408
273
- maxframe/dataframe/reduction/str_concat.py,sha256=D6Zg0Nn3zte6maia2d0tEDS4YTcdPJCxulLERLywouU,1705
274
- maxframe/dataframe/reduction/sum.py,sha256=pHoFT1rx_kI6EEAzywuNHqw1-IFQQaWSxPJlRgHC48o,2126
275
- maxframe/dataframe/reduction/unique.py,sha256=5y6hu3-t673Zu07xBVww7US4_DYdavcKbcC3llqIcHo,3045
276
- maxframe/dataframe/reduction/var.py,sha256=3lxeX6F5cWZBzcly6x8fVXmDrj79D7VG606A_kslADs,2080
277
- maxframe/dataframe/reduction/tests/__init__.py,sha256=4LpNXO11JAdLjSut3p036oEEXlDEB-6AURW9oci5W5Y,609
278
- maxframe/dataframe/reduction/tests/test_reduction.py,sha256=4bI0nlqO1AoM2nybehRm15cszQQyk63yPAmZWQ7SfAw,18119
279
- maxframe/dataframe/sort/__init__.py,sha256=-RklhcFXmM4jroF3Uwv1jKYWtkvpyiXNqPULFu-Ywj8,1194
280
- maxframe/dataframe/sort/core.py,sha256=EV_0wRwwatjWJxCSs-bndm8oNBoYKSULzaJmjmroRV8,1260
281
- maxframe/dataframe/sort/sort_index.py,sha256=-K5_EGDspBpZrIOpeZPoQuaKpEbOK91sjdgdR3TqxpE,5565
282
- maxframe/dataframe/sort/sort_values.py,sha256=hvUvy-e8xV-8UIhTaUXeHo5mjaNb009dUT0-WKDXTsc,9003
283
- maxframe/dataframe/sort/tests/__init__.py,sha256=4LpNXO11JAdLjSut3p036oEEXlDEB-6AURW9oci5W5Y,609
284
- maxframe/dataframe/sort/tests/test_sort.py,sha256=pCxHG5WJ4N7rk25nxRkkWS--j1GmBg04z9va1KlyK34,2685
285
- maxframe/dataframe/statistics/__init__.py,sha256=1ICpYa5QWI7JGl-YiA9HND2Zrkv33Xd_5ET3gj_h7Bg,1117
286
- maxframe/dataframe/statistics/corr.py,sha256=G81pjalQAkCGKMy4Kf_tCO7Sz_l7SDQsH9eOMWtTe9E,9763
287
- maxframe/dataframe/statistics/quantile.py,sha256=dk59rUHIbHZ_ZJymTyI8B5TgQ9XA9A4ycuJTK5HYwao,11855
288
- maxframe/dataframe/statistics/tests/__init__.py,sha256=4LpNXO11JAdLjSut3p036oEEXlDEB-6AURW9oci5W5Y,609
289
- maxframe/dataframe/statistics/tests/test_statistics.py,sha256=EgObO0EeNbw-H_Y6CAGWYswyQBHh7nEOPf8T26aBafE,2888
290
- maxframe/dataframe/tests/__init__.py,sha256=4LpNXO11JAdLjSut3p036oEEXlDEB-6AURW9oci5W5Y,609
291
- maxframe/dataframe/tests/test_initializer.py,sha256=OyC8odxqZlOIMvz2dzhne-0-82wchp4Ti0-drGm9Kd0,2060
292
- maxframe/dataframe/tests/test_utils.py,sha256=TPse4YJdfWPUgDucXKHpEqlT3qIixLTI1nlI1I5SC_4,3113
293
- maxframe/dataframe/tseries/__init__.py,sha256=4LpNXO11JAdLjSut3p036oEEXlDEB-6AURW9oci5W5Y,609
294
- maxframe/dataframe/tseries/to_datetime.py,sha256=jkpneE70AZsCPXSp60Entg803lTXwnHRiTBjk6uAANw,11625
295
- maxframe/dataframe/tseries/tests/__init__.py,sha256=4LpNXO11JAdLjSut3p036oEEXlDEB-6AURW9oci5W5Y,609
296
- maxframe/dataframe/tseries/tests/test_tseries.py,sha256=jxK8Qz-lgfHliRc-axttpW1VWRNse2PS-yXOQYv9Wpk,1019
297
- maxframe/dataframe/ufunc/__init__.py,sha256=kEWEf887PkENrw2Ua3Rrl0U2HIxPmxe4gZJybY07IUI,916
298
- maxframe/dataframe/ufunc/tensor.py,sha256=FN151gfgAYE6XjnIlzVik3wYGe3jWtvwwhfta4DeGgk,1672
299
- maxframe/dataframe/ufunc/ufunc.py,sha256=uyw2zb9Qtt8-y2kWffoElmyN232UQ9ZRql2afuj2MWk,1705
300
- maxframe/dataframe/window/__init__.py,sha256=Y1EmErhxp5aSWnLFadSNEpvE7pAQgggjvP_1kXnwgME,939
301
- maxframe/dataframe/window/aggregation.py,sha256=rm89zzL-x3sGUJYeVK-vV_OvFLq9lBQHhm_JmVf-ujo,3890
302
- maxframe/dataframe/window/core.py,sha256=P9R-NicSgb32LhpLBHSe3PZc5rBV3g6QK5flIytSGzI,2274
303
- maxframe/dataframe/window/ewm.py,sha256=lnJDOURJe1mF4Ehq5QPwQeT9hYCFdzXgXW_CW1Ojp0A,8038
304
- maxframe/dataframe/window/expanding.py,sha256=GzYS6bL5HiiKtHiG-ab2KnVuFcB88GhVVWusgSIDGRI,4067
305
- maxframe/dataframe/window/rolling.py,sha256=eYoLMVUokT0GYo5jT_p43N1cNzQtav8zdYwSxNukEWE,12418
306
- maxframe/dataframe/window/tests/__init__.py,sha256=4LpNXO11JAdLjSut3p036oEEXlDEB-6AURW9oci5W5Y,609
307
- maxframe/dataframe/window/tests/test_ewm.py,sha256=yJhYVg8fufOx8_u7S7Y6ubTBhzBiyLTYQHmVsE6pCJM,2130
308
- maxframe/dataframe/window/tests/test_expanding.py,sha256=3HnbUh5ELF2NKhfiVEcV6wGXEw0zb2Eqh_pP5f7fU6g,1982
309
- maxframe/dataframe/window/tests/test_rolling.py,sha256=48qEq43M4ZQH-lxFnc8SvamFzw2BJaNM7utDOoQchqE,1771
310
- maxframe/io/__init__.py,sha256=4LpNXO11JAdLjSut3p036oEEXlDEB-6AURW9oci5W5Y,609
311
- maxframe/io/objects/__init__.py,sha256=wq8AHIuxvoIqoVOIVZ7DIPeDqmoh4yB0zsC-iVghYSI,778
312
- maxframe/io/objects/core.py,sha256=jtXxJxdMEuvBArGPV4NaeKjiTxJCUroapzbXn3UisnM,4717
313
- maxframe/io/objects/tensor.py,sha256=_W9hFUzXJH6qeOZgqDZJx7LNeQ4Bwj596N6UeO1-i_w,2749
314
- maxframe/io/objects/tests/__init__.py,sha256=4LpNXO11JAdLjSut3p036oEEXlDEB-6AURW9oci5W5Y,609
315
- maxframe/io/objects/tests/test_object_io.py,sha256=cbfl12mMAFbJgQoPb782rbeYXQTmKNuCXUTZQn2iBcI,3899
316
- maxframe/io/odpsio/__init__.py,sha256=mGMCS99Gsdl5_pYBQYpXekRrY_4eM2waP9OG0wTQSb4,940
317
- maxframe/io/odpsio/arrow.py,sha256=JNY15kQSveKz9o4UB4DWP9fmCajFTakVaLMIvERlIcQ,6182
318
- maxframe/io/odpsio/schema.py,sha256=h_cYZ9b3F1V-OiGiG-nM8nBsbmsZ819jOeJ2OGvjhvk,16046
319
- maxframe/io/odpsio/tableio.py,sha256=d4Jbhk2p8fqNvn2q3TFBTR7g6AE9O10a2rg0jolvwqI,23310
320
- maxframe/io/odpsio/volumeio.py,sha256=aIGjSDdAIh8TM3RfqpZFSfUTjgHCBGWnqDMIpt0-ax4,3035
321
- maxframe/io/odpsio/tests/__init__.py,sha256=4LpNXO11JAdLjSut3p036oEEXlDEB-6AURW9oci5W5Y,609
322
- maxframe/io/odpsio/tests/test_arrow.py,sha256=TNprkARLI4MBJQqOq2gEY8fe66eRdf25yYDt6vELOsI,4589
323
- maxframe/io/odpsio/tests/test_schema.py,sha256=NzLoPuLG6LDhR8AcMvGFiD54XaK1QWq-WnJhlU31nMQ,14232
324
- maxframe/io/odpsio/tests/test_tableio.py,sha256=XRjZFK5Tk0mghT-haQkuoYsyspP_g8nTmDjemmRsnM0,5909
325
- maxframe/io/odpsio/tests/test_volumeio.py,sha256=QgSpyERPxbJ4x1J4z0e1sjeOulq0eZKAUC2puUda5QQ,3684
326
- maxframe/learn/__init__.py,sha256=XT2fd5PR96wjXgg9QYGOo9uoRmaK61D4et6N8DKaNnQ,649
327
- maxframe/learn/core.py,sha256=JIxp1Pzfhb2AHtRoSG6c7sr1i3ctYqC49MaiOP4Xr80,782
328
- maxframe/learn/contrib/__init__.py,sha256=3KycsKe1DZhNKvlTp6_-JDqtqKNxTUnMztcFkewALnY,689
329
- maxframe/learn/contrib/models.py,sha256=ewN_pKh1uZvlR757y9zHBPEQMqXt0XlXHdsHB65I4Zc,2630
330
- maxframe/learn/contrib/utils.py,sha256=dTNW1SV1MgqPmF55VxvBCZ49QAxoweMYu9xliqU9J6k,1716
331
- maxframe/learn/contrib/graph/__init__.py,sha256=fJSzTCpcrJB0Y89M5IIiZ5uRX3l_yludjUyW9keIte4,667
332
- maxframe/learn/contrib/graph/connected_components.py,sha256=rdAmToi05NlKUZuUbNi-DPizSUB8mP9fRLh7uebJbeE,7367
333
- maxframe/learn/contrib/graph/tests/__init__.py,sha256=4LpNXO11JAdLjSut3p036oEEXlDEB-6AURW9oci5W5Y,609
334
- maxframe/learn/contrib/graph/tests/test_connected_components.py,sha256=6o157hNhSkn7zM0OD2PlhtJ9XFq39Mc7_XWSSEcPYpk,1662
335
- maxframe/learn/contrib/llm/__init__.py,sha256=Ikv8Bw62gQNCaVVu8VfaTmZQEvCCqNO2SBeJXXaEYpk,666
336
- maxframe/learn/contrib/llm/core.py,sha256=HdHJOTt5ONZIqOJd6o-269BGMjtRNCvMTgEbriBWCfc,2798
337
- maxframe/learn/contrib/llm/multi_modal.py,sha256=a6fy8K0j9luOMR0JnU6yjlzuzqDNv8mE7_1lezTNmGc,5541
338
- maxframe/learn/contrib/llm/text.py,sha256=ZGhx6dyMNWZTy-wlpfQMs8Rm0JdALSTyP9NMR1ASRj4,9646
339
- maxframe/learn/contrib/llm/models/__init__.py,sha256=xdT-QE7V6VbAciHW7ubViTMTG0XCuIbCVY7SIIYzFlc,676
340
- maxframe/learn/contrib/llm/models/dashscope.py,sha256=jFw3KmO-ioWg7VwlJwt8TrdTrSMDhc3GwR1TU7Rx9qo,3530
341
- maxframe/learn/contrib/llm/models/managed.py,sha256=OcD3ug3alfq1ayg0qVuRE4zWJkTRped7GNj_WK0cu2o,1635
342
- maxframe/learn/contrib/pytorch/__init__.py,sha256=OFSs9YoYbKxEmyP8OLxqMPHvaDlgesD02QtOvjpHrv4,703
343
- maxframe/learn/contrib/pytorch/run_function.py,sha256=c_S2U3VTZ7vFmDlqVDBBiM-r5EFLb-d1JU64t8UZ0Fk,3354
344
- maxframe/learn/contrib/pytorch/run_script.py,sha256=XBed8ypahK9KIOs-mQ-SsQZCtsUkV6RdXiyagSPySmE,3213
345
- maxframe/learn/contrib/pytorch/tests/__init__.py,sha256=4LpNXO11JAdLjSut3p036oEEXlDEB-6AURW9oci5W5Y,609
346
- maxframe/learn/contrib/pytorch/tests/test_pytorch.py,sha256=WgA-VI-XlpwaSdD-zpMVeSCPnjqXMzisyUCQ8FGlZdI,1444
347
- maxframe/learn/contrib/xgboost/__init__.py,sha256=ChqbAiGx91jbI4H0MQloiXx2hWGmSte_IO34t2YRLT8,1084
348
- maxframe/learn/contrib/xgboost/classifier.py,sha256=iOsaWrLyIo9Lh-a14lsCyFX6hHykrIcIOZEuXIJK4Zs,4310
349
- maxframe/learn/contrib/xgboost/core.py,sha256=u8Lqy2H8Yg6khuRc_53dSrQL66uzKGgH-Cku3nyo3Gs,12462
350
- maxframe/learn/contrib/xgboost/dmatrix.py,sha256=t2b8my2azo29y6Fvek-hVJoiNjfAcyZ_wYEnzE6-zRE,5050
351
- maxframe/learn/contrib/xgboost/predict.py,sha256=R0Z6hF0eoaEAuRpIEqflybNUzhL-9dxKht5gwINL4M8,4013
352
- maxframe/learn/contrib/xgboost/regressor.py,sha256=K1IhxEVoss5GqI9RKzgbCy9jcI7ArmBnFSf8ZH45Wm8,2766
353
- maxframe/learn/contrib/xgboost/train.py,sha256=nAWNGGGqd6n4HT1Qs-Rb3wLdAlbaKjgcTaJhnFlYxdo,4680
354
- maxframe/learn/contrib/xgboost/tests/__init__.py,sha256=4LpNXO11JAdLjSut3p036oEEXlDEB-6AURW9oci5W5Y,609
355
- maxframe/learn/contrib/xgboost/tests/test_core.py,sha256=0ZI07rGLA_yO_bKO4OXv_0_nwB-l0sI3JCxjQko0Qaw,1449
356
- maxframe/learn/utils/__init__.py,sha256=qSEzDnZ4wOGVz-FCt7qazBSO0BOgn9FvHL5umEgI1cU,661
357
- maxframe/learn/utils/core.py,sha256=JmuEV8O_tEXI-nBwRK2j1CPYSFlJJyrFhYh83df29L4,1058
358
- maxframe/lib/__init__.py,sha256=ZxIRETECrnrJcfRmGQTTNwrCxwqTVLNaM9nCzBNPo1k,657
359
- maxframe/lib/compression.py,sha256=8F0QEOlrgrFz8Yzeyap4ud3PYe1I5LUWUHWvQg1YKq0,1497
360
- maxframe/lib/functools_compat.py,sha256=1a-R_fcKQo7gUZnyk6L-qt_Ozhm3Gb0y86Fd3ROeTcw,2697
361
- maxframe/lib/mmh3.cp311-win_amd64.pyd,sha256=-ZkEbz8ChVohGkSop1aq6qVC6f501P2t50wv-gI0aJA,17920
362
- maxframe/lib/mmh3.pyi,sha256=ad6KZrDA7dznE5Qv0lnGB32rw1Zl2DBwNIH0BI_bFQU,1537
363
- maxframe/lib/version.py,sha256=NqxzCX2pLHIMTj-7HTA6xU3iyd_DVeqyyW1n-Rk8MCQ,18941
364
- maxframe/lib/wrapped_pickle.py,sha256=Yazeydh6vOAd4ibsv_tn_8LgAC7kVkoResQYFW8RXNw,3976
365
- maxframe/lib/aio/__init__.py,sha256=j45XJga8B4YUKCOwFkqn7Wq8In3MNtLHpPEjG0Hs8so,963
366
- maxframe/lib/aio/_runners.py,sha256=wo4EfFJJ4B3RkilV_iClAx0ySRaiG8IcnTMfaORqiL4,5367
367
- maxframe/lib/aio/_threads.py,sha256=uqIMyQWxlXgYzdtInMoOl3i-blXYT-mcxikNmssfpcc,1363
368
- maxframe/lib/aio/base.py,sha256=3XkYWXQmMIeTPQFauVDt-jfk8Y-I592OdwLirY1kxug,2240
369
- maxframe/lib/aio/file.py,sha256=jqKcfIbV0k_AsggAqURQUhdXw81r2RxXunlwg_moIeI,2097
370
- maxframe/lib/aio/isolation.py,sha256=j7bQod9PPyPkjaXPNsnmObjmMRi8o-1r3AOYLqexJTc,2861
371
- maxframe/lib/aio/lru.py,sha256=ACbRRGnYwOGoa_zBJymjPiqwy2IaXFmPlcJyZ15bHbk,7133
372
- maxframe/lib/aio/parallelism.py,sha256=ncai0TMJQInRk7_zmnawXy17pL3PmCZlQKPgGX4t0p0,1272
373
- maxframe/lib/aio/tests/__init__.py,sha256=4LpNXO11JAdLjSut3p036oEEXlDEB-6AURW9oci5W5Y,609
374
- maxframe/lib/aio/tests/test_aio_file.py,sha256=WnU2jQMZ1jVPT8l9m3h4lytLUDhAHTIa9_mTMHpo224,1713
375
- maxframe/lib/cython/__init__.py,sha256=4LpNXO11JAdLjSut3p036oEEXlDEB-6AURW9oci5W5Y,609
376
- maxframe/lib/cython/libcpp.pxd,sha256=lNA9YvEGLS0xMarsmvllh2qMdPxu-_Tl2ymT2EQw14c,1130
377
- maxframe/lib/dtypes_extension/__init__.py,sha256=sO6wef7yir_E-En40NTcd-dHl4dP9QWmWv0Ya4NYXHI,686
378
- maxframe/lib/dtypes_extension/dtypes.py,sha256=q5V6tvS7cC-N-e2gtfRiuh1TKXdcm0eCbjJbS6FQrJE,2219
379
- maxframe/lib/dtypes_extension/tests/__init__.py,sha256=4LpNXO11JAdLjSut3p036oEEXlDEB-6AURW9oci5W5Y,609
380
- maxframe/lib/dtypes_extension/tests/test_dtypes.py,sha256=dpqCS6qfyXb8w5paTjx52pQgaWZ5xbb4FcDShV5gbU4,1426
381
- maxframe/lib/filesystem/__init__.py,sha256=1LjZ5ZPdXZHKaJ5TZY34dnoLgYMy1qiB3DcE5k9YjaU,855
382
- maxframe/lib/filesystem/_glob.py,sha256=H1wRnnhFAK6PqshJf6ALo0jxVZ9em1zhi3d9Q5rXpLk,6708
383
- maxframe/lib/filesystem/arrow.py,sha256=QKH1gtjx-0jUyBNMKBF0nLJZCKuOwDIGko8biBBgQkQ,8647
384
- maxframe/lib/filesystem/base.py,sha256=zT3zMZr3tg08jpn_e8NZysZIp1aKdnm30RY3rhNAYow,6897
385
- maxframe/lib/filesystem/core.py,sha256=Ein0lutQrxeXbzl0ESlN6lWJk1D-_VPyjzxs2heks_c,3027
386
- maxframe/lib/filesystem/fsmap.py,sha256=uZoFQuI2XbNaUOBlDfPRgB5SL9ZtlHhDQxJ3mGvQztg,5426
387
- maxframe/lib/filesystem/hdfs.py,sha256=RGEnP-REb1TmkHYqy-qqAd_E22lWoNezgFY_uVrNsu8,1096
388
- maxframe/lib/filesystem/local.py,sha256=N8CF6yJhW1cj-qlxPxFM5vVEgVoie5oP9evS2fFSvjo,3700
389
- maxframe/lib/filesystem/oss.py,sha256=11w2BhSvgIGAdFIZ5cJigx4SZlnwKpD0gn8c3NxnG_I,5174
390
- maxframe/lib/filesystem/_oss_lib/__init__.py,sha256=4LpNXO11JAdLjSut3p036oEEXlDEB-6AURW9oci5W5Y,609
391
- maxframe/lib/filesystem/_oss_lib/common.py,sha256=-Jv3GisWDK5-ZA_ei7uS7a5hS6l0llECu079NsopWnA,6813
392
- maxframe/lib/filesystem/_oss_lib/glob.py,sha256=8CRHAta-3W-e0IAuOKbVj-f-21FteUnAQfgfgMM3s6A,4984
393
- maxframe/lib/filesystem/_oss_lib/handle.py,sha256=1Em8B-SPYNSB9p4WYn2yVeBXDgb_lJNuW0WBgVxC1Vg,4998
394
- maxframe/lib/filesystem/tests/__init__.py,sha256=4LpNXO11JAdLjSut3p036oEEXlDEB-6AURW9oci5W5Y,609
395
- maxframe/lib/filesystem/tests/test_filesystem.py,sha256=lYlNEWJ-PN-Srjx0PuAQ4bcHNXQErY_gNImIbP4djT4,7597
396
- maxframe/lib/filesystem/tests/test_oss.py,sha256=SYdN5sgE32REQmTGAu-DoHEVhlY56TxLsQox37JbSco,6076
397
- maxframe/lib/mmh3_src/MurmurHash3.cpp,sha256=3aoHr2GNYsXizcf4DosqiMmZvy8l9Jxt3pAkYHr90Cg,8435
398
- maxframe/lib/mmh3_src/MurmurHash3.h,sha256=JgEfh0M_o4gHt2mtzv9sQIQyEqs8ZutkDaPO2L3UwGU,1306
399
- maxframe/lib/mmh3_src/mmh3module.cpp,sha256=bEBXHjhQuXceV6MFyNvs-YG4WUKt5Us_kmgrOKQw7Qk,11991
400
- maxframe/lib/sparse/__init__.py,sha256=kxMz7qQPw6eob1D_BhLNBfy5PcQjroVEb1Z71o4jpos,18919
401
- maxframe/lib/sparse/array.py,sha256=CpaGTvI9gpXJ_v1IGIldOhpdHDfOyh6Ev-K03R3iKj8,54465
402
- maxframe/lib/sparse/core.py,sha256=lDtVQS1DFv699ox6304TXItj1dwW5yzTLy28lETADBI,2248
403
- maxframe/lib/sparse/matrix.py,sha256=eqg92jSKZbq9LJKrQyLMpLPBzYm1RmuIaQbmqF-LDIY,7395
404
- maxframe/lib/sparse/vector.py,sha256=xEbMbl_tEPGykA5ZVHsz5b8ZRLal6zZbuYrAh2xCh3Q,4959
405
- maxframe/lib/sparse/tests/__init__.py,sha256=ZxIRETECrnrJcfRmGQTTNwrCxwqTVLNaM9nCzBNPo1k,657
406
- maxframe/lib/sparse/tests/test_sparse.py,sha256=eXC54hbrXaW7W53MYp79pKh15QZoc-Rx0s7F1qjMTFY,15785
407
- maxframe/lib/tblib/LICENSE,sha256=UV8te2W7BnvQ7rMYp9I2IjrJ7C79BfoIV82EXAK2ACU,1350
408
- maxframe/lib/tblib/__init__.py,sha256=6QQyWUaDhJwfGikR0g8ij-seILLevfOjBBedxmfwaD4,10205
409
- maxframe/lib/tblib/cpython.py,sha256=KY4eqJ5Oohbq2xHfWitd7p80S8SkMhiB0OWFRpulJQA,2501
410
- maxframe/lib/tblib/decorators.py,sha256=377HT3gnD9B2dcxw75pHM17--ABkcgi_GQGmdA_MiJI,1107
411
- maxframe/lib/tblib/pickling_support.py,sha256=D9A0eX7gJeyqhXWxJJZ1GRwwcc5lj86wBRh0tmo6GHk,3025
412
- maxframe/lib/tests/__init__.py,sha256=4LpNXO11JAdLjSut3p036oEEXlDEB-6AURW9oci5W5Y,609
413
- maxframe/lib/tests/test_wrapped_pickle.py,sha256=euQ4u_YU-TYvSExtqeQ9fnCiUQiGaFxY08ld5yL0PpY,1575
414
- maxframe/remote/__init__.py,sha256=m9h2lTNEayNKWsmJeAjitnG00atQROYRitjE9R1h4B8,747
415
- maxframe/remote/core.py,sha256=4K33fOPX6f1v_c1yZ7Z9MRICHtmwkqbiuujfwplZicw,6733
416
- maxframe/remote/run_script.py,sha256=mibruTktWFh62ye9AtjKG7UG7g3_ZLxmXWLWCWY0le8,3677
417
- maxframe/serialization/__init__.py,sha256=n3CYAvESmVbO9cg-KURNacOlGINSugbQ5Z2Ok8Ez_2k,986
418
- maxframe/serialization/arrow.py,sha256=DUq7e9V8kJrpj_Z67F767jo_wxgkkXygSPByzMqfB4M,3513
419
- maxframe/serialization/core.cp311-win_amd64.pyd,sha256=94Vs2iPD1sk31InzjcAGx14XxSUXwt7haPtNOLo1QEk,428544
420
- maxframe/serialization/core.pxd,sha256=tFsBg4SxvMgaKHNr6Pqxcw4uRes1NmoITq2igPtozDM,1548
421
- maxframe/serialization/core.pyi,sha256=oYh_n-2-cV8BaacM9kFev1rSC_OfEgWOUHjwdXBeY78,2206
422
- maxframe/serialization/core.pyx,sha256=TLOPhutnELLuVOjA4MjfElHhHsAmtoWJJMAPUlxVHkU,37387
423
- maxframe/serialization/exception.py,sha256=JmkTT7maDzIuDYWhDQYqfLXp3P00i2ATMvACA0sPsck,3079
424
- maxframe/serialization/maxframe_objects.py,sha256=QXJyxTpLhU3oB7gUwV5JWAvW4tm3jJOskvhJA0_4fDo,1404
425
- maxframe/serialization/numpy.py,sha256=blU5A21RVz7x7RA_65fSB02REFYwqluBJm50akHng1s,3639
426
- maxframe/serialization/pandas.py,sha256=WN17_CWm3stQn_C7nZfc3sOHwn4ihVZQiANwJhd2y38,8725
427
- maxframe/serialization/scipy.py,sha256=eeFCcNp6Vgv8ftRIotOTazP-I3ln1xHnfWSMgHOJtMQ,2498
428
- maxframe/serialization/serializables/__init__.py,sha256=9SEXt3nT_Ii8EuMKCPKOGmV4p9a7NrKRuZkpXq3195g,1406
429
- maxframe/serialization/serializables/core.py,sha256=Zm5N8ZKa2Us6qPT7SFzpaRSmIcxWKc01jOjXGgYGzVE,17405
430
- maxframe/serialization/serializables/field.py,sha256=Yd0mJ4bMBl7BoVJm-6fXQfkDhYijznfNwYy64OMF5U8,16639
431
- maxframe/serialization/serializables/field_type.py,sha256=AMq_nn_RCOIU9ClvoF4UWEFmvP-044MD6NJ0d8MQ3YM,15525
432
- maxframe/serialization/serializables/tests/__init__.py,sha256=4LpNXO11JAdLjSut3p036oEEXlDEB-6AURW9oci5W5Y,609
433
- maxframe/serialization/serializables/tests/test_field_type.py,sha256=Fp_s8QMfA0bJQFWlXHz6dKkuXSAy439yGBsGP14Pbu4,4502
434
- maxframe/serialization/serializables/tests/test_serializable.py,sha256=rdxPNvxqaq8vNkrtMHHvlNJJvSXJ2GnHseDWupAGj68,11007
435
- maxframe/serialization/tests/__init__.py,sha256=4LpNXO11JAdLjSut3p036oEEXlDEB-6AURW9oci5W5Y,609
436
- maxframe/serialization/tests/test_serial.py,sha256=xvTZjkvwIFz7DSfXp5sPcMJ68vyCOj1T1Zhupa0dR7I,13660
437
- maxframe/tensor/__init__.py,sha256=07KA0yWuMoXgFr1ddfnJiwan8vxtcIpOhPhIAYihXmk,4910
438
- maxframe/tensor/array_utils.py,sha256=cYsdlaSxLeRBK63gQRDwQjllFDvYI5orujGgilMpK5M,5129
439
- maxframe/tensor/core.py,sha256=Ea9taiVlH1QZGDJjSjY037kWy01VmrRlZhQ5C8oGl3c,18538
440
- maxframe/tensor/operators.py,sha256=0WsXJQNPbYZh4TbtamoijMscsP4agxwf4mJFuOhST4s,3455
441
- maxframe/tensor/utils.py,sha256=QB5qO7Tz6b5oTz2Ra4_J9QhLjSS09Yyg5uYBemsXc1s,23109
442
- maxframe/tensor/arithmetic/__init__.py,sha256=U4r0dXZFqXwl7TA33D6YD07otO0FD8GqNiKea_Aw9Wc,9695
443
- maxframe/tensor/arithmetic/abs.py,sha256=damZUeC_aWqoK7A0aw-P2ZoHYlls8hrM2hZzl085G34,2248
444
- maxframe/tensor/arithmetic/absolute.py,sha256=BFuieoBOcwyr5eV26pIkjnyCiphFoAGwnBMwLieMEQs,2278
445
- maxframe/tensor/arithmetic/add.py,sha256=_vCAF3gUYg5Fg3Cn6nOGhoL0J8S3l6BWmQEuYQZN318,2649
446
- maxframe/tensor/arithmetic/angle.py,sha256=hrpFWr9oC1dCz-2E9OQdiRdDIf-VTW9eclXZRwnErK0,2209
447
- maxframe/tensor/arithmetic/arccos.py,sha256=hZw3fBeCJEgd5nki0ojEo53M_I48KRcU220MCfN5Xbk,3616
448
- maxframe/tensor/arithmetic/arccosh.py,sha256=LuN1ZAhjfFBK-Ue0zdzXXdlwUMq0uxEb9VLqEchHa3E,3115
449
- maxframe/tensor/arithmetic/arcsin.py,sha256=JnUg8QydpXAYAvTIL1wzyavl4JGpjZUYd9dD0jDv4TU,3338
450
- maxframe/tensor/arithmetic/arcsinh.py,sha256=2UcGxI14auHZmjID-p7VjjVPTB7TDAiwN6TdyK-TStM,3117
451
- maxframe/tensor/arithmetic/arctan.py,sha256=uZ02F7Ed1U7OGCDxqPWxOHmjW55eh8dqFLu62awzeaM,3668
452
- maxframe/tensor/arithmetic/arctan2.py,sha256=9kocN7S4KX7TMIaYOzQVnVGiihSy6VayhNro7BwbKpg,4571
453
- maxframe/tensor/arithmetic/arctanh.py,sha256=rI2J-XXcURm0eynkz9XvmhD6kVmMNgUQRM9O_tF4EHc,3095
454
- maxframe/tensor/arithmetic/around.py,sha256=DLnNVG16kZ7oX9srJ3M7DZo9t7F9W_3wQm0btxsEtgI,3940
455
- maxframe/tensor/arithmetic/bitand.py,sha256=Dd-1S4Ox9J_5vEF-GYpdQPpOagIoYQb_UFF1Iqj7dQA,3012
456
- maxframe/tensor/arithmetic/bitor.py,sha256=geIdAsotMWrU_w7oPFJ5DZLD-N6GrKN0ShujKDtbH6c,3414
457
- maxframe/tensor/arithmetic/bitxor.py,sha256=czCll6qVzgLP8SdQ0dym2lW1ts-Sq7b8zUMlsV9TWZU,3003
458
- maxframe/tensor/arithmetic/cbrt.py,sha256=N-xtGXDO22IflzJpVOLJupgbezNEeyXm4WzkSVP0i4I,2181
459
- maxframe/tensor/arithmetic/ceil.py,sha256=9A5MvReiThIoJqnKncj9TaLP5OwbSOrooYfNVan8mgI,2323
460
- maxframe/tensor/arithmetic/clip.py,sha256=zGD_3DIuInLlrobZmWvAkkyqv1FW27rRT_ygIZB2KzQ,5680
461
- maxframe/tensor/arithmetic/conj.py,sha256=CfyEsUfBnZGaUCnF5z6In38lYZtjwL_Q1-XP1mj5kXs,2301
462
- maxframe/tensor/arithmetic/copysign.py,sha256=7xJ0KqiOQ_Ti9M5izosPQS2bRLpWs4LUZYLDvXypLyw,2583
463
- maxframe/tensor/arithmetic/core.py,sha256=AcexC4MyOl1JVGMZ-His5HsbCWWyRyVZ9s0Jru-UHbA,17859
464
- maxframe/tensor/arithmetic/cos.py,sha256=r2woXyTUokkeidKinxPQyJt3DajydyHtVB3eLZ_O_6Y,2815
465
- maxframe/tensor/arithmetic/cosh.py,sha256=fJ2aXemeceulpSBNL4HR9ChSDMX1gUeSQwHUf8Vb7bo,2290
466
- maxframe/tensor/arithmetic/deg2rad.py,sha256=Gl5y9yLFD1SYItuW0asNQ8oz26AfOXheqJz1TMF6p18,2243
467
- maxframe/tensor/arithmetic/degrees.py,sha256=9WC873NpjBjlYTgim9rV3FvIozCVB_m9qmCVuWBJ-a4,2452
468
- maxframe/tensor/arithmetic/divide.py,sha256=IZkKPIGwHq8eDyYANZ5zafdj2iCBZRm-xg4r1vXjBXY,3824
469
- maxframe/tensor/arithmetic/equal.py,sha256=UT95PZ0Q8loIgqio9meKoEcdCO0Q4EiMGuJmDoeee4s,2469
470
- maxframe/tensor/arithmetic/exp.py,sha256=4bWcreJX5I8IYNIyhzPZfD_DLdv16sf032noaTnE848,3889
471
- maxframe/tensor/arithmetic/exp2.py,sha256=G_AtbpHHvoDWVjKrZpiAPZwSMhf5bRxQb-zhCdcehWU,2064
472
- maxframe/tensor/arithmetic/expm1.py,sha256=XzF6LXOC0FfAbfvLufBMy3AHrl2zGRxnxb0-uwYibJs,2500
473
- maxframe/tensor/arithmetic/fabs.py,sha256=PXjDftU9r_hpbiiuqadeh_nQlusHc_X2o7g4kM_hp5Y,2504
474
- maxframe/tensor/arithmetic/fix.py,sha256=oAV9y0ufVsUNdAIjSeYVQwvyurYRx9lNLgU8B3QwDck,1829
475
- maxframe/tensor/arithmetic/float_power.py,sha256=pH2Ruz0cO55DJP90nV3yYz2No4pdiMYPGkCKDXsJjY4,3467
476
- maxframe/tensor/arithmetic/floor.py,sha256=pQfPKHx73DgOO05L56l3PS3p84Q0TgBFAjd05Dy7xag,2519
477
- maxframe/tensor/arithmetic/floordiv.py,sha256=0RjztmeiSZ0lwP3K7vPKhZfhuVqGVVczPzgxkrADrxo,3081
478
- maxframe/tensor/arithmetic/fmax.py,sha256=Yz5Q5b-_S_oZdUYvrNSKehy4Tj8hLWDuMZcwPmL9RsU,3679
479
- maxframe/tensor/arithmetic/fmin.py,sha256=-mU0zKc6ZERX8bUhvH1hScdQGxSxTSAXxaxvkVEIgXI,3673
480
- maxframe/tensor/arithmetic/fmod.py,sha256=rLbwTIFuTO60Yqsdef1p6JyFst7OhQ9aN6NGIoUidf8,3311
481
- maxframe/tensor/arithmetic/frexp.py,sha256=elAtKUKTdkUBex2kJnJaqL6rFR0BgACmcgYK7vNWNgU,3238
482
- maxframe/tensor/arithmetic/greater.py,sha256=fJ-nw9aOzDfoovkJ0Q5XwVo5tdIrvxV7onhn4o8xwqk,2532
483
- maxframe/tensor/arithmetic/greater_equal.py,sha256=11hFfCu8I3klX1VZHbJ93drqfmiTeAsxDt37gRVP7Sg,2373
484
- maxframe/tensor/arithmetic/hypot.py,sha256=jz188-Y-ETMiA2ayzHJ9PI4LdJKkp3E4sOUOqnSHo1M,2598
485
- maxframe/tensor/arithmetic/i0.py,sha256=ftIRe-TFle5lZ5-s6m1f55cVd8CGPt6xLgeIGyqPRSA,3000
486
- maxframe/tensor/arithmetic/imag.py,sha256=myhPALMqrSb_6CwSifEd-pw_oGrlx46Q-JRhu8p0jak,1835
487
- maxframe/tensor/arithmetic/invert.py,sha256=2bUE9uw2LZ2jv7CtbWwFgRrWKrJQzBBJUE46OoKNZp4,3572
488
- maxframe/tensor/arithmetic/isclose.py,sha256=lydgdDMjHhcQOfK29f0ZAhqsyd9wunB01dCIQi1-4o4,3811
489
- maxframe/tensor/arithmetic/iscomplex.py,sha256=_LlF7SWYYt_D9ileT0XI_FdM9ZVKobKJW3ghxalrMnk,1768
490
- maxframe/tensor/arithmetic/isfinite.py,sha256=YObmoQmPKmRd1eAxtYBzlRSHxBDoinQfJQ5JEIAma40,3704
491
- maxframe/tensor/arithmetic/isinf.py,sha256=8d4OajP8lnYgE5R-AcfCZ4oIj-PTErpY8M_zWfdGMMo,3565
492
- maxframe/tensor/arithmetic/isnan.py,sha256=C_lFHOsPpXbd2IuPZhNRfRuR3Gmv9uqYJpel_RFURoo,2771
493
- maxframe/tensor/arithmetic/isreal.py,sha256=hpqGwT51E0IKgEPSQHdWSw_e2cpIgWBGNEIvP8acs0Q,1713
494
- maxframe/tensor/arithmetic/ldexp.py,sha256=YkJ7HCvnyAovzoG4EvSF2I4rxlcWaDmBIlLsmG1L_4g,3264
495
- maxframe/tensor/arithmetic/less.py,sha256=qmjFB1HqQ6qdZlcTvX-GusDRhDZWQ7wG4xmy546KF6c,2334
496
- maxframe/tensor/arithmetic/less_equal.py,sha256=w6wT3hh3nxFVdlH4CM4ZDDZ1JqAsH_b2rzm4161RxRY,2362
497
- maxframe/tensor/arithmetic/log.py,sha256=Xqo2bn4pnydN4Rx-AyiElBaDjYX25XiKTsUhzrm7F1M,3242
498
- maxframe/tensor/arithmetic/log10.py,sha256=Qf5Mw6rViXiwSQmoZ-Cek6pVt3GOqrGy3oOeGH-Ey1I,3109
499
- maxframe/tensor/arithmetic/log1p.py,sha256=1Px7WSbi4lq6g_m-cb9WBI_KXmqHPKBJbxf8VRKYwoQ,3334
500
- maxframe/tensor/arithmetic/log2.py,sha256=RgiQ7UuEJIeuuQffEnAi5HYvGKl-BYiYGwGqy1b0wqo,2951
501
- maxframe/tensor/arithmetic/logaddexp.py,sha256=32TQoR1g9aEp6FeUQy4AEKJ57qw9_CHuBIMyNjPefT4,2809
502
- maxframe/tensor/arithmetic/logaddexp2.py,sha256=aZrY2BF1-i6jF4yu9_8OQcUJ0szJZ6_inD5dWc-aZdk,2823
503
- maxframe/tensor/arithmetic/logical_and.py,sha256=cw__14y-5j8ok4QdbxA-V4QBSEctzfbU4g_IzEU3DjU,2651
504
- maxframe/tensor/arithmetic/logical_not.py,sha256=65W_ZNF2_vR3mf9K0DmZ1_VfERt7LB-eu1uAfypq-kU,2417
505
- maxframe/tensor/arithmetic/logical_or.py,sha256=BkQd6UzYwIOUU0C5Cmo3Sv6YmWRHXUDdrSqD138ZMNk,2671
506
- maxframe/tensor/arithmetic/logical_xor.py,sha256=txi1Xl1ERZ_So02H0EkgvQEnfM0WHhQwIBrcs8AEOJ0,2978
507
- maxframe/tensor/arithmetic/lshift.py,sha256=Bds5ijF2z1WeznmGYNuuztIOW2WZmIfQiBBLTiJikh4,2716
508
- maxframe/tensor/arithmetic/maximum.py,sha256=gCIeUwzg5vrNHk8Hag4WvwEqzF1Zd4CcIaFkSfU5r3k,3802
509
- maxframe/tensor/arithmetic/minimum.py,sha256=5WrLA_TO67TOUeElLOzG3V1fi8OdyB3jKIkGE5d2HvI,3803
510
- maxframe/tensor/arithmetic/mod.py,sha256=uG3Mgqrcaw3NOkEhPlV36x0v6MHWStswEjKlANWBp9M,3349
511
- maxframe/tensor/arithmetic/modf.py,sha256=CfvPW4LqqGYME2sVFQ0h5Feuog0A9ZZ-49rcKiVetpQ,2666
512
- maxframe/tensor/arithmetic/multiply.py,sha256=leyXZnfXqMxzEpGrQtke66dBa4XIef7XH8pIo0pAwfg,2562
513
- maxframe/tensor/arithmetic/nan_to_num.py,sha256=kTekTwRDkqzPtC7E_k1xJl4gs6742cQEXSF1w65i1Dc,3348
514
- maxframe/tensor/arithmetic/negative.py,sha256=tOPkLfvy7zkLdLeqweb7CvGQkkMhzN4Ikxq5I2B5g2o,2153
515
- maxframe/tensor/arithmetic/nextafter.py,sha256=EiRT8Aj8tfsGoDF2iXyQfDpxAXlov044XFReN5cGQAw,2398
516
- maxframe/tensor/arithmetic/not_equal.py,sha256=F6boSSslgWpuSPTvGmD2LC7x_skDptW_hnJcO-Yqam8,2346
517
- maxframe/tensor/arithmetic/positive.py,sha256=WR5OeEqDsJoXVBnQGdNnd_JCwOLtg6LFIYqY-lK892o,1359
518
- maxframe/tensor/arithmetic/power.py,sha256=gY7dzGa-Qns-Gr2-I59qI93nTDTVe-HLFCdscLQXxNA,3309
519
- maxframe/tensor/arithmetic/rad2deg.py,sha256=vlTPxB6ba-s6_x9KyCctr232KwDYokAkch1tQ-9-q9o,2173
520
- maxframe/tensor/arithmetic/radians.py,sha256=ItO6pcDg442sxWekI6Gx_6F4k89tdGeO_osOi9fsBjk,2457
521
- maxframe/tensor/arithmetic/real.py,sha256=SSkS3JplGHrWJ_zTNi3a9xTQxSe2gpVixFp1VVcgSYE,1901
522
- maxframe/tensor/arithmetic/reciprocal.py,sha256=3IRIWtRnMHOB2QtoqIm5AcoeLO1eaQRFs9IVZAbfSjo,2451
523
- maxframe/tensor/arithmetic/rint.py,sha256=_VeY1bORSDosGsIoczG2MkWkVmlxvtE1SGtJdfG2j0o,2183
524
- maxframe/tensor/arithmetic/rshift.py,sha256=O6Jvx3tdboQ3aWrO2DtRR2ZW8ZpNjiP6idUfs60Zyhs,2636
525
- maxframe/tensor/arithmetic/setimag.py,sha256=wr5DiOFiJnwXbPu4MpO98HnTh52vlO9awRgZ6zrh_qM,973
526
- maxframe/tensor/arithmetic/setreal.py,sha256=CavhEoDs2XiwtwsK3pVjHHZzk-PcL0FlJiIgg4TuDGk,973
527
- maxframe/tensor/arithmetic/sign.py,sha256=qP0cQtHv3LedEsDvYWuinmNAhJVZu5UowTgTIQ1Q7uA,2632
528
- maxframe/tensor/arithmetic/signbit.py,sha256=Uflai2HAqcsKEC8YFLByc_qfMXnYmWCRg-V9TzIie5I,2177
529
- maxframe/tensor/arithmetic/sin.py,sha256=fk5gQJzEUXWEtsy-hYpWlxXKQfpkscuBSa-GoSPH84c,3418
530
- maxframe/tensor/arithmetic/sinc.py,sha256=uB7W6iEBFSiAU54IZRGBDLj_fIiaEcp9Mfk05Y7cl2g,3589
531
- maxframe/tensor/arithmetic/sinh.py,sha256=flw5jkOAgPkf01Ros2JArvpvLqLkwuha_2OU99Ue6MY,3010
532
- maxframe/tensor/arithmetic/spacing.py,sha256=Rmwvbum_AUKAwX45_M4Z808Q85QS0jDtIGjAWLf6p3E,2385
533
- maxframe/tensor/arithmetic/sqrt.py,sha256=Tb9NahCD9kFhIoPTRL-yZhhETtv-G4dlE9jUhe9VSYs,2886
534
- maxframe/tensor/arithmetic/square.py,sha256=kInWlnOW8cWjhMUFI6r7ubJQvO83PZ1YeaQrnmCkydY,2157
535
- maxframe/tensor/arithmetic/subtract.py,sha256=rKoPeOtggLDzruDhDzNl7iKUFIP_TiqNVBVHxFLi8hU,2576
536
- maxframe/tensor/arithmetic/tan.py,sha256=c4ro5QDrCBle9TGH7iMGAEG7uwDkkKUhiiWfcuIoJZk,2931
537
- maxframe/tensor/arithmetic/tanh.py,sha256=FlUiUIOGJgYxq6vBhPueQAM91ad-ORMn6UY_gV2jE6w,3137
538
- maxframe/tensor/arithmetic/truediv.py,sha256=bEUoluOxdh_cJyBXeXAj0_FCz4cRyj4en8LbWIRAI1M,3451
539
- maxframe/tensor/arithmetic/trunc.py,sha256=BQMlmDCcstSXGLBdGrEc5CMh2sy7EJMI8hwWLlEGVI4,2375
540
- maxframe/tensor/arithmetic/utils.py,sha256=E-iqlGJnsi8M2GreeyS_H0_ILSjsYfu8JBZNmByqWF8,2304
541
- maxframe/tensor/arithmetic/tests/__init__.py,sha256=ZxIRETECrnrJcfRmGQTTNwrCxwqTVLNaM9nCzBNPo1k,657
542
- maxframe/tensor/arithmetic/tests/test_arithmetic.py,sha256=aW4MQXDjpQWObmqvKWu-cyNOQyB6q0VBObqmz27WA3Q,11839
543
- maxframe/tensor/datasource/__init__.py,sha256=fKZnl7PTIe3GASexK2tYvVx2u12dSCl1yPBoAVWtQL8,1178
544
- maxframe/tensor/datasource/arange.py,sha256=m4ZZM2mV9aK5dwGMy0fXoZjQlnmladCCIqQV0fNGLVo,5632
545
- maxframe/tensor/datasource/array.py,sha256=frgqwL4fjfOe-JLP0Xo21SPcpSvCla8K4KfWJMeBMNU,13472
546
- maxframe/tensor/datasource/core.py,sha256=aOOHlC9wQglzeylxWR3sKjgs9LxDYcX0nTb0a2ymqNs,3520
547
- maxframe/tensor/datasource/empty.py,sha256=DmTNC7nMcL-5h5qyZp-U-FGTOsGHP5OvVCiw5jQH87I,6019
548
- maxframe/tensor/datasource/from_dataframe.py,sha256=u175TJZdqeUkle1PPYcdTem9wjxramtzmt2KGL-amDU,2573
549
- maxframe/tensor/datasource/from_dense.py,sha256=OomX12Gh3GQQ9LmgdSx5iWgLE5N4PTsPfzU3ibAMh9A,1661
550
- maxframe/tensor/datasource/from_sparse.py,sha256=bqhgZzFu4M68n8kg5yMppKvjoWza6lf_4TeZTXrQSlk,1593
551
- maxframe/tensor/datasource/full.py,sha256=dJLPD0FHeJmJQmim-tOGjvW6kB3MtCwwkjuxQ1bLB8E,6462
552
- maxframe/tensor/datasource/ones.py,sha256=cjQ8MuLEo1fMUFt2khBLy7KPPpRicL3rX61wHDdJM-8,5182
553
- maxframe/tensor/datasource/scalar.py,sha256=Gj-A_jb6RDkDHAl1Xyqn_5elV36fJGPxep4OJKqRqYw,1196
554
- maxframe/tensor/datasource/zeros.py,sha256=4RaHiSg3X3xLCVfdZCZ2Q9hzOhl5dUXVO1MAyOfM84A,5860
555
- maxframe/tensor/datasource/tests/__init__.py,sha256=4LpNXO11JAdLjSut3p036oEEXlDEB-6AURW9oci5W5Y,609
556
- maxframe/tensor/datasource/tests/test_datasource.py,sha256=qv21QPuUKgplfpNv2NptM-8KdRH-cyUeo15mVBcsFXM,7931
557
- maxframe/tensor/fetch/__init__.py,sha256=eWgriJX2psoMcsc3UawOkOyZq_N9GrDPHfaHlpKf300,662
558
- maxframe/tensor/fetch/core.py,sha256=E1-PciVwugKHJxOfii9jw907n2ybxCMBwYSQhgBirQU,1872
559
- maxframe/tensor/indexing/__init__.py,sha256=t-xYFvRiQou6bTPYyhs9T9HTTPZ7C0bEUXGDGfJT_A8,1658
560
- maxframe/tensor/indexing/choose.py,sha256=qTHftmH_eXN3_yE-TVulXPIN7E8wuAJTOHSFVuNy6rQ,7780
561
- maxframe/tensor/indexing/compress.py,sha256=-6-2Oc8uVoEV9qMr3KGf8zMWmAY0E6BTgouN9sDQomQ,4153
562
- maxframe/tensor/indexing/core.py,sha256=VIiNK72XC_8SDXUiJO-iVNuXa3V7pqFNJ3BhCsVdiG8,7212
563
- maxframe/tensor/indexing/extract.py,sha256=YmFOI6L1DM2Dl4LLXng6_i5WhOmPqGOnY2cKXQN_X90,2139
564
- maxframe/tensor/indexing/fill_diagonal.py,sha256=LkBS7YUx_lnpsshc7T4TfjZuzgRwUeC8SaFUVhiXU2o,5488
565
- maxframe/tensor/indexing/flatnonzero.py,sha256=WCjCNRbX0xhZ3lIYTJrQrtmql0tityo1BrNo6tDrIxU,1766
566
- maxframe/tensor/indexing/getitem.py,sha256=cD-oxzwSdMcWhofbVzCdKouzMl-PCYWBnLcGuspq7zU,5800
567
- maxframe/tensor/indexing/nonzero.py,sha256=bVIXkKIOuB2rFRLj8208wYnRVGie9DoS3svuTu8qfkU,3766
568
- maxframe/tensor/indexing/setitem.py,sha256=k7yQu9lmQwg_wkzb-xe-58vYM4ABALzie2gJbYhoKlk,4484
569
- maxframe/tensor/indexing/slice.py,sha256=Fv6_uHYeQJvawEIvRoKbV091h4vFADS16NU33z7O2EY,1051
570
- maxframe/tensor/indexing/take.py,sha256=M1doyAZ5mJTsgIZAMI8NU8j-ZDCMQRoanL0RZYYPIWc,4384
571
- maxframe/tensor/indexing/unravel_index.py,sha256=P0GX12aQvhlJxykkusUUpKQPtZ9wDKkbDlNyUdnYeU8,3326
572
- maxframe/tensor/indexing/tests/__init__.py,sha256=ZxIRETECrnrJcfRmGQTTNwrCxwqTVLNaM9nCzBNPo1k,657
573
- maxframe/tensor/indexing/tests/test_indexing.py,sha256=cc57bBof1FRKbPhE0N3CHRfFVl8Ckta6SWxQcc5P6BY,6886
574
- maxframe/tensor/merge/__init__.py,sha256=m81Ouif6GAXEHe0uKPiMpPlxZwSeI76EYVkgASnd5nA,703
575
- maxframe/tensor/merge/concatenate.py,sha256=aiuXKveKErriY9PQmWSiV-xm06X2-ufEm8AfHEH_5X4,3316
576
- maxframe/tensor/merge/stack.py,sha256=dOFQrcfPV117eQHl1IRy8oF9u6PoNthl90kH3mEPVXE,4277
577
- maxframe/tensor/merge/vstack.py,sha256=OWetsKXO3DpznVsBvEe-HcwSD5ZTh8BZTWBWiaCqW14,2342
578
- maxframe/tensor/merge/tests/__init__.py,sha256=4LpNXO11JAdLjSut3p036oEEXlDEB-6AURW9oci5W5Y,609
579
- maxframe/tensor/merge/tests/test_merge.py,sha256=UgoXmVPrz7K8tlRZKUFcnIsvH0WZI3h7ODsbBU6PByE,2291
580
- maxframe/tensor/misc/__init__.py,sha256=sgi-UpVFLsoarE5cWUvJdJF8Nygkr6B_wScoNeII4nc,1185
581
- maxframe/tensor/misc/astype.py,sha256=vGjIrYj3-_ANrn7e82hoK5YYtR_NGtxAqanXHSm4vWw,4513
582
- maxframe/tensor/misc/atleast_1d.py,sha256=cEGHYACn577OC9hlfzR988EBDxPt3DF1Z_H8TgRows4,1944
583
- maxframe/tensor/misc/atleast_2d.py,sha256=e3z_ADGUTHUAvK6DEiZiSEZCVaASbmKTRtQNoYJQ5r4,2028
584
- maxframe/tensor/misc/atleast_3d.py,sha256=nQQr-ARc1AJ3T0PtWtgeZfdjOPJVYUQn4qxxF-pK-48,2477
585
- maxframe/tensor/misc/broadcast_to.py,sha256=hQRGTa4YDbA7nWYyEzi3mwwBZpJOKmTPxuyCAR-6rwk,2775
586
- maxframe/tensor/misc/ravel.py,sha256=gU0EsnTTBitz4MKa4CSW3JR0QrkfOZoKnsarelBo7mY,3265
587
- maxframe/tensor/misc/transpose.py,sha256=h3IbuHNt5hmi8gwYH7q6uyzdiEil2XdliLydQq2sjSs,4149
588
- maxframe/tensor/misc/unique.py,sha256=T8DCmet525wivTPfti1vdPM6_oOMNHncrkdw_Oslvic,7011
589
- maxframe/tensor/misc/where.py,sha256=6LnsLajy1PWx447n1xJAGhKAXlCn3Mk94QORZO8lWHA,4127
590
- maxframe/tensor/misc/tests/__init__.py,sha256=4LpNXO11JAdLjSut3p036oEEXlDEB-6AURW9oci5W5Y,609
591
- maxframe/tensor/misc/tests/test_misc.py,sha256=aTXEzYurjXS6lsviP_SlVOTy2Vlu-6eINXGcu36h46c,2957
592
- maxframe/tensor/random/__init__.py,sha256=3zvbTc7caXasocm9T_2K-C0JnapfJnimUSnQG-nHXgU,7179
593
- maxframe/tensor/random/beta.py,sha256=f0jS_mc21zY8XYQboipOOixWL-u4p0A9Ln43CFV8Gvo,3200
594
- maxframe/tensor/random/binomial.py,sha256=M-pw-dF9i7WP1CQjqnkHxRcGR0OIB_WHOuIji6xgvFQ,5428
595
- maxframe/tensor/random/bytes.py,sha256=pWUChPymfRgl740zNUZrK72hqWx2jL2sd6A9pbU1p9s,1093
596
- maxframe/tensor/random/chisquare.py,sha256=O06oF8dvp-ImTJ7u7Ogs-b3MYf_ReB2SqmLlmKU0UzY,3864
597
- maxframe/tensor/random/choice.py,sha256=ljvgZo4ReG8X34mIcjM0jJR97s74RqznaaAUSjxkw7g,6144
598
- maxframe/tensor/random/core.py,sha256=OI9XYLRUNIUMcH_wXsFWIYSewzSWjnXUNtrlLN5O7AA,7440
599
- maxframe/tensor/random/dirichlet.py,sha256=ZntrBZRLRH02aBu9WviYYGQPU4ZVPTdXgdJ4nA_hX5k,4507
600
- maxframe/tensor/random/exponential.py,sha256=zBSLG4rRP7OAG9h1zrbxSLqBNJJpmeLtB-4v4O5FpF8,3677
601
- maxframe/tensor/random/f.py,sha256=hz7wUkQ-YcLTs8_agQf9J00rvmO0A0cTMf1LWlWKNlQ,5226
602
- maxframe/tensor/random/gamma.py,sha256=EPZXyGBbbLjikHO3uZir1pNnIuHcwav_UcEHSGN2kec,4747
603
- maxframe/tensor/random/geometric.py,sha256=GruO2o5RHH0RX1wHNL5CjwI4egxjg4kafAGpwcKfVjo,3443
604
- maxframe/tensor/random/gumbel.py,sha256=8R8ztXxLEptQMGivqfJ1oYruhcbRCcRGQN2nNa_xx4U,6488
605
- maxframe/tensor/random/hypergeometric.py,sha256=S6KOxp3zDhP96HrX5aE6-QwTvftXHIDTO02UHEzd5i4,5781
606
- maxframe/tensor/random/laplace.py,sha256=dYcx8wJuj23htPqoI77e8zMdwm3ClTmNC8Kmo3KYowk,5140
607
- maxframe/tensor/random/logistic.py,sha256=oXEJWYH7gHcrwmWA5qlK7q-agXfHtSg2o6Z6wJtyJmQ,4857
608
- maxframe/tensor/random/lognormal.py,sha256=7vOBSH9EkyO4903CvveyQ9rFUw_8wNPHTI0g36T9QD8,6214
609
- maxframe/tensor/random/logseries.py,sha256=koJWrDcjTWZAYJmZpG-xmQqMRtdQ4GkJVIJmeElXVUo,4559
610
- maxframe/tensor/random/multinomial.py,sha256=35vSJc0IVmJM3c0gbnhM2T3qmyml2Fa6IGWEWQSt1N8,4904
611
- maxframe/tensor/random/multivariate_normal.py,sha256=SnNdSGCJotMOvtLaogPITJy2wPY1RDmuKyKyG5ADGIA,6958
612
- maxframe/tensor/random/negative_binomial.py,sha256=wuChj2oFax6Z8ABgUK3FaEK0tJled_ryxqRtpUvYyfM,4964
613
- maxframe/tensor/random/noncentral_chisquare.py,sha256=O2jGZr3GtmKCApnA5zspfJADKB3WvMj9hares7SFVYY,5069
614
- maxframe/tensor/random/noncentral_f.py,sha256=OFBZgb7hiZrMQBtwwlAqQjzCnePcJHsCAnnHrTHLsfk,5136
615
- maxframe/tensor/random/normal.py,sha256=SNyFFN7iBPhmoWjSmrb_YZaXCTXHvbmakQd-dN03rSg,5352
616
- maxframe/tensor/random/pareto.py,sha256=1iYV_7CVVekCzOhVjJOzNWk-eq3841_UP1ymNlPvlPw,5529
617
- maxframe/tensor/random/permutation.py,sha256=GaXJLPIdjNZiP2jVBS1yp4L7qtu3BxgBW8Cb7QRp8L4,3523
618
- maxframe/tensor/random/poisson.py,sha256=KzNyWAxivOBtfF7NJHiekN64p1hX8b28Ue8n1fXGuAk,3997
619
- maxframe/tensor/random/power.py,sha256=9XLDtcHbLpB-jWuFfDolNXhLxoBVTA5zblnMpqEMA8o,4987
620
- maxframe/tensor/random/rand.py,sha256=iQU1WFM22ueeJ58JJ87xs6RhmMhwQQKpBHcGjhZTgKg,2620
621
- maxframe/tensor/random/randint.py,sha256=VpXuFB-Yh1mKoQ-S586MKZj7wbKRUsXlGY5BqHzDGTA,4340
622
- maxframe/tensor/random/randn.py,sha256=C3jmmqMPfQegv4fCy57z7CSsz8nKo8Kug_uygcNrXbE,3437
623
- maxframe/tensor/random/random_integers.py,sha256=AWg3za48_0JPg4oqdKN2y_YnLPwyjRH_Caa2aM0KzT0,4483
624
- maxframe/tensor/random/random_sample.py,sha256=BMAwIangMsRHwh_x60VMd2E2NXyty5ZM86fy8x0djNI,3091
625
- maxframe/tensor/random/rayleigh.py,sha256=BJz0AKU1tejwDE2M0yyudhGZuB-uwG8ytZ1DUELCfOo,4066
626
- maxframe/tensor/random/shuffle.py,sha256=b1olWtGM6A32gRo5q4_LupcNMuVVJ_0hritmQxPpRFs,1823
627
- maxframe/tensor/random/standard_cauchy.py,sha256=G5teL5uewfd1VSOE1ORwoZ-y0ZvSAJWkCw_hbZYQD0E,3966
628
- maxframe/tensor/random/standard_exponential.py,sha256=18dvzXzpZPkFJTl9AELh5c8XpPScdMqU4QdqDGI6ycQ,2510
629
- maxframe/tensor/random/standard_gamma.py,sha256=gO8rTcOjCwjG_CmQc47EBZ6y5XGx_ZhLIQ5lVTj12vk,4369
630
- maxframe/tensor/random/standard_normal.py,sha256=_pMcL5YMHfsDhTJLsJ1w7PKDZNGuXtYyTGCmmWS5Ibc,2627
631
- maxframe/tensor/random/standard_t.py,sha256=3yyGJW2KGhvaJ7KVfgw9VWkYX3UvGz1pgcEagWRkCuk,5054
632
- maxframe/tensor/random/triangular.py,sha256=tnXORfUKDjBLIfsD39TD9dHq7g_cJYMOa7eGdTCS-iU,4467
633
- maxframe/tensor/random/uniform.py,sha256=g2qLt2HweSH_F4zAhple_aeLcyAs1Ervv0cQtqqDhv4,4830
634
- maxframe/tensor/random/vonmises.py,sha256=XNKsFclksh2UlPEt3u0wDuf1gw_he_vaeN-Kcflqte8,4930
635
- maxframe/tensor/random/wald.py,sha256=hx4vy8xwceROkZVylLSlVUsqSNCB4yXlldrgdRzJIuU,4484
636
- maxframe/tensor/random/weibull.py,sha256=vFm-EorfyI8mez0crHM9FNw1bsUS9bgvtODXvsYW148,5035
637
- maxframe/tensor/random/zipf.py,sha256=wwLsl3enrgWwC4paT-9tAIkGZgxBZ8zf0AbdFGoHz_0,4213
638
- maxframe/tensor/random/tests/__init__.py,sha256=ZxIRETECrnrJcfRmGQTTNwrCxwqTVLNaM9nCzBNPo1k,657
639
- maxframe/tensor/random/tests/test_random.py,sha256=Y08QMnjHinjGoUFgJfOerqbAOmHML1MBuUx4WV2QG5Q,4442
640
- maxframe/tensor/rechunk/__init__.py,sha256=V3ptEn5VvZ_upn_u6qgPaf2scyUrPfBsVx0ib3u6djs,823
641
- maxframe/tensor/rechunk/rechunk.py,sha256=jXCMOVnl1kbMVAV0eG22R3vd0Z3m5bD3yewGYXyqXS4,1435
642
- maxframe/tensor/reduction/__init__.py,sha256=5vRvafYNjh74vWcE-iErVND-LwN1Xibhbg78iR2e7Qs,2384
643
- maxframe/tensor/reduction/all.py,sha256=W9Q8itV3d7tcaDGBRNMhGwZaTInIWuOlWnA6qgfVu5w,3570
644
- maxframe/tensor/reduction/allclose.py,sha256=q8H0d5RmU1vHd2YjYcT0-gyF-eUA8_phn4lIeE0f_ZA,3030
645
- maxframe/tensor/reduction/any.py,sha256=r86l4jjcd6USkJ9ZrzXmY-DWxNUnax8YUiURZaeQu60,3676
646
- maxframe/tensor/reduction/argmax.py,sha256=3GjuXEJUyPaYXosXLL2Se5nFjb0m-7P40jN7Q9zQRFw,3212
647
- maxframe/tensor/reduction/argmin.py,sha256=rcPqLk8_YfFEGW0ijkHr2yqwDIJw_eXAIOajIo54FZo,3202
648
- maxframe/tensor/reduction/array_equal.py,sha256=5f96C-1D9A-L6OSNfi9cZnfRzjmaF4KO0x97eode9Uo,1859
649
- maxframe/tensor/reduction/core.py,sha256=XVAaitsZkztmfmRcEFsDBLSfEGGuHmOVMeOrmBqn4XI,5257
650
- maxframe/tensor/reduction/count_nonzero.py,sha256=0XoxVQyyLx0te5aC2KjSN4BjQz5aXV7iHqT6a0LN81U,2836
651
- maxframe/tensor/reduction/cumprod.py,sha256=KzacbcQg6xG4Ptu7EU8GbnS9fdaj4itxJE5nNMd_JOk,3369
652
- maxframe/tensor/reduction/cumsum.py,sha256=-otovmU97B6eoHTmv5pqwJisOJBxMctdY8adB7UkukM,3592
653
- maxframe/tensor/reduction/max.py,sha256=KAAvQNHiHSNKeiBr8ZX7tu6mT3xbD1Nx3CdCPMUM4-8,4099
654
- maxframe/tensor/reduction/mean.py,sha256=JY5VxTLlsONTX0dYixElfxzLhTP4bGM1lvS8FAoylMo,4503
655
- maxframe/tensor/reduction/min.py,sha256=NTwGSTbFyAKxUXRaQXMiLX29dg2ecDnvCzdskjBnfd8,4100
656
- maxframe/tensor/reduction/nanargmax.py,sha256=dOx_wOnD2lZKlo3gnmiOw73HPKoMsv8af-4hGssvTXQ,2563
657
- maxframe/tensor/reduction/nanargmin.py,sha256=eIOUlzVYI0WTUezqIq7SwoSdJWBkqOIfrgqwJFkPA-U,2279
658
- maxframe/tensor/reduction/nancumprod.py,sha256=0nNzAI2CJe5KVuazMWfglqNcc0t96S7qgEKbTahCSVs,3212
659
- maxframe/tensor/reduction/nancumsum.py,sha256=Ub0ptDOY-nxRJWOw0L57an882m0gcEXePVx_IAni8jg,3377
660
- maxframe/tensor/reduction/nanmax.py,sha256=MLpmsA2LoayyuEwVREqFdnVbriBDo-BavQD1--CIX4E,4061
661
- maxframe/tensor/reduction/nanmean.py,sha256=VefXDElhxUSzSC-7NFV4lqyF_Ja4SA-x4Td6JYofMRU,4078
662
- maxframe/tensor/reduction/nanmin.py,sha256=u21KGvVGCcnYANuxP88OeAMD0_liDTIqO5JXQXNSg0w,4058
663
- maxframe/tensor/reduction/nanprod.py,sha256=KVkp2g3U3_wbYzULbBF0_ticc5r_5F2LBKXeEHa4M3Y,3408
664
- maxframe/tensor/reduction/nanstd.py,sha256=yua8SgdbZ3tteJbamMnt2COrDM3l7lGRA566kvPFaS0,5017
665
- maxframe/tensor/reduction/nansum.py,sha256=Io7KfSHW0XT1yDmtaQzbfRmjlUzrnIvfnFT_yZakjwQ,4181
666
- maxframe/tensor/reduction/nanvar.py,sha256=hWxZvS-bfWtcbaCcWCdrWxILxj5peQOv7kZjJlnM9_Y,5621
667
- maxframe/tensor/reduction/prod.py,sha256=3xn15jRKlnO71R7-HibRmdpY5fKSqnJi4leFyvrOqQk,4536
668
- maxframe/tensor/reduction/std.py,sha256=QA9gkB0qM3gQZ--41aXz1RKZgdwW8b73fdArp9UfGHU,5269
669
- maxframe/tensor/reduction/sum.py,sha256=dk4iXiDjaIgvxiivEqeUH2P4NiZnlUMbQTUObGPHj08,4371
670
- maxframe/tensor/reduction/var.py,sha256=IeOiW6GJvnDQArfisCI7GX10tX2YpEM0VMDSEnlubUU,6482
671
- maxframe/tensor/reduction/tests/__init__.py,sha256=4LpNXO11JAdLjSut3p036oEEXlDEB-6AURW9oci5W5Y,609
672
- maxframe/tensor/reduction/tests/test_reduction.py,sha256=e9h7aZ5cLpLGWuM5ojPEZvwx64XUbDaTv7ei-aYuMpc,6370
673
- maxframe/tensor/reshape/__init__.py,sha256=A0aWn4ggH9P6kSrqiXakoM5-fvns5lFM59ZFpaZH5QU,689
674
- maxframe/tensor/reshape/reshape.py,sha256=rmSsI7I_yKdJBL4wm6NQKA0s6sLyONiFiq3R2ArPaSg,6684
675
- maxframe/tensor/reshape/tests/__init__.py,sha256=ZxIRETECrnrJcfRmGQTTNwrCxwqTVLNaM9nCzBNPo1k,657
676
- maxframe/tensor/reshape/tests/test_reshape.py,sha256=QnIMRaiu3TO4UhmcmTvSu2RkH3Jr2Otza__pzJxGYVY,1140
677
- maxframe/tensor/statistics/__init__.py,sha256=4LpNXO11JAdLjSut3p036oEEXlDEB-6AURW9oci5W5Y,609
678
- maxframe/tensor/statistics/percentile.py,sha256=RcEbf_uUIxkOnCADRNq9LFgicvyCJtOX1zjm-xRhv_M,6222
679
- maxframe/tensor/statistics/quantile.py,sha256=SBjIez0HgbmSklLYTOmUUTymkSUNfjtW3CjbeNVzNL4,9755
680
- maxframe/tensor/ufunc/__init__.py,sha256=LexrsPQTc61bgW9YC_rwpCclLl8lk9msj_2BtA0lDtQ,821
681
- maxframe/tensor/ufunc/ufunc.py,sha256=aK1n9TVpz2LsnMnRN3AXLRsZz3JIfCNomp89aifwq8I,7383
682
- maxframe/tests/__init__.py,sha256=4LpNXO11JAdLjSut3p036oEEXlDEB-6AURW9oci5W5Y,609
683
- maxframe/tests/test_codegen.py,sha256=UrDtt1Lwm_XWPkJ7kutVGJK2tjd4X77vcowwEuk_i_I,2277
684
- maxframe/tests/test_protocol.py,sha256=waB2hM6RPn2fkYo9cgOB9HySSEQ8BBsxSWCXkQmZKPQ,6281
685
- maxframe/tests/test_utils.py,sha256=EEplAFCnJE85RGq48_O2MlPA47uIq4PfCDXgI7AJDeI,11868
686
- maxframe/tests/utils.py,sha256=88HO6KtSss19SuNpPwfgRNGVNca_mBon9VPrHNLZmdo,5532
687
- maxframe_client/__init__.py,sha256=lMXPcrevOU4QUF8NIK1K-piVGPllfmuQ11TQivyuuYo,705
688
- maxframe_client/conftest.py,sha256=gw1eaUzIa4sSlYmeV8yGqCz-R-8sLt46iQ5yzxkbJ2Q,658
689
- maxframe_client/fetcher.py,sha256=zhRo6mNYr_dr-PE3ANBR_C81Mh7WZgabzgswqLoSR1c,9445
690
- maxframe_client/clients/__init__.py,sha256=4LpNXO11JAdLjSut3p036oEEXlDEB-6AURW9oci5W5Y,609
691
- maxframe_client/clients/framedriver.py,sha256=mwHJmplywWOyTvyRkbr562PtlE_a3ojISaXFWTPPhJU,4678
692
- maxframe_client/session/__init__.py,sha256=d6y_gZ3JEWmVi55pwnHjVcU4JmdynVxZcu9QY7B0dAE,854
693
- maxframe_client/session/consts.py,sha256=GvAxFLM_LUUgCpKkykCsWmKt00mbb6mAELfVTXob4w0,1430
694
- maxframe_client/session/graph.py,sha256=4Nuyt5Ui9t4AWVG9VGq_TFgDQCnyZ2gOVGGuwUaEn1Q,4501
695
- maxframe_client/session/odps.py,sha256=Ekech3hqMnGi5oN9a5rUXlnTm8e_S289XKZRJz7rz9Y,25770
696
- maxframe_client/session/task.py,sha256=VIksMHcLra7I7DFStFxLLwieG4-buOM56E6pdPXh4Js,12347
697
- maxframe_client/session/tests/__init__.py,sha256=4LpNXO11JAdLjSut3p036oEEXlDEB-6AURW9oci5W5Y,609
698
- maxframe_client/session/tests/test_task.py,sha256=qtKtseHpc13xQCe4SsDaM7UToVOTkPIAb0yMw12Js8M,4817
699
- maxframe_client/tests/__init__.py,sha256=4LpNXO11JAdLjSut3p036oEEXlDEB-6AURW9oci5W5Y,609
700
- maxframe_client/tests/test_fetcher.py,sha256=-KG_OshShJEa66Hg_RKuT745AxadH2LMWasHo5hhIow,4265
701
- maxframe_client/tests/test_session.py,sha256=7-oNldT5YAnzWxSixWJH3VuBMwzFO7C38fNODINMi-M,11542
702
- maxframe-1.3.1.dist-info/METADATA,sha256=gWjAaYq3LxlaHKYVnz_dezwosfZAEN-3XSQhcePcVM4,3203
703
- maxframe-1.3.1.dist-info/WHEEL,sha256=_ZWIY2n7n6SpiuIFl1-RvcMp4Ty36T57FKf-7NzqZHM,101
704
- maxframe-1.3.1.dist-info/top_level.txt,sha256=64x-fc2q59c_vXwNUkehyjF1vb8JWqFSdYmUqIFqoTM,31
705
- maxframe-1.3.1.dist-info/RECORD,,