maxframe 1.1.1__cp38-cp38-macosx_10_9_universal2.whl → 1.2.0__cp38-cp38-macosx_10_9_universal2.whl

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

Potentially problematic release.


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

Files changed (690) hide show
  1. maxframe/__init__.py +1 -1
  2. maxframe/_utils.cpython-38-darwin.so +0 -0
  3. maxframe/_utils.pxd +1 -1
  4. maxframe/_utils.pyx +1 -1
  5. maxframe/codegen.py +14 -7
  6. maxframe/config/__init__.py +1 -1
  7. maxframe/config/config.py +10 -1
  8. maxframe/config/tests/__init__.py +1 -1
  9. maxframe/config/tests/test_config.py +1 -1
  10. maxframe/config/tests/test_validators.py +1 -1
  11. maxframe/config/validators.py +1 -1
  12. maxframe/conftest.py +1 -1
  13. maxframe/core/__init__.py +2 -1
  14. maxframe/core/accessor.py +44 -0
  15. maxframe/core/base.py +1 -1
  16. maxframe/core/entity/__init__.py +1 -1
  17. maxframe/core/entity/core.py +1 -1
  18. maxframe/core/entity/executable.py +1 -1
  19. maxframe/core/entity/objects.py +1 -1
  20. maxframe/core/entity/output_types.py +1 -1
  21. maxframe/core/entity/tests/__init__.py +1 -1
  22. maxframe/core/entity/tests/test_objects.py +1 -1
  23. maxframe/core/entity/tileables.py +1 -1
  24. maxframe/core/entity/utils.py +1 -1
  25. maxframe/core/graph/__init__.py +1 -1
  26. maxframe/core/graph/builder/__init__.py +1 -1
  27. maxframe/core/graph/builder/base.py +1 -1
  28. maxframe/core/graph/builder/tileable.py +1 -1
  29. maxframe/core/graph/builder/utils.py +1 -1
  30. maxframe/core/graph/core.cpython-38-darwin.so +0 -0
  31. maxframe/core/graph/core.pyx +1 -1
  32. maxframe/core/graph/entity.py +1 -1
  33. maxframe/core/graph/tests/__init__.py +1 -1
  34. maxframe/core/graph/tests/test_graph.py +1 -1
  35. maxframe/core/mode.py +1 -1
  36. maxframe/core/operator/__init__.py +1 -1
  37. maxframe/core/operator/base.py +1 -1
  38. maxframe/core/operator/core.py +1 -1
  39. maxframe/core/operator/fetch.py +1 -1
  40. maxframe/core/operator/objects.py +1 -1
  41. maxframe/core/operator/shuffle.py +1 -1
  42. maxframe/core/operator/tests/__init__.py +1 -1
  43. maxframe/core/operator/tests/test_core.py +1 -1
  44. maxframe/core/operator/utils.py +1 -1
  45. maxframe/core/tests/__init__.py +1 -1
  46. maxframe/core/tests/test_mode.py +1 -1
  47. maxframe/dataframe/__init__.py +3 -3
  48. maxframe/dataframe/accessors/__init__.py +15 -0
  49. maxframe/dataframe/accessors/datetime_/__init__.py +32 -0
  50. maxframe/dataframe/accessors/datetime_/accessor.py +67 -0
  51. maxframe/dataframe/{misc/datetimes.py → accessors/datetime_/core.py} +9 -9
  52. maxframe/dataframe/{plotting → accessors/datetime_}/tests/__init__.py +1 -1
  53. maxframe/dataframe/accessors/datetime_/tests/test_datetime_accessor.py +41 -0
  54. maxframe/dataframe/accessors/dict_/__init__.py +43 -0
  55. maxframe/dataframe/accessors/dict_/accessor.py +38 -0
  56. maxframe/dataframe/accessors/dict_/contains.py +81 -0
  57. maxframe/dataframe/accessors/dict_/getitem.py +144 -0
  58. maxframe/dataframe/accessors/dict_/length.py +72 -0
  59. maxframe/dataframe/accessors/dict_/remove.py +87 -0
  60. maxframe/dataframe/accessors/dict_/setitem.py +88 -0
  61. maxframe/dataframe/accessors/dict_/tests/__init__.py +13 -0
  62. maxframe/dataframe/accessors/dict_/tests/test_dict_accessor.py +130 -0
  63. maxframe/dataframe/{plotting → accessors/plotting}/__init__.py +4 -6
  64. maxframe/dataframe/{plotting → accessors/plotting}/core.py +3 -3
  65. maxframe/dataframe/accessors/plotting/tests/__init__.py +13 -0
  66. maxframe/dataframe/{plotting/tests/test_plotting.py → accessors/plotting/tests/test_plotting_accessor.py} +6 -6
  67. maxframe/dataframe/accessors/string_/__init__.py +32 -0
  68. maxframe/dataframe/{misc → accessors/string_}/accessor.py +4 -65
  69. maxframe/dataframe/{misc/string_.py → accessors/string_/core.py} +20 -20
  70. maxframe/dataframe/accessors/string_/tests/__init__.py +13 -0
  71. maxframe/dataframe/accessors/string_/tests/test_string_accessor.py +73 -0
  72. maxframe/dataframe/arithmetic/__init__.py +1 -1
  73. maxframe/dataframe/arithmetic/abs.py +1 -1
  74. maxframe/dataframe/arithmetic/add.py +1 -1
  75. maxframe/dataframe/arithmetic/arccos.py +1 -1
  76. maxframe/dataframe/arithmetic/arccosh.py +1 -1
  77. maxframe/dataframe/arithmetic/arcsin.py +1 -1
  78. maxframe/dataframe/arithmetic/arcsinh.py +1 -1
  79. maxframe/dataframe/arithmetic/arctan.py +1 -1
  80. maxframe/dataframe/arithmetic/arctanh.py +1 -1
  81. maxframe/dataframe/arithmetic/around.py +1 -1
  82. maxframe/dataframe/arithmetic/bitwise_and.py +1 -1
  83. maxframe/dataframe/arithmetic/bitwise_or.py +1 -1
  84. maxframe/dataframe/arithmetic/bitwise_xor.py +1 -1
  85. maxframe/dataframe/arithmetic/ceil.py +1 -1
  86. maxframe/dataframe/arithmetic/core.py +1 -1
  87. maxframe/dataframe/arithmetic/cos.py +1 -1
  88. maxframe/dataframe/arithmetic/cosh.py +1 -1
  89. maxframe/dataframe/arithmetic/degrees.py +1 -1
  90. maxframe/dataframe/arithmetic/docstring.py +1 -1
  91. maxframe/dataframe/arithmetic/equal.py +1 -1
  92. maxframe/dataframe/arithmetic/exp.py +1 -1
  93. maxframe/dataframe/arithmetic/exp2.py +1 -1
  94. maxframe/dataframe/arithmetic/expm1.py +1 -1
  95. maxframe/dataframe/arithmetic/floor.py +1 -1
  96. maxframe/dataframe/arithmetic/floordiv.py +1 -1
  97. maxframe/dataframe/arithmetic/greater.py +1 -1
  98. maxframe/dataframe/arithmetic/greater_equal.py +1 -1
  99. maxframe/dataframe/arithmetic/invert.py +1 -1
  100. maxframe/dataframe/arithmetic/is_ufuncs.py +1 -1
  101. maxframe/dataframe/arithmetic/less.py +1 -1
  102. maxframe/dataframe/arithmetic/less_equal.py +1 -1
  103. maxframe/dataframe/arithmetic/log.py +1 -1
  104. maxframe/dataframe/arithmetic/log10.py +1 -1
  105. maxframe/dataframe/arithmetic/log2.py +1 -1
  106. maxframe/dataframe/arithmetic/mod.py +1 -1
  107. maxframe/dataframe/arithmetic/multiply.py +1 -1
  108. maxframe/dataframe/arithmetic/negative.py +1 -1
  109. maxframe/dataframe/arithmetic/not_equal.py +1 -1
  110. maxframe/dataframe/arithmetic/power.py +1 -1
  111. maxframe/dataframe/arithmetic/radians.py +1 -1
  112. maxframe/dataframe/arithmetic/sin.py +1 -1
  113. maxframe/dataframe/arithmetic/sinh.py +1 -1
  114. maxframe/dataframe/arithmetic/sqrt.py +1 -1
  115. maxframe/dataframe/arithmetic/subtract.py +1 -1
  116. maxframe/dataframe/arithmetic/tan.py +1 -1
  117. maxframe/dataframe/arithmetic/tanh.py +1 -1
  118. maxframe/dataframe/arithmetic/tests/__init__.py +1 -1
  119. maxframe/dataframe/arithmetic/tests/test_arithmetic.py +1 -1
  120. maxframe/dataframe/arithmetic/truediv.py +1 -1
  121. maxframe/dataframe/arithmetic/trunc.py +1 -1
  122. maxframe/dataframe/arrays.py +1 -1
  123. maxframe/dataframe/core.py +1 -1
  124. maxframe/dataframe/datasource/__init__.py +1 -1
  125. maxframe/dataframe/datasource/core.py +1 -1
  126. maxframe/dataframe/datasource/dataframe.py +1 -1
  127. maxframe/dataframe/datasource/date_range.py +1 -1
  128. maxframe/dataframe/datasource/from_index.py +1 -1
  129. maxframe/dataframe/datasource/from_records.py +1 -1
  130. maxframe/dataframe/datasource/from_tensor.py +1 -1
  131. maxframe/dataframe/datasource/index.py +1 -1
  132. maxframe/dataframe/datasource/read_csv.py +1 -1
  133. maxframe/dataframe/datasource/read_odps_query.py +45 -16
  134. maxframe/dataframe/datasource/read_odps_table.py +1 -1
  135. maxframe/dataframe/datasource/read_parquet.py +1 -1
  136. maxframe/dataframe/datasource/series.py +1 -1
  137. maxframe/dataframe/datasource/tests/__init__.py +1 -1
  138. maxframe/dataframe/datasource/tests/test_datasource.py +55 -8
  139. maxframe/dataframe/datastore/__init__.py +1 -1
  140. maxframe/dataframe/datastore/core.py +1 -1
  141. maxframe/dataframe/datastore/tests/__init__.py +1 -1
  142. maxframe/dataframe/datastore/tests/test_to_odps.py +1 -1
  143. maxframe/dataframe/datastore/to_csv.py +1 -1
  144. maxframe/dataframe/datastore/to_odps.py +1 -1
  145. maxframe/dataframe/extensions/__init__.py +2 -2
  146. maxframe/dataframe/extensions/accessor.py +6 -22
  147. maxframe/dataframe/extensions/apply_chunk.py +86 -1
  148. maxframe/dataframe/extensions/flatjson.py +1 -1
  149. maxframe/dataframe/extensions/flatmap.py +1 -1
  150. maxframe/dataframe/extensions/reshuffle.py +1 -1
  151. maxframe/dataframe/extensions/tests/__init__.py +1 -1
  152. maxframe/dataframe/extensions/tests/test_apply_chunk.py +1 -1
  153. maxframe/dataframe/extensions/tests/test_extensions.py +1 -1
  154. maxframe/dataframe/fetch/__init__.py +1 -1
  155. maxframe/dataframe/fetch/core.py +1 -1
  156. maxframe/dataframe/groupby/__init__.py +1 -1
  157. maxframe/dataframe/groupby/aggregation.py +1 -1
  158. maxframe/dataframe/groupby/apply.py +1 -1
  159. maxframe/dataframe/groupby/core.py +1 -1
  160. maxframe/dataframe/groupby/cum.py +1 -1
  161. maxframe/dataframe/groupby/fill.py +1 -1
  162. maxframe/dataframe/groupby/getitem.py +1 -1
  163. maxframe/dataframe/groupby/head.py +1 -1
  164. maxframe/dataframe/groupby/sample.py +1 -1
  165. maxframe/dataframe/groupby/tests/__init__.py +1 -1
  166. maxframe/dataframe/groupby/tests/test_groupby.py +1 -1
  167. maxframe/dataframe/groupby/transform.py +1 -1
  168. maxframe/dataframe/indexing/__init__.py +1 -1
  169. maxframe/dataframe/indexing/add_prefix_suffix.py +1 -1
  170. maxframe/dataframe/indexing/align.py +1 -1
  171. maxframe/dataframe/indexing/at.py +1 -1
  172. maxframe/dataframe/indexing/getitem.py +1 -1
  173. maxframe/dataframe/indexing/iat.py +1 -1
  174. maxframe/dataframe/indexing/iloc.py +1 -1
  175. maxframe/dataframe/indexing/insert.py +1 -1
  176. maxframe/dataframe/indexing/loc.py +1 -1
  177. maxframe/dataframe/indexing/reindex.py +1 -1
  178. maxframe/dataframe/indexing/rename.py +1 -1
  179. maxframe/dataframe/indexing/rename_axis.py +1 -1
  180. maxframe/dataframe/indexing/reset_index.py +1 -1
  181. maxframe/dataframe/indexing/sample.py +1 -1
  182. maxframe/dataframe/indexing/set_axis.py +1 -1
  183. maxframe/dataframe/indexing/set_index.py +1 -1
  184. maxframe/dataframe/indexing/setitem.py +1 -1
  185. maxframe/dataframe/indexing/tests/__init__.py +1 -1
  186. maxframe/dataframe/indexing/tests/test_indexing.py +1 -1
  187. maxframe/dataframe/indexing/where.py +1 -1
  188. maxframe/dataframe/initializer.py +1 -1
  189. maxframe/dataframe/merge/__init__.py +1 -1
  190. maxframe/dataframe/merge/append.py +1 -1
  191. maxframe/dataframe/merge/concat.py +1 -1
  192. maxframe/dataframe/merge/merge.py +1 -1
  193. maxframe/dataframe/merge/tests/__init__.py +1 -1
  194. maxframe/dataframe/merge/tests/test_merge.py +1 -1
  195. maxframe/dataframe/misc/__init__.py +1 -16
  196. maxframe/dataframe/misc/_duplicate.py +1 -1
  197. maxframe/dataframe/misc/apply.py +74 -1
  198. maxframe/dataframe/misc/astype.py +1 -1
  199. maxframe/dataframe/misc/case_when.py +1 -1
  200. maxframe/dataframe/misc/check_monotonic.py +1 -1
  201. maxframe/dataframe/misc/cut.py +6 -4
  202. maxframe/dataframe/misc/describe.py +1 -1
  203. maxframe/dataframe/misc/diff.py +1 -1
  204. maxframe/dataframe/misc/drop.py +1 -1
  205. maxframe/dataframe/misc/drop_duplicates.py +7 -4
  206. maxframe/dataframe/misc/duplicated.py +1 -1
  207. maxframe/dataframe/misc/eval.py +1 -1
  208. maxframe/dataframe/misc/explode.py +1 -1
  209. maxframe/dataframe/misc/get_dummies.py +1 -1
  210. maxframe/dataframe/misc/isin.py +1 -1
  211. maxframe/dataframe/misc/map.py +1 -1
  212. maxframe/dataframe/misc/melt.py +1 -1
  213. maxframe/dataframe/misc/memory_usage.py +1 -1
  214. maxframe/dataframe/misc/pct_change.py +1 -1
  215. maxframe/dataframe/misc/pivot_table.py +1 -1
  216. maxframe/dataframe/misc/qcut.py +1 -1
  217. maxframe/dataframe/misc/select_dtypes.py +1 -1
  218. maxframe/dataframe/misc/shift.py +1 -1
  219. maxframe/dataframe/misc/stack.py +1 -1
  220. maxframe/dataframe/misc/tests/__init__.py +1 -1
  221. maxframe/dataframe/misc/tests/test_misc.py +1 -76
  222. maxframe/dataframe/misc/to_numeric.py +1 -1
  223. maxframe/dataframe/misc/transform.py +1 -1
  224. maxframe/dataframe/misc/transpose.py +1 -1
  225. maxframe/dataframe/misc/value_counts.py +1 -1
  226. maxframe/dataframe/missing/__init__.py +1 -1
  227. maxframe/dataframe/missing/checkna.py +1 -1
  228. maxframe/dataframe/missing/dropna.py +1 -1
  229. maxframe/dataframe/missing/fillna.py +1 -1
  230. maxframe/dataframe/missing/replace.py +1 -1
  231. maxframe/dataframe/missing/tests/__init__.py +1 -1
  232. maxframe/dataframe/missing/tests/test_missing.py +1 -1
  233. maxframe/dataframe/operators.py +1 -1
  234. maxframe/dataframe/reduction/__init__.py +1 -1
  235. maxframe/dataframe/reduction/aggregation.py +1 -1
  236. maxframe/dataframe/reduction/all.py +1 -1
  237. maxframe/dataframe/reduction/any.py +1 -1
  238. maxframe/dataframe/reduction/core.py +1 -1
  239. maxframe/dataframe/reduction/count.py +1 -1
  240. maxframe/dataframe/reduction/cummax.py +1 -1
  241. maxframe/dataframe/reduction/cummin.py +1 -1
  242. maxframe/dataframe/reduction/cumprod.py +1 -1
  243. maxframe/dataframe/reduction/cumsum.py +1 -1
  244. maxframe/dataframe/reduction/custom_reduction.py +1 -1
  245. maxframe/dataframe/reduction/kurtosis.py +1 -1
  246. maxframe/dataframe/reduction/max.py +1 -1
  247. maxframe/dataframe/reduction/mean.py +1 -1
  248. maxframe/dataframe/reduction/median.py +1 -1
  249. maxframe/dataframe/reduction/min.py +1 -1
  250. maxframe/dataframe/reduction/nunique.py +1 -1
  251. maxframe/dataframe/reduction/prod.py +1 -1
  252. maxframe/dataframe/reduction/reduction_size.py +1 -1
  253. maxframe/dataframe/reduction/sem.py +1 -1
  254. maxframe/dataframe/reduction/skew.py +1 -1
  255. maxframe/dataframe/reduction/std.py +1 -1
  256. maxframe/dataframe/reduction/str_concat.py +1 -1
  257. maxframe/dataframe/reduction/sum.py +1 -1
  258. maxframe/dataframe/reduction/tests/__init__.py +1 -1
  259. maxframe/dataframe/reduction/tests/test_reduction.py +1 -1
  260. maxframe/dataframe/reduction/unique.py +1 -1
  261. maxframe/dataframe/reduction/var.py +1 -1
  262. maxframe/dataframe/sort/__init__.py +1 -1
  263. maxframe/dataframe/sort/core.py +1 -1
  264. maxframe/dataframe/sort/sort_index.py +1 -1
  265. maxframe/dataframe/sort/sort_values.py +1 -1
  266. maxframe/dataframe/sort/tests/__init__.py +1 -1
  267. maxframe/dataframe/sort/tests/test_sort.py +1 -1
  268. maxframe/dataframe/statistics/__init__.py +1 -1
  269. maxframe/dataframe/statistics/corr.py +1 -1
  270. maxframe/dataframe/statistics/quantile.py +1 -1
  271. maxframe/dataframe/statistics/tests/__init__.py +1 -1
  272. maxframe/dataframe/statistics/tests/test_statistics.py +1 -1
  273. maxframe/dataframe/tests/__init__.py +1 -1
  274. maxframe/dataframe/tests/test_initializer.py +1 -1
  275. maxframe/dataframe/tests/test_utils.py +36 -2
  276. maxframe/dataframe/tseries/__init__.py +1 -1
  277. maxframe/dataframe/tseries/tests/__init__.py +1 -1
  278. maxframe/dataframe/tseries/tests/test_tseries.py +1 -1
  279. maxframe/dataframe/tseries/to_datetime.py +1 -1
  280. maxframe/dataframe/ufunc/__init__.py +1 -1
  281. maxframe/dataframe/ufunc/tensor.py +1 -1
  282. maxframe/dataframe/ufunc/ufunc.py +1 -1
  283. maxframe/dataframe/utils.py +22 -2
  284. maxframe/dataframe/window/__init__.py +1 -1
  285. maxframe/dataframe/window/aggregation.py +1 -1
  286. maxframe/dataframe/window/core.py +1 -1
  287. maxframe/dataframe/window/ewm.py +1 -1
  288. maxframe/dataframe/window/expanding.py +1 -1
  289. maxframe/dataframe/window/rolling.py +1 -1
  290. maxframe/dataframe/window/tests/__init__.py +1 -1
  291. maxframe/dataframe/window/tests/test_ewm.py +1 -1
  292. maxframe/dataframe/window/tests/test_expanding.py +1 -1
  293. maxframe/dataframe/window/tests/test_rolling.py +1 -1
  294. maxframe/env.py +1 -1
  295. maxframe/errors.py +5 -1
  296. maxframe/extension.py +5 -2
  297. maxframe/io/__init__.py +1 -1
  298. maxframe/io/objects/__init__.py +1 -1
  299. maxframe/io/objects/core.py +1 -1
  300. maxframe/io/objects/tensor.py +1 -1
  301. maxframe/io/objects/tests/__init__.py +1 -1
  302. maxframe/io/objects/tests/test_object_io.py +1 -1
  303. maxframe/io/odpsio/__init__.py +1 -1
  304. maxframe/io/odpsio/arrow.py +8 -4
  305. maxframe/io/odpsio/schema.py +75 -3
  306. maxframe/io/odpsio/tableio.py +10 -4
  307. maxframe/io/odpsio/tests/__init__.py +1 -1
  308. maxframe/io/odpsio/tests/test_arrow.py +46 -1
  309. maxframe/io/odpsio/tests/test_schema.py +19 -1
  310. maxframe/io/odpsio/tests/test_tableio.py +1 -1
  311. maxframe/io/odpsio/tests/test_volumeio.py +1 -1
  312. maxframe/io/odpsio/volumeio.py +1 -1
  313. maxframe/learn/__init__.py +1 -1
  314. maxframe/learn/contrib/__init__.py +1 -1
  315. maxframe/learn/contrib/graph/__init__.py +1 -1
  316. maxframe/learn/contrib/graph/connected_components.py +1 -1
  317. maxframe/learn/contrib/graph/tests/__init__.py +1 -1
  318. maxframe/learn/contrib/graph/tests/test_connected_components.py +1 -1
  319. maxframe/learn/contrib/llm/__init__.py +1 -1
  320. maxframe/learn/contrib/llm/core.py +1 -1
  321. maxframe/learn/contrib/llm/models/__init__.py +1 -1
  322. maxframe/learn/contrib/llm/models/dashscope.py +1 -1
  323. maxframe/learn/contrib/llm/multi_modal.py +1 -1
  324. maxframe/learn/contrib/llm/text.py +1 -1
  325. maxframe/learn/contrib/pytorch/__init__.py +1 -1
  326. maxframe/learn/contrib/pytorch/run_function.py +1 -1
  327. maxframe/learn/contrib/pytorch/run_script.py +1 -1
  328. maxframe/learn/contrib/pytorch/tests/__init__.py +1 -1
  329. maxframe/learn/contrib/pytorch/tests/test_pytorch.py +1 -1
  330. maxframe/learn/contrib/utils.py +1 -1
  331. maxframe/learn/contrib/xgboost/__init__.py +1 -1
  332. maxframe/learn/contrib/xgboost/classifier.py +1 -1
  333. maxframe/learn/contrib/xgboost/core.py +1 -1
  334. maxframe/learn/contrib/xgboost/dmatrix.py +5 -2
  335. maxframe/learn/contrib/xgboost/predict.py +1 -1
  336. maxframe/learn/contrib/xgboost/regressor.py +1 -1
  337. maxframe/learn/contrib/xgboost/tests/__init__.py +1 -1
  338. maxframe/learn/contrib/xgboost/tests/test_core.py +1 -1
  339. maxframe/learn/contrib/xgboost/train.py +1 -1
  340. maxframe/learn/core.py +1 -1
  341. maxframe/learn/utils/__init__.py +1 -1
  342. maxframe/learn/utils/core.py +1 -1
  343. maxframe/lib/__init__.py +1 -1
  344. maxframe/lib/aio/__init__.py +1 -1
  345. maxframe/lib/aio/_runners.py +1 -1
  346. maxframe/lib/aio/_threads.py +1 -1
  347. maxframe/lib/aio/base.py +1 -1
  348. maxframe/lib/aio/file.py +1 -1
  349. maxframe/lib/aio/isolation.py +1 -1
  350. maxframe/lib/aio/lru.py +1 -1
  351. maxframe/lib/aio/parallelism.py +1 -1
  352. maxframe/lib/aio/tests/__init__.py +1 -1
  353. maxframe/lib/aio/tests/test_aio_file.py +1 -1
  354. maxframe/lib/compression.py +1 -1
  355. maxframe/lib/cython/__init__.py +1 -1
  356. maxframe/lib/cython/libcpp.pxd +1 -1
  357. maxframe/lib/dtypes_extension/__init__.py +14 -0
  358. maxframe/lib/dtypes_extension/dtypes.py +91 -0
  359. maxframe/lib/dtypes_extension/tests/__init__.py +13 -0
  360. maxframe/lib/dtypes_extension/tests/test_dtypes.py +68 -0
  361. maxframe/lib/filesystem/__init__.py +1 -1
  362. maxframe/lib/filesystem/_glob.py +1 -1
  363. maxframe/lib/filesystem/_oss_lib/__init__.py +1 -1
  364. maxframe/lib/filesystem/_oss_lib/common.py +1 -1
  365. maxframe/lib/filesystem/_oss_lib/glob.py +1 -1
  366. maxframe/lib/filesystem/_oss_lib/handle.py +1 -1
  367. maxframe/lib/filesystem/arrow.py +1 -1
  368. maxframe/lib/filesystem/base.py +1 -1
  369. maxframe/lib/filesystem/core.py +1 -1
  370. maxframe/lib/filesystem/fsmap.py +1 -1
  371. maxframe/lib/filesystem/hdfs.py +1 -1
  372. maxframe/lib/filesystem/local.py +1 -1
  373. maxframe/lib/filesystem/oss.py +1 -1
  374. maxframe/lib/filesystem/tests/__init__.py +1 -1
  375. maxframe/lib/filesystem/tests/test_filesystem.py +6 -4
  376. maxframe/lib/filesystem/tests/test_oss.py +1 -1
  377. maxframe/lib/functools_compat.py +1 -1
  378. maxframe/lib/mmh3.cpython-38-darwin.so +0 -0
  379. maxframe/lib/mmh3.pyi +1 -1
  380. maxframe/lib/sparse/__init__.py +1 -1
  381. maxframe/lib/sparse/array.py +1 -1
  382. maxframe/lib/sparse/core.py +1 -1
  383. maxframe/lib/sparse/matrix.py +1 -1
  384. maxframe/lib/sparse/tests/__init__.py +1 -1
  385. maxframe/lib/sparse/tests/test_sparse.py +1 -1
  386. maxframe/lib/sparse/vector.py +1 -1
  387. maxframe/lib/tests/__init__.py +1 -1
  388. maxframe/lib/tests/test_wrapped_pickle.py +1 -1
  389. maxframe/lib/version.py +1 -1
  390. maxframe/lib/wrapped_pickle.py +1 -1
  391. maxframe/mixin.py +1 -1
  392. maxframe/opcodes.py +6 -1
  393. maxframe/protocol.py +1 -1
  394. maxframe/remote/__init__.py +1 -1
  395. maxframe/remote/core.py +1 -1
  396. maxframe/remote/run_script.py +1 -1
  397. maxframe/serialization/__init__.py +1 -1
  398. maxframe/serialization/arrow.py +1 -1
  399. maxframe/serialization/core.cpython-38-darwin.so +0 -0
  400. maxframe/serialization/core.pxd +1 -1
  401. maxframe/serialization/core.pyi +1 -1
  402. maxframe/serialization/core.pyx +9 -6
  403. maxframe/serialization/exception.py +1 -1
  404. maxframe/serialization/maxframe_objects.py +1 -1
  405. maxframe/serialization/numpy.py +1 -1
  406. maxframe/serialization/pandas.py +1 -1
  407. maxframe/serialization/scipy.py +1 -1
  408. maxframe/serialization/serializables/__init__.py +1 -1
  409. maxframe/serialization/serializables/core.py +95 -90
  410. maxframe/serialization/serializables/field.py +1 -1
  411. maxframe/serialization/serializables/field_type.py +1 -1
  412. maxframe/serialization/serializables/tests/__init__.py +1 -1
  413. maxframe/serialization/serializables/tests/test_field_type.py +1 -1
  414. maxframe/serialization/serializables/tests/test_serializable.py +1 -1
  415. maxframe/serialization/tests/__init__.py +1 -1
  416. maxframe/serialization/tests/test_serial.py +21 -3
  417. maxframe/session.py +1 -1
  418. maxframe/tensor/__init__.py +1 -1
  419. maxframe/tensor/arithmetic/__init__.py +1 -1
  420. maxframe/tensor/arithmetic/abs.py +1 -1
  421. maxframe/tensor/arithmetic/absolute.py +1 -1
  422. maxframe/tensor/arithmetic/add.py +1 -1
  423. maxframe/tensor/arithmetic/angle.py +1 -1
  424. maxframe/tensor/arithmetic/arccos.py +1 -1
  425. maxframe/tensor/arithmetic/arccosh.py +1 -1
  426. maxframe/tensor/arithmetic/arcsin.py +1 -1
  427. maxframe/tensor/arithmetic/arcsinh.py +1 -1
  428. maxframe/tensor/arithmetic/arctan.py +1 -1
  429. maxframe/tensor/arithmetic/arctan2.py +1 -1
  430. maxframe/tensor/arithmetic/arctanh.py +1 -1
  431. maxframe/tensor/arithmetic/around.py +1 -1
  432. maxframe/tensor/arithmetic/bitand.py +1 -1
  433. maxframe/tensor/arithmetic/bitor.py +1 -1
  434. maxframe/tensor/arithmetic/bitxor.py +1 -1
  435. maxframe/tensor/arithmetic/cbrt.py +1 -1
  436. maxframe/tensor/arithmetic/ceil.py +1 -1
  437. maxframe/tensor/arithmetic/clip.py +1 -1
  438. maxframe/tensor/arithmetic/conj.py +1 -1
  439. maxframe/tensor/arithmetic/copysign.py +1 -1
  440. maxframe/tensor/arithmetic/core.py +1 -1
  441. maxframe/tensor/arithmetic/cos.py +1 -1
  442. maxframe/tensor/arithmetic/cosh.py +1 -1
  443. maxframe/tensor/arithmetic/deg2rad.py +1 -1
  444. maxframe/tensor/arithmetic/degrees.py +1 -1
  445. maxframe/tensor/arithmetic/divide.py +1 -1
  446. maxframe/tensor/arithmetic/equal.py +1 -1
  447. maxframe/tensor/arithmetic/exp.py +1 -1
  448. maxframe/tensor/arithmetic/exp2.py +1 -1
  449. maxframe/tensor/arithmetic/expm1.py +1 -1
  450. maxframe/tensor/arithmetic/fabs.py +1 -1
  451. maxframe/tensor/arithmetic/fix.py +1 -1
  452. maxframe/tensor/arithmetic/float_power.py +1 -1
  453. maxframe/tensor/arithmetic/floor.py +1 -1
  454. maxframe/tensor/arithmetic/floordiv.py +1 -1
  455. maxframe/tensor/arithmetic/fmax.py +1 -1
  456. maxframe/tensor/arithmetic/fmin.py +1 -1
  457. maxframe/tensor/arithmetic/fmod.py +1 -1
  458. maxframe/tensor/arithmetic/frexp.py +1 -1
  459. maxframe/tensor/arithmetic/greater.py +1 -1
  460. maxframe/tensor/arithmetic/greater_equal.py +1 -1
  461. maxframe/tensor/arithmetic/hypot.py +1 -1
  462. maxframe/tensor/arithmetic/i0.py +1 -1
  463. maxframe/tensor/arithmetic/imag.py +1 -1
  464. maxframe/tensor/arithmetic/invert.py +1 -1
  465. maxframe/tensor/arithmetic/isclose.py +1 -1
  466. maxframe/tensor/arithmetic/iscomplex.py +1 -1
  467. maxframe/tensor/arithmetic/isfinite.py +1 -1
  468. maxframe/tensor/arithmetic/isinf.py +1 -1
  469. maxframe/tensor/arithmetic/isnan.py +1 -1
  470. maxframe/tensor/arithmetic/isreal.py +1 -1
  471. maxframe/tensor/arithmetic/ldexp.py +1 -1
  472. maxframe/tensor/arithmetic/less.py +1 -1
  473. maxframe/tensor/arithmetic/less_equal.py +1 -1
  474. maxframe/tensor/arithmetic/log.py +1 -1
  475. maxframe/tensor/arithmetic/log10.py +1 -1
  476. maxframe/tensor/arithmetic/log1p.py +1 -1
  477. maxframe/tensor/arithmetic/log2.py +1 -1
  478. maxframe/tensor/arithmetic/logaddexp.py +1 -1
  479. maxframe/tensor/arithmetic/logaddexp2.py +1 -1
  480. maxframe/tensor/arithmetic/logical_and.py +1 -1
  481. maxframe/tensor/arithmetic/logical_not.py +1 -1
  482. maxframe/tensor/arithmetic/logical_or.py +1 -1
  483. maxframe/tensor/arithmetic/logical_xor.py +1 -1
  484. maxframe/tensor/arithmetic/lshift.py +1 -1
  485. maxframe/tensor/arithmetic/maximum.py +1 -1
  486. maxframe/tensor/arithmetic/minimum.py +1 -1
  487. maxframe/tensor/arithmetic/mod.py +1 -1
  488. maxframe/tensor/arithmetic/modf.py +1 -1
  489. maxframe/tensor/arithmetic/multiply.py +1 -1
  490. maxframe/tensor/arithmetic/nan_to_num.py +1 -1
  491. maxframe/tensor/arithmetic/negative.py +1 -1
  492. maxframe/tensor/arithmetic/nextafter.py +1 -1
  493. maxframe/tensor/arithmetic/not_equal.py +1 -1
  494. maxframe/tensor/arithmetic/positive.py +1 -1
  495. maxframe/tensor/arithmetic/power.py +1 -1
  496. maxframe/tensor/arithmetic/rad2deg.py +1 -1
  497. maxframe/tensor/arithmetic/radians.py +1 -1
  498. maxframe/tensor/arithmetic/real.py +1 -1
  499. maxframe/tensor/arithmetic/reciprocal.py +1 -1
  500. maxframe/tensor/arithmetic/rint.py +1 -1
  501. maxframe/tensor/arithmetic/rshift.py +1 -1
  502. maxframe/tensor/arithmetic/setimag.py +1 -1
  503. maxframe/tensor/arithmetic/setreal.py +1 -1
  504. maxframe/tensor/arithmetic/sign.py +1 -1
  505. maxframe/tensor/arithmetic/signbit.py +1 -1
  506. maxframe/tensor/arithmetic/sin.py +1 -1
  507. maxframe/tensor/arithmetic/sinc.py +1 -1
  508. maxframe/tensor/arithmetic/sinh.py +1 -1
  509. maxframe/tensor/arithmetic/spacing.py +1 -1
  510. maxframe/tensor/arithmetic/sqrt.py +1 -1
  511. maxframe/tensor/arithmetic/square.py +1 -1
  512. maxframe/tensor/arithmetic/subtract.py +1 -1
  513. maxframe/tensor/arithmetic/tan.py +1 -1
  514. maxframe/tensor/arithmetic/tanh.py +1 -1
  515. maxframe/tensor/arithmetic/tests/__init__.py +1 -1
  516. maxframe/tensor/arithmetic/tests/test_arithmetic.py +1 -1
  517. maxframe/tensor/arithmetic/truediv.py +1 -1
  518. maxframe/tensor/arithmetic/trunc.py +1 -1
  519. maxframe/tensor/arithmetic/utils.py +1 -1
  520. maxframe/tensor/array_utils.py +1 -1
  521. maxframe/tensor/core.py +1 -1
  522. maxframe/tensor/datasource/__init__.py +1 -1
  523. maxframe/tensor/datasource/arange.py +1 -1
  524. maxframe/tensor/datasource/array.py +1 -1
  525. maxframe/tensor/datasource/core.py +1 -1
  526. maxframe/tensor/datasource/empty.py +1 -1
  527. maxframe/tensor/datasource/from_dataframe.py +1 -1
  528. maxframe/tensor/datasource/from_dense.py +1 -1
  529. maxframe/tensor/datasource/from_sparse.py +1 -1
  530. maxframe/tensor/datasource/full.py +1 -1
  531. maxframe/tensor/datasource/ones.py +1 -1
  532. maxframe/tensor/datasource/scalar.py +1 -1
  533. maxframe/tensor/datasource/tests/__init__.py +1 -1
  534. maxframe/tensor/datasource/tests/test_datasource.py +1 -1
  535. maxframe/tensor/datasource/zeros.py +1 -1
  536. maxframe/tensor/fetch/__init__.py +1 -1
  537. maxframe/tensor/fetch/core.py +1 -1
  538. maxframe/tensor/indexing/__init__.py +1 -1
  539. maxframe/tensor/indexing/choose.py +1 -1
  540. maxframe/tensor/indexing/compress.py +1 -1
  541. maxframe/tensor/indexing/core.py +1 -1
  542. maxframe/tensor/indexing/extract.py +1 -1
  543. maxframe/tensor/indexing/fill_diagonal.py +1 -1
  544. maxframe/tensor/indexing/flatnonzero.py +1 -1
  545. maxframe/tensor/indexing/getitem.py +1 -1
  546. maxframe/tensor/indexing/nonzero.py +1 -1
  547. maxframe/tensor/indexing/setitem.py +1 -1
  548. maxframe/tensor/indexing/slice.py +1 -1
  549. maxframe/tensor/indexing/take.py +1 -1
  550. maxframe/tensor/indexing/tests/__init__.py +1 -1
  551. maxframe/tensor/indexing/tests/test_indexing.py +1 -1
  552. maxframe/tensor/indexing/unravel_index.py +1 -1
  553. maxframe/tensor/merge/__init__.py +1 -1
  554. maxframe/tensor/merge/concatenate.py +1 -1
  555. maxframe/tensor/merge/stack.py +1 -1
  556. maxframe/tensor/merge/tests/__init__.py +1 -1
  557. maxframe/tensor/merge/tests/test_merge.py +1 -1
  558. maxframe/tensor/merge/vstack.py +1 -1
  559. maxframe/tensor/misc/__init__.py +1 -1
  560. maxframe/tensor/misc/astype.py +1 -1
  561. maxframe/tensor/misc/atleast_1d.py +1 -1
  562. maxframe/tensor/misc/atleast_2d.py +1 -1
  563. maxframe/tensor/misc/atleast_3d.py +1 -1
  564. maxframe/tensor/misc/broadcast_to.py +1 -1
  565. maxframe/tensor/misc/ravel.py +1 -1
  566. maxframe/tensor/misc/tests/__init__.py +1 -1
  567. maxframe/tensor/misc/tests/test_misc.py +1 -1
  568. maxframe/tensor/misc/transpose.py +1 -1
  569. maxframe/tensor/misc/unique.py +1 -1
  570. maxframe/tensor/misc/where.py +1 -1
  571. maxframe/tensor/operators.py +1 -1
  572. maxframe/tensor/random/__init__.py +1 -1
  573. maxframe/tensor/random/beta.py +1 -1
  574. maxframe/tensor/random/binomial.py +1 -1
  575. maxframe/tensor/random/bytes.py +1 -1
  576. maxframe/tensor/random/chisquare.py +1 -1
  577. maxframe/tensor/random/choice.py +1 -1
  578. maxframe/tensor/random/core.py +1 -1
  579. maxframe/tensor/random/dirichlet.py +1 -1
  580. maxframe/tensor/random/exponential.py +1 -1
  581. maxframe/tensor/random/f.py +1 -1
  582. maxframe/tensor/random/gamma.py +1 -1
  583. maxframe/tensor/random/geometric.py +1 -1
  584. maxframe/tensor/random/gumbel.py +1 -1
  585. maxframe/tensor/random/hypergeometric.py +1 -1
  586. maxframe/tensor/random/laplace.py +1 -1
  587. maxframe/tensor/random/logistic.py +1 -1
  588. maxframe/tensor/random/lognormal.py +1 -1
  589. maxframe/tensor/random/logseries.py +1 -1
  590. maxframe/tensor/random/multinomial.py +1 -1
  591. maxframe/tensor/random/multivariate_normal.py +1 -1
  592. maxframe/tensor/random/negative_binomial.py +1 -1
  593. maxframe/tensor/random/noncentral_chisquare.py +1 -1
  594. maxframe/tensor/random/noncentral_f.py +1 -1
  595. maxframe/tensor/random/normal.py +1 -1
  596. maxframe/tensor/random/pareto.py +1 -1
  597. maxframe/tensor/random/permutation.py +1 -1
  598. maxframe/tensor/random/poisson.py +1 -1
  599. maxframe/tensor/random/power.py +1 -1
  600. maxframe/tensor/random/rand.py +1 -1
  601. maxframe/tensor/random/randint.py +1 -1
  602. maxframe/tensor/random/randn.py +1 -1
  603. maxframe/tensor/random/random_integers.py +1 -1
  604. maxframe/tensor/random/random_sample.py +1 -1
  605. maxframe/tensor/random/rayleigh.py +1 -1
  606. maxframe/tensor/random/shuffle.py +1 -1
  607. maxframe/tensor/random/standard_cauchy.py +1 -1
  608. maxframe/tensor/random/standard_exponential.py +1 -1
  609. maxframe/tensor/random/standard_gamma.py +1 -1
  610. maxframe/tensor/random/standard_normal.py +1 -1
  611. maxframe/tensor/random/standard_t.py +1 -1
  612. maxframe/tensor/random/tests/__init__.py +1 -1
  613. maxframe/tensor/random/tests/test_random.py +1 -1
  614. maxframe/tensor/random/triangular.py +1 -1
  615. maxframe/tensor/random/uniform.py +1 -1
  616. maxframe/tensor/random/vonmises.py +1 -1
  617. maxframe/tensor/random/wald.py +1 -1
  618. maxframe/tensor/random/weibull.py +1 -1
  619. maxframe/tensor/random/zipf.py +1 -1
  620. maxframe/tensor/rechunk/__init__.py +1 -1
  621. maxframe/tensor/rechunk/rechunk.py +1 -1
  622. maxframe/tensor/reduction/__init__.py +1 -1
  623. maxframe/tensor/reduction/all.py +1 -1
  624. maxframe/tensor/reduction/allclose.py +1 -1
  625. maxframe/tensor/reduction/any.py +1 -1
  626. maxframe/tensor/reduction/argmax.py +1 -1
  627. maxframe/tensor/reduction/argmin.py +1 -1
  628. maxframe/tensor/reduction/array_equal.py +1 -1
  629. maxframe/tensor/reduction/core.py +1 -1
  630. maxframe/tensor/reduction/count_nonzero.py +1 -1
  631. maxframe/tensor/reduction/cumprod.py +1 -1
  632. maxframe/tensor/reduction/cumsum.py +1 -1
  633. maxframe/tensor/reduction/max.py +1 -1
  634. maxframe/tensor/reduction/mean.py +1 -1
  635. maxframe/tensor/reduction/min.py +1 -1
  636. maxframe/tensor/reduction/nanargmax.py +1 -1
  637. maxframe/tensor/reduction/nanargmin.py +1 -1
  638. maxframe/tensor/reduction/nancumprod.py +1 -1
  639. maxframe/tensor/reduction/nancumsum.py +1 -1
  640. maxframe/tensor/reduction/nanmax.py +1 -1
  641. maxframe/tensor/reduction/nanmean.py +1 -1
  642. maxframe/tensor/reduction/nanmin.py +1 -1
  643. maxframe/tensor/reduction/nanprod.py +1 -1
  644. maxframe/tensor/reduction/nanstd.py +1 -1
  645. maxframe/tensor/reduction/nansum.py +1 -1
  646. maxframe/tensor/reduction/nanvar.py +1 -1
  647. maxframe/tensor/reduction/prod.py +1 -1
  648. maxframe/tensor/reduction/std.py +1 -1
  649. maxframe/tensor/reduction/sum.py +1 -1
  650. maxframe/tensor/reduction/tests/__init__.py +1 -1
  651. maxframe/tensor/reduction/tests/test_reduction.py +1 -1
  652. maxframe/tensor/reduction/var.py +1 -1
  653. maxframe/tensor/reshape/__init__.py +1 -1
  654. maxframe/tensor/reshape/reshape.py +1 -1
  655. maxframe/tensor/reshape/tests/__init__.py +1 -1
  656. maxframe/tensor/reshape/tests/test_reshape.py +1 -1
  657. maxframe/tensor/statistics/__init__.py +1 -1
  658. maxframe/tensor/statistics/percentile.py +1 -1
  659. maxframe/tensor/statistics/quantile.py +1 -1
  660. maxframe/tensor/ufunc/__init__.py +1 -1
  661. maxframe/tensor/ufunc/ufunc.py +1 -1
  662. maxframe/tensor/utils.py +1 -1
  663. maxframe/tests/__init__.py +1 -1
  664. maxframe/tests/test_codegen.py +1 -1
  665. maxframe/tests/test_protocol.py +1 -1
  666. maxframe/tests/test_utils.py +1 -1
  667. maxframe/tests/utils.py +1 -1
  668. maxframe/typing_.py +1 -1
  669. maxframe/udf.py +6 -1
  670. maxframe/utils.py +8 -1
  671. {maxframe-1.1.1.dist-info → maxframe-1.2.0.dist-info}/METADATA +1 -1
  672. maxframe-1.2.0.dist-info/RECORD +697 -0
  673. maxframe_client/__init__.py +1 -1
  674. maxframe_client/clients/__init__.py +1 -1
  675. maxframe_client/clients/framedriver.py +1 -1
  676. maxframe_client/conftest.py +1 -1
  677. maxframe_client/fetcher.py +1 -1
  678. maxframe_client/session/__init__.py +1 -1
  679. maxframe_client/session/consts.py +1 -1
  680. maxframe_client/session/graph.py +1 -1
  681. maxframe_client/session/odps.py +2 -1
  682. maxframe_client/session/task.py +1 -1
  683. maxframe_client/session/tests/__init__.py +1 -1
  684. maxframe_client/session/tests/test_task.py +1 -1
  685. maxframe_client/tests/__init__.py +1 -1
  686. maxframe_client/tests/test_fetcher.py +1 -1
  687. maxframe_client/tests/test_session.py +1 -1
  688. maxframe-1.1.1.dist-info/RECORD +0 -675
  689. {maxframe-1.1.1.dist-info → maxframe-1.2.0.dist-info}/WHEEL +0 -0
  690. {maxframe-1.1.1.dist-info → maxframe-1.2.0.dist-info}/top_level.txt +0 -0
