snowpark-connect 0.23.0__py3-none-any.whl → 0.25.0__py3-none-any.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 snowpark-connect might be problematic. Click here for more details.

Files changed (476) hide show
  1. snowflake/snowpark_connect/column_name_handler.py +116 -4
  2. snowflake/snowpark_connect/config.py +13 -0
  3. snowflake/snowpark_connect/constants.py +0 -29
  4. snowflake/snowpark_connect/dataframe_container.py +6 -0
  5. snowflake/snowpark_connect/execute_plan/map_execution_command.py +56 -1
  6. snowflake/snowpark_connect/expression/function_defaults.py +207 -0
  7. snowflake/snowpark_connect/expression/literal.py +18 -2
  8. snowflake/snowpark_connect/expression/map_cast.py +5 -8
  9. snowflake/snowpark_connect/expression/map_expression.py +10 -1
  10. snowflake/snowpark_connect/expression/map_extension.py +12 -2
  11. snowflake/snowpark_connect/expression/map_sql_expression.py +23 -1
  12. snowflake/snowpark_connect/expression/map_udf.py +26 -8
  13. snowflake/snowpark_connect/expression/map_unresolved_attribute.py +199 -15
  14. snowflake/snowpark_connect/expression/map_unresolved_extract_value.py +44 -16
  15. snowflake/snowpark_connect/expression/map_unresolved_function.py +836 -365
  16. snowflake/snowpark_connect/expression/map_unresolved_star.py +3 -2
  17. snowflake/snowpark_connect/hidden_column.py +39 -0
  18. snowflake/snowpark_connect/includes/jars/hadoop-client-api-trimmed-3.3.4.jar +0 -0
  19. snowflake/snowpark_connect/includes/jars/{hadoop-client-api-3.3.4.jar → spark-connect-client-jvm_2.12-3.5.6.jar} +0 -0
  20. snowflake/snowpark_connect/relation/map_column_ops.py +18 -36
  21. snowflake/snowpark_connect/relation/map_extension.py +56 -15
  22. snowflake/snowpark_connect/relation/map_join.py +258 -62
  23. snowflake/snowpark_connect/relation/map_row_ops.py +2 -29
  24. snowflake/snowpark_connect/relation/map_sql.py +88 -11
  25. snowflake/snowpark_connect/relation/map_udtf.py +4 -2
  26. snowflake/snowpark_connect/relation/read/map_read.py +3 -3
  27. snowflake/snowpark_connect/relation/read/map_read_jdbc.py +1 -1
  28. snowflake/snowpark_connect/relation/read/map_read_json.py +8 -1
  29. snowflake/snowpark_connect/relation/read/map_read_table.py +1 -9
  30. snowflake/snowpark_connect/relation/read/reader_config.py +3 -1
  31. snowflake/snowpark_connect/relation/read/utils.py +6 -7
  32. snowflake/snowpark_connect/relation/utils.py +1 -170
  33. snowflake/snowpark_connect/relation/write/map_write.py +62 -53
  34. snowflake/snowpark_connect/resources_initializer.py +29 -1
  35. snowflake/snowpark_connect/server.py +18 -3
  36. snowflake/snowpark_connect/type_mapping.py +29 -25
  37. snowflake/snowpark_connect/typed_column.py +14 -0
  38. snowflake/snowpark_connect/utils/artifacts.py +23 -0
  39. snowflake/snowpark_connect/utils/context.py +6 -1
  40. snowflake/snowpark_connect/utils/scala_udf_utils.py +588 -0
  41. snowflake/snowpark_connect/utils/telemetry.py +6 -17
  42. snowflake/snowpark_connect/utils/udf_helper.py +2 -0
  43. snowflake/snowpark_connect/utils/udf_utils.py +38 -7
  44. snowflake/snowpark_connect/utils/udtf_utils.py +17 -3
  45. snowflake/snowpark_connect/version.py +1 -1
  46. {snowpark_connect-0.23.0.dist-info → snowpark_connect-0.25.0.dist-info}/METADATA +1 -1
  47. snowpark_connect-0.25.0.dist-info/RECORD +477 -0
  48. snowflake/snowpark_connect/includes/jars/scala-compiler-2.12.18.jar +0 -0
  49. snowflake/snowpark_connect/includes/jars/spark-kubernetes_2.12-3.5.6.jar +0 -0
  50. snowflake/snowpark_connect/includes/jars/spark-mllib_2.12-3.5.6.jar +0 -0
  51. snowflake/snowpark_connect/includes/jars/spark-streaming_2.12-3.5.6.jar +0 -0
  52. snowflake/snowpark_connect/includes/python/pyspark/errors/tests/__init__.py +0 -16
  53. snowflake/snowpark_connect/includes/python/pyspark/errors/tests/test_errors.py +0 -60
  54. snowflake/snowpark_connect/includes/python/pyspark/ml/deepspeed/tests/test_deepspeed_distributor.py +0 -306
  55. snowflake/snowpark_connect/includes/python/pyspark/ml/tests/__init__.py +0 -16
  56. snowflake/snowpark_connect/includes/python/pyspark/ml/tests/connect/test_connect_classification.py +0 -53
  57. snowflake/snowpark_connect/includes/python/pyspark/ml/tests/connect/test_connect_evaluation.py +0 -50
  58. snowflake/snowpark_connect/includes/python/pyspark/ml/tests/connect/test_connect_feature.py +0 -43
  59. snowflake/snowpark_connect/includes/python/pyspark/ml/tests/connect/test_connect_function.py +0 -114
  60. snowflake/snowpark_connect/includes/python/pyspark/ml/tests/connect/test_connect_pipeline.py +0 -47
  61. snowflake/snowpark_connect/includes/python/pyspark/ml/tests/connect/test_connect_summarizer.py +0 -43
  62. snowflake/snowpark_connect/includes/python/pyspark/ml/tests/connect/test_connect_tuning.py +0 -46
  63. snowflake/snowpark_connect/includes/python/pyspark/ml/tests/connect/test_legacy_mode_classification.py +0 -238
  64. snowflake/snowpark_connect/includes/python/pyspark/ml/tests/connect/test_legacy_mode_evaluation.py +0 -194
  65. snowflake/snowpark_connect/includes/python/pyspark/ml/tests/connect/test_legacy_mode_feature.py +0 -156
  66. snowflake/snowpark_connect/includes/python/pyspark/ml/tests/connect/test_legacy_mode_pipeline.py +0 -184
  67. snowflake/snowpark_connect/includes/python/pyspark/ml/tests/connect/test_legacy_mode_summarizer.py +0 -78
  68. snowflake/snowpark_connect/includes/python/pyspark/ml/tests/connect/test_legacy_mode_tuning.py +0 -292
  69. snowflake/snowpark_connect/includes/python/pyspark/ml/tests/connect/test_parity_torch_data_loader.py +0 -50
  70. snowflake/snowpark_connect/includes/python/pyspark/ml/tests/connect/test_parity_torch_distributor.py +0 -152
  71. snowflake/snowpark_connect/includes/python/pyspark/ml/tests/test_algorithms.py +0 -456
  72. snowflake/snowpark_connect/includes/python/pyspark/ml/tests/test_base.py +0 -96
  73. snowflake/snowpark_connect/includes/python/pyspark/ml/tests/test_dl_util.py +0 -186
  74. snowflake/snowpark_connect/includes/python/pyspark/ml/tests/test_evaluation.py +0 -77
  75. snowflake/snowpark_connect/includes/python/pyspark/ml/tests/test_feature.py +0 -401
  76. snowflake/snowpark_connect/includes/python/pyspark/ml/tests/test_functions.py +0 -528
  77. snowflake/snowpark_connect/includes/python/pyspark/ml/tests/test_image.py +0 -82
  78. snowflake/snowpark_connect/includes/python/pyspark/ml/tests/test_linalg.py +0 -409
  79. snowflake/snowpark_connect/includes/python/pyspark/ml/tests/test_model_cache.py +0 -55
  80. snowflake/snowpark_connect/includes/python/pyspark/ml/tests/test_param.py +0 -441
  81. snowflake/snowpark_connect/includes/python/pyspark/ml/tests/test_persistence.py +0 -546
  82. snowflake/snowpark_connect/includes/python/pyspark/ml/tests/test_pipeline.py +0 -71
  83. snowflake/snowpark_connect/includes/python/pyspark/ml/tests/test_stat.py +0 -52
  84. snowflake/snowpark_connect/includes/python/pyspark/ml/tests/test_training_summary.py +0 -494
  85. snowflake/snowpark_connect/includes/python/pyspark/ml/tests/test_util.py +0 -85
  86. snowflake/snowpark_connect/includes/python/pyspark/ml/tests/test_wrapper.py +0 -138
  87. snowflake/snowpark_connect/includes/python/pyspark/ml/tests/tuning/__init__.py +0 -16
  88. snowflake/snowpark_connect/includes/python/pyspark/ml/tests/tuning/test_cv_io_basic.py +0 -151
  89. snowflake/snowpark_connect/includes/python/pyspark/ml/tests/tuning/test_cv_io_nested.py +0 -97
  90. snowflake/snowpark_connect/includes/python/pyspark/ml/tests/tuning/test_cv_io_pipeline.py +0 -143
  91. snowflake/snowpark_connect/includes/python/pyspark/ml/tests/tuning/test_tuning.py +0 -551
  92. snowflake/snowpark_connect/includes/python/pyspark/ml/tests/tuning/test_tvs_io_basic.py +0 -137
  93. snowflake/snowpark_connect/includes/python/pyspark/ml/tests/tuning/test_tvs_io_nested.py +0 -96
  94. snowflake/snowpark_connect/includes/python/pyspark/ml/tests/tuning/test_tvs_io_pipeline.py +0 -142
  95. snowflake/snowpark_connect/includes/python/pyspark/ml/torch/tests/__init__.py +0 -16
  96. snowflake/snowpark_connect/includes/python/pyspark/ml/torch/tests/test_data_loader.py +0 -137
  97. snowflake/snowpark_connect/includes/python/pyspark/ml/torch/tests/test_distributor.py +0 -561
  98. snowflake/snowpark_connect/includes/python/pyspark/ml/torch/tests/test_log_communication.py +0 -172
  99. snowflake/snowpark_connect/includes/python/pyspark/mllib/tests/__init__.py +0 -16
  100. snowflake/snowpark_connect/includes/python/pyspark/mllib/tests/test_algorithms.py +0 -353
  101. snowflake/snowpark_connect/includes/python/pyspark/mllib/tests/test_feature.py +0 -192
  102. snowflake/snowpark_connect/includes/python/pyspark/mllib/tests/test_linalg.py +0 -680
  103. snowflake/snowpark_connect/includes/python/pyspark/mllib/tests/test_stat.py +0 -206
  104. snowflake/snowpark_connect/includes/python/pyspark/mllib/tests/test_streaming_algorithms.py +0 -471
  105. snowflake/snowpark_connect/includes/python/pyspark/mllib/tests/test_util.py +0 -108
  106. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/__init__.py +0 -16
  107. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/computation/__init__.py +0 -16
  108. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/computation/test_any_all.py +0 -177
  109. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/computation/test_apply_func.py +0 -575
  110. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/computation/test_binary_ops.py +0 -235
  111. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/computation/test_combine.py +0 -653
  112. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/computation/test_compute.py +0 -463
  113. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/computation/test_corrwith.py +0 -86
  114. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/computation/test_cov.py +0 -151
  115. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/computation/test_cumulative.py +0 -139
  116. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/computation/test_describe.py +0 -458
  117. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/computation/test_eval.py +0 -86
  118. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/computation/test_melt.py +0 -202
  119. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/computation/test_missing_data.py +0 -520
  120. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/computation/test_pivot.py +0 -361
  121. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/__init__.py +0 -16
  122. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/computation/__init__.py +0 -16
  123. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/computation/test_parity_any_all.py +0 -40
  124. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/computation/test_parity_apply_func.py +0 -42
  125. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/computation/test_parity_binary_ops.py +0 -40
  126. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/computation/test_parity_combine.py +0 -37
  127. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/computation/test_parity_compute.py +0 -60
  128. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/computation/test_parity_corrwith.py +0 -40
  129. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/computation/test_parity_cov.py +0 -40
  130. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/computation/test_parity_cumulative.py +0 -90
  131. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/computation/test_parity_describe.py +0 -40
  132. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/computation/test_parity_eval.py +0 -40
  133. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/computation/test_parity_melt.py +0 -40
  134. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/computation/test_parity_missing_data.py +0 -42
  135. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/computation/test_parity_pivot.py +0 -37
  136. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/data_type_ops/__init__.py +0 -16
  137. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/data_type_ops/test_parity_base.py +0 -36
  138. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/data_type_ops/test_parity_binary_ops.py +0 -42
  139. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/data_type_ops/test_parity_boolean_ops.py +0 -47
  140. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/data_type_ops/test_parity_categorical_ops.py +0 -55
  141. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/data_type_ops/test_parity_complex_ops.py +0 -40
  142. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/data_type_ops/test_parity_date_ops.py +0 -47
  143. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/data_type_ops/test_parity_datetime_ops.py +0 -47
  144. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/data_type_ops/test_parity_null_ops.py +0 -42
  145. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/data_type_ops/test_parity_num_arithmetic.py +0 -43
  146. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/data_type_ops/test_parity_num_ops.py +0 -47
  147. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/data_type_ops/test_parity_num_reverse.py +0 -43
  148. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/data_type_ops/test_parity_string_ops.py +0 -47
  149. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/data_type_ops/test_parity_timedelta_ops.py +0 -47
  150. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/data_type_ops/test_parity_udt_ops.py +0 -40
  151. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/data_type_ops/testing_utils.py +0 -226
  152. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/diff_frames_ops/__init__.py +0 -16
  153. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/diff_frames_ops/test_parity_align.py +0 -39
  154. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/diff_frames_ops/test_parity_basic_slow.py +0 -55
  155. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/diff_frames_ops/test_parity_cov_corrwith.py +0 -39
  156. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/diff_frames_ops/test_parity_dot_frame.py +0 -39
  157. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/diff_frames_ops/test_parity_dot_series.py +0 -39
  158. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/diff_frames_ops/test_parity_index.py +0 -39
  159. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/diff_frames_ops/test_parity_series.py +0 -39
  160. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/diff_frames_ops/test_parity_setitem_frame.py +0 -43
  161. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/diff_frames_ops/test_parity_setitem_series.py +0 -43
  162. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/frame/__init__.py +0 -16
  163. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/frame/test_parity_attrs.py +0 -40
  164. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/frame/test_parity_constructor.py +0 -39
  165. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/frame/test_parity_conversion.py +0 -42
  166. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/frame/test_parity_reindexing.py +0 -42
  167. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/frame/test_parity_reshaping.py +0 -37
  168. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/frame/test_parity_spark.py +0 -40
  169. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/frame/test_parity_take.py +0 -42
  170. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/frame/test_parity_time_series.py +0 -48
  171. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/frame/test_parity_truncate.py +0 -40
  172. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/groupby/__init__.py +0 -16
  173. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/groupby/test_parity_aggregate.py +0 -40
  174. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/groupby/test_parity_apply_func.py +0 -41
  175. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/groupby/test_parity_cumulative.py +0 -67
  176. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/groupby/test_parity_describe.py +0 -40
  177. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/groupby/test_parity_groupby.py +0 -55
  178. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/groupby/test_parity_head_tail.py +0 -40
  179. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/groupby/test_parity_index.py +0 -38
  180. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/groupby/test_parity_missing_data.py +0 -55
  181. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/groupby/test_parity_split_apply.py +0 -39
  182. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/groupby/test_parity_stat.py +0 -38
  183. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/indexes/__init__.py +0 -16
  184. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/indexes/test_parity_align.py +0 -40
  185. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/indexes/test_parity_base.py +0 -50
  186. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/indexes/test_parity_category.py +0 -73
  187. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/indexes/test_parity_datetime.py +0 -39
  188. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/indexes/test_parity_indexing.py +0 -40
  189. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/indexes/test_parity_reindex.py +0 -40
  190. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/indexes/test_parity_rename.py +0 -40
  191. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/indexes/test_parity_reset_index.py +0 -48
  192. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/indexes/test_parity_timedelta.py +0 -39
  193. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/io/__init__.py +0 -16
  194. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/io/test_parity_io.py +0 -40
  195. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/plot/__init__.py +0 -16
  196. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/plot/test_parity_frame_plot.py +0 -45
  197. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/plot/test_parity_frame_plot_matplotlib.py +0 -45
  198. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/plot/test_parity_frame_plot_plotly.py +0 -49
  199. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/plot/test_parity_series_plot.py +0 -37
  200. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/plot/test_parity_series_plot_matplotlib.py +0 -53
  201. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/plot/test_parity_series_plot_plotly.py +0 -45
  202. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/series/__init__.py +0 -16
  203. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/series/test_parity_all_any.py +0 -38
  204. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/series/test_parity_arg_ops.py +0 -37
  205. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/series/test_parity_as_of.py +0 -37
  206. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/series/test_parity_as_type.py +0 -38
  207. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/series/test_parity_compute.py +0 -37
  208. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/series/test_parity_conversion.py +0 -40
  209. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/series/test_parity_cumulative.py +0 -40
  210. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/series/test_parity_index.py +0 -38
  211. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/series/test_parity_missing_data.py +0 -40
  212. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/series/test_parity_series.py +0 -37
  213. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/series/test_parity_sort.py +0 -38
  214. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/series/test_parity_stat.py +0 -38
  215. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/test_parity_categorical.py +0 -66
  216. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/test_parity_config.py +0 -37
  217. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/test_parity_csv.py +0 -37
  218. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/test_parity_dataframe_conversion.py +0 -42
  219. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/test_parity_dataframe_spark_io.py +0 -39
  220. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/test_parity_default_index.py +0 -49
  221. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/test_parity_ewm.py +0 -37
  222. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/test_parity_expanding.py +0 -39
  223. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/test_parity_extension.py +0 -49
  224. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/test_parity_frame_spark.py +0 -53
  225. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/test_parity_generic_functions.py +0 -43
  226. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/test_parity_indexing.py +0 -49
  227. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/test_parity_indexops_spark.py +0 -39
  228. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/test_parity_internal.py +0 -41
  229. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/test_parity_namespace.py +0 -39
  230. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/test_parity_numpy_compat.py +0 -60
  231. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/test_parity_ops_on_diff_frames.py +0 -48
  232. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/test_parity_ops_on_diff_frames_groupby.py +0 -39
  233. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/test_parity_ops_on_diff_frames_groupby_expanding.py +0 -44
  234. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/test_parity_ops_on_diff_frames_groupby_rolling.py +0 -84
  235. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/test_parity_repr.py +0 -37
  236. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/test_parity_resample.py +0 -45
  237. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/test_parity_reshape.py +0 -39
  238. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/test_parity_rolling.py +0 -39
  239. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/test_parity_scalars.py +0 -37
  240. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/test_parity_series_conversion.py +0 -39
  241. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/test_parity_series_datetime.py +0 -39
  242. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/test_parity_series_string.py +0 -39
  243. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/test_parity_spark_functions.py +0 -39
  244. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/test_parity_sql.py +0 -43
  245. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/test_parity_stats.py +0 -37
  246. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/test_parity_typedef.py +0 -36
  247. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/test_parity_utils.py +0 -37
  248. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/test_parity_window.py +0 -39
  249. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/data_type_ops/__init__.py +0 -16
  250. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/data_type_ops/test_base.py +0 -107
  251. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/data_type_ops/test_binary_ops.py +0 -224
  252. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/data_type_ops/test_boolean_ops.py +0 -825
  253. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/data_type_ops/test_categorical_ops.py +0 -562
  254. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/data_type_ops/test_complex_ops.py +0 -368
  255. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/data_type_ops/test_date_ops.py +0 -257
  256. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/data_type_ops/test_datetime_ops.py +0 -260
  257. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/data_type_ops/test_null_ops.py +0 -178
  258. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/data_type_ops/test_num_arithmetic.py +0 -184
  259. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/data_type_ops/test_num_ops.py +0 -497
  260. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/data_type_ops/test_num_reverse.py +0 -140
  261. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/data_type_ops/test_string_ops.py +0 -354
  262. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/data_type_ops/test_timedelta_ops.py +0 -219
  263. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/data_type_ops/test_udt_ops.py +0 -192
  264. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/data_type_ops/testing_utils.py +0 -228
  265. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/diff_frames_ops/__init__.py +0 -16
  266. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/diff_frames_ops/test_align.py +0 -118
  267. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/diff_frames_ops/test_basic_slow.py +0 -198
  268. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/diff_frames_ops/test_cov_corrwith.py +0 -181
  269. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/diff_frames_ops/test_dot_frame.py +0 -103
  270. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/diff_frames_ops/test_dot_series.py +0 -141
  271. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/diff_frames_ops/test_index.py +0 -109
  272. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/diff_frames_ops/test_series.py +0 -136
  273. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/diff_frames_ops/test_setitem_frame.py +0 -125
  274. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/diff_frames_ops/test_setitem_series.py +0 -217
  275. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/frame/__init__.py +0 -16
  276. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/frame/test_attrs.py +0 -384
  277. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/frame/test_constructor.py +0 -598
  278. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/frame/test_conversion.py +0 -73
  279. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/frame/test_reindexing.py +0 -869
  280. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/frame/test_reshaping.py +0 -487
  281. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/frame/test_spark.py +0 -309
  282. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/frame/test_take.py +0 -156
  283. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/frame/test_time_series.py +0 -149
  284. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/frame/test_truncate.py +0 -163
  285. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/groupby/__init__.py +0 -16
  286. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/groupby/test_aggregate.py +0 -311
  287. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/groupby/test_apply_func.py +0 -524
  288. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/groupby/test_cumulative.py +0 -419
  289. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/groupby/test_describe.py +0 -144
  290. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/groupby/test_groupby.py +0 -979
  291. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/groupby/test_head_tail.py +0 -234
  292. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/groupby/test_index.py +0 -206
  293. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/groupby/test_missing_data.py +0 -421
  294. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/groupby/test_split_apply.py +0 -187
  295. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/groupby/test_stat.py +0 -397
  296. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/indexes/__init__.py +0 -16
  297. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/indexes/test_align.py +0 -100
  298. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/indexes/test_base.py +0 -2743
  299. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/indexes/test_category.py +0 -484
  300. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/indexes/test_datetime.py +0 -276
  301. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/indexes/test_indexing.py +0 -432
  302. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/indexes/test_reindex.py +0 -310
  303. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/indexes/test_rename.py +0 -257
  304. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/indexes/test_reset_index.py +0 -160
  305. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/indexes/test_timedelta.py +0 -128
  306. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/io/__init__.py +0 -16
  307. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/io/test_io.py +0 -137
  308. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/plot/__init__.py +0 -16
  309. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/plot/test_frame_plot.py +0 -170
  310. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/plot/test_frame_plot_matplotlib.py +0 -547
  311. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/plot/test_frame_plot_plotly.py +0 -285
  312. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/plot/test_series_plot.py +0 -106
  313. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/plot/test_series_plot_matplotlib.py +0 -409
  314. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/plot/test_series_plot_plotly.py +0 -247
  315. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/series/__init__.py +0 -16
  316. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/series/test_all_any.py +0 -105
  317. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/series/test_arg_ops.py +0 -197
  318. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/series/test_as_of.py +0 -137
  319. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/series/test_as_type.py +0 -227
  320. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/series/test_compute.py +0 -634
  321. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/series/test_conversion.py +0 -88
  322. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/series/test_cumulative.py +0 -139
  323. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/series/test_index.py +0 -475
  324. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/series/test_missing_data.py +0 -265
  325. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/series/test_series.py +0 -818
  326. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/series/test_sort.py +0 -162
  327. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/series/test_stat.py +0 -780
  328. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/test_categorical.py +0 -741
  329. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/test_config.py +0 -160
  330. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/test_csv.py +0 -453
  331. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/test_dataframe_conversion.py +0 -281
  332. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/test_dataframe_spark_io.py +0 -487
  333. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/test_default_index.py +0 -109
  334. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/test_ewm.py +0 -434
  335. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/test_expanding.py +0 -253
  336. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/test_extension.py +0 -152
  337. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/test_frame_spark.py +0 -162
  338. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/test_generic_functions.py +0 -234
  339. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/test_indexing.py +0 -1339
  340. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/test_indexops_spark.py +0 -82
  341. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/test_internal.py +0 -124
  342. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/test_namespace.py +0 -638
  343. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/test_numpy_compat.py +0 -200
  344. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/test_ops_on_diff_frames.py +0 -1355
  345. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/test_ops_on_diff_frames_groupby.py +0 -655
  346. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/test_ops_on_diff_frames_groupby_expanding.py +0 -113
  347. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/test_ops_on_diff_frames_groupby_rolling.py +0 -118
  348. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/test_repr.py +0 -192
  349. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/test_resample.py +0 -346
  350. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/test_reshape.py +0 -495
  351. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/test_rolling.py +0 -263
  352. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/test_scalars.py +0 -59
  353. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/test_series_conversion.py +0 -85
  354. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/test_series_datetime.py +0 -364
  355. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/test_series_string.py +0 -362
  356. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/test_spark_functions.py +0 -46
  357. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/test_sql.py +0 -123
  358. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/test_stats.py +0 -581
  359. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/test_typedef.py +0 -447
  360. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/test_utils.py +0 -301
  361. snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/test_window.py +0 -465
  362. snowflake/snowpark_connect/includes/python/pyspark/resource/tests/__init__.py +0 -16
  363. snowflake/snowpark_connect/includes/python/pyspark/resource/tests/test_resources.py +0 -83
  364. snowflake/snowpark_connect/includes/python/pyspark/sql/tests/__init__.py +0 -16
  365. snowflake/snowpark_connect/includes/python/pyspark/sql/tests/connect/__init__.py +0 -16
  366. snowflake/snowpark_connect/includes/python/pyspark/sql/tests/connect/client/__init__.py +0 -16
  367. snowflake/snowpark_connect/includes/python/pyspark/sql/tests/connect/client/test_artifact.py +0 -420
  368. snowflake/snowpark_connect/includes/python/pyspark/sql/tests/connect/client/test_client.py +0 -358
  369. snowflake/snowpark_connect/includes/python/pyspark/sql/tests/connect/streaming/__init__.py +0 -16
  370. snowflake/snowpark_connect/includes/python/pyspark/sql/tests/connect/streaming/test_parity_foreach.py +0 -36
  371. snowflake/snowpark_connect/includes/python/pyspark/sql/tests/connect/streaming/test_parity_foreach_batch.py +0 -44
  372. snowflake/snowpark_connect/includes/python/pyspark/sql/tests/connect/streaming/test_parity_listener.py +0 -116
  373. snowflake/snowpark_connect/includes/python/pyspark/sql/tests/connect/streaming/test_parity_streaming.py +0 -35
  374. snowflake/snowpark_connect/includes/python/pyspark/sql/tests/connect/test_connect_basic.py +0 -3612
  375. snowflake/snowpark_connect/includes/python/pyspark/sql/tests/connect/test_connect_column.py +0 -1042
  376. snowflake/snowpark_connect/includes/python/pyspark/sql/tests/connect/test_connect_function.py +0 -2381
  377. snowflake/snowpark_connect/includes/python/pyspark/sql/tests/connect/test_connect_plan.py +0 -1060
  378. snowflake/snowpark_connect/includes/python/pyspark/sql/tests/connect/test_parity_arrow.py +0 -163
  379. snowflake/snowpark_connect/includes/python/pyspark/sql/tests/connect/test_parity_arrow_map.py +0 -38
  380. snowflake/snowpark_connect/includes/python/pyspark/sql/tests/connect/test_parity_arrow_python_udf.py +0 -48
  381. snowflake/snowpark_connect/includes/python/pyspark/sql/tests/connect/test_parity_catalog.py +0 -36
  382. snowflake/snowpark_connect/includes/python/pyspark/sql/tests/connect/test_parity_column.py +0 -55
  383. snowflake/snowpark_connect/includes/python/pyspark/sql/tests/connect/test_parity_conf.py +0 -36
  384. snowflake/snowpark_connect/includes/python/pyspark/sql/tests/connect/test_parity_dataframe.py +0 -96
  385. snowflake/snowpark_connect/includes/python/pyspark/sql/tests/connect/test_parity_datasources.py +0 -44
  386. snowflake/snowpark_connect/includes/python/pyspark/sql/tests/connect/test_parity_errors.py +0 -36
  387. snowflake/snowpark_connect/includes/python/pyspark/sql/tests/connect/test_parity_functions.py +0 -59
  388. snowflake/snowpark_connect/includes/python/pyspark/sql/tests/connect/test_parity_group.py +0 -36
  389. snowflake/snowpark_connect/includes/python/pyspark/sql/tests/connect/test_parity_pandas_cogrouped_map.py +0 -59
  390. snowflake/snowpark_connect/includes/python/pyspark/sql/tests/connect/test_parity_pandas_grouped_map.py +0 -74
  391. snowflake/snowpark_connect/includes/python/pyspark/sql/tests/connect/test_parity_pandas_grouped_map_with_state.py +0 -62
  392. snowflake/snowpark_connect/includes/python/pyspark/sql/tests/connect/test_parity_pandas_map.py +0 -58
  393. snowflake/snowpark_connect/includes/python/pyspark/sql/tests/connect/test_parity_pandas_udf.py +0 -70
  394. snowflake/snowpark_connect/includes/python/pyspark/sql/tests/connect/test_parity_pandas_udf_grouped_agg.py +0 -50
  395. snowflake/snowpark_connect/includes/python/pyspark/sql/tests/connect/test_parity_pandas_udf_scalar.py +0 -68
  396. snowflake/snowpark_connect/includes/python/pyspark/sql/tests/connect/test_parity_pandas_udf_window.py +0 -40
  397. snowflake/snowpark_connect/includes/python/pyspark/sql/tests/connect/test_parity_readwriter.py +0 -46
  398. snowflake/snowpark_connect/includes/python/pyspark/sql/tests/connect/test_parity_serde.py +0 -44
  399. snowflake/snowpark_connect/includes/python/pyspark/sql/tests/connect/test_parity_types.py +0 -100
  400. snowflake/snowpark_connect/includes/python/pyspark/sql/tests/connect/test_parity_udf.py +0 -100
  401. snowflake/snowpark_connect/includes/python/pyspark/sql/tests/connect/test_parity_udtf.py +0 -163
  402. snowflake/snowpark_connect/includes/python/pyspark/sql/tests/connect/test_session.py +0 -181
  403. snowflake/snowpark_connect/includes/python/pyspark/sql/tests/connect/test_utils.py +0 -42
  404. snowflake/snowpark_connect/includes/python/pyspark/sql/tests/pandas/__init__.py +0 -16
  405. snowflake/snowpark_connect/includes/python/pyspark/sql/tests/pandas/test_pandas_cogrouped_map.py +0 -623
  406. snowflake/snowpark_connect/includes/python/pyspark/sql/tests/pandas/test_pandas_grouped_map.py +0 -869
  407. snowflake/snowpark_connect/includes/python/pyspark/sql/tests/pandas/test_pandas_grouped_map_with_state.py +0 -342
  408. snowflake/snowpark_connect/includes/python/pyspark/sql/tests/pandas/test_pandas_map.py +0 -436
  409. snowflake/snowpark_connect/includes/python/pyspark/sql/tests/pandas/test_pandas_udf.py +0 -363
  410. snowflake/snowpark_connect/includes/python/pyspark/sql/tests/pandas/test_pandas_udf_grouped_agg.py +0 -592
  411. snowflake/snowpark_connect/includes/python/pyspark/sql/tests/pandas/test_pandas_udf_scalar.py +0 -1503
  412. snowflake/snowpark_connect/includes/python/pyspark/sql/tests/pandas/test_pandas_udf_typehints.py +0 -392
  413. snowflake/snowpark_connect/includes/python/pyspark/sql/tests/pandas/test_pandas_udf_typehints_with_future_annotations.py +0 -375
  414. snowflake/snowpark_connect/includes/python/pyspark/sql/tests/pandas/test_pandas_udf_window.py +0 -411
  415. snowflake/snowpark_connect/includes/python/pyspark/sql/tests/streaming/__init__.py +0 -16
  416. snowflake/snowpark_connect/includes/python/pyspark/sql/tests/streaming/test_streaming.py +0 -401
  417. snowflake/snowpark_connect/includes/python/pyspark/sql/tests/streaming/test_streaming_foreach.py +0 -295
  418. snowflake/snowpark_connect/includes/python/pyspark/sql/tests/streaming/test_streaming_foreach_batch.py +0 -106
  419. snowflake/snowpark_connect/includes/python/pyspark/sql/tests/streaming/test_streaming_listener.py +0 -558
  420. snowflake/snowpark_connect/includes/python/pyspark/sql/tests/test_arrow.py +0 -1346
  421. snowflake/snowpark_connect/includes/python/pyspark/sql/tests/test_arrow_map.py +0 -182
  422. snowflake/snowpark_connect/includes/python/pyspark/sql/tests/test_arrow_python_udf.py +0 -202
  423. snowflake/snowpark_connect/includes/python/pyspark/sql/tests/test_catalog.py +0 -503
  424. snowflake/snowpark_connect/includes/python/pyspark/sql/tests/test_column.py +0 -225
  425. snowflake/snowpark_connect/includes/python/pyspark/sql/tests/test_conf.py +0 -83
  426. snowflake/snowpark_connect/includes/python/pyspark/sql/tests/test_context.py +0 -201
  427. snowflake/snowpark_connect/includes/python/pyspark/sql/tests/test_dataframe.py +0 -1931
  428. snowflake/snowpark_connect/includes/python/pyspark/sql/tests/test_datasources.py +0 -256
  429. snowflake/snowpark_connect/includes/python/pyspark/sql/tests/test_errors.py +0 -69
  430. snowflake/snowpark_connect/includes/python/pyspark/sql/tests/test_functions.py +0 -1349
  431. snowflake/snowpark_connect/includes/python/pyspark/sql/tests/test_group.py +0 -53
  432. snowflake/snowpark_connect/includes/python/pyspark/sql/tests/test_pandas_sqlmetrics.py +0 -68
  433. snowflake/snowpark_connect/includes/python/pyspark/sql/tests/test_readwriter.py +0 -283
  434. snowflake/snowpark_connect/includes/python/pyspark/sql/tests/test_serde.py +0 -155
  435. snowflake/snowpark_connect/includes/python/pyspark/sql/tests/test_session.py +0 -412
  436. snowflake/snowpark_connect/includes/python/pyspark/sql/tests/test_types.py +0 -1581
  437. snowflake/snowpark_connect/includes/python/pyspark/sql/tests/test_udf.py +0 -961
  438. snowflake/snowpark_connect/includes/python/pyspark/sql/tests/test_udf_profiler.py +0 -165
  439. snowflake/snowpark_connect/includes/python/pyspark/sql/tests/test_udtf.py +0 -1456
  440. snowflake/snowpark_connect/includes/python/pyspark/sql/tests/test_utils.py +0 -1686
  441. snowflake/snowpark_connect/includes/python/pyspark/streaming/tests/__init__.py +0 -16
  442. snowflake/snowpark_connect/includes/python/pyspark/streaming/tests/test_context.py +0 -184
  443. snowflake/snowpark_connect/includes/python/pyspark/streaming/tests/test_dstream.py +0 -706
  444. snowflake/snowpark_connect/includes/python/pyspark/streaming/tests/test_kinesis.py +0 -118
  445. snowflake/snowpark_connect/includes/python/pyspark/streaming/tests/test_listener.py +0 -160
  446. snowflake/snowpark_connect/includes/python/pyspark/tests/__init__.py +0 -16
  447. snowflake/snowpark_connect/includes/python/pyspark/tests/test_appsubmit.py +0 -306
  448. snowflake/snowpark_connect/includes/python/pyspark/tests/test_broadcast.py +0 -196
  449. snowflake/snowpark_connect/includes/python/pyspark/tests/test_conf.py +0 -44
  450. snowflake/snowpark_connect/includes/python/pyspark/tests/test_context.py +0 -346
  451. snowflake/snowpark_connect/includes/python/pyspark/tests/test_daemon.py +0 -89
  452. snowflake/snowpark_connect/includes/python/pyspark/tests/test_install_spark.py +0 -124
  453. snowflake/snowpark_connect/includes/python/pyspark/tests/test_join.py +0 -69
  454. snowflake/snowpark_connect/includes/python/pyspark/tests/test_memory_profiler.py +0 -167
  455. snowflake/snowpark_connect/includes/python/pyspark/tests/test_pin_thread.py +0 -194
  456. snowflake/snowpark_connect/includes/python/pyspark/tests/test_profiler.py +0 -168
  457. snowflake/snowpark_connect/includes/python/pyspark/tests/test_rdd.py +0 -939
  458. snowflake/snowpark_connect/includes/python/pyspark/tests/test_rddbarrier.py +0 -52
  459. snowflake/snowpark_connect/includes/python/pyspark/tests/test_rddsampler.py +0 -66
  460. snowflake/snowpark_connect/includes/python/pyspark/tests/test_readwrite.py +0 -368
  461. snowflake/snowpark_connect/includes/python/pyspark/tests/test_serializers.py +0 -257
  462. snowflake/snowpark_connect/includes/python/pyspark/tests/test_shuffle.py +0 -267
  463. snowflake/snowpark_connect/includes/python/pyspark/tests/test_stage_sched.py +0 -153
  464. snowflake/snowpark_connect/includes/python/pyspark/tests/test_statcounter.py +0 -130
  465. snowflake/snowpark_connect/includes/python/pyspark/tests/test_taskcontext.py +0 -350
  466. snowflake/snowpark_connect/includes/python/pyspark/tests/test_util.py +0 -97
  467. snowflake/snowpark_connect/includes/python/pyspark/tests/test_worker.py +0 -271
  468. snowpark_connect-0.23.0.dist-info/RECORD +0 -893
  469. {snowpark_connect-0.23.0.data → snowpark_connect-0.25.0.data}/scripts/snowpark-connect +0 -0
  470. {snowpark_connect-0.23.0.data → snowpark_connect-0.25.0.data}/scripts/snowpark-session +0 -0
  471. {snowpark_connect-0.23.0.data → snowpark_connect-0.25.0.data}/scripts/snowpark-submit +0 -0
  472. {snowpark_connect-0.23.0.dist-info → snowpark_connect-0.25.0.dist-info}/WHEEL +0 -0
  473. {snowpark_connect-0.23.0.dist-info → snowpark_connect-0.25.0.dist-info}/licenses/LICENSE-binary +0 -0
  474. {snowpark_connect-0.23.0.dist-info → snowpark_connect-0.25.0.dist-info}/licenses/LICENSE.txt +0 -0
  475. {snowpark_connect-0.23.0.dist-info → snowpark_connect-0.25.0.dist-info}/licenses/NOTICE-binary +0 -0
  476. {snowpark_connect-0.23.0.dist-info → snowpark_connect-0.25.0.dist-info}/top_level.txt +0 -0