@@ -1,675 +0,0 @@
1
- maxframe-1.1.1.dist-info/RECORD,,
2
- maxframe-1.1.1.dist-info/WHEEL,sha256=qSV6MdWvyenD5iOCNB8SN2QD3CqO4eoH1twefEj9ofw,112
3
- maxframe-1.1.1.dist-info/top_level.txt,sha256=O_LOO6KS5Y1ZKdmCjA9mzfg0-b1sB_P6Oy-hD8aSDfM,25
4
- maxframe-1.1.1.dist-info/METADATA,sha256=60wD4nznnB6yrVVu8gxYTTT7lOABz5hz-yR1GQwejfs,3022
5
- maxframe_client/conftest.py,sha256=7cwy2sFy5snEaxvtMvxfYFUnG6WtYC_9XxVrwJxOpcU,643
6
- maxframe_client/__init__.py,sha256=0_6MYIqksNc-B0hORLb0yqNQUhtqdFD7TGg39bQ-_NI,689
7
- maxframe_client/fetcher.py,sha256=6gAKBI23GpkrgKyveHZlABYMWbzgiKwE7W4UWKhrzAI,9172
8
- maxframe_client/clients/__init__.py,sha256=FEFOVLi3o2GpZoedTtLYvbie0eQBehJIjtCrWca2ZHw,596
9
- maxframe_client/clients/framedriver.py,sha256=-Ux7Q_bWuUSG8r14u84-1UVT9V08q_z4jGxV8kvPQaI,4557
10
- maxframe_client/tests/test_session.py,sha256=XdbWE3jzmzphsPmbAk5L8xYVUnAXarDDzVhVYIWwnjE,11196
11
- maxframe_client/tests/__init__.py,sha256=FEFOVLi3o2GpZoedTtLYvbie0eQBehJIjtCrWca2ZHw,596
12
- maxframe_client/tests/test_fetcher.py,sha256=7mVDO456wcUMajguTJ4FWkSpuonLfinFfiz31ZYnHNs,4158
13
- maxframe_client/session/task.py,sha256=eL_bQShBAtUttz13JyBbDkMv9UIpnL6wSk9qtwmUNqk,12027
14
- maxframe_client/session/graph.py,sha256=rRilIWsiVfj_N160s8uv2s7mi_nhx7JxSa9BkhyLRnE,4376
15
- maxframe_client/session/__init__.py,sha256=KPqhSlAJiuUz8TC-z5o7mHDVXzLSqWwrZ33zNni7piY,832
16
- maxframe_client/session/consts.py,sha256=kQv67i4wyhV2ZQXwJf_5k4PRXhN811LmYoo2C3NB7tk,1391
17
- maxframe_client/session/odps.py,sha256=8PbU-5jNhFO2psLQ0X_kiiqKcZXwgeshxZkoh6poMvA,24928
18
- maxframe_client/session/tests/test_task.py,sha256=L1t8IPy9p60vuLgjdQym2ADSa9LI6cQArJ0pnXxtvS0,4701
19
- maxframe_client/session/tests/__init__.py,sha256=FEFOVLi3o2GpZoedTtLYvbie0eQBehJIjtCrWca2ZHw,596
20
- maxframe/_utils.pyx,sha256=I4kmfhNr-xXK2ak22dr4Vwahzn-JmTaYctbL3y9_UBQ,17017
21
- maxframe/conftest.py,sha256=s0GB7iP-m8UTSrYF0P1TH-kffzhZsch7EaV2KObVZ8k,6293
22
- maxframe/opcodes.py,sha256=Ef_CJvPvMi_JO4CYQfWRc_eZnMKtoiJWnO7eC-xNAOg,10348
23
- maxframe/env.py,sha256=_K499f7giN7Iu9f39iI9p_naaEDoJ0rx8dInbzqFOVI,1402
24
- maxframe/mixin.py,sha256=HBAeWYGb7N6ZIgkA-YpkKiSY1GetcEVNTuMb0ieznBs,3524
25
- maxframe/protocol.py,sha256=kP8dnBhQEI6BcVFn2uuZZTmvr4xJA-R-SZi9ZJ_iqtY,18984
26
- maxframe/session.py,sha256=FFciufr4jyKKWBDfbd_OwHGGT8zpRz_8rkZHrGhJMNM,36393
27
- maxframe/__init__.py,sha256=SqTFS_1o2HDuVY1mhS0ELlqDuM-biwM_MN0EYGkJLf0,1004
28
- maxframe/_utils.cpython-38-darwin.so,sha256=Oxa4-GAlL2VrIIIN3upVU7KcH6BlwiCxI9f2BXjTMoI,846784
29
- maxframe/utils.py,sha256=eubuRneXZ_fedIwMDLChgAq0WAXMuFjjyLtc4r_7zjg,34682
30
- maxframe/extension.py,sha256=F5XTYzW5hNw0AIQz3d6u6Yk7adDdiV4c-HD7bF0X1FI,2659
31
- maxframe/errors.py,sha256=vHcpVrKRHmoZPa6IwsdDT-jOZUTlhCp8c0e8F2C-5uU,966
32
- maxframe/udf.py,sha256=HrZzDSNHmv63lCt4bMoPPPVV0HdzIKPL89khmj5yAAc,5157
33
- maxframe/typing_.py,sha256=iYzgThxTu38yLRtyH5xFhMrurfFj7awMGytfObhvvcs,1180
34
- maxframe/codegen.py,sha256=yxrKeRynJiQ3fN88BPFn5oHPKemEpESz20GI8ghDgv8,17733
35
- maxframe/_utils.pxd,sha256=AhJ4vA_UqZqPshi5nvIZq1xgr80fhIVQ9dm5-UdkYJ8,1154
36
- maxframe/dataframe/arrays.py,sha256=RWzimUcrds5CsIlPausfJAkLUjcktBSSXwdXyUNKEtU,28752
37
- maxframe/dataframe/__init__.py,sha256=ojcTejC6A-txmh1fPhaZxIiXNQejd1Qf_nH0nRr6TbM,2242
38
- maxframe/dataframe/core.py,sha256=GSzIoRs67fFzbTqNVspd7ILxeB-5jlnXF7G_XyjcRjc,75000
39
- maxframe/dataframe/initializer.py,sha256=ppdPVRoXmg5ryZIfWbJ6nQ6okEOevOSJowvk1AJXFH4,10852
40
- maxframe/dataframe/utils.py,sha256=hcYmGVO6ty3RHGyd8cNkCNtml7PHRDfVyXtUa7WWzDI,47307
41
- maxframe/dataframe/operators.py,sha256=sXgnopzsCjr5qTL8wn9J-avzqSzGdds3MsyHgQCB4No,7577
42
- maxframe/dataframe/statistics/corr.py,sha256=3dExebs9QC8GBaZZUSKXrN2eYt-hWMayJ2MHHzTn-8s,9483
43
- maxframe/dataframe/statistics/quantile.py,sha256=nEhRwSdnMAyP75RkiwpYgNXCsibK2k0Uf3d5axOC-ZQ,11520
44
- maxframe/dataframe/statistics/__init__.py,sha256=Ate3HERUCrjhRoGhpR9SNZA5JHlvuIVSrHgYPEcJd6Q,1084
45
- maxframe/dataframe/statistics/tests/test_statistics.py,sha256=oTYoLIghp0DAtzzUbGCunpQe0XFr75-mRrb_KeSMJWA,2806
46
- maxframe/dataframe/statistics/tests/__init__.py,sha256=FEFOVLi3o2GpZoedTtLYvbie0eQBehJIjtCrWca2ZHw,596
47
- maxframe/dataframe/misc/accessor.py,sha256=QXjV5Q6LW0KNs67X5h2bCBhwHV8R7riP6TmTY_ECpmA,10027
48
- maxframe/dataframe/misc/describe.py,sha256=Ym9DrZVBSOK0EcsiqKzjMSIK5LNPA12GPoLkFjACyZM,4370
49
- maxframe/dataframe/misc/astype.py,sha256=OkGDO6PBZli46m0kKq0BOO2OOwJWEyatzeBFV_mnKz8,7797
50
- maxframe/dataframe/misc/to_numeric.py,sha256=gG5fxEtC71SkDeHaJ0Vd1JZrIM8gMHGFaiwyFtMwbWs,6262
51
- maxframe/dataframe/misc/case_when.py,sha256=1Eiy_OP_ljq8rTSjhDthT30ybTq6UUfgfCgG2DroECI,4861
52
- maxframe/dataframe/misc/check_monotonic.py,sha256=apHehWNRUTuzux3hI4JflWiuvpaeEFwtpPTWVide7wU,2422
53
- maxframe/dataframe/misc/datetimes.py,sha256=fgLczaX-yDdairnNW1EsabEzoioP5gUsO0ukYANisLE,2503
54
- maxframe/dataframe/misc/string_.py,sha256=eG4uMA6ScB0Pfby6pBLH24Ln01Aai2aAn-hMyRM5YFo,8101
55
- maxframe/dataframe/misc/cut.py,sha256=aB8iuk6k2W3G2S3j0jPsryvBhOmaQJSZGIpZ5u1rWbs,13905
56
- maxframe/dataframe/misc/get_dummies.py,sha256=q4f-1RCw-WWz53bT2FseYyzBNV3pDJTKNBKFx0dd888,7087
57
- maxframe/dataframe/misc/__init__.py,sha256=U1p-l0iC1dbh7WLv5kVPelXqK7tb00LJvtu_H7GdtGA,5267
58
- maxframe/dataframe/misc/qcut.py,sha256=De8kM1FfOWMEDvRNWRaupSHBRGLaOVrtGbLmtHAZvOg,3737
59
- maxframe/dataframe/misc/pct_change.py,sha256=-WBq5VD3cPMv3EsqoAEvN9MXbBWfh4qHydwtWbMutZY,2516
60
- maxframe/dataframe/misc/duplicated.py,sha256=JPtBDLaxlVUqFBU3U3bqGnKQNaOcKwS5sdVfBFJt-Uo,8534
61
- maxframe/dataframe/misc/pivot_table.py,sha256=YoKjjtOw2Z6KU3q3opAFag1gICz5Kc_VIcKNs3ur62A,9520
62
- maxframe/dataframe/misc/map.py,sha256=0lkziY2iM6GhmtaWf9G9Bf8tHngBXP9i0HHG8yJHx5c,8265
63
- maxframe/dataframe/misc/memory_usage.py,sha256=BPBSYNFvxTYG5kXdX-ogLn1_c_u__G9UeWkEIKrnfyA,7889
64
- maxframe/dataframe/misc/isin.py,sha256=POBR3Gvwlu2TH1AWWvKW12XOlu8HF2dJuBCBbOHgq74,6931
65
- maxframe/dataframe/misc/shift.py,sha256=feTqtnIRm0YGha5Ps_feQOqHLxSbicnOMbthmZc6pEM,8935
66
- maxframe/dataframe/misc/transpose.py,sha256=-Q7iFtafKKibpZKWYxf0bUg4zIZPTupvY4hkdAlB3Gw,3636
67
- maxframe/dataframe/misc/melt.py,sha256=wZnxUWZfOxU9xoDp5asfi7UCXUyUNwqupZiPBibbA7c,5120
68
- maxframe/dataframe/misc/stack.py,sha256=ybopZCNzARqrtFYhvjs85j-g6mXL6X2XTdSTAudtmVI,7962
69
- maxframe/dataframe/misc/transform.py,sha256=BRLOqGYFKMuLgcjf5-VeAOIkOUS18Gyae9mywiTN_nU,11208
70
- maxframe/dataframe/misc/explode.py,sha256=Z26L0iYmyHE1mffyAC19Fk5rGDfw7oxOnaBHzeZ4QbU,5011
71
- maxframe/dataframe/misc/diff.py,sha256=bhorH5BuKmnMJSXKC-_ZANNAR8LFDIy6p7m4kpZV_R8,5491
72
- maxframe/dataframe/misc/drop_duplicates.py,sha256=KAE6eJhTrKKyP21p1aN1V14o05L2YJDxVeTmULJRqRw,8468
73
- maxframe/dataframe/misc/_duplicate.py,sha256=lCryaC64c46YA6R3UjTBfh77L4yyB8ub3EPzBMe_HPg,1470
74
- maxframe/dataframe/misc/eval.py,sha256=jXIQyGK4d1c8A-n3BBdisKK3dIjLbZO07hh-qtslBdE,24359
75
- maxframe/dataframe/misc/value_counts.py,sha256=yWpGLLdx--QobAFNJHb51wuA_fePMqKMeWXA6GjIgbo,5215
76
- maxframe/dataframe/misc/select_dtypes.py,sha256=xEdLNun58kvp-Vbl3u2cr8kaXFG8GsIU2BMfo7tFCM8,3144
77
- maxframe/dataframe/misc/drop.py,sha256=-RHIQWek2LUTK8lOILNpCWYftCY3-I3DHSP0XT4uHBc,13029
78
- maxframe/dataframe/misc/apply.py,sha256=0lD5OjFIwGrKJgg7gwUr__QO5mh4Z9o6RpCLHFpicd4,23492
79
- maxframe/dataframe/misc/tests/test_misc.py,sha256=gsURWRlIIaIvCh4k7NX_qSY8TgRs_meGVK_mltw49fQ,16466
80
- maxframe/dataframe/misc/tests/__init__.py,sha256=FEFOVLi3o2GpZoedTtLYvbie0eQBehJIjtCrWca2ZHw,596
81
- maxframe/dataframe/datasource/index.py,sha256=D7PcfIWS-6Hv1-8o6adNesditOAa9kb4JOQK1WlqNDQ,4401
82
- maxframe/dataframe/datasource/read_csv.py,sha256=cpp6kX0DVrqY0KticL1h11tckobSzz1gyK4Sf2puUjo,24140
83
- maxframe/dataframe/datasource/from_index.py,sha256=2061zsQn-BhyHTT0X9tE0JK8vLxQU8RMb16XsMye9c4,1857
84
- maxframe/dataframe/datasource/dataframe.py,sha256=LxAKF4gBIHhnJQPuaAUdIEyMAq7HTfiEeNVls5n4I4A,2023
85
- maxframe/dataframe/datasource/series.py,sha256=QcYiBNcR8jjH6vdO6l6H9F46KHmlBqVCTI2tv9eyZ9w,1909
86
- maxframe/dataframe/datasource/__init__.py,sha256=C8EKsHTJi-1jvJUKIpZtMtsK-ZID3dtxL1voXnaltTs,640
87
- maxframe/dataframe/datasource/read_odps_query.py,sha256=eOYQdYEIdfQ9SqHkNbY_OxBdUVuH-KZNLDA7fxp8erk,13504
88
- maxframe/dataframe/datasource/core.py,sha256=ozFmDgw1og7nK9_jU-u3tLEq9pNbitN-8w8XWdbKkJ0,2687
89
- maxframe/dataframe/datasource/date_range.py,sha256=8JMr_Ife5pKCS_ca7W50Fyoc1JigOJirVzdVaPDzeFo,17227
90
- maxframe/dataframe/datasource/read_odps_table.py,sha256=E2hv-9CxpXlxf0r_lc_G6Cs-voYQ1BunuC9A28K5Sx4,9409
91
- maxframe/dataframe/datasource/read_parquet.py,sha256=9auOcy8snTxCOohgXZCUXfT_O39irdkBngZH5svgx0E,14531
92
- maxframe/dataframe/datasource/from_tensor.py,sha256=4viuN5SLLye7Xeb8kouOpm-osoQ2yEovWTDNPQuW8gE,14727
93
- maxframe/dataframe/datasource/from_records.py,sha256=WBYouYyg7m_8NJdN-yUWSfJlIpm6DVP3IMfLXZFugyI,3442
94
- maxframe/dataframe/datasource/tests/test_datasource.py,sha256=xVCuDOeEmGxh39adcUf9933oXJf9cM6Mlh-02d6UA0U,17163
95
- maxframe/dataframe/datasource/tests/__init__.py,sha256=FEFOVLi3o2GpZoedTtLYvbie0eQBehJIjtCrWca2ZHw,596
96
- maxframe/dataframe/sort/sort_index.py,sha256=Hwbkm9x8kqGgXh4gMcAtYMDjYtt-S3CJXfYR9pN5Iqk,5412
97
- maxframe/dataframe/sort/__init__.py,sha256=Vt2Ynr7uAX51hLbQu93QeHiFH4D9_WJMO99KljpbO2U,1160
98
- maxframe/dataframe/sort/sort_values.py,sha256=-B0C2MXo9U33rW36xUFWqR8igPTdYwxAbI8-Vd4E4t0,8702
99
- maxframe/dataframe/sort/core.py,sha256=yWVlULMI91lSgW7-F-nwBQ7Sc71sCLAYvLeM0GR49w0,1224
100
- maxframe/dataframe/sort/tests/__init__.py,sha256=FEFOVLi3o2GpZoedTtLYvbie0eQBehJIjtCrWca2ZHw,596
101
- maxframe/dataframe/sort/tests/test_sort.py,sha256=BE03oQ8lJTQUZhMW0vzwv9jjcLToLmc68vfj3hO_sp8,2604
102
- maxframe/dataframe/merge/merge.py,sha256=jIqUmcUc7Ye6Xj0dPy7HYB356lspowowHszI2Dn1qr0,30441
103
- maxframe/dataframe/merge/concat.py,sha256=d-yLwxkhCVqw--nHa49R2f-SGtSR2YIfKGe0IxNKkz8,11792
104
- maxframe/dataframe/merge/__init__.py,sha256=q7iqrvhzgsycMBJ78BOyyWwSEGzgXGasRIuZjmFQxnU,1121
105
- maxframe/dataframe/merge/append.py,sha256=-Y1LXO3mOn_8nYOlb1-8644bYcafInBen0G7f4OKKiA,4852
106
- maxframe/dataframe/merge/tests/__init__.py,sha256=FEFOVLi3o2GpZoedTtLYvbie0eQBehJIjtCrWca2ZHw,596
107
- maxframe/dataframe/merge/tests/test_merge.py,sha256=aWia-4T-4OBL3PZ4Ffh0dsaEAFlU_6KqW_l6sMX8gv8,11259
108
- maxframe/dataframe/tseries/__init__.py,sha256=FEFOVLi3o2GpZoedTtLYvbie0eQBehJIjtCrWca2ZHw,596
109
- maxframe/dataframe/tseries/to_datetime.py,sha256=ctRUuRPPyBIC0yLY0rOIIxEdK67e5o9c63KRFsuKZB8,11328
110
- maxframe/dataframe/tseries/tests/__init__.py,sha256=FEFOVLi3o2GpZoedTtLYvbie0eQBehJIjtCrWca2ZHw,596
111
- maxframe/dataframe/tseries/tests/test_tseries.py,sha256=PCikuMQlqUaN-_kM3M2HOHjnIPrBpWlaY2ivzQfgx5Y,989
112
- maxframe/dataframe/tests/test_utils.py,sha256=uuOAkElYHS9TifEBt8qCwOL21FO6FMHKxdiBZcqnaOw,1818
113
- maxframe/dataframe/tests/__init__.py,sha256=FEFOVLi3o2GpZoedTtLYvbie0eQBehJIjtCrWca2ZHw,596
114
- maxframe/dataframe/tests/test_initializer.py,sha256=9VFQ1MtCWkTE-QHI_3C7HHtXFxdWH6IbgYkOmjL1vPg,2000
115
- maxframe/dataframe/ufunc/ufunc.py,sha256=P8mh9CwKnxoN624IaoZ010kwH1n4RiUUGMuU5IgHTOM,1651
116
- maxframe/dataframe/ufunc/__init__.py,sha256=-_obmEV3B4Az5V0x-P-T8cfdeSoYHrLBOgj_-gqv1c4,889
117
- maxframe/dataframe/ufunc/tensor.py,sha256=SeWQbDflxL5fipzPJdhVKFk9ntM4VXtGazb8lD2JwSM,1618
118
- maxframe/dataframe/missing/dropna.py,sha256=apc4SsUPtAMtHab3ErMj6BmZj_AxdS6Zp_zSeOjhXLI,8240
119
- maxframe/dataframe/missing/fillna.py,sha256=dGSeq6OASn9mfPR1-kc0fqJaL4N8AVzD8u-9PHc6B0Y,8905
120
- maxframe/dataframe/missing/checkna.py,sha256=k7T6a1-qASATtJzeOJ1LqpMRt9lA6vpoYGuUANZaJvY,6890
121
- maxframe/dataframe/missing/__init__.py,sha256=kqtLysfyQQstx6Dsy0qEDAXdRaycU1IGVn7J-sshJO0,1813
122
- maxframe/dataframe/missing/replace.py,sha256=sYFzkyChrev8Vl0NocDGTCdWTdHjXvzBzHbf6Bpb9EM,13340
123
- maxframe/dataframe/missing/tests/test_missing.py,sha256=L53Fm8w7r1uRghOhslWd0fKa7HJmn1Dk52ZTdG7FCi8,3134
124
- maxframe/dataframe/missing/tests/__init__.py,sha256=FEFOVLi3o2GpZoedTtLYvbie0eQBehJIjtCrWca2ZHw,596
125
- maxframe/dataframe/extensions/accessor.py,sha256=j7AYpmfPQwMS3ep52yY5ETtXyaO1cO4K9aPdELk2lR0,1447
126
- maxframe/dataframe/extensions/flatjson.py,sha256=z6aRuquuHJcKlgw4wlt4fMMVmnY957TJPqZX_dq0nWc,4368
127
- maxframe/dataframe/extensions/apply_chunk.py,sha256=LhRmmxdDdrDZCNjnXx2kZu3VVoEMpTUptnrufhqLETc,22492
128
- maxframe/dataframe/extensions/__init__.py,sha256=MsKgGKlLkRJi6BAFyRfqlOrCqrgrrWe6GVoCUZ9t0aA,1880
129
- maxframe/dataframe/extensions/reshuffle.py,sha256=Ubn4_-g9Rj9NPKyPmNb85aWg-VvotOdZhuivsu4ob0E,2635
130
- maxframe/dataframe/extensions/flatmap.py,sha256=PaksumMD6NTXjnAk_1R_l1FOAveJFzCaRl039lO3Y9U,9926
131
- maxframe/dataframe/extensions/tests/test_apply_chunk.py,sha256=e9iMl0Y2My0ERz1A3fWz1QppKxKZfbqMH8j9N4uE9vg,5851
132
- maxframe/dataframe/extensions/tests/test_extensions.py,sha256=3RcdS9aD9Me13qE6lXLB0WpD-b3X6ZZQTIgZloBrlhY,4778
133
- maxframe/dataframe/extensions/tests/__init__.py,sha256=FEFOVLi3o2GpZoedTtLYvbie0eQBehJIjtCrWca2ZHw,596
134
- maxframe/dataframe/groupby/aggregation.py,sha256=sMQbCMq4XeHPMGnQauOryvzL8EH-X4l990MxSzwVX0U,11989
135
- maxframe/dataframe/groupby/fill.py,sha256=YJ6q548v4n56vO3ObSSIBBjBJBHTYCf49HrHL3c7Rxw,4808
136
- maxframe/dataframe/groupby/cum.py,sha256=F5uX97hR1rMQG9YtvoR7MFFvP3zMDDv1GD9b2NqLcOI,3683
137
- maxframe/dataframe/groupby/__init__.py,sha256=Vj7H1S7WBKygv6pu1L44djnfKWMxRSyfZ3Kh_cGUfLQ,3444
138
- maxframe/dataframe/groupby/getitem.py,sha256=Nas7cZRlCmM8Xq9EIOPNib33gmXwYbQDHkSy_4NJcjQ,3415
139
- maxframe/dataframe/groupby/core.py,sha256=SwVisn8IJpdEXbJlZ29AOhoaE4Si4h4bv5mx2hvwiy4,6076
140
- maxframe/dataframe/groupby/transform.py,sha256=xGhBT06N-ml1OmlTAb5i-WSeQ-wHyBIevF_ngETnLYU,8824
141
- maxframe/dataframe/groupby/head.py,sha256=ZDkbSn3HuUR4GGkZJqo_fL-6KFJfs55aKXQkAh_0wvA,3266
142
- maxframe/dataframe/groupby/sample.py,sha256=IdoyzT-V5309txYvM_iaYKupsULfozMGwm1K3oihTf4,6935
143
- maxframe/dataframe/groupby/apply.py,sha256=25AVvqHuOKnYL7gjEHrgafu91_wnoqTL25LMHqJDfTw,9627
144
- maxframe/dataframe/groupby/tests/__init__.py,sha256=FEFOVLi3o2GpZoedTtLYvbie0eQBehJIjtCrWca2ZHw,596
145
- maxframe/dataframe/groupby/tests/test_groupby.py,sha256=wwKPCFVT4ktVxKTEIlt5DIFgPHoEJKJO-gtM7b_YdWk,12376
146
- maxframe/dataframe/datastore/__init__.py,sha256=Ujd4ix4UJ7Zq-sV2pXTRDvZkKUvtt8sr-FfiUoi6Kh4,784
147
- maxframe/dataframe/datastore/core.py,sha256=hLGhqYxX73tq9sOFxMyYBRMawTnsVQqluW5FcE3YHfE,743
148
- maxframe/dataframe/datastore/to_csv.py,sha256=xVfpEsicD5A5uXLSdCN08K8uGyWB4QxnRcAbgBVUzbs,7747
149
- maxframe/dataframe/datastore/to_odps.py,sha256=TP3dWCdb4lNGVnKuQ86lOpl5U4CYZlFhwkQ9f6096_M,6722
150
- maxframe/dataframe/datastore/tests/__init__.py,sha256=FEFOVLi3o2GpZoedTtLYvbie0eQBehJIjtCrWca2ZHw,596
151
- maxframe/dataframe/datastore/tests/test_to_odps.py,sha256=EaFprN1mErrqqy54Rzbw6PQxPbBCgxDP0E055RIIH0g,1296
152
- maxframe/dataframe/fetch/__init__.py,sha256=E3VjxLRKjtr-D__K-c0aRETvBG7CQRG1iEtH0Qghq0s,653
153
- maxframe/dataframe/fetch/core.py,sha256=z61_orBtOIrKFpFdJTNqyPhOw5ZCGe6QkXnDrGdMy6U,3338
154
- maxframe/dataframe/reduction/max.py,sha256=CqaueIN3cuF7vlE2rt2MAcXAD3Syd_R8W2dzcFhTmV0,1660
155
- maxframe/dataframe/reduction/nunique.py,sha256=BMg5FxTYzDWRL9kQlB1_18ecrQPXr8kLOp-u4zdDUbE,3467
156
- maxframe/dataframe/reduction/cummax.py,sha256=TyZ3Fd6bAES2SX3WdQK9Fi0gX_7Dqk3F907OKU6035s,1013
157
- maxframe/dataframe/reduction/aggregation.py,sha256=OpNsMUTRuccPulOiBNO8mE2FkYDFY6FEaY_q0FhhEak,12666
158
- maxframe/dataframe/reduction/skew.py,sha256=42bEutP4Ftj28RbLbLgIKiUQpG9tHPP0u9VVmBVFApw,2538
159
- maxframe/dataframe/reduction/custom_reduction.py,sha256=uu-NePAC8O2zmcxSfc_CabkIxqiBgAWbdRoUKnG9jfM,1435
160
- maxframe/dataframe/reduction/unique.py,sha256=Dhghnf9mvgS8p-ETJUlhfJajBEyVZPBp1I6NN7oO7iw,2955
161
- maxframe/dataframe/reduction/std.py,sha256=PYeh6-yton9vUI8D-dTlnXsWKCi-uDpop4UExmay7Ec,1355
162
- maxframe/dataframe/reduction/str_concat.py,sha256=wbb4Y4ZDyou_ixR6ukJ8wQw74nzI05tToNWaWSirbSA,1657
163
- maxframe/dataframe/reduction/__init__.py,sha256=WdA7sHtilWu8EBxhSYonT0X3tqlRK6MCjFn8ZmMjvpw,4335
164
- maxframe/dataframe/reduction/core.py,sha256=xoEiVQQtl1eLtJ4AY6xqy3tCkyi6WZwSLbcv-f8-B14,30395
165
- maxframe/dataframe/reduction/all.py,sha256=h3Y04RJ-mTxAggX1-BIpuiyhNofQEkBzsAxKOX--kv0,1966
166
- maxframe/dataframe/reduction/cummin.py,sha256=CA9wjhx_ZFfk6b3KbbDykWZiyXsfwLBUODKn36WuGug,1013
167
- maxframe/dataframe/reduction/min.py,sha256=8Kh07yoTRWaCWGKxZ4a64_tlIljR8GsjlbwdsjNmPTw,1660
168
- maxframe/dataframe/reduction/mean.py,sha256=t1lVlt7FQI2St4c0arH8nPZLI1ihIOh8IDrU8gGmKyE,1612
169
- maxframe/dataframe/reduction/var.py,sha256=LFu2zXi0GD1e8_qUDV7Ea6NtejRCQkYshPEEtQ5VTBA,2008
170
- maxframe/dataframe/reduction/median.py,sha256=mIlhA_s-83f80wau1tQSdx84dlz5rjxlLQN857uXJq8,1593
171
- maxframe/dataframe/reduction/kurtosis.py,sha256=3z3FKtPqhEi2PH66i57k23Obazj_Tb9RdjCOk-G9Rr8,2840
172
- maxframe/dataframe/reduction/sum.py,sha256=cu6M462w_kRUyGPrrZaxLBES0tq5gCVVdZ93wfm7dJs,2049
173
- maxframe/dataframe/reduction/prod.py,sha256=DHTAr4xZN4hFq9zLz5cnKiUZQcH7jR3Gqvwtr-PydaQ,2049
174
- maxframe/dataframe/reduction/cumsum.py,sha256=bjnSN2Syu_wvTfO5wH1dAOwIvl0llXdY87d4z43PxN8,1013
175
- maxframe/dataframe/reduction/any.py,sha256=Jl9dFfBddS2dPhWRVbFRphpmQ7NUUoMQsbXUeRIUpGQ,1970
176
- maxframe/dataframe/reduction/sem.py,sha256=-lpCbf9ydEd2rYSsixK7ZLc5o3JmbfrEbYxNjAnNtz4,1863
177
- maxframe/dataframe/reduction/cumprod.py,sha256=e2W6RGXIqeHjlm07XJ0KwSfp3f0mrQ4F4JaeSHaCS4E,1018
178
- maxframe/dataframe/reduction/count.py,sha256=ifvpEZuMamlvsTuPjmrh_xLbBMwoqylQ9j74VG_9Q4w,1741
179
- maxframe/dataframe/reduction/reduction_size.py,sha256=5wGc5cyuUllewvKPeJargbEjuzCakhir3NXZ0sgeqWc,1120
180
- maxframe/dataframe/reduction/tests/__init__.py,sha256=FEFOVLi3o2GpZoedTtLYvbie0eQBehJIjtCrWca2ZHw,596
181
- maxframe/dataframe/reduction/tests/test_reduction.py,sha256=zCR5xRrNF1drecRUdS7xaA0cRHq43XqYf1ESK8gtgtA,17623
182
- maxframe/dataframe/plotting/__init__.py,sha256=JShRu5lSUAfwgTFUMxQoIqiH1gg9H5cieoRyg4ybieA,1393
183
- maxframe/dataframe/plotting/core.py,sha256=kvAM1ikU4SsFhvhmpOTQVTs2EX4ypAgNnjD9Jqy3xyA,2233
184
- maxframe/dataframe/plotting/tests/test_plotting.py,sha256=IKAOcG0LotMGZCrvDzWiHmoFXqtyrVDn87eIOdyg6Ho,4118
185
- maxframe/dataframe/plotting/tests/__init__.py,sha256=FEFOVLi3o2GpZoedTtLYvbie0eQBehJIjtCrWca2ZHw,596
186
- maxframe/dataframe/window/aggregation.py,sha256=ncdJavwZcj6LWfF_W9wWUWAIjOxu7DOEEW16y5EQCF4,3794
187
- maxframe/dataframe/window/ewm.py,sha256=xqRiw4_KYpPTzhdKnN9wIknWdKsFls-uEzYO1T18vDk,7789
188
- maxframe/dataframe/window/__init__.py,sha256=D8DOhmH-PabNAFPNwzwsw-mH0iELIwyU7tyiiaZGJhw,910
189
- maxframe/dataframe/window/core.py,sha256=T15k5OqC1y1ewlT2ddDf0oFP9LeOdneZ3po1mxLdOgc,2205
190
- maxframe/dataframe/window/rolling.py,sha256=btt0uOtsK3z2gR96tVXrXJUrvLFus5FUunRaooizpIw,12042
191
- maxframe/dataframe/window/expanding.py,sha256=cZl0cnlS-P09uc0gSINOeTrzW57rz-g2-j7YcvbDB6g,3918
192
- maxframe/dataframe/window/tests/test_expanding.py,sha256=OxCuZ7MTeO-KbbaEHaa00JF6ZvgnaSSMqn8-De2LttY,1916
193
- maxframe/dataframe/window/tests/test_rolling.py,sha256=JWnXGUCz3li5B10rvnzzcTXbQq1lL6Svo3NL7BeBGGU,1714
194
- maxframe/dataframe/window/tests/__init__.py,sha256=FEFOVLi3o2GpZoedTtLYvbie0eQBehJIjtCrWca2ZHw,596
195
- maxframe/dataframe/window/tests/test_ewm.py,sha256=R6I2smeLhpS9cczCAuZdP5nKj0s4ssKB5VJ6hRW-9b0,2060
196
- maxframe/dataframe/arithmetic/arctan.py,sha256=zFCdG8rCmRmU3p9jGm3tQp5ulAsx4nmKn3m8e7jY6nk,930
197
- maxframe/dataframe/arithmetic/arccos.py,sha256=WF3SE975VbwCOsrSPNck4swIejDFI-tVm9H4DQrBv6Q,930
198
- maxframe/dataframe/arithmetic/arctanh.py,sha256=7H32t46reUr0k_4pEj2Dx_dAkH59OIUinedqoOPd0Hg,935
199
- maxframe/dataframe/arithmetic/trunc.py,sha256=WZSfPRti63DtH_JzsnqPlknwfvIdQogZGmC9uu17n64,925
200
- maxframe/dataframe/arithmetic/tanh.py,sha256=EG2Fbb7lZPgdNKvIZQCkn0DWCp88pp6g7hyDFTQQZUY,920
201
- maxframe/dataframe/arithmetic/equal.py,sha256=XUEHuLa3VdPs1ODWeIJjIOPq6l3lnMcQMfAyoMlokIg,1517
202
- maxframe/dataframe/arithmetic/add.py,sha256=VMxJbbZf5Unl-0XH3QIAKtzcyJqKF103s8Rx_0kQQI0,1706
203
- maxframe/dataframe/arithmetic/subtract.py,sha256=jus58lUI8MT3iYSoO5V2Z6veelPEYp8R3n8Kz_FOpFg,1780
204
- maxframe/dataframe/arithmetic/sqrt.py,sha256=1-fOixLXtprGMyTEwMbMp7J2ZKONgMhjwcu2uXmPmL8,920
205
- maxframe/dataframe/arithmetic/less_equal.py,sha256=Aw1sXCVjS7eZ6ZXvCnppyt3zFnNdH_XrmQ39RFq573A,1557
206
- maxframe/dataframe/arithmetic/log.py,sha256=eQkt1Hj0KG7jlxEOR_WjyRO0ldMwvXfE0R59jEBOjCs,915
207
- maxframe/dataframe/arithmetic/negative.py,sha256=tr4ihgbj2Kws6mhZrkQDqDcP3gCnswgTyW3TGODKl24,1007
208
- maxframe/dataframe/arithmetic/multiply.py,sha256=IYRtGCnu9LtykcnLThRh4odOluXq2MkoVHQa_zwhpQU,1733
209
- maxframe/dataframe/arithmetic/degrees.py,sha256=0wHAjqFFz36ALkOcLow0rDrf5WaommpF-owGw5FlhFc,935
210
- maxframe/dataframe/arithmetic/cos.py,sha256=I7faGLNqhY66zrKljTZ-b75c5y_-i7PRZIimwlwsRWc,915
211
- maxframe/dataframe/arithmetic/tan.py,sha256=ecKpsFWNl8eP2yAIc1eCpMLIx0e6nLIInOm2iVf4dN0,915
212
- maxframe/dataframe/arithmetic/abs.py,sha256=qpKKyVJx296tnXDaqEJY_MHwYspUPGrSKxcNALy0AIc,983
213
- maxframe/dataframe/arithmetic/__init__.py,sha256=DNekqWOuBpopzQTbRaDWN2fGwC8HmdQ9XrrV2xf3wc0,12478
214
- maxframe/dataframe/arithmetic/core.py,sha256=uJIU_dHoS178TSmJvy36GfjUMc_m_pCLnq2m2s61dAc,14059
215
- maxframe/dataframe/arithmetic/floor.py,sha256=bM91bdHP-302gSlTeVphqy9I8JVa2mW_idfMpemD_Gc,925
216
- maxframe/dataframe/arithmetic/around.py,sha256=aeviUKYjPt-TnhIEEfRej4s2abABDLK38ePSgTcS8nA,3823
217
- maxframe/dataframe/arithmetic/is_ufuncs.py,sha256=hEcMAXUMQSkem3xNxdgqIbyEmfG5Vd2VZ6NcPjvfU4Y,1736
218
- maxframe/dataframe/arithmetic/ceil.py,sha256=2Kg7DhGutwqRpH88pvbY0mXz0n6fI0KB_EuMP_nVCTE,920
219
- maxframe/dataframe/arithmetic/bitwise_or.py,sha256=BNYyKUshOkyQ1pnEPr4YV77ANRvV5VfY6QXuHs1oARk,1546
220
- maxframe/dataframe/arithmetic/bitwise_and.py,sha256=G3IMIAmFz9HTcuNnVdSiWCKcSUdNKniR_f7wLhJ4ubM,1427
221
- maxframe/dataframe/arithmetic/log10.py,sha256=yT9ziTGU0QogZLdwHiZA8VHqes2tKzHfKRsrrhEbEtg,925
222
- maxframe/dataframe/arithmetic/docstring.py,sha256=WsDeqeRbyTbfFGZJLCWLSRMcazLXkmK3wpDAcXA70e4,11691
223
- maxframe/dataframe/arithmetic/truediv.py,sha256=KNMlFa7D8ui89ILKKg5QG1TmTYA3C3Gttv9UAq3UGK4,1808
224
- maxframe/dataframe/arithmetic/exp2.py,sha256=cwyEZ7uyjbiqD-7Y9PqEDOI80hf6ReabtbGq6DLjwCg,920
225
- maxframe/dataframe/arithmetic/expm1.py,sha256=XfDd6LQ1YzBq8mnTVFTWf3lBtIOMzaO4yc9b5ZRuIQU,925
226
- maxframe/dataframe/arithmetic/arcsin.py,sha256=NuVj2ve_KVtT0BnDL0NP0W8OLbXxKljLA1XZlZHzDjg,930
227
- maxframe/dataframe/arithmetic/floordiv.py,sha256=CySJxJb7DZqbe_CqC4Q0IyEm_4vXEgPpKyWMEEb10ag,1827
228
- maxframe/dataframe/arithmetic/bitwise_xor.py,sha256=W0MDaBV4rEh6MtCk7eCsZkW6abvk_8JetzXKs1h9eiM,1426
229
- maxframe/dataframe/arithmetic/invert.py,sha256=OvRZ3DtDpWQBr2fNIMjUeraT1zOhh5Hqn3VLhhhs-oo,985
230
- maxframe/dataframe/arithmetic/greater.py,sha256=YE5dkcyoENXR6uxSOhWfD8isq8MtqFmiRu6AoXndObk,1547
231
- maxframe/dataframe/arithmetic/log2.py,sha256=rqmgkwgqwvnyFLW554eHBCBDwP8Y8bXgx3vT2HJTzRo,920
232
- maxframe/dataframe/arithmetic/less.py,sha256=Q6hOp1IYybChzVCY0_ccTnD4pcCLw6CIVnzhMS_KK68,1518
233
- maxframe/dataframe/arithmetic/cosh.py,sha256=OLmJdzc0B1v61-cu2ohXUflJwxkXfUy50YqS1X8h0Ho,920
234
- maxframe/dataframe/arithmetic/sinh.py,sha256=-Cm7wHcywVAuLnt-AA3WggxfOjiPXfii5nx14dT_MYg,920
235
- maxframe/dataframe/arithmetic/mod.py,sha256=hHYLPMbNLjuig9Tud3FqEYRxQeDMrFgvDm5LEjn1Xu4,1702
236
- maxframe/dataframe/arithmetic/greater_equal.py,sha256=lkP_0fM048BKLu7p5EX-VDkhmJpHzZB0DeKc18GGqhs,1572
237
- maxframe/dataframe/arithmetic/exp.py,sha256=QE7i88tJrFYx2Qs7Hmcf8Zb2oBJDKghBjxSnf4Y9b7k,915
238
- maxframe/dataframe/arithmetic/arcsinh.py,sha256=KreWLwP5wwQqna95iPlc2aiXPzuqCFq8chCMytk5qhY,935
239
- maxframe/dataframe/arithmetic/arccosh.py,sha256=_LTrS_JOy1CTvCXT9iw9TQkBbO3wv-hKrYiYRzTwcnU,935
240
- maxframe/dataframe/arithmetic/power.py,sha256=ZxssD1aoz8abrv1tE_LFhGF0jr_j5nXQ8nhY9lcZrF0,1811
241
- maxframe/dataframe/arithmetic/not_equal.py,sha256=jwfWfLHbRmVEMVdAmHlFUU4Kd6hhyevIGO2Fl2nuyJM,1533
242
- maxframe/dataframe/arithmetic/radians.py,sha256=pSq9S0KlV0Xx0vGSdxdol3348dSyYuxG4jMFbGFdQ6E,935
243
- maxframe/dataframe/arithmetic/sin.py,sha256=zgWoijVpASlkZ7cnZZxKSSHUiLqQ0pKUAIOHEfCBubc,915
244
- maxframe/dataframe/arithmetic/tests/__init__.py,sha256=FEFOVLi3o2GpZoedTtLYvbie0eQBehJIjtCrWca2ZHw,596
245
- maxframe/dataframe/arithmetic/tests/test_arithmetic.py,sha256=xAAxpq0Ic6KaMTDJu9I5_p0U3TVMiI21I35NOsv-inI,25163
246
- maxframe/dataframe/indexing/reset_index.py,sha256=uzGszHfkhwZgZtEaygy5UPrvHPNPXgWZaTOXdNxGBT8,13122
247
- maxframe/dataframe/indexing/iat.py,sha256=ANURJ8qn_UitgM01gDPeaQOlSBxbk0pmN4Yr-iPRXM8,1127
248
- maxframe/dataframe/indexing/loc.py,sha256=nKKwY8jsjmIU-Ap9AtYbzCxbXcvLzvc8gOMdbo0hzcg,14975
249
- maxframe/dataframe/indexing/align.py,sha256=hEuoaNX4bI9LBWp_1kGG7GSs3PDF95tDXo7GX5nypGI,12085
250
- maxframe/dataframe/indexing/rename.py,sha256=jYstF7CKilLjAlIGKs2wVhYtijJDCz8AWg2VF-1KROU,12892
251
- maxframe/dataframe/indexing/setitem.py,sha256=PgVZr2A_joTHz9GUbnGfuSI28qSnwe-n84yKFJagLUc,5004
252
- maxframe/dataframe/indexing/where.py,sha256=3h64jI_tXmWAu1ZvfeS58h8nUfBN7K7OZ0C22_5-_uk,8567
253
- maxframe/dataframe/indexing/iloc.py,sha256=sP4hV9Wo3S4Iimxak5Q-EB_Vph2dCbbDsVS003jEeFI,17421
254
- maxframe/dataframe/indexing/__init__.py,sha256=BdT5tBzjW8tESUPI3blrO7KxKzgZmf8_pQhvZzUU66o,3213
255
- maxframe/dataframe/indexing/getitem.py,sha256=3LHjTcvU0PSTf_VI6x1MwirIiK_ynLcGb_dHdMPnVBk,7754
256
- maxframe/dataframe/indexing/set_index.py,sha256=Sa49Z0n3bwAM1OTJJPdTSCZb4qMZjyfhiEpi4mALviU,4195
257
- maxframe/dataframe/indexing/at.py,sha256=cGzJ3eM_kVIYDPf24JQxbhrRNtb2urscMtV0XUKzWkw,2217
258
- maxframe/dataframe/indexing/rename_axis.py,sha256=w5B67qlcsdjNhN6OZnov5L5ovJXpu_Oqpux0AP0elzk,6302
259
- maxframe/dataframe/indexing/add_prefix_suffix.py,sha256=tSNslK43yx9tOieXcEuWamW7HWysxSoqqEM4p5NN55k,2966
260
- maxframe/dataframe/indexing/insert.py,sha256=GG9VGNozKDdeREdtsQJ6WztFUwuYuBP-LW1Lv4RftN0,2911
261
- maxframe/dataframe/indexing/sample.py,sha256=Dm3qqFa2nL0A24rSrqDs_4U1m9a-noWQMp_CNE-Suak,8171
262
- maxframe/dataframe/indexing/set_axis.py,sha256=n5obYjkg-YKSOGHA0gfM25qUPGcGHBeeo-uyvhYCI34,5530
263
- maxframe/dataframe/indexing/reindex.py,sha256=mrDBxDZwbaqhjwy_fWGRtWI6MhJ6O1sR1ANhCXuQz8A,19173
264
- maxframe/dataframe/indexing/tests/__init__.py,sha256=FEFOVLi3o2GpZoedTtLYvbie0eQBehJIjtCrWca2ZHw,596
265
- maxframe/dataframe/indexing/tests/test_indexing.py,sha256=AcvF_exYVA6pf2giNzSAYfjAODbf207UtKSpTG68ssQ,15611
266
- maxframe/learn/__init__.py,sha256=ii-8fJO-ubA3wRej1S1jXsb62zrS5MaAWc2gqQAAHFw,632
267
- maxframe/learn/core.py,sha256=JeKLITsz1WrKOTR6Air2lG28MtjamWtFnal4ynvprNw,756
268
- maxframe/learn/utils/__init__.py,sha256=zpkZ-HBwv91vyMeBVs59J_u0uVQCXUkEzo_pW2h9q00,646
269
- maxframe/learn/utils/core.py,sha256=_tskQMfdvr5VAV68fDzM0DSVF2S7SMDnNXA8j_gHmGI,1029
270
- maxframe/learn/contrib/__init__.py,sha256=huq1EWKFZZxmnUKxc8-gn2KPh_mrNTiaRxMtPNvlv7Y,662
271
- maxframe/learn/contrib/utils.py,sha256=k5jlwY8pru_PD8olOBOsMcBLeo31NMx53TjJmSvbvy8,1662
272
- maxframe/learn/contrib/llm/multi_modal.py,sha256=c37w0yhEDK95zCVXtRVdHFaJ9Lq8wmmwDi9f_dp0kSk,1446
273
- maxframe/learn/contrib/llm/__init__.py,sha256=n9xvRXQEDWt5DFl1rAkDDBoyybAe7qExGR5M_-yDTzg,648
274
- maxframe/learn/contrib/llm/core.py,sha256=b-STLC2PsjDAnn1KP5KpGKrpgVUXqscuOSf40xttDuo,2006
275
- maxframe/learn/contrib/llm/text.py,sha256=l-I2U6lrGPEgplpnvoP2YPfD566xSnYXfMzE2nJlTiI,1422
276
- maxframe/learn/contrib/llm/models/__init__.py,sha256=L3-nQSRCfmJLlMPdn3cZrUiLm2llVz1qnae-ehElyGY,660
277
- maxframe/learn/contrib/llm/models/dashscope.py,sha256=BE6Dj8rEocLGSm9UD-Usofdzs0QbWrQ4-iOuFaOKjjE,2298
278
- maxframe/learn/contrib/xgboost/classifier.py,sha256=BgDRqInNhe6YvC4026vRq4DU9lL6vVDiCWJFFON9If4,3886
279
- maxframe/learn/contrib/xgboost/dmatrix.py,sha256=r-3JfQNwv8Qgi6zxwSVlxolv8K82paofCBaR1u860rs,4742
280
- maxframe/learn/contrib/xgboost/predict.py,sha256=BlFKaM0Fdw2BeUtxVyNtNTjwiXqjJNZjP0lbs5SNtjI,3756
281
- maxframe/learn/contrib/xgboost/__init__.py,sha256=kbYrokjDXjMBqRka5NTkUjU5zrNUoT_TkTyuW9G5s-0,899
282
- maxframe/learn/contrib/xgboost/core.py,sha256=KHPi--bAbWcd4bX_Nfuh3k9Sl-e6BW9Ck7PyIS9veUU,8035
283
- maxframe/learn/contrib/xgboost/train.py,sha256=kgxNkmkgoH7P4w-eO0oLOVYNe-s3_kYnkPOS0UmWfv0,4528
284
- maxframe/learn/contrib/xgboost/regressor.py,sha256=0Wuyt2nxyVqp3AHl4aro0WdXe0YhtXIcbJPTdboy_AI,2313
285
- maxframe/learn/contrib/xgboost/tests/test_core.py,sha256=0Q3A1EFW30vsQLl7bSTTuw-ldlLEO43ljVSJBb8j1LM,1406
286
- maxframe/learn/contrib/xgboost/tests/__init__.py,sha256=FEFOVLi3o2GpZoedTtLYvbie0eQBehJIjtCrWca2ZHw,596
287
- maxframe/learn/contrib/graph/connected_components.py,sha256=JRLdmyryWas1W3mE_sIn5eX1rU4N_ycYtLrEInkbxlw,7152
288
- maxframe/learn/contrib/graph/__init__.py,sha256=oJZ8FJcGcbaRwzY4O8BKLZkXBqhhYgPC615oJGFqJpY,652
289
- maxframe/learn/contrib/graph/tests/__init__.py,sha256=FEFOVLi3o2GpZoedTtLYvbie0eQBehJIjtCrWca2ZHw,596
290
- maxframe/learn/contrib/graph/tests/test_connected_components.py,sha256=13z_AulY1rhI2owu5rorcj4CwxxzKlJGuQWF6n2VC90,1609
291
- maxframe/learn/contrib/pytorch/run_script.py,sha256=Joh0gwukGf3kqfBYRxL34hQjbULT6s3vNnmBdJ6NZP0,3111
292
- maxframe/learn/contrib/pytorch/__init__.py,sha256=koagbwLwH1VNLTWYx29ckatBChZ_f9wFcflB4tGYYwg,687
293
- maxframe/learn/contrib/pytorch/run_function.py,sha256=oMDMVqDFQJ5d8DllZrqqRmBT2lx1cTmAv0hdQlO2GrY,3244
294
- maxframe/learn/contrib/pytorch/tests/__init__.py,sha256=FEFOVLi3o2GpZoedTtLYvbie0eQBehJIjtCrWca2ZHw,596
295
- maxframe/learn/contrib/pytorch/tests/test_pytorch.py,sha256=ztAli4QwNUDfvM7M2LulJItFNWlUDFc_MByDF2KAcTI,1402
296
- maxframe/core/__init__.py,sha256=nHHLxzmvyJQC9870XzBjEQmOIzv1CZs2FIO8ntNgd34,1457
297
- maxframe/core/mode.py,sha256=uRzQDTu471APFDOx12NkTgZiPB-YiCuPhmakhEtIz3M,3011
298
- maxframe/core/base.py,sha256=3ZNLtl0jZWY5ZIwmIJF1-khF-DYxoeHxAMMiOCwpaBA,4535
299
- maxframe/core/entity/tileables.py,sha256=nPBdaJz66t_UWqO0utp7P9DPs5WAlx3lM4TXbgGHsQU,11271
300
- maxframe/core/entity/__init__.py,sha256=9erZEQzE07BfJrQJDcEyHPo_XCIi5bJkKW3NvKhJhRo,1075
301
- maxframe/core/entity/core.py,sha256=t7Ex9Yb7A1h_XwyRG88Fx4ZOai-NQKi2luRVS_jFPEo,4018
302
- maxframe/core/entity/utils.py,sha256=IuNgFmBQFRioAA1hgZe6nTEggOmDY-iooZqncQQrV28,942
303
- maxframe/core/entity/executable.py,sha256=0lc5113ASliBAAb59hT8n1qpyajdSa5p2lK3u79iblE,10956
304
- maxframe/core/entity/output_types.py,sha256=Jrro-S4iI7BfaSe9hTq3zIAxG-hBENMU-hlN-kL5d8o,2536
305
- maxframe/core/entity/objects.py,sha256=EnS0F2ageFTEvNfylqp21LTfTv3Q3p0X0Ur6HgWr2co,3781
306
- maxframe/core/entity/tests/__init__.py,sha256=FEFOVLi3o2GpZoedTtLYvbie0eQBehJIjtCrWca2ZHw,596
307
- maxframe/core/entity/tests/test_objects.py,sha256=-HS2dux6OdmwtMY6GRxwASq2gPSRY5S9YwTqeG-dGaA,1349
308
- maxframe/core/graph/__init__.py,sha256=tqUUWDOXp2KFjO7zv1dN_-ttE-ef09-S1GNt8EQ35Bk,765
309
- maxframe/core/graph/entity.py,sha256=3ifzsEDIxzDjeM9MhlSwgz92GuaEEoCVWxEkEu2xIgE,4863
310
- maxframe/core/graph/core.cpython-38-darwin.so,sha256=di-NDCaA9HcwlWlaACaPokn35BscwoUezhaL160GmFA,685712
311
- maxframe/core/graph/core.pyx,sha256=kyqE5-X9Tc82wU4N_zsf8jNthAHWHTVRNFQWNNbzgpM,15923
312
- maxframe/core/graph/tests/__init__.py,sha256=FEFOVLi3o2GpZoedTtLYvbie0eQBehJIjtCrWca2ZHw,596
313
- maxframe/core/graph/tests/test_graph.py,sha256=kZfe_SfMOoHjEfXvtVtn0RjK4lOd-tFasxSpfL4G1WE,7462
314
- maxframe/core/graph/builder/__init__.py,sha256=TYHKq5Y8iTRWprw6CZosdtq-NGV7Sa1u1CI6adR9hgk,640
315
- maxframe/core/graph/builder/utils.py,sha256=zSgVV7Y976VkyzoR-dJ5M0CrEdLx_mU2FE4OibuUOvg,1316
316
- maxframe/core/graph/builder/tileable.py,sha256=1rZbjE2WSIBBH3tBcx3puGbaZ2KPBctoxir2lxI3acQ,1173
317
- maxframe/core/graph/builder/base.py,sha256=W_HcLBNwK8NwOuMqYq0B49DCzV6PY7FW0k1FxMbX-VM,2509
318
- maxframe/core/tests/__init__.py,sha256=FEFOVLi3o2GpZoedTtLYvbie0eQBehJIjtCrWca2ZHw,596
319
- maxframe/core/tests/test_mode.py,sha256=2QYqkPl-sW1LKlJF1pxiuMpnAYrbGibZRXHrNcZTO3M,2432
320
- maxframe/core/operator/fetch.py,sha256=88Sc1DYTR0-H-z8DiUP8ZfcNatuRecHksgG0rqDvKqo,1510
321
- maxframe/core/operator/__init__.py,sha256=0IwJltVfYPGSq1cYbHigQ5zY50K3BwIkl3p8llgEC0w,1071
322
- maxframe/core/operator/core.py,sha256=T2YYIleKiFxmufpHF7ELOztlJsYO-Kn4KYhQhY4jRUc,9263
323
- maxframe/core/operator/shuffle.py,sha256=A_w62UxXRKyDNESo4Q0UGmCpuFfPlQXWmPyQGHdpz3A,4746
324
- maxframe/core/operator/utils.py,sha256=CVVamZJwbnequxDZmYcPLt4rcfAn8s77xk5hlr8eXh4,1706
325
- maxframe/core/operator/objects.py,sha256=lEicZmIsR2sgWsH3oAeeYMde8C0TYeu2vkAyGj8WUVM,1965
326
- maxframe/core/operator/base.py,sha256=IXBJ0Nd8JAcnwN8FQ1H-QXiMRKAz2_LUZstku7Msv1E,15336
327
- maxframe/core/operator/tests/test_core.py,sha256=57aICnc5VLqdVK7icAORTWC81bSjBxeeVWIJcha9J_0,1691
328
- maxframe/core/operator/tests/__init__.py,sha256=FEFOVLi3o2GpZoedTtLYvbie0eQBehJIjtCrWca2ZHw,596
329
- maxframe/config/config.py,sha256=3E7VsRV-IVJ8lu0SDU4NMdizuJBVEu0uh_uUFIFOzBU,16280
330
- maxframe/config/validators.py,sha256=UjbxMKZcDG98-9uCQESm_V56d-VUD7kQGV0KJghVbj8,2511
331
- maxframe/config/__init__.py,sha256=mkW-3nDoNFlRIECv2WbZBv71of2X4KmTUpXK2zuUFjg,683
332
- maxframe/config/tests/__init__.py,sha256=FEFOVLi3o2GpZoedTtLYvbie0eQBehJIjtCrWca2ZHw,596
333
- maxframe/config/tests/test_validators.py,sha256=U_7yKSl0FdVdDwKU1EsnCzNWaOXi8xrIC08x7hb_O4c,1240
334
- maxframe/config/tests/test_config.py,sha256=iddxMP_OfRtcgVtXi42VanLF7CkDy_IwASDVZA9PHds,3283
335
- maxframe/serialization/exception.py,sha256=2Ubi2ld5XpduqAln26q0T67XLj-OpdwW1Z-nyC_wtCI,2993
336
- maxframe/serialization/core.pxd,sha256=eBrSXiAPlX83Kbwml5IKJvqsIT03lPCeS6is9HplLiU,1501
337
- maxframe/serialization/pandas.py,sha256=56qngiE78mwHw7srbDE_rnN1XxgX34B7wdAhDJQRfaE,8488
338
- maxframe/serialization/core.pyi,sha256=a3CQxlJv5aYyy__VNKEq5XsaHE-n0MPKE_9CcWu8Q34,2142
339
- maxframe/serialization/arrow.py,sha256=VnGxNLU9UV_cUPTze43bEFCIbYLAOZnp2pAwVJbAIzQ,3418
340
- maxframe/serialization/__init__.py,sha256=LrwesIKJ6MR_mhxW7qRXJXohH9waubZMR9-YicGDMUs,936
341
- maxframe/serialization/maxframe_objects.py,sha256=R9WEjbHL0Kr56OGkYDU9fcGi7gII6fGlXhi6IyihTsM,1365
342
- maxframe/serialization/numpy.py,sha256=8_GSo45l_eNoMn4NAGEb9NLXY_9i4tf9KK4EzG0mKpA,3213
343
- maxframe/serialization/scipy.py,sha256=hP0fAW0di9UgJrGtANB2S8hLDbFBtR8p5NDqAMt5rDI,2427
344
- maxframe/serialization/core.cpython-38-darwin.so,sha256=RxGUHpotPxoI9OboVkQ-4b4Cx5G4rLil1oXQ4DXcOGw,1178352
345
- maxframe/serialization/core.pyx,sha256=mqfb7YUd-Vop8wmGJTjziDP59YX2tr1iN6puRmFI7dg,35551
346
- maxframe/serialization/tests/test_serial.py,sha256=fL1ufMU7Lf1fgQ4fwJ0QrKWGQIsw_zHtAQ9zkRfFrOI,12543
347
- maxframe/serialization/tests/__init__.py,sha256=FEFOVLi3o2GpZoedTtLYvbie0eQBehJIjtCrWca2ZHw,596
348
- maxframe/serialization/serializables/field.py,sha256=atVgX-9rsVG1fTev7vjQArVwIEaCRjXoSEjpQ3mh6bA,16015
349
- maxframe/serialization/serializables/__init__.py,sha256=_wyFZF5QzSP32wSXlXHEPl98DN658I66WamP8XPJy0c,1351
350
- maxframe/serialization/serializables/core.py,sha256=drZB6nSOi7P-W-bbZpH2PirlSJNreq44PdlKI6qSEFQ,17509
351
- maxframe/serialization/serializables/field_type.py,sha256=tgaLzbJ9RmzPOkL_iOfl9E8njZ5J7MtRkGLDnY0lRz8,14933
352
- maxframe/serialization/serializables/tests/test_field_type.py,sha256=T3ebXbUkKveC9Pq1nIl85e4eYascFeJ52d0REHbz5jo,4381
353
- maxframe/serialization/serializables/tests/__init__.py,sha256=FEFOVLi3o2GpZoedTtLYvbie0eQBehJIjtCrWca2ZHw,596
354
- maxframe/serialization/serializables/tests/test_serializable.py,sha256=wpdqiKnMYpQm0ztbJqMF7-vFnjYe4zWiSMXJnAFGt3I,10266
355
- maxframe/io/__init__.py,sha256=FEFOVLi3o2GpZoedTtLYvbie0eQBehJIjtCrWca2ZHw,596
356
- maxframe/io/odpsio/tableio.py,sha256=Imt5_o53Lg0kqJwv0rdIkIDkhimU4BPYoyHzFKXfTS8,22452
357
- maxframe/io/odpsio/arrow.py,sha256=Fq5LFyiu8zprCoRs8ITWEn8pIFCZzoYZrL4IDreYURQ,5929
358
- maxframe/io/odpsio/__init__.py,sha256=GVR_nKbpwG7DTEp2oOoNb2lMWudIJBIAQfdQQ_2Meh4,917
359
- maxframe/io/odpsio/volumeio.py,sha256=y3JwUgBryoBFrkPppT7hCf6VGyJDADM0MUlBXmcia5w,2948
360
- maxframe/io/odpsio/schema.py,sha256=U6kHDkRnp3uluMN36ojPQ1SzfiErfdcphJvxUYejQZQ,12980
361
- maxframe/io/odpsio/tests/test_tableio.py,sha256=2yuQnzmgDZpDlhSrLjOcOWnnnRZrTfYcCMhvCQOoa7Q,5746
362
- maxframe/io/odpsio/tests/__init__.py,sha256=FEFOVLi3o2GpZoedTtLYvbie0eQBehJIjtCrWca2ZHw,596
363
- maxframe/io/odpsio/tests/test_schema.py,sha256=7aQE7DytWatDxZxWKDU7TMGrDmSWbVW6k06rJvxxksU,13288
364
- maxframe/io/odpsio/tests/test_arrow.py,sha256=SQ9EmI9_VOOC8u6Rg6nh3IPC2fPbLvJ9HwtpMNDRhL8,3106
365
- maxframe/io/odpsio/tests/test_volumeio.py,sha256=1nsYzEbRAwHJitaOPmCEd5k5vmTPEM_UMRY32VTEH-Y,3572
366
- maxframe/io/objects/__init__.py,sha256=PtpSp5t1rGJ1DD0IjQs6oSHkOxT2JDMLfCaDz8VUCZ8,754
367
- maxframe/io/objects/core.py,sha256=r9X1Cu9FNUdarMFiTPWX_MPcE8AW5e_d_AsFWjdZDP8,4577
368
- maxframe/io/objects/tensor.py,sha256=F0aObDLIi_2ND5x-uVogi2A29kIuyhKtZLyZqxI13iM,2673
369
- maxframe/io/objects/tests/test_object_io.py,sha256=LXPwKX7XYDKPy6AZeLdnfGuW-wfNb5rJunY4MPU8aiY,3775
370
- maxframe/io/objects/tests/__init__.py,sha256=FEFOVLi3o2GpZoedTtLYvbie0eQBehJIjtCrWca2ZHw,596
371
- maxframe/tests/test_utils.py,sha256=imfe7sN1_4EjWuT4qMYMwjOjgL0t5oewyhebBGPDBhY,11504
372
- maxframe/tests/test_protocol.py,sha256=9DWr3z1AI2DUMnLyak91PKSfV_ILkOtwAZPCmM42kcg,6103
373
- maxframe/tests/__init__.py,sha256=FEFOVLi3o2GpZoedTtLYvbie0eQBehJIjtCrWca2ZHw,596
374
- maxframe/tests/utils.py,sha256=KQu_NR6EQ0dCDlJuaeMFTIzmZjovNS2KrBVED5UVVZo,5343
375
- maxframe/tests/test_codegen.py,sha256=GMrnpSb2eyB_nmuv8-_p47Kw877ElKS3BP52SpqZNIQ,2208
376
- maxframe/lib/wrapped_pickle.py,sha256=HJCb8ERK6clUVgPe529vduMmbMVqBlrQ3W8mH3tYcaE,3836
377
- maxframe/lib/version.py,sha256=yQ6HkDOvU9X1rpI49auh-qku2g7gIiztgEH6v1urOrk,18321
378
- maxframe/lib/compression.py,sha256=k9DSrl_dNBsn5azLjBdL5B4WZ6eNvmCrdMbcF1G7JSc,1442
379
- maxframe/lib/__init__.py,sha256=CzfbLNqqm1yR1i6fDwCd4h1ptuKVDbURFVCb0ra7QNc,642
380
- maxframe/lib/mmh3.cpython-38-darwin.so,sha256=CERsmKctZjTgTBtn7I896TM70POoAQXIUtQ2Hbqhz6U,119784
381
- maxframe/lib/mmh3.pyi,sha256=AOp_XqbA5-NwepeeBeG0OFJj5tjEAFLzcViyRNZ0eVI,1494
382
- maxframe/lib/functools_compat.py,sha256=PMSkct9GIbzq-aBwTnggrOLNfLh4xQnYTIFMPblzCUA,2616
383
- maxframe/lib/mmh3_src/mmh3module.cpp,sha256=9J9eA42eKWTl546fvfQPNuIM3B2jpWSADpgIw3tr2jg,11604
384
- maxframe/lib/mmh3_src/MurmurHash3.h,sha256=lg5uXUFyMBge2BWRn0FgrqaCFCMfDWoTXD4PQtjHrMA,1263
385
- maxframe/lib/mmh3_src/MurmurHash3.cpp,sha256=kgrteG44VSftwp5hhD7pyTENDRU9wI_DqLD1493-bP0,8096
386
- maxframe/lib/tests/__init__.py,sha256=FEFOVLi3o2GpZoedTtLYvbie0eQBehJIjtCrWca2ZHw,596
387
- maxframe/lib/tests/test_wrapped_pickle.py,sha256=oz1RLwHSZstXgw4caNeaD0ZgQZvkzDLsx7hFN-NvP7U,1524
388
- maxframe/lib/cython/__init__.py,sha256=FEFOVLi3o2GpZoedTtLYvbie0eQBehJIjtCrWca2ZHw,596
389
- maxframe/lib/cython/libcpp.pxd,sha256=2o9HWtyCMtN9xk7WH_mq1i89IbMPwfZA8yHETjRALXs,1100
390
- maxframe/lib/aio/isolation.py,sha256=2nA16GdOXEUNVVdxQXbmU4YvY6wPG2oSV4z1x9uW6Gw,2761
391
- maxframe/lib/aio/__init__.py,sha256=1_nx7d5AqXRwa7ODzVfL8gH-tsDAH4YyY-JFPC8TA6w,936
392
- maxframe/lib/aio/_threads.py,sha256=tr7FYViGT7nyR7HRw3vE3W-9r3-dZ1IP_Kbhe9sgqpw,1328
393
- maxframe/lib/aio/file.py,sha256=aZF8NkkccsVsOniWMBiPqPSk48bb7zGRPB2BegWRaqM,2012
394
- maxframe/lib/aio/lru.py,sha256=JQ_iG2zdSkTzDSqQCsKuIO136wAvL9aitM_9my4FzXU,6891
395
- maxframe/lib/aio/_runners.py,sha256=A9T_XLxFfugnr_y3ib7reYIQDJlOz9KE5kTmwlChnys,5205
396
- maxframe/lib/aio/parallelism.py,sha256=Lol7pCpsNaX9meebgpOsy0H6UhUu2JKDbRIoIt4CYcM,1235
397
- maxframe/lib/aio/base.py,sha256=wEMTKFKkBTOaKQwlNFolHFTgHbC4f8AJNdiaMTgRbA8,2158
398
- maxframe/lib/aio/tests/__init__.py,sha256=FEFOVLi3o2GpZoedTtLYvbie0eQBehJIjtCrWca2ZHw,596
399
- maxframe/lib/aio/tests/test_aio_file.py,sha256=Bfm-QRifVbf0mQSL_wEkU7EpUPGD6vEuc3LYFRUHQuE,1658
400
- maxframe/lib/filesystem/local.py,sha256=qM0aM2R_fV1BtP7-3fi5KHfGC8r9YyV12LsrsKpbpFQ,3588
401
- maxframe/lib/filesystem/arrow.py,sha256=lxtRx7jEmbur73sMU_g2ZJN2xhdYQSc7nsw4CPGQakU,8411
402
- maxframe/lib/filesystem/_glob.py,sha256=EQVEWqSxKb4gRjurOuL_bn6yaL_QoxeKrdI8-dHBrR8,6535
403
- maxframe/lib/filesystem/__init__.py,sha256=3hgS00mRAE0BU1XrJisoGutk3Tdf7C2uhP2Bm77ycFc,834
404
- maxframe/lib/filesystem/core.py,sha256=Qn-AXV5X8YAw-jh6vyYGLWh6ndo4y09d6_Penk9aiBI,2932
405
- maxframe/lib/filesystem/oss.py,sha256=kRvgDvFYy3lm9sb04OuW145PXIf7RVRsyoAaKeunqUU,5017
406
- maxframe/lib/filesystem/fsmap.py,sha256=b6RleDWUNCB9Ij8kHIw4W6TgvIy_M9ly-p6gnIG1R5I,5262
407
- maxframe/lib/filesystem/hdfs.py,sha256=dl9zBdhuD-IVMsJLrqfttCMZAlvedDto5dzaGGDnEDE,1065
408
- maxframe/lib/filesystem/base.py,sha256=24Sg8VjwxUrwK4Da5ymSJKdd9zyuboh4_AxlactfoEc,6634
409
- maxframe/lib/filesystem/tests/__init__.py,sha256=FEFOVLi3o2GpZoedTtLYvbie0eQBehJIjtCrWca2ZHw,596
410
- maxframe/lib/filesystem/tests/test_filesystem.py,sha256=IKscJNfMtwlS72VntVM2BlDlKabB68ThVdg0JKWUDcc,7348
411
- maxframe/lib/filesystem/tests/test_oss.py,sha256=-2-pfvPSps_NfZgSS3EoWujJsmw5tf4Du7cJHxRMjW8,5894
412
- maxframe/lib/filesystem/_oss_lib/handle.py,sha256=kGo255ddpeSgs8kOSwJ03fS6ZQLLFVmAe3cU4p-OY-U,4842
413
- maxframe/lib/filesystem/_oss_lib/__init__.py,sha256=FEFOVLi3o2GpZoedTtLYvbie0eQBehJIjtCrWca2ZHw,596
414
- maxframe/lib/filesystem/_oss_lib/glob.py,sha256=R9a9stcpPur0lkIx0G8IF6_hlROQaQedvqpLf-B_4ag,4837
415
- maxframe/lib/filesystem/_oss_lib/common.py,sha256=Rz2JDaLFpAXmZWEzOnDPGdRPLhxQukzrPTSmes4A2uU,6615
416
- maxframe/lib/sparse/matrix.py,sha256=a47lVnaiLUr5NLsNoy_02MGdeR4_BTsaTqnImBJC564,7154
417
- maxframe/lib/sparse/vector.py,sha256=oejy4n1j_x4posNkB6EVlC-9WoAeOWvvm2CrKCxCk2w,4809
418
- maxframe/lib/sparse/__init__.py,sha256=XIEKI59-nnD9Gxu5Rr6LiSzhy42EfKfSGNkOd9CBQ1o,18058
419
- maxframe/lib/sparse/core.py,sha256=ihlxpVlXoJCnOnEmf74bUwuEaQA4LLOi1EU1wK1mdGA,2156
420
- maxframe/lib/sparse/array.py,sha256=3bFocbqgE46D9NWpOU-lFp8tDgOegIu78mojVpjx2Mw,52861
421
- maxframe/lib/sparse/tests/test_sparse.py,sha256=OU_Aq2n28rqTDbMRPLcq7Rf1sLgjRJDJ3bCYLszmeOs,15309
422
- maxframe/lib/sparse/tests/__init__.py,sha256=CzfbLNqqm1yR1i6fDwCd4h1ptuKVDbURFVCb0ra7QNc,642
423
- maxframe/lib/tblib/pickling_support.py,sha256=w72oyWoA7LLtFYwU2wgw2J-ckM7BrFXn6W0MzTpss84,2935
424
- maxframe/lib/tblib/LICENSE,sha256=GFqWP6gjbSgxqNcmj0rE1Cj9-7bOaEEqbOHlMPYXwtQ,1330
425
- maxframe/lib/tblib/__init__.py,sha256=c4aVldbxJdS-bFsSDcmDQy_mW0qAcMrb4pHS2tjYhYY,9878
426
- maxframe/lib/tblib/cpython.py,sha256=FQ0f6WTQyQHoMRhgPqrA0y0Ygxlbj5IC53guxA4h9Cw,2418
427
- maxframe/lib/tblib/decorators.py,sha256=bcllK3kVuPnj6SNZGmlJGxTK0ovdt7TJDXrhA4UE5sQ,1063
428
- maxframe/tensor/array_utils.py,sha256=259vG4SjyhiheARCZeEnfJdZjoojyrELn41oRcyAELs,4943
429
- maxframe/tensor/__init__.py,sha256=_vc53_zRm_vauMkZiFVEPRSwcMkU2TpGpEn_4vB3RJo,4648
430
- maxframe/tensor/core.py,sha256=ouSU9TbFFShyvdJkyh9h6AUio97SXphs4-lz_w-7_fk,17945
431
- maxframe/tensor/utils.py,sha256=wCx2ZBk_zmS2lJgtuUUGdqRSkhhnLAyeB0DTlIGZUyg,22411
432
- maxframe/tensor/operators.py,sha256=XiYTFYLuKDMjEy-DZs5HKmcwvNgfJX3sGzIttAqNG8c,3338
433
- maxframe/tensor/statistics/quantile.py,sha256=GYs4dlBwvUTu4-PZ9PnM4JTjzpQkS_8oFcOT85or404,9467
434
- maxframe/tensor/statistics/__init__.py,sha256=FEFOVLi3o2GpZoedTtLYvbie0eQBehJIjtCrWca2ZHw,596
435
- maxframe/tensor/statistics/percentile.py,sha256=U7ssKDJbBVp6i1n1EP_qJ2HomIQJwt73asGrXire3ww,6047
436
- maxframe/tensor/reshape/reshape.py,sha256=wufzBHgqVpmNPNmgr7lCuGbMkghfOUV1q4t1tH2USJg,6453
437
- maxframe/tensor/reshape/__init__.py,sha256=ilMdv8u0POVi4zNzjKQ-iBRPak_tXgJ6aabv7_pHqKc,672
438
- maxframe/tensor/reshape/tests/__init__.py,sha256=CzfbLNqqm1yR1i6fDwCd4h1ptuKVDbURFVCb0ra7QNc,642
439
- maxframe/tensor/reshape/tests/test_reshape.py,sha256=MkXN_ibLMNn_4vc8Jsq39icqTIYV0H7-zrIJmuYvibo,1103
440
- maxframe/tensor/misc/astype.py,sha256=zeLfyWkuc1LxMIiIO6ghZ_enR7IPgq0Hy4O18h8JQPk,4394
441
- maxframe/tensor/misc/where.py,sha256=fMGBfppo4QToHX-B3rtTorstz83m8uWWhOQj6Qbu34U,4000
442
- maxframe/tensor/misc/unique.py,sha256=EO7EYn0mHr9aZ7hVZxwiKNSPwbXvrpDWRWP5PksfgxY,6721
443
- maxframe/tensor/misc/__init__.py,sha256=I4dwtIkgdnOkFLGp9chMZwDCteiKAAikygYz_b4RY2c,1149
444
- maxframe/tensor/misc/transpose.py,sha256=a67BbXWt4rc0yh6yzljLQkdX0EyLxTcdWuB2n99Fnpc,4020
445
- maxframe/tensor/misc/atleast_3d.py,sha256=ONXluuYTLyaPwii8PF6IG_o5f6QRQRue6uxsPeou9mk,2392
446
- maxframe/tensor/misc/ravel.py,sha256=pJkez1NHoLqVMBPm5aA8uMNFeWURTAJV_iU98Vqr-50,3173
447
- maxframe/tensor/misc/atleast_2d.py,sha256=wunxdRTd_2ZfAZiMt7QhOEII_f_Z8lwSgy0ncMT85eI,1958
448
- maxframe/tensor/misc/broadcast_to.py,sha256=p0hi128OWlj3lXmacvxMhZOjUCq8fiA3yjy9nESZXgE,2686
449
- maxframe/tensor/misc/atleast_1d.py,sha256=1-IdLYOg5zGCqp_RZ1X3Eq1oTb6UusuHVGW7mW5ayNY,1872
450
- maxframe/tensor/misc/tests/test_misc.py,sha256=syedkA0jMjevYouCL3vCMuWpJ-3hfOc28wKXqF_MMno,2843
451
- maxframe/tensor/misc/tests/__init__.py,sha256=FEFOVLi3o2GpZoedTtLYvbie0eQBehJIjtCrWca2ZHw,596
452
- maxframe/tensor/datasource/from_dataframe.py,sha256=X6cfwLT__VGZLoy3U3tjehPnO43CnyN4kK4edDtLFrA,2503
453
- maxframe/tensor/datasource/zeros.py,sha256=vMJ44GeCPOxtnj-NnKvkbb4u3U_yxcEhEJa1-ADt1fM,5672
454
- maxframe/tensor/datasource/from_dense.py,sha256=N2FVRhU9uh-w1W8W9zvpTQVxGgskSdHZbVh_rJjC6QA,1607
455
- maxframe/tensor/datasource/scalar.py,sha256=GzKdbBLFdq9aeWrrtZ3BT5514fBAi9A-QJ5M-EmfUX0,1156
456
- maxframe/tensor/datasource/empty.py,sha256=e6XYQvFsyfnGqIrU216_Q1M7cYxwkQSOoZiEhtOT8nc,5850
457
- maxframe/tensor/datasource/__init__.py,sha256=qU_GFAuMa_U_zrV6HcE9fsgO16EXVsqhh9j5Fxe6HFY,1146
458
- maxframe/tensor/datasource/core.py,sha256=VpjxIcWp_O00smfvDsRIQ48d3HOIJ81hkn78S3H2n_U,3411
459
- maxframe/tensor/datasource/full.py,sha256=uCzq53CA7Bg7HUO72wTRkcckQ_hMh20584ZQZ1fxQ4U,6276
460
- maxframe/tensor/datasource/arange.py,sha256=jqUF1P1Smu2Bl1j5uOe_MM1EPft8heJu8WSmDmyFiDc,5476
461
- maxframe/tensor/datasource/array.py,sha256=uWK2gJSYMGTBIgXdF_-QZB17fPemyCvBoV40AVPwlqA,13054
462
- maxframe/tensor/datasource/from_sparse.py,sha256=ki_cSjqrUccChg2uqlXy1xF10c4YANA4QP_UDl_LZnA,1546
463
- maxframe/tensor/datasource/ones.py,sha256=ER4NJ53HuGlSsz-cRXz9YSwZkokdc2wkBKdB2G1BMX8,5009
464
- maxframe/tensor/datasource/tests/test_datasource.py,sha256=6NWN9OgA-MioLjqhzTNIeCIP9k9i3ziPYbeyxPygPwY,7653
465
- maxframe/tensor/datasource/tests/__init__.py,sha256=FEFOVLi3o2GpZoedTtLYvbie0eQBehJIjtCrWca2ZHw,596
466
- maxframe/tensor/rechunk/__init__.py,sha256=pQ4vh6rNzxjIkxrWTxXjAcTDmUw3961-H1f__-lJl6A,797
467
- maxframe/tensor/rechunk/rechunk.py,sha256=ltvGlUQxzoHSE7bC6J6uQ8sO-YhuFpxmj8-ArJJXIoY,1392
468
- maxframe/tensor/merge/concatenate.py,sha256=q0qVpizcU7E6op6D54bF4bl2eMLIJOOwb8AkG1jrDCE,3213
469
- maxframe/tensor/merge/vstack.py,sha256=XGyubfPwkauUQ2zw4D9qd5uLLSRw5LgadHBpEQH71V8,2268
470
- maxframe/tensor/merge/__init__.py,sha256=NCuoHVwBtVUQnl8-0ph9cT5ARRn3pTdqZt76-XSvpvs,686
471
- maxframe/tensor/merge/stack.py,sha256=4ZMVqtJQ0nQtbtnJKTX0Z_fSUn8slLLSO56mFT-b0gE,4145
472
- maxframe/tensor/merge/tests/__init__.py,sha256=FEFOVLi3o2GpZoedTtLYvbie0eQBehJIjtCrWca2ZHw,596
473
- maxframe/tensor/merge/tests/test_merge.py,sha256=PfZ883l7xHURs7F1PQl-jg3Kf8IN4qzBMlYv3K5_440,2210
474
- maxframe/tensor/ufunc/ufunc.py,sha256=D39r6-KVwlPkRr9d3CLwHqO4dWgXsqRQOYZCBiKEEUE,7183
475
- maxframe/tensor/ufunc/__init__.py,sha256=_GZckaiuuxNQdJS2tCMsgrxjEevJ0Irg4CTFDU_kQTI,795
476
- maxframe/tensor/fetch/__init__.py,sha256=mGwv_bpJXkb_jgg1YCpOmLhaNU_rWBNZdPi5dr2HGNo,647
477
- maxframe/tensor/fetch/core.py,sha256=03ZjWmFLwTtawJtY3qVwSFRbvA2TXydYO1GbOnnKhp8,1818
478
- maxframe/tensor/reduction/nanprod.py,sha256=m7au8rYO8jgr4kYf0Tp5EizZUaspvrHgDJNFYYIPWI8,3314
479
- maxframe/tensor/reduction/max.py,sha256=Z6TQSwaDcOmSstjKjntqKfinvF0XWNTGYDvvV-AIxgk,3979
480
- maxframe/tensor/reduction/allclose.py,sha256=8C9E01aUZL-rGjlx_S1zN504peV_7vjjQA3DZSPElOI,2942
481
- maxframe/tensor/reduction/nanmin.py,sha256=hq3TE7pM9HGakNEOIE9QPHG2O8soa2uPBrVsVHYsYyw,3947
482
- maxframe/tensor/reduction/nanvar.py,sha256=hRrorXczfi-wrQFjeSAmomVL5Dn1esXNsltglFA4l3k,5470
483
- maxframe/tensor/reduction/count_nonzero.py,sha256=bnkLSm1mEVTXJmiT9gkqCeLbTbk8Am5vghtT64mx2Ak,2754
484
- maxframe/tensor/reduction/nanmean.py,sha256=J63uIJxq9RA1RRd1mJc69IM0FBX4K86hrsXgIfZ69cQ,3971
485
- maxframe/tensor/reduction/nancumsum.py,sha256=r47LTZ65-m6u1vr-zoxKw50Q3wOg2gwWy3ewHtV1jRg,3283
486
- maxframe/tensor/reduction/nansum.py,sha256=2x-RMKHxN9ikE8tm455wpKtYT1i-lKtuE03mKQopzA0,4066
487
- maxframe/tensor/reduction/std.py,sha256=PDVJRjr7G7gQQjywhfvbIVsfUAep1-cjjH49mi346XI,5135
488
- maxframe/tensor/reduction/__init__.py,sha256=RovmlFtMDGKXS9GKdNlb0A0oQmilzx1qSm485cNS83o,2318
489
- maxframe/tensor/reduction/argmax.py,sha256=qj0y7hUKPVqItEqw7Y6EP183Ws7FCiiks54K_E2mN08,3109
490
- maxframe/tensor/reduction/core.py,sha256=3uekPz3RdKS2HINqtLOY1Yzkk8BqMuKYlXBfY3OdWgA,5089
491
- maxframe/tensor/reduction/all.py,sha256=UX8WvzKd8s2M7OHzbirK63RH4XVRNmkU10tHNuq3W3w,3467
492
- maxframe/tensor/reduction/nanargmin.py,sha256=ncJEvf2dZxF6URk4Yv3kadDnXjzevIJBD9Rz_PEckG8,2203
493
- maxframe/tensor/reduction/min.py,sha256=U59kxhcL5JsYVoXRfUmCmY8e_MfBKU7WRIPBFCuxUSU,3980
494
- maxframe/tensor/reduction/mean.py,sha256=JSDPHYzfS4Z3sKVCN0BeERIap5qEKorLWKTXnWY3C0s,4379
495
- maxframe/tensor/reduction/var.py,sha256=LQa7FZHAfD0mtR52qkfPYO9tV0oFDfF8yNeFO6a5pgE,6304
496
- maxframe/tensor/reduction/nanmax.py,sha256=nce8mD6zIsC9LSQ0fiaRBG6gBL8tNbQpRCDDrP_HaqU,3950
497
- maxframe/tensor/reduction/array_equal.py,sha256=bLbKT1tGSKfqp3L8-AzWEdhBYkEnzUHvyWHEfP9ouEk,1795
498
- maxframe/tensor/reduction/sum.py,sha256=SupE9cxNTGCRZPdS9i-a40U4rRsi5ruc4FZsJJgLGJ4,4246
499
- maxframe/tensor/reduction/prod.py,sha256=36zD4VUCHGRv2qK_xzYubg_AbzGG1hq0qsf5drbaVCM,4406
500
- maxframe/tensor/reduction/cumsum.py,sha256=0L0EsYMwx3eL597adEfLG2oClbDf8aHDpGUbde8JWkI,3491
501
- maxframe/tensor/reduction/any.py,sha256=c70fVKGKPfNGo__xpDLXY5gI4kbikYCucBpiCIaTKO4,3571
502
- maxframe/tensor/reduction/cumprod.py,sha256=bdZwUBnycekFXogtNhSDTtfuiDaF-UDmTxYwSriO6fg,3272
503
- maxframe/tensor/reduction/nanargmax.py,sha256=kYcVcDhWLW81wUg6ov0iDFE-c1EVt8QHEljYs2owwbA,2481
504
- maxframe/tensor/reduction/nanstd.py,sha256=ZPHxKLowx2FrQS_DI5VDeU3SvyBzi53-_87nGOJdQPI,4891
505
- maxframe/tensor/reduction/nancumprod.py,sha256=_ri_LhT0lH4jPxFdSHh7gjAMRF9_0rNlCcAbPs_PpMg,3121
506
- maxframe/tensor/reduction/argmin.py,sha256=OVR6chF48tQEpoTYbQGWGF6StqRFp9vmwNRtuToQdrg,3099
507
- maxframe/tensor/reduction/tests/__init__.py,sha256=FEFOVLi3o2GpZoedTtLYvbie0eQBehJIjtCrWca2ZHw,596
508
- maxframe/tensor/reduction/tests/test_reduction.py,sha256=EbqJob7OysLfX7TRpL_owIAknwQmzbE7n83brxW7Aik,6178
509
- maxframe/tensor/arithmetic/copysign.py,sha256=HficiUZ-cdCbkoG9Rs3iz54tgbrHLZUsFa36TFZDn7s,2505
510
- maxframe/tensor/arithmetic/spacing.py,sha256=x_7pCRUX5wUBFsSMjH_RrkwKWx-303Mli0BbHi5BwJA,2313
511
- maxframe/tensor/arithmetic/arctan.py,sha256=0neaMOGmcUwhTOV-z93UFSP4i0EDuDaWCb2Suj6kzFw,3562
512
- maxframe/tensor/arithmetic/arccos.py,sha256=X8ZyDw-IhNX5Dp8u-jwZKh6ygY37N-mRTuZdqwUqn3o,3512
513
- maxframe/tensor/arithmetic/arctanh.py,sha256=pMCZ12fu1hHHFxpDdnC3lqQJwV2IQxt0kM8_u8liTCw,3009
514
- maxframe/tensor/arithmetic/trunc.py,sha256=ZaBbQHeFHk5iKd3KAuSHNLnvs98xtTuJA0GpTmTjVCk,2303
515
- maxframe/tensor/arithmetic/setimag.py,sha256=_mA1kg22_zeDE5cq1imtOn_HAg5E3sQ0fcuwSeyCLiI,944
516
- maxframe/tensor/arithmetic/signbit.py,sha256=MusMyoz_ptDqIOT1UcR97ur97n5qYlypTv2Lzm6Nqgg,2112
517
- maxframe/tensor/arithmetic/logical_and.py,sha256=MoxRmCLxwzclQ20KNEX0kBfGQ1kGrMOqE_fiwFiSuTs,2570
518
- maxframe/tensor/arithmetic/tanh.py,sha256=ls2tFeBTesSnISpu4TFEXXlsgBYbf9lauTYecSUUj8g,3045
519
- maxframe/tensor/arithmetic/isinf.py,sha256=G3A4WcwAyawBHT7o8LcdiA0h2XUn0qAElXwl0LQ_ooU,3462
520
- maxframe/tensor/arithmetic/equal.py,sha256=BjfJ4lZxBfKSO0FUo4R6sLVn7eXbcu2MoJUBqO3qIgs,2393
521
- maxframe/tensor/arithmetic/nextafter.py,sha256=24O5T2bSKS6EZVr2xjYTlc-c_J_91UOu7AwC7sQYGrk,2330
522
- maxframe/tensor/arithmetic/fmod.py,sha256=k4c5TZ5-q5z5hCdRfoSzCvX0tcxtqab8MDyuEzk8CNI,3212
523
- maxframe/tensor/arithmetic/add.py,sha256=1Q2bVFnIuLQpQt3sUNTkveaNtusUE0tkz5K3rfeEJ8c,2567
524
- maxframe/tensor/arithmetic/hypot.py,sha256=fA3AucyJ48HBJn6uSOXz9xvla8hZaD8dDADHALkq2Eg,2521
525
- maxframe/tensor/arithmetic/isreal.py,sha256=okLWjO7j6p6zdno1FhL-KQhw_3e0kqPzTxAQncwU8V0,1650
526
- maxframe/tensor/arithmetic/isnan.py,sha256=QCTt2dgdZV07Aexf6LSIQQaHownUfiQSMfEd4MuIby0,2689
527
- maxframe/tensor/arithmetic/subtract.py,sha256=z77Eym7vvpFGnhx2QPPJjFHy9FowHrN1mAH5JxTud-g,2495
528
- maxframe/tensor/arithmetic/iscomplex.py,sha256=hsixUatjR2uWTnrM5nMrc-_mNtfc65Be1SJQPNbeXLM,1704
529
- maxframe/tensor/arithmetic/positive.py,sha256=ONyOz9jTxEck-22-kQROcwNBvNY_H2oyH-CFRnhHJxQ,1312
530
- maxframe/tensor/arithmetic/sqrt.py,sha256=5hTDHJXBDBUOoCaRxORSVIJDwVDWepUHBBzOFa8aKRQ,2805
531
- maxframe/tensor/arithmetic/less_equal.py,sha256=2OO2DvqtaEQSRBWxHXqXQzJHm89hpvxAjuHILnkxi9U,2293
532
- maxframe/tensor/arithmetic/rad2deg.py,sha256=vXYgPnjqBQ_iumKNMozPkLoIB43xvqoo4iA_dh9Onh8,2102
533
- maxframe/tensor/arithmetic/log.py,sha256=UYoGbsTmTz0OpAvxTPOuWN19_PlyqaHQn3MPCHgxIyI,3150
534
- maxframe/tensor/arithmetic/negative.py,sha256=uScOGtrUfD7F9MlAZIqL_NtXNr-dnsapIaQIXnDBPCI,2088
535
- maxframe/tensor/arithmetic/angle.py,sha256=woY7rq9doGFNwolfIq0kJbjHr5QKCRkERFSEKFKOr5w,2137
536
- maxframe/tensor/arithmetic/multiply.py,sha256=rSf4FNJX6sf6VKgE-Q56xwg5rmTPxeYOduZA4_HseUY,2481
537
- maxframe/tensor/arithmetic/fmin.py,sha256=ufO-mKjIquNlVhBKxGeOmmz33QusHJF0BRjE3MbuvXI,3567
538
- maxframe/tensor/arithmetic/degrees.py,sha256=rb6D8s9XybocT2wdAKs0UDUzvNBN4V8qtOTagTI5UMQ,2375
539
- maxframe/tensor/arithmetic/logical_not.py,sha256=-wIcLSpDtn8m-IOzG6V6E-xVc5JltTRYPpxSoBaAOGI,2343
540
- maxframe/tensor/arithmetic/absolute.py,sha256=CWMt4aHh_jf4bhZDza6IzoryG2nTWPo1RApWi4RmW3o,2210
541
- maxframe/tensor/arithmetic/cos.py,sha256=jZEs87h6sPI4pMK80GP5H_shTzv1BHpXq05KVS0mrhQ,2730
542
- maxframe/tensor/arithmetic/tan.py,sha256=sfFGbl_QymxlrlbKNFZuV4p_QYp9CUKr9s-wsiDr7zA,2843
543
- maxframe/tensor/arithmetic/logaddexp.py,sha256=nf6-IctDrgaFRlo3Yq1TsYhHb083kEk30LYwJMDgiKg,2729
544
- maxframe/tensor/arithmetic/modf.py,sha256=6toE6bLqFT7njpoKa87FeZN-BUXtQEEen3pnmU-kCTo,2583
545
- maxframe/tensor/arithmetic/abs.py,sha256=cKBp7ePe0ZhPRxUAC5x3uKJwVuiu5qF-I5MuDuTVyNs,2180
546
- maxframe/tensor/arithmetic/ldexp.py,sha256=nGCBHz15v91VbdEGgWIHvi1-KHl2eytH5atOe05iyHA,3165
547
- maxframe/tensor/arithmetic/__init__.py,sha256=Sma6Bk9JBWS-l0tr3HMR_NtXOcZrLNX2SCkmAl8oVcM,9380
548
- maxframe/tensor/arithmetic/divide.py,sha256=IksLUTW0HTlcyHe6lFRXgcYv590w_BgbzooYaBKAPI0,3710
549
- maxframe/tensor/arithmetic/float_power.py,sha256=NK3saigtM6cUlmQwSus4ud2_U77zMB90kmMimqWLM6s,3364
550
- maxframe/tensor/arithmetic/logical_xor.py,sha256=hgCcFkAVbf1natJiZ3fNiba2PFzm_AmQqLCmKRHjcf4,2890
551
- maxframe/tensor/arithmetic/core.py,sha256=2fp-EzIQ_-85YvFYwwGMh8bnjeQv3dq__1xx1MQ9_P8,17315
552
- maxframe/tensor/arithmetic/floor.py,sha256=neX-K79Axb41YFPLYZWmdUysYyzc0prtqre0zeBM95A,2442
553
- maxframe/tensor/arithmetic/real.py,sha256=cAtf4ID5STaSaTNPdYw-ioSKIBO-09VoSWSnnv8wM-8,1831
554
- maxframe/tensor/arithmetic/around.py,sha256=6gop_55BB3SVYvaxhZ6Y1qBVxScMVWfnv-C1BxkA_4M,3826
555
- maxframe/tensor/arithmetic/nan_to_num.py,sha256=CA0q3CCh0Ya9EOlGDI9HgdxbW9agATThr-bY0hijdVQ,3249
556
- maxframe/tensor/arithmetic/ceil.py,sha256=0u0u3pD2XF8aKxkJQZiPpGjntIgf5q6PmKbxgqAGmRo,2252
557
- maxframe/tensor/arithmetic/isclose.py,sha256=0cb5-5HMg0j6X9U_iv7kNgtjR2S013eo0et__HU-U0I,3695
558
- maxframe/tensor/arithmetic/maximum.py,sha256=sc4EdXDzZ_Dq50Ik5rh_Vg1hXfP-RS-YlfMDzFGzZGA,3694
559
- maxframe/tensor/arithmetic/log10.py,sha256=kHkxvGYbn2JVYwYjQ2RbKN2VbtrzPCnhYT_7ESLUpsQ,3024
560
- maxframe/tensor/arithmetic/frexp.py,sha256=yJ9us5ilLUkVxLnc9QB2PVhEaJGJIXDctaYNlv7yyZI,3146
561
- maxframe/tensor/arithmetic/rint.py,sha256=5y6frd77gmBHlPptYKZ7agiOsUyB4ZEDorvS25nldjo,2115
562
- maxframe/tensor/arithmetic/truediv.py,sha256=75JiDtJ4lur4T9_gfzZ23Y23Kb8ZpZ08P-JpmGoxTJA,3347
563
- maxframe/tensor/arithmetic/imag.py,sha256=d7SHwaA6rjAZiu6qsrZaFauhUXSe14xeztqqoVrLSaE,1768
564
- maxframe/tensor/arithmetic/minimum.py,sha256=vP2cPrLb5F6UnjkCehXWNoXWEchBNpelPwdhu2DbhDg,3695
565
- maxframe/tensor/arithmetic/utils.py,sha256=VCuNTsHRCKjMEcOn0aqt4Qod_f4ou62fTEdUyAGz07Q,2239
566
- maxframe/tensor/arithmetic/exp2.py,sha256=-THR9SVkjeDvfeCtfaX6xABZ9wNpWlftf4RHxGudV_M,1997
567
- maxframe/tensor/arithmetic/isfinite.py,sha256=mK28HfTHdpvoen2ZjrqAw7Ou22QNTEHnlG4oBKxndus,3598
568
- maxframe/tensor/arithmetic/fix.py,sha256=t0L23yccQNMfV9QXfKTgIu1Q05asv-Lh3alz629PTBw,1760
569
- maxframe/tensor/arithmetic/expm1.py,sha256=VxbLWfR5xWEJfVhKblKVZUNDoMCBikxFVneRlP7Uosw,2421
570
- maxframe/tensor/arithmetic/arctan2.py,sha256=iP01cPOaiLGcj9BNS4giuapxhcgho99Bt3aaDq4ILMo,4443
571
- maxframe/tensor/arithmetic/logaddexp2.py,sha256=wzKVw-dhdb5SSCyPWvt58UJb_mqU9zsyV22KGuXcc_Y,2745
572
- maxframe/tensor/arithmetic/fabs.py,sha256=cuin4b9CGC6u9-RoOvZrzJdLsALJf9V4xqWMZI8hcCA,2430
573
- maxframe/tensor/arithmetic/lshift.py,sha256=Enk9A_cRnGuv3RUvKIIPIxZ3NE74K-K4T66K7yuK86U,2634
574
- maxframe/tensor/arithmetic/sinc.py,sha256=Srp-ny7zMFazmtuSqZyK2HFDKiZN6g_zKYH6xQLSOeI,3487
575
- maxframe/tensor/arithmetic/arcsin.py,sha256=5ZD5GxTX8vvBDAlck8hQP0UogPoIvlowwLzX8b9SeNc,3244
576
- maxframe/tensor/arithmetic/bitand.py,sha256=_ILzTVD8DPH9P9t22XvxfKny_P1pw6oNTd_LL6Cdftg,2917
577
- maxframe/tensor/arithmetic/floordiv.py,sha256=1x-8__o77abJ-NBTJ1f4-gzyAijlyZhxxP4LtZ3WsXM,2987
578
- maxframe/tensor/arithmetic/bitor.py,sha256=5Xv8rQmmMRwLzQpZ_cQdvI6iNoIX9mCwaAI0rVY4UsI,3312
579
- maxframe/tensor/arithmetic/invert.py,sha256=qxW3yp-F2JDIyE76lhMb-IruGAPACR2jpzedxtjQdfo,3462
580
- maxframe/tensor/arithmetic/i0.py,sha256=3zOp9IUf5-EVLMXXT2UM6fmqv6jBZWEXMtvA5_4pRSM,2911
581
- maxframe/tensor/arithmetic/greater.py,sha256=tPmHGNVW6MT8ygmBCzo7mwQqLtMXBhfVWOHP-ZM5jc8,2455
582
- maxframe/tensor/arithmetic/log2.py,sha256=NnsNYMNCecT9HDJCmjahWR9NK43L-faaFr7fA4E1VIc,2866
583
- maxframe/tensor/arithmetic/less.py,sha256=L_lpGhh4w32Y5v2CEDnM6zISt5j6EOYPJ768XyNjT8U,2265
584
- maxframe/tensor/arithmetic/square.py,sha256=t_1oHX40mVRzVPOOmJSaZ4Im9vDjNU4LKCQNLcO7kB8,2088
585
- maxframe/tensor/arithmetic/conj.py,sha256=wh0Chfu67yi5_pbd0O4JFURCEs7qxXfdGyrhq9iXp6U,2227
586
- maxframe/tensor/arithmetic/cosh.py,sha256=nm8wVqGHVQRbQ3KORspBC2ts3X2dEGmQtg7TFSpquXc,2218
587
- maxframe/tensor/arithmetic/clip.py,sha256=L6440F4e9g_u0imFrg3ntzoWGRKQ2vOWqXStCMB-d1Q,5515
588
- maxframe/tensor/arithmetic/setreal.py,sha256=MOVZxpGxKRrI1egqIiwFNVUeRpKyGgq5oLKDmDJzDmU,944
589
- maxframe/tensor/arithmetic/rshift.py,sha256=WmFjqscV8MbrpZKckp5ORuQcXNHY4X95noJwXbr5Anw,2555
590
- maxframe/tensor/arithmetic/sign.py,sha256=wm7WIHHPR6DjvOU8997zeiqYZ3Y_1RNCjHobJIlYPR4,2551
591
- maxframe/tensor/arithmetic/sinh.py,sha256=8SacyIjCvNxwDAugQfUTCopk4V1OD6xd0oW6XBj_b70,2917
592
- maxframe/tensor/arithmetic/logical_or.py,sha256=YaTZXgskqcMPpZJtXLBVyHMbVZVTU1ZR6K9HDv5fo6c,2589
593
- maxframe/tensor/arithmetic/fmax.py,sha256=Oue9hlTC6-5o5Qg8LabkVaEW60M2KbxsdsqjZn746tU,3574
594
- maxframe/tensor/arithmetic/mod.py,sha256=97HUVVk2Otgj6juiAU7RU9twJaN84G1wk3fleEo_qY0,3245
595
- maxframe/tensor/arithmetic/greater_equal.py,sha256=5QlaM5BVlwCaBFc0q_ltYasa9zwOMHg_LBEaYE9gF2Q,2304
596
- maxframe/tensor/arithmetic/deg2rad.py,sha256=js2kANuydVMpdeE-V2mQaQYo_Yk01fiLHjgwSeJNiWI,2171
597
- maxframe/tensor/arithmetic/exp.py,sha256=pA_IqwoSOn4-VdbxzN0U6J0FzuGOK_RxKXzRfsvga7U,3783
598
- maxframe/tensor/arithmetic/arcsinh.py,sha256=uRfuU8yjZWFsRybSRPBjkFfmPzxnJ9HgDajnO20VIqQ,3031
599
- maxframe/tensor/arithmetic/arccosh.py,sha256=WfkKhr9vRIK9ZwSwYBvjmEeOBQqwIEcDN4bZIDCMTIg,3024
600
- maxframe/tensor/arithmetic/log1p.py,sha256=U3hgqwoUaDEosiSI3rrPzXm3F1oLDm9-kIN3ZHtjDRs,3239
601
- maxframe/tensor/arithmetic/cbrt.py,sha256=L5FUyMgGpIoXDQkkkkPPo2g_BSlOQf0H0DZrfUA8q2o,2115
602
- maxframe/tensor/arithmetic/power.py,sha256=Thvg7SGno-agKwLLYELc2q_HwBck1TfEsINHLkjh2K4,3203
603
- maxframe/tensor/arithmetic/not_equal.py,sha256=LCuHnq_w5hQYC1ds4tP4sY1rc_Rxcaeno4BikXDkGsc,2274
604
- maxframe/tensor/arithmetic/radians.py,sha256=ehLDm8JaqEdayuTwn-zWHlKDEZ6luUP1kBGmns1XnBg,2380
605
- maxframe/tensor/arithmetic/sin.py,sha256=Ux8mQS-pb3F7PCD_35Ghl7p2e2yF2jiS_1WC9ziGDpk,3320
606
- maxframe/tensor/arithmetic/reciprocal.py,sha256=q3TKbF209Kbv7HD0hM9AF7xlQ9zXHrpHaFc9dHFuplE,2375
607
- maxframe/tensor/arithmetic/bitxor.py,sha256=l1bRVnzHSa7N7-nd2MzDxF33guNoml8mPB9t9_0QpMc,2908
608
- maxframe/tensor/arithmetic/tests/__init__.py,sha256=CzfbLNqqm1yR1i6fDwCd4h1ptuKVDbURFVCb0ra7QNc,642
609
- maxframe/tensor/arithmetic/tests/test_arithmetic.py,sha256=gK17go0jF7l_dGCmhOqZxLPaiiu9oK5wvw98IZ7rilI,11421
610
- maxframe/tensor/indexing/choose.py,sha256=TNsRP_1zoMnqfJyqk_RgPtRPFCisEXq5CMh3FUmPZ-8,7584
611
- maxframe/tensor/indexing/nonzero.py,sha256=JN5TyPzS1LIIjIaieXsDkffCjuq-CPBUDG3qMvNsIWI,3646
612
- maxframe/tensor/indexing/slice.py,sha256=VbalHoaXUGulPjskcQ4PoiZQhB2q3P1R8MrGKY2MqGw,1022
613
- maxframe/tensor/indexing/setitem.py,sha256=ieJ1IiwT5GFNvBBEEivt_jD6bQiMSK_ZbvEAtSaUTJQ,4352
614
- maxframe/tensor/indexing/__init__.py,sha256=v2uUjRm0rSDyxG9IVayCDo0gKY9OQnk1Z-4PX8XQuqs,1611
615
- maxframe/tensor/indexing/getitem.py,sha256=EWlP6xmVxfGn-mPDDHANEO7NiHhrnBrjXeuTg8gcfRU,5623
616
- maxframe/tensor/indexing/core.py,sha256=8iNHn9nObBoXyB6uhI3NHEFHMcmOn1WSPp5cC4utv2w,7022
617
- maxframe/tensor/indexing/unravel_index.py,sha256=jQ3KnJ8UFg5K8uLsTzIUABQXPiTiG2Kkp5VO2yVy1H4,3223
618
- maxframe/tensor/indexing/flatnonzero.py,sha256=T32TDhjmaMCw90RdUZA33QsIlXrL3BrclEBcRBKw4KQ,1706
619
- maxframe/tensor/indexing/fill_diagonal.py,sha256=L8F-C_g2h4fi_JX8wIU2mBOavZaLJZZCp7kwK-wIAmU,5305
620
- maxframe/tensor/indexing/take.py,sha256=g03C9ehHqmEOxXUZEdQH5I810pPSstadRF61y6IcuyQ,4254
621
- maxframe/tensor/indexing/compress.py,sha256=EBj2d4dtc60GSVBOhDWonSzzHGrD7QDJhOsMEvVuuKQ,4029
622
- maxframe/tensor/indexing/extract.py,sha256=bUpPI5B3i6Ii1Qb_jaqYf2_PYO1UF29VymMLMpG6lkM,2068
623
- maxframe/tensor/indexing/tests/__init__.py,sha256=CzfbLNqqm1yR1i6fDwCd4h1ptuKVDbURFVCb0ra7QNc,642
624
- maxframe/tensor/indexing/tests/test_indexing.py,sha256=7CCq_-Fn6-VbAMgqNV6jUGEmcFhbuyb0K9d3mJ2M1cE,6652
625
- maxframe/tensor/random/laplace.py,sha256=RbKB7xNFJdpoZnOtlTos8vNMm63CovgbCQidJeQ53DE,5007
626
- maxframe/tensor/random/standard_exponential.py,sha256=-TQr347gYi-SRqQretvTRNcshalt_E2Ayug_tT3u6lw,2438
627
- maxframe/tensor/random/dirichlet.py,sha256=Hb9jYPqHvlaMaxxGcPBBs00kuJaWai_ghCIDLirBQpk,4384
628
- maxframe/tensor/random/standard_normal.py,sha256=Q_vgtfRoSMBc5nY3k_yw5wvE4uen63pQfhn9MsS0988,2553
629
- maxframe/tensor/random/standard_cauchy.py,sha256=vvsZ1ZxAN2Hb-X8pfpCEuS0Yn0E-3Yn6PxXbTsagkV8,3861
630
- maxframe/tensor/random/geometric.py,sha256=XUHdmENnngOTxDqUaoF-imejjrPNW2lfiQ77RJYj2js,3350
631
- maxframe/tensor/random/weibull.py,sha256=aJOYFSvPmCyoWx8bwB1Vs9elY7EwSTaIesWfdXmZpLk,4895
632
- maxframe/tensor/random/randn.py,sha256=8kS2_DKwYdE9t-2LDZWVMuNbaXn-OEOXDB-2ij8zr9k,3341
633
- maxframe/tensor/random/multivariate_normal.py,sha256=oCte0-oj220jspid3iVH_67VC6pPpOx7XttQI3ZKuOs,6766
634
- maxframe/tensor/random/normal.py,sha256=LJ0yJOl4eR3cyzrmesuvoP5dtx2GKx6k58OiDsYttMs,5209
635
- maxframe/tensor/random/poisson.py,sha256=MR8K5vQHzdNaoTOyfKevrm6GPS4fh2uVc1MGllO2pko,3886
636
- maxframe/tensor/random/logistic.py,sha256=X_o_rfdvdsNc8PWaaBnwqOpaMEHiJJ8dy5DYs_ttq5Y,4728
637
- maxframe/tensor/random/beta.py,sha256=Il-bnSvryGlWQmyk5GU_zLRQuerqX4iVRpA8zqNF3bk,3113
638
- maxframe/tensor/random/choice.py,sha256=fwvKc8CKtoddoSzjqs9g7iC_haKMRVF9FchSJ3qPeq0,5958
639
- maxframe/tensor/random/__init__.py,sha256=QSAef7wgESPJmYrliksHRFfgVim6GrIZUOye5n_DCGI,7011
640
- maxframe/tensor/random/core.py,sha256=AIdcAFmr9yPd-uQCyJHv7GbXqo5rs3RuVdHQ59-0raY,7206
641
- maxframe/tensor/random/multinomial.py,sha256=QZ2c9tYq99cj3QW60DNG7wkzENnt5Xfdedl7yUazVDs,4771
642
- maxframe/tensor/random/exponential.py,sha256=QwHMgmsFypbmQ5JqU7BSlyKyhmZU4GNXy78AHUJzEec,3583
643
- maxframe/tensor/random/pareto.py,sha256=pPhlJzH68JsmL900sIALlmEstLy1YQgdPUfe3IacEMw,5389
644
- maxframe/tensor/random/negative_binomial.py,sha256=gQW4mhCEC2439Q8Ff-8TjcO0HnltjA4aDdhfrfkNXHc,4839
645
- maxframe/tensor/random/randint.py,sha256=lA9GDMVa4CXXqDDPOI5U2f5-_bWnuErpTUv1fhNME44,4219
646
- maxframe/tensor/random/triangular.py,sha256=AWe9iApG2izgbxdIOEXV9MvpMAb6SJ-_ueR4lezy64U,4348
647
- maxframe/tensor/random/shuffle.py,sha256=1nUX3HvRCe04kqIMKLeSZEeoRMSrUj0oUkp1EK1cELI,1762
648
- maxframe/tensor/random/hypergeometric.py,sha256=dtCeMEccuf3jwLBBQfA5e2zSOt6tRNpw87Lf9UxXsPA,5633
649
- maxframe/tensor/random/random_sample.py,sha256=-tArD9Vn01VC2AhwrTqgj1qr9u0cTFHaeePMEt3nwT4,3005
650
- maxframe/tensor/random/rand.py,sha256=ry5iZdlKnB_UvjzUJC69Z_2zMaMHkh2tIhqIHCqT9Kk,2538
651
- maxframe/tensor/random/gumbel.py,sha256=t7aPjUR2XXqBtG5YtCdatz8KWmoNKwoVEtIa2drlhug,6321
652
- maxframe/tensor/random/chisquare.py,sha256=bF_6UtVOHEmq3fpGuikU1yO85t5qSamBMJLd6e8mEJY,3754
653
- maxframe/tensor/random/rayleigh.py,sha256=kxz0B86J6lXNkxCDNoG7Jpwi25ooa3PDDuAKKPmMFhA,3956
654
- maxframe/tensor/random/noncentral_chisquare.py,sha256=nQXuny_K9dIKKDreQEfo7AMt6ePjvP3mLfNvIId4tcc,4937
655
- maxframe/tensor/random/standard_gamma.py,sha256=rU4KeS0zsx-Qt_d1WyUxYTUHbDEWBONbEK6ynMix6-g,4249
656
- maxframe/tensor/random/permutation.py,sha256=TSC2tpCLAIdzkNl009ZXpVf8Zws35yhsquvaBWzEIKQ,3419
657
- maxframe/tensor/random/f.py,sha256=qDrzDKnmS7i7ONjpqtjJIIqswd1pCertpZCbm-HprE0,5091
658
- maxframe/tensor/random/noncentral_f.py,sha256=DdICqMAWhzYb4C8ia3CFta8pr5_grp_5xf-E_TWqqxU,5010
659
- maxframe/tensor/random/uniform.py,sha256=tdAwdIFEw5bhOCOtR5U1KyScYWYzv5c4ZsWErMncEZc,4699
660
- maxframe/tensor/random/bytes.py,sha256=ukVfAe7rgqQPMQA9zBTUKgPBtAzU5mJ1icYGL38KWPk,1054
661
- maxframe/tensor/random/logseries.py,sha256=iN32p5hY6XQwFpUOClXSJbUVU-eTgM-6SDr9bas_E1s,4437
662
- maxframe/tensor/random/standard_t.py,sha256=bZ8HE-qVEjoa-rqosPBgpTqFX_BoUwJY-iPYEgSnZ3s,4919
663
- maxframe/tensor/random/zipf.py,sha256=UaI5czZD3JDHVeXu5pE8EP6pSRdvwPxZQib1lwC-uf8,4091
664
- maxframe/tensor/random/power.py,sha256=iCkyRwKGgguXmwiSEDxWVn4-XX-Sy5gervO1hhQd-Mc,4845
665
- maxframe/tensor/random/random_integers.py,sha256=32_qKG7xyw_YOUgdR8vChSvNmB5xwVWq3NT0yTP0x7s,4360
666
- maxframe/tensor/random/vonmises.py,sha256=rPT1LXEatzU2qv8IeNtIKH2Noj6Dq-XhlDbEazwUb50,4799
667
- maxframe/tensor/random/lognormal.py,sha256=ohsqB1IKBbrfzNuxkxlXiJ7gsPWWKGYgWwZF_VS61rc,6055
668
- maxframe/tensor/random/gamma.py,sha256=ob_qVB3d2ycUoqBfNqa49SblinGCkiwKMRdlGvY5E_Y,4619
669
- maxframe/tensor/random/wald.py,sha256=HQRsQet9FxxCzhHm1EQtkFd_MsexinSkJXU_TgNCpDU,4370
670
- maxframe/tensor/random/binomial.py,sha256=-PM5464Z8opuP0eP7MMevy9QOGIAYSdkm1rbv-HeKOQ,5291
671
- maxframe/tensor/random/tests/__init__.py,sha256=CzfbLNqqm1yR1i6fDwCd4h1ptuKVDbURFVCb0ra7QNc,642
672
- maxframe/tensor/random/tests/test_random.py,sha256=2hGaik9A783PFuuxIrhCDZ2O-SYKwUh98LKPwf1psLs,4275
673
- maxframe/remote/run_script.py,sha256=Z1j662AwDF9sr-z1xnPTlrfSTixi2RBZjccXEilfpGA,3556
674
- maxframe/remote/__init__.py,sha256=D1nfsnjU_cTzwpo_0icFvEPgkFJeCsqv3IOg6_Ho68k,729
675
- maxframe/remote/core.py,sha256=Ydb2jAyOVJS32nivMfknbg6y_fwcocy2Lskec2_5_kk,6527