@@ -1,206 +0,0 @@
1
- #
2
- # Licensed to the Apache Software Foundation (ASF) under one or more
3
- # contributor license agreements. See the NOTICE file distributed with
4
- # this work for additional information regarding copyright ownership.
5
- # The ASF licenses this file to You under the Apache License, Version 2.0
6
- # (the "License"); you may not use this file except in compliance with
7
- # the License. You may obtain a copy of the License at
8
- #
9
- # http://www.apache.org/licenses/LICENSE-2.0
10
- #
11
- # Unless required by applicable law or agreed to in writing, software
12
- # distributed under the License is distributed on an "AS IS" BASIS,
13
- # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14
- # See the License for the specific language governing permissions and
15
- # limitations under the License.
16
- #
17
-
18
- import array as pyarray
19
- import unittest
20
-
21
- from numpy import array
22
-
23
- from pyspark.mllib.linalg import Vectors, Matrices
24
- from pyspark.mllib.random import RandomRDDs
25
- from pyspark.mllib.regression import LabeledPoint
26
- from pyspark.mllib.stat import Statistics
27
- from pyspark.errors import IllegalArgumentException
28
- from pyspark.testing.mllibutils import MLlibTestCase
29
-
30
-
31
- class StatTests(MLlibTestCase):
32
- # SPARK-4023
33
- def test_col_with_different_rdds(self):
34
- # numpy
35
- data = RandomRDDs.normalVectorRDD(self.sc, 1000, 10, 10)
36
- summary = Statistics.colStats(data)
37
- self.assertEqual(1000, summary.count())
38
- # array
39
- data = self.sc.parallelize([range(10)] * 10)
40
- summary = Statistics.colStats(data)
41
- self.assertEqual(10, summary.count())
42
- # array
43
- data = self.sc.parallelize([pyarray.array("d", range(10))] * 10)
44
- summary = Statistics.colStats(data)
45
- self.assertEqual(10, summary.count())
46
-
47
- def test_col_norms(self):
48
- data = RandomRDDs.normalVectorRDD(self.sc, 1000, 10, 10)
49
- summary = Statistics.colStats(data)
50
- self.assertEqual(10, len(summary.normL1()))
51
- self.assertEqual(10, len(summary.normL2()))
52
-
53
- data2 = self.sc.parallelize(range(10)).map(lambda x: Vectors.dense(x))
54
- summary2 = Statistics.colStats(data2)
55
- self.assertEqual(array([45.0]), summary2.normL1())
56
- import math
57
-
58
- expectedNormL2 = math.sqrt(sum(map(lambda x: x * x, range(10))))
59
- self.assertTrue(math.fabs(summary2.normL2()[0] - expectedNormL2) < 1e-14)
60
-
61
-
62
- class ChiSqTestTests(MLlibTestCase):
63
- def test_goodness_of_fit(self):
64
- from numpy import inf
65
-
66
- observed = Vectors.dense([4, 6, 5])
67
- pearson = Statistics.chiSqTest(observed)
68
-
69
- # Validated against the R command `chisq.test(c(4, 6, 5), p=c(1/3, 1/3, 1/3))`
70
- self.assertEqual(pearson.statistic, 0.4)
71
- self.assertEqual(pearson.degreesOfFreedom, 2)
72
- self.assertAlmostEqual(pearson.pValue, 0.8187, 4)
73
-
74
- # Different expected and observed sum
75
- observed1 = Vectors.dense([21, 38, 43, 80])
76
- expected1 = Vectors.dense([3, 5, 7, 20])
77
- pearson1 = Statistics.chiSqTest(observed1, expected1)
78
-
79
- # Results validated against the R command
80
- # `chisq.test(c(21, 38, 43, 80), p=c(3/35, 1/7, 1/5, 4/7))`
81
- self.assertAlmostEqual(pearson1.statistic, 14.1429, 4)
82
- self.assertEqual(pearson1.degreesOfFreedom, 3)
83
- self.assertAlmostEqual(pearson1.pValue, 0.002717, 4)
84
-
85
- # Vectors with different sizes
86
- observed3 = Vectors.dense([1.0, 2.0, 3.0])
87
- expected3 = Vectors.dense([1.0, 2.0, 3.0, 4.0])
88
- self.assertRaises(ValueError, Statistics.chiSqTest, observed3, expected3)
89
-
90
- # Negative counts in observed
91
- neg_obs = Vectors.dense([1.0, 2.0, 3.0, -4.0])
92
- self.assertRaises(IllegalArgumentException, Statistics.chiSqTest, neg_obs, expected1)
93
-
94
- # Count = 0.0 in expected but not observed
95
- zero_expected = Vectors.dense([1.0, 0.0, 3.0])
96
- pearson_inf = Statistics.chiSqTest(observed, zero_expected)
97
- self.assertEqual(pearson_inf.statistic, inf)
98
- self.assertEqual(pearson_inf.degreesOfFreedom, 2)
99
- self.assertEqual(pearson_inf.pValue, 0.0)
100
-
101
- # 0.0 in expected and observed simultaneously
102
- zero_observed = Vectors.dense([2.0, 0.0, 1.0])
103
- self.assertRaises(
104
- IllegalArgumentException, Statistics.chiSqTest, zero_observed, zero_expected
105
- )
106
-
107
- def test_matrix_independence(self):
108
- data = [40.0, 24.0, 29.0, 56.0, 32.0, 42.0, 31.0, 10.0, 0.0, 30.0, 15.0, 12.0]
109
- chi = Statistics.chiSqTest(Matrices.dense(3, 4, data))
110
-
111
- # Results validated against R command
112
- # `chisq.test(rbind(c(40, 56, 31, 30),c(24, 32, 10, 15), c(29, 42, 0, 12)))`
113
- self.assertAlmostEqual(chi.statistic, 21.9958, 4)
114
- self.assertEqual(chi.degreesOfFreedom, 6)
115
- self.assertAlmostEqual(chi.pValue, 0.001213, 4)
116
-
117
- # Negative counts
118
- neg_counts = Matrices.dense(2, 2, [4.0, 5.0, 3.0, -3.0])
119
- self.assertRaises(IllegalArgumentException, Statistics.chiSqTest, neg_counts)
120
-
121
- # Row sum = 0.0
122
- row_zero = Matrices.dense(2, 2, [0.0, 1.0, 0.0, 2.0])
123
- self.assertRaises(IllegalArgumentException, Statistics.chiSqTest, row_zero)
124
-
125
- # Column sum = 0.0
126
- col_zero = Matrices.dense(2, 2, [0.0, 0.0, 2.0, 2.0])
127
- self.assertRaises(IllegalArgumentException, Statistics.chiSqTest, col_zero)
128
-
129
- def test_chi_sq_pearson(self):
130
- data = [
131
- LabeledPoint(0.0, Vectors.dense([0.5, 10.0])),
132
- LabeledPoint(0.0, Vectors.dense([1.5, 20.0])),
133
- LabeledPoint(1.0, Vectors.dense([1.5, 30.0])),
134
- LabeledPoint(0.0, Vectors.dense([3.5, 30.0])),
135
- LabeledPoint(0.0, Vectors.dense([3.5, 40.0])),
136
- LabeledPoint(1.0, Vectors.dense([3.5, 40.0])),
137
- ]
138
-
139
- for numParts in [2, 4, 6, 8]:
140
- chi = Statistics.chiSqTest(self.sc.parallelize(data, numParts))
141
- feature1 = chi[0]
142
- self.assertEqual(feature1.statistic, 0.75)
143
- self.assertEqual(feature1.degreesOfFreedom, 2)
144
- self.assertAlmostEqual(feature1.pValue, 0.6873, 4)
145
-
146
- feature2 = chi[1]
147
- self.assertEqual(feature2.statistic, 1.5)
148
- self.assertEqual(feature2.degreesOfFreedom, 3)
149
- self.assertAlmostEqual(feature2.pValue, 0.6823, 4)
150
-
151
- def test_right_number_of_results(self):
152
- num_cols = 1001
153
- sparse_data = [
154
- LabeledPoint(0.0, Vectors.sparse(num_cols, [(100, 2.0)])),
155
- LabeledPoint(0.1, Vectors.sparse(num_cols, [(200, 1.0)])),
156
- ]
157
- chi = Statistics.chiSqTest(self.sc.parallelize(sparse_data))
158
- self.assertEqual(len(chi), num_cols)
159
- self.assertIsNotNone(chi[1000])
160
-
161
-
162
- class KolmogorovSmirnovTest(MLlibTestCase):
163
- def test_R_implementation_equivalence(self):
164
- data = self.sc.parallelize(
165
- [
166
- 1.1626852897838,
167
- -0.585924465893051,
168
- 1.78546500331661,
169
- -1.33259371048501,
170
- -0.446566766553219,
171
- 0.569606122374976,
172
- -2.88971761441412,
173
- -0.869018343326555,
174
- -0.461702683149641,
175
- -0.555540910137444,
176
- -0.0201353678515895,
177
- -0.150382224136063,
178
- -0.628126755843964,
179
- 1.32322085193283,
180
- -1.52135057001199,
181
- -0.437427868856691,
182
- 0.970577579543399,
183
- 0.0282226444247749,
184
- -0.0857821886527593,
185
- 0.389214404984942,
186
- ]
187
- )
188
- model = Statistics.kolmogorovSmirnovTest(data, "norm")
189
- self.assertAlmostEqual(model.statistic, 0.189, 3)
190
- self.assertAlmostEqual(model.pValue, 0.422, 3)
191
-
192
- model = Statistics.kolmogorovSmirnovTest(data, "norm", 0, 1)
193
- self.assertAlmostEqual(model.statistic, 0.189, 3)
194
- self.assertAlmostEqual(model.pValue, 0.422, 3)
195
-
196
-
197
- if __name__ == "__main__":
198
- from pyspark.mllib.tests.test_stat import * # noqa: F401
199
-
200
- try:
201
- import xmlrunner
202
-
203
- testRunner = xmlrunner.XMLTestRunner(output="target/test-reports", verbosity=2)
204
- except ImportError:
205
- testRunner = None
206
- unittest.main(testRunner=testRunner, verbosity=2)
@@ -1,471 +0,0 @@
1
- #
2
- # Licensed to the Apache Software Foundation (ASF) under one or more
3
- # contributor license agreements. See the NOTICE file distributed with
4
- # this work for additional information regarding copyright ownership.
5
- # The ASF licenses this file to You under the Apache License, Version 2.0
6
- # (the "License"); you may not use this file except in compliance with
7
- # the License. You may obtain a copy of the License at
8
- #
9
- # http://www.apache.org/licenses/LICENSE-2.0
10
- #
11
- # Unless required by applicable law or agreed to in writing, software
12
- # distributed under the License is distributed on an "AS IS" BASIS,
13
- # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14
- # See the License for the specific language governing permissions and
15
- # limitations under the License.
16
- #
17
-
18
- import os
19
- import unittest
20
-
21
- from numpy import array, random, exp, dot, all, mean, abs
22
- from numpy import sum as array_sum
23
-
24
- from pyspark import SparkContext
25
- from pyspark.mllib.clustering import StreamingKMeans, StreamingKMeansModel
26
- from pyspark.mllib.classification import StreamingLogisticRegressionWithSGD
27
- from pyspark.mllib.linalg import Vectors
28
- from pyspark.mllib.regression import LabeledPoint, StreamingLinearRegressionWithSGD
29
- from pyspark.mllib.util import LinearDataGenerator
30
- from pyspark.streaming import StreamingContext
31
- from pyspark.testing.utils import eventually
32
-
33
-
34
- class MLLibStreamingTestCase(unittest.TestCase):
35
- def setUp(self):
36
- self.sc = SparkContext("local[4]", "MLlib tests")
37
- self.ssc = StreamingContext(self.sc, 1.0)
38
-
39
- def tearDown(self):
40
- self.ssc.stop(False)
41
- self.sc.stop()
42
-
43
-
44
- class StreamingKMeansTest(MLLibStreamingTestCase):
45
- def test_model_params(self):
46
- """Test that the model params are set correctly"""
47
- stkm = StreamingKMeans()
48
- stkm.setK(5).setDecayFactor(0.0)
49
- self.assertEqual(stkm._k, 5)
50
- self.assertEqual(stkm._decayFactor, 0.0)
51
-
52
- # Model not set yet.
53
- self.assertIsNone(stkm.latestModel())
54
- self.assertRaises(ValueError, stkm.trainOn, [0.0, 1.0])
55
-
56
- stkm.setInitialCenters(centers=[[0.0, 0.0], [1.0, 1.0]], weights=[1.0, 1.0])
57
- self.assertEqual(stkm.latestModel().centers, [[0.0, 0.0], [1.0, 1.0]])
58
- self.assertEqual(stkm.latestModel().clusterWeights, [1.0, 1.0])
59
-
60
- def test_accuracy_for_single_center(self):
61
- """Test that parameters obtained are correct for a single center."""
62
- centers, batches = self.streamingKMeansDataGenerator(
63
- batches=5, numPoints=5, k=1, d=5, r=0.1, seed=0
64
- )
65
- stkm = StreamingKMeans(1)
66
- stkm.setInitialCenters([[0.0, 0.0, 0.0, 0.0, 0.0]], [0.0])
67
- input_stream = self.ssc.queueStream([self.sc.parallelize(batch, 1) for batch in batches])
68
- stkm.trainOn(input_stream)
69
-
70
- self.ssc.start()
71
-
72
- def condition():
73
- self.assertEqual(stkm.latestModel().clusterWeights, [25.0])
74
- return True
75
-
76
- eventually(condition, catch_assertions=True)
77
-
78
- realCenters = array_sum(array(centers), axis=0)
79
- for i in range(5):
80
- modelCenters = stkm.latestModel().centers[0][i]
81
- self.assertAlmostEqual(centers[0][i], modelCenters, 1)
82
- self.assertAlmostEqual(realCenters[i], modelCenters, 1)
83
-
84
- def streamingKMeansDataGenerator(self, batches, numPoints, k, d, r, seed, centers=None):
85
- rng = random.RandomState(seed)
86
-
87
- # Generate centers.
88
- centers = [rng.randn(d) for i in range(k)]
89
-
90
- return centers, [
91
- [Vectors.dense(centers[j % k] + r * rng.randn(d)) for j in range(numPoints)]
92
- for i in range(batches)
93
- ]
94
-
95
- def test_trainOn_model(self):
96
- """Test the model on toy data with four clusters."""
97
- stkm = StreamingKMeans()
98
- initCenters = [[1.0, 1.0], [-1.0, 1.0], [-1.0, -1.0], [1.0, -1.0]]
99
- stkm.setInitialCenters(centers=initCenters, weights=[1.0, 1.0, 1.0, 1.0])
100
-
101
- # Create a toy dataset by setting a tiny offset for each point.
102
- offsets = [[0, 0.1], [0, -0.1], [0.1, 0], [-0.1, 0]]
103
- batches = []
104
- for offset in offsets:
105
- batches.append(
106
- [[offset[0] + center[0], offset[1] + center[1]] for center in initCenters]
107
- )
108
-
109
- batches = [self.sc.parallelize(batch, 1) for batch in batches]
110
- input_stream = self.ssc.queueStream(batches)
111
- stkm.trainOn(input_stream)
112
- self.ssc.start()
113
-
114
- # Give enough time to train the model.
115
- def condition():
116
- finalModel = stkm.latestModel()
117
- self.assertTrue(all(finalModel.centers == array(initCenters)))
118
- self.assertEqual(finalModel.clusterWeights, [5.0, 5.0, 5.0, 5.0])
119
- return True
120
-
121
- eventually(condition, 90, catch_assertions=True)
122
-
123
- def test_predictOn_model(self):
124
- """Test that the model predicts correctly on toy data."""
125
- stkm = StreamingKMeans()
126
- stkm._model = StreamingKMeansModel(
127
- clusterCenters=[[1.0, 1.0], [-1.0, 1.0], [-1.0, -1.0], [1.0, -1.0]],
128
- clusterWeights=[1.0, 1.0, 1.0, 1.0],
129
- )
130
-
131
- predict_data = [[[1.5, 1.5]], [[-1.5, 1.5]], [[-1.5, -1.5]], [[1.5, -1.5]]]
132
- predict_data = [self.sc.parallelize(batch, 1) for batch in predict_data]
133
- predict_stream = self.ssc.queueStream(predict_data)
134
- predict_val = stkm.predictOn(predict_stream)
135
-
136
- result = []
137
-
138
- def update(rdd):
139
- rdd_collect = rdd.collect()
140
- if rdd_collect:
141
- result.append(rdd_collect)
142
-
143
- predict_val.foreachRDD(update)
144
- self.ssc.start()
145
-
146
- def condition():
147
- self.assertEqual(result, [[0], [1], [2], [3]])
148
- return True
149
-
150
- eventually(condition, catch_assertions=True)
151
-
152
- @unittest.skip("SPARK-10086: Flaky StreamingKMeans test in PySpark")
153
- def test_trainOn_predictOn(self):
154
- """Test that prediction happens on the updated model."""
155
- stkm = StreamingKMeans(decayFactor=0.0, k=2)
156
- stkm.setInitialCenters([[0.0], [1.0]], [1.0, 1.0])
157
-
158
- # Since decay factor is set to zero, once the first batch
159
- # is passed the clusterCenters are updated to [-0.5, 0.7]
160
- # which causes 0.2 & 0.3 to be classified as 1, even though the
161
- # classification based in the initial model would have been 0
162
- # proving that the model is updated.
163
- batches = [[[-0.5], [0.6], [0.8]], [[0.2], [-0.1], [0.3]]]
164
- batches = [self.sc.parallelize(batch) for batch in batches]
165
- input_stream = self.ssc.queueStream(batches)
166
- predict_results = []
167
-
168
- def collect(rdd):
169
- rdd_collect = rdd.collect()
170
- if rdd_collect:
171
- predict_results.append(rdd_collect)
172
-
173
- stkm.trainOn(input_stream)
174
- predict_stream = stkm.predictOn(input_stream)
175
- predict_stream.foreachRDD(collect)
176
-
177
- self.ssc.start()
178
-
179
- def condition():
180
- self.assertEqual(predict_results, [[0, 1, 1], [1, 0, 1]])
181
- return True
182
-
183
- eventually(condition, catch_assertions=True)
184
-
185
-
186
- class StreamingLogisticRegressionWithSGDTests(MLLibStreamingTestCase):
187
- @staticmethod
188
- def generateLogisticInput(offset, scale, nPoints, seed):
189
- """
190
- Generate 1 / (1 + exp(-x * scale + offset))
191
-
192
- where,
193
- x is randomly distributed and the threshold
194
- and labels for each sample in x is obtained from a random uniform
195
- distribution.
196
- """
197
- rng = random.RandomState(seed)
198
- x = rng.randn(nPoints)
199
- sigmoid = 1.0 / (1 + exp(-(dot(x, scale) + offset)))
200
- y_p = rng.rand(nPoints)
201
- cut_off = y_p <= sigmoid
202
- y_p[cut_off] = 1.0
203
- y_p[~cut_off] = 0.0
204
- return [LabeledPoint(y_p[i], Vectors.dense([x[i]])) for i in range(nPoints)]
205
-
206
- def test_parameter_accuracy(self):
207
- """
208
- Test that the final value of weights is close to the desired value.
209
- """
210
- input_batches = [
211
- self.sc.parallelize(self.generateLogisticInput(0, 1.5, 100, 42 + i)) for i in range(20)
212
- ]
213
- input_stream = self.ssc.queueStream(input_batches)
214
-
215
- slr = StreamingLogisticRegressionWithSGD(stepSize=0.2, numIterations=25)
216
- slr.setInitialWeights([0.0])
217
- slr.trainOn(input_stream)
218
-
219
- self.ssc.start()
220
-
221
- def condition():
222
- rel = (1.5 - slr.latestModel().weights.array[0]) / 1.5
223
- self.assertAlmostEqual(rel, 0.1, 1)
224
- return True
225
-
226
- eventually(condition, timeout=120.0, catch_assertions=True)
227
-
228
- def test_convergence(self):
229
- """
230
- Test that weights converge to the required value on toy data.
231
- """
232
- input_batches = [
233
- self.sc.parallelize(self.generateLogisticInput(0, 1.5, 100, 42 + i)) for i in range(20)
234
- ]
235
- input_stream = self.ssc.queueStream(input_batches)
236
- models = []
237
-
238
- slr = StreamingLogisticRegressionWithSGD(stepSize=0.2, numIterations=25)
239
- slr.setInitialWeights([0.0])
240
- slr.trainOn(input_stream)
241
- input_stream.foreachRDD(lambda x: models.append(slr.latestModel().weights[0]))
242
-
243
- self.ssc.start()
244
-
245
- def condition():
246
- self.assertEqual(len(models), len(input_batches))
247
- return True
248
-
249
- # We want all batches to finish for this test.
250
- eventually(condition, 120, catch_assertions=True)
251
-
252
- t_models = array(models)
253
- diff = t_models[1:] - t_models[:-1]
254
- # Test that weights improve with a small tolerance
255
- self.assertTrue(all(diff >= -0.1))
256
- self.assertTrue(array_sum(diff > 0) > 1)
257
-
258
- @staticmethod
259
- def calculate_accuracy_error(true, predicted):
260
- return sum(abs(array(true) - array(predicted))) / len(true)
261
-
262
- def test_predictions(self):
263
- """Test predicted values on a toy model."""
264
- input_batches = []
265
- for i in range(20):
266
- batch = self.sc.parallelize(self.generateLogisticInput(0, 1.5, 100, 42 + i))
267
- input_batches.append(batch.map(lambda x: (x.label, x.features)))
268
- input_stream = self.ssc.queueStream(input_batches)
269
-
270
- slr = StreamingLogisticRegressionWithSGD(stepSize=0.2, numIterations=25)
271
- slr.setInitialWeights([1.5])
272
- predict_stream = slr.predictOnValues(input_stream)
273
- true_predicted = []
274
- predict_stream.foreachRDD(lambda x: true_predicted.append(x.collect()))
275
- self.ssc.start()
276
-
277
- def condition():
278
- self.assertEqual(len(true_predicted), len(input_batches))
279
- return True
280
-
281
- eventually(condition, catch_assertions=True)
282
-
283
- # Test that the accuracy error is no more than 0.4 on each batch.
284
- for batch in true_predicted:
285
- true, predicted = zip(*batch)
286
- self.assertTrue(self.calculate_accuracy_error(true, predicted) < 0.4)
287
-
288
- @unittest.skipIf(
289
- "COVERAGE_PROCESS_START" in os.environ, "Flaky with coverage enabled, skipping for now."
290
- )
291
- def test_training_and_prediction(self):
292
- """Test that the model improves on toy data with no. of batches"""
293
- input_batches = [
294
- self.sc.parallelize(self.generateLogisticInput(0, 1.5, 100, 42 + i)) for i in range(40)
295
- ]
296
- predict_batches = [b.map(lambda lp: (lp.label, lp.features)) for b in input_batches]
297
-
298
- slr = StreamingLogisticRegressionWithSGD(stepSize=0.01, numIterations=25)
299
- slr.setInitialWeights([-0.1])
300
- errors = []
301
-
302
- def collect_errors(rdd):
303
- true, predicted = zip(*rdd.collect())
304
- errors.append(self.calculate_accuracy_error(true, predicted))
305
-
306
- input_stream = self.ssc.queueStream(input_batches)
307
- predict_stream = self.ssc.queueStream(predict_batches)
308
- slr.trainOn(input_stream)
309
- ps = slr.predictOnValues(predict_stream)
310
- ps.foreachRDD(lambda x: collect_errors(x))
311
-
312
- self.ssc.start()
313
-
314
- def condition():
315
- # Test that the improvement in error is > 0.3
316
- if len(errors) == len(predict_batches):
317
- self.assertGreater(errors[1] - errors[-1], 0.3)
318
- if len(errors) >= 3 and errors[1] - errors[-1] > 0.3:
319
- return True
320
- return "Latest errors: " + ", ".join(map(lambda x: str(x), errors))
321
-
322
- eventually(condition, timeout=180.0)
323
-
324
-
325
- class StreamingLinearRegressionWithTests(MLLibStreamingTestCase):
326
- def assertArrayAlmostEqual(self, array1, array2, dec):
327
- for i, j in array1, array2:
328
- self.assertAlmostEqual(i, j, dec)
329
-
330
- def test_parameter_accuracy(self):
331
- """Test that coefs are predicted accurately by fitting on toy data."""
332
-
333
- # Test that fitting (10*X1 + 10*X2), (X1, X2) gives coefficients
334
- # (10, 10)
335
- slr = StreamingLinearRegressionWithSGD(stepSize=0.2, numIterations=25)
336
- slr.setInitialWeights([0.0, 0.0])
337
- xMean = [0.0, 0.0]
338
- xVariance = [1.0 / 3.0, 1.0 / 3.0]
339
-
340
- # Create ten batches with 100 sample points in each.
341
- batches = []
342
- for i in range(10):
343
- batch = LinearDataGenerator.generateLinearInput(
344
- 0.0, [10.0, 10.0], xMean, xVariance, 100, 42 + i, 0.1
345
- )
346
- batches.append(self.sc.parallelize(batch))
347
-
348
- input_stream = self.ssc.queueStream(batches)
349
- slr.trainOn(input_stream)
350
- self.ssc.start()
351
-
352
- def condition():
353
- self.assertArrayAlmostEqual(slr.latestModel().weights.array, [10.0, 10.0], 1)
354
- self.assertAlmostEqual(slr.latestModel().intercept, 0.0, 1)
355
- return True
356
-
357
- eventually(condition, catch_assertions=True)
358
-
359
- def test_parameter_convergence(self):
360
- """Test that the model parameters improve with streaming data."""
361
- slr = StreamingLinearRegressionWithSGD(stepSize=0.2, numIterations=25)
362
- slr.setInitialWeights([0.0])
363
-
364
- # Create ten batches with 100 sample points in each.
365
- batches = []
366
- for i in range(10):
367
- batch = LinearDataGenerator.generateLinearInput(
368
- 0.0, [10.0], [0.0], [1.0 / 3.0], 100, 42 + i, 0.1
369
- )
370
- batches.append(self.sc.parallelize(batch))
371
-
372
- model_weights = []
373
- input_stream = self.ssc.queueStream(batches)
374
- input_stream.foreachRDD(lambda x: model_weights.append(slr.latestModel().weights[0]))
375
- slr.trainOn(input_stream)
376
- self.ssc.start()
377
-
378
- def condition():
379
- self.assertEqual(len(model_weights), len(batches))
380
- return True
381
-
382
- # We want all batches to finish for this test.
383
- eventually(condition, 90, catch_assertions=True)
384
-
385
- w = array(model_weights)
386
- diff = w[1:] - w[:-1]
387
- self.assertTrue(all(diff >= -0.1))
388
-
389
- def test_prediction(self):
390
- """Test prediction on a model with weights already set."""
391
- # Create a model with initial Weights equal to coefs
392
- slr = StreamingLinearRegressionWithSGD(stepSize=0.2, numIterations=25)
393
- slr.setInitialWeights([10.0, 10.0])
394
-
395
- # Create ten batches with 100 sample points in each.
396
- batches = []
397
- for i in range(10):
398
- batch = LinearDataGenerator.generateLinearInput(
399
- 0.0, [10.0, 10.0], [0.0, 0.0], [1.0 / 3.0, 1.0 / 3.0], 100, 42 + i, 0.1
400
- )
401
- batches.append(self.sc.parallelize(batch).map(lambda lp: (lp.label, lp.features)))
402
-
403
- input_stream = self.ssc.queueStream(batches)
404
- output_stream = slr.predictOnValues(input_stream)
405
- samples = []
406
- output_stream.foreachRDD(lambda x: samples.append(x.collect()))
407
-
408
- self.ssc.start()
409
-
410
- def condition():
411
- self.assertEqual(len(samples), len(batches))
412
- return True
413
-
414
- # We want all batches to finish for this test.
415
- eventually(condition, catch_assertions=True)
416
-
417
- # Test that mean absolute error on each batch is less than 0.1
418
- for batch in samples:
419
- true, predicted = zip(*batch)
420
- self.assertTrue(mean(abs(array(true) - array(predicted))) < 0.1)
421
-
422
- @unittest.skipIf(
423
- "COVERAGE_PROCESS_START" in os.environ, "Flaky with coverage enabled, skipping for now."
424
- )
425
- def test_train_prediction(self):
426
- """Test that error on test data improves as model is trained."""
427
- slr = StreamingLinearRegressionWithSGD(stepSize=0.2, numIterations=25)
428
- slr.setInitialWeights([0.0])
429
-
430
- # Create fifteen batches with 100 sample points in each.
431
- batches = []
432
- for i in range(15):
433
- batch = LinearDataGenerator.generateLinearInput(
434
- 0.0, [10.0], [0.0], [1.0 / 3.0], 100, 42 + i, 0.1
435
- )
436
- batches.append(self.sc.parallelize(batch))
437
-
438
- predict_batches = [b.map(lambda lp: (lp.label, lp.features)) for b in batches]
439
- errors = []
440
-
441
- def func(rdd):
442
- true, predicted = zip(*rdd.collect())
443
- errors.append(mean(abs(true) - abs(predicted)))
444
-
445
- input_stream = self.ssc.queueStream(batches)
446
- output_stream = self.ssc.queueStream(predict_batches)
447
- slr.trainOn(input_stream)
448
- output_stream = slr.predictOnValues(output_stream)
449
- output_stream.foreachRDD(func)
450
- self.ssc.start()
451
-
452
- def condition():
453
- if len(errors) == len(predict_batches):
454
- self.assertGreater(errors[1] - errors[-1], 2)
455
- if len(errors) >= 3 and errors[1] - errors[-1] > 2:
456
- return True
457
- return "Latest errors: " + ", ".join(map(lambda x: str(x), errors))
458
-
459
- eventually(condition, timeout=180.0)
460
-
461
-
462
- if __name__ == "__main__":
463
- from pyspark.mllib.tests.test_streaming_algorithms import * # noqa: F401
464
-
465
- try:
466
- import xmlrunner
467
-
468
- testRunner = xmlrunner.XMLTestRunner(output="target/test-reports", verbosity=2)
469
- except ImportError:
470
- testRunner = None
471
- unittest.main(testRunner=testRunner, verbosity=2)