snowpark-connect 0.24.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.
- snowflake/snowpark_connect/column_name_handler.py +116 -4
- snowflake/snowpark_connect/config.py +13 -0
- snowflake/snowpark_connect/constants.py +0 -29
- snowflake/snowpark_connect/dataframe_container.py +6 -0
- snowflake/snowpark_connect/execute_plan/map_execution_command.py +56 -1
- snowflake/snowpark_connect/expression/literal.py +13 -2
- snowflake/snowpark_connect/expression/map_cast.py +5 -8
- snowflake/snowpark_connect/expression/map_sql_expression.py +23 -1
- snowflake/snowpark_connect/expression/map_udf.py +26 -8
- snowflake/snowpark_connect/expression/map_unresolved_attribute.py +199 -15
- snowflake/snowpark_connect/expression/map_unresolved_extract_value.py +44 -16
- snowflake/snowpark_connect/expression/map_unresolved_function.py +825 -353
- snowflake/snowpark_connect/expression/map_unresolved_star.py +3 -2
- snowflake/snowpark_connect/hidden_column.py +39 -0
- snowflake/snowpark_connect/includes/jars/hadoop-client-api-trimmed-3.3.4.jar +0 -0
- snowflake/snowpark_connect/includes/jars/{hadoop-client-api-3.3.4.jar → spark-connect-client-jvm_2.12-3.5.6.jar} +0 -0
- snowflake/snowpark_connect/relation/map_column_ops.py +17 -4
- snowflake/snowpark_connect/relation/map_extension.py +52 -11
- snowflake/snowpark_connect/relation/map_join.py +258 -62
- snowflake/snowpark_connect/relation/map_sql.py +88 -11
- snowflake/snowpark_connect/relation/map_udtf.py +4 -2
- snowflake/snowpark_connect/relation/read/map_read.py +3 -3
- snowflake/snowpark_connect/relation/read/map_read_jdbc.py +1 -1
- snowflake/snowpark_connect/relation/read/map_read_json.py +8 -1
- snowflake/snowpark_connect/relation/read/map_read_table.py +1 -9
- snowflake/snowpark_connect/relation/read/reader_config.py +3 -1
- snowflake/snowpark_connect/relation/write/map_write.py +62 -53
- snowflake/snowpark_connect/resources_initializer.py +29 -1
- snowflake/snowpark_connect/server.py +18 -3
- snowflake/snowpark_connect/type_mapping.py +29 -25
- snowflake/snowpark_connect/typed_column.py +14 -0
- snowflake/snowpark_connect/utils/artifacts.py +23 -0
- snowflake/snowpark_connect/utils/context.py +6 -1
- snowflake/snowpark_connect/utils/scala_udf_utils.py +588 -0
- snowflake/snowpark_connect/utils/telemetry.py +6 -17
- snowflake/snowpark_connect/utils/udf_helper.py +2 -0
- snowflake/snowpark_connect/utils/udf_utils.py +38 -7
- snowflake/snowpark_connect/utils/udtf_utils.py +17 -3
- snowflake/snowpark_connect/version.py +1 -1
- {snowpark_connect-0.24.0.dist-info → snowpark_connect-0.25.0.dist-info}/METADATA +1 -1
- snowpark_connect-0.25.0.dist-info/RECORD +477 -0
- snowflake/snowpark_connect/includes/jars/scala-compiler-2.12.18.jar +0 -0
- snowflake/snowpark_connect/includes/jars/spark-kubernetes_2.12-3.5.6.jar +0 -0
- snowflake/snowpark_connect/includes/jars/spark-mllib_2.12-3.5.6.jar +0 -0
- snowflake/snowpark_connect/includes/jars/spark-streaming_2.12-3.5.6.jar +0 -0
- snowflake/snowpark_connect/includes/python/pyspark/errors/tests/__init__.py +0 -16
- snowflake/snowpark_connect/includes/python/pyspark/errors/tests/test_errors.py +0 -60
- snowflake/snowpark_connect/includes/python/pyspark/ml/deepspeed/tests/test_deepspeed_distributor.py +0 -306
- snowflake/snowpark_connect/includes/python/pyspark/ml/tests/__init__.py +0 -16
- snowflake/snowpark_connect/includes/python/pyspark/ml/tests/connect/test_connect_classification.py +0 -53
- snowflake/snowpark_connect/includes/python/pyspark/ml/tests/connect/test_connect_evaluation.py +0 -50
- snowflake/snowpark_connect/includes/python/pyspark/ml/tests/connect/test_connect_feature.py +0 -43
- snowflake/snowpark_connect/includes/python/pyspark/ml/tests/connect/test_connect_function.py +0 -114
- snowflake/snowpark_connect/includes/python/pyspark/ml/tests/connect/test_connect_pipeline.py +0 -47
- snowflake/snowpark_connect/includes/python/pyspark/ml/tests/connect/test_connect_summarizer.py +0 -43
- snowflake/snowpark_connect/includes/python/pyspark/ml/tests/connect/test_connect_tuning.py +0 -46
- snowflake/snowpark_connect/includes/python/pyspark/ml/tests/connect/test_legacy_mode_classification.py +0 -238
- snowflake/snowpark_connect/includes/python/pyspark/ml/tests/connect/test_legacy_mode_evaluation.py +0 -194
- snowflake/snowpark_connect/includes/python/pyspark/ml/tests/connect/test_legacy_mode_feature.py +0 -156
- snowflake/snowpark_connect/includes/python/pyspark/ml/tests/connect/test_legacy_mode_pipeline.py +0 -184
- snowflake/snowpark_connect/includes/python/pyspark/ml/tests/connect/test_legacy_mode_summarizer.py +0 -78
- snowflake/snowpark_connect/includes/python/pyspark/ml/tests/connect/test_legacy_mode_tuning.py +0 -292
- snowflake/snowpark_connect/includes/python/pyspark/ml/tests/connect/test_parity_torch_data_loader.py +0 -50
- snowflake/snowpark_connect/includes/python/pyspark/ml/tests/connect/test_parity_torch_distributor.py +0 -152
- snowflake/snowpark_connect/includes/python/pyspark/ml/tests/test_algorithms.py +0 -456
- snowflake/snowpark_connect/includes/python/pyspark/ml/tests/test_base.py +0 -96
- snowflake/snowpark_connect/includes/python/pyspark/ml/tests/test_dl_util.py +0 -186
- snowflake/snowpark_connect/includes/python/pyspark/ml/tests/test_evaluation.py +0 -77
- snowflake/snowpark_connect/includes/python/pyspark/ml/tests/test_feature.py +0 -401
- snowflake/snowpark_connect/includes/python/pyspark/ml/tests/test_functions.py +0 -528
- snowflake/snowpark_connect/includes/python/pyspark/ml/tests/test_image.py +0 -82
- snowflake/snowpark_connect/includes/python/pyspark/ml/tests/test_linalg.py +0 -409
- snowflake/snowpark_connect/includes/python/pyspark/ml/tests/test_model_cache.py +0 -55
- snowflake/snowpark_connect/includes/python/pyspark/ml/tests/test_param.py +0 -441
- snowflake/snowpark_connect/includes/python/pyspark/ml/tests/test_persistence.py +0 -546
- snowflake/snowpark_connect/includes/python/pyspark/ml/tests/test_pipeline.py +0 -71
- snowflake/snowpark_connect/includes/python/pyspark/ml/tests/test_stat.py +0 -52
- snowflake/snowpark_connect/includes/python/pyspark/ml/tests/test_training_summary.py +0 -494
- snowflake/snowpark_connect/includes/python/pyspark/ml/tests/test_util.py +0 -85
- snowflake/snowpark_connect/includes/python/pyspark/ml/tests/test_wrapper.py +0 -138
- snowflake/snowpark_connect/includes/python/pyspark/ml/tests/tuning/__init__.py +0 -16
- snowflake/snowpark_connect/includes/python/pyspark/ml/tests/tuning/test_cv_io_basic.py +0 -151
- snowflake/snowpark_connect/includes/python/pyspark/ml/tests/tuning/test_cv_io_nested.py +0 -97
- snowflake/snowpark_connect/includes/python/pyspark/ml/tests/tuning/test_cv_io_pipeline.py +0 -143
- snowflake/snowpark_connect/includes/python/pyspark/ml/tests/tuning/test_tuning.py +0 -551
- snowflake/snowpark_connect/includes/python/pyspark/ml/tests/tuning/test_tvs_io_basic.py +0 -137
- snowflake/snowpark_connect/includes/python/pyspark/ml/tests/tuning/test_tvs_io_nested.py +0 -96
- snowflake/snowpark_connect/includes/python/pyspark/ml/tests/tuning/test_tvs_io_pipeline.py +0 -142
- snowflake/snowpark_connect/includes/python/pyspark/ml/torch/tests/__init__.py +0 -16
- snowflake/snowpark_connect/includes/python/pyspark/ml/torch/tests/test_data_loader.py +0 -137
- snowflake/snowpark_connect/includes/python/pyspark/ml/torch/tests/test_distributor.py +0 -561
- snowflake/snowpark_connect/includes/python/pyspark/ml/torch/tests/test_log_communication.py +0 -172
- snowflake/snowpark_connect/includes/python/pyspark/mllib/tests/__init__.py +0 -16
- snowflake/snowpark_connect/includes/python/pyspark/mllib/tests/test_algorithms.py +0 -353
- snowflake/snowpark_connect/includes/python/pyspark/mllib/tests/test_feature.py +0 -192
- snowflake/snowpark_connect/includes/python/pyspark/mllib/tests/test_linalg.py +0 -680
- snowflake/snowpark_connect/includes/python/pyspark/mllib/tests/test_stat.py +0 -206
- snowflake/snowpark_connect/includes/python/pyspark/mllib/tests/test_streaming_algorithms.py +0 -471
- snowflake/snowpark_connect/includes/python/pyspark/mllib/tests/test_util.py +0 -108
- snowflake/snowpark_connect/includes/python/pyspark/pandas/spark/__init__.py +0 -16
- snowflake/snowpark_connect/includes/python/pyspark/pandas/spark/accessors.py +0 -1281
- snowflake/snowpark_connect/includes/python/pyspark/pandas/spark/functions.py +0 -203
- snowflake/snowpark_connect/includes/python/pyspark/pandas/spark/utils.py +0 -202
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/__init__.py +0 -16
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/computation/__init__.py +0 -16
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/computation/test_any_all.py +0 -177
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/computation/test_apply_func.py +0 -575
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/computation/test_binary_ops.py +0 -235
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/computation/test_combine.py +0 -653
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/computation/test_compute.py +0 -463
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/computation/test_corrwith.py +0 -86
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/computation/test_cov.py +0 -151
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/computation/test_cumulative.py +0 -139
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/computation/test_describe.py +0 -458
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/computation/test_eval.py +0 -86
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/computation/test_melt.py +0 -202
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/computation/test_missing_data.py +0 -520
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/computation/test_pivot.py +0 -361
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/__init__.py +0 -16
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/computation/__init__.py +0 -16
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/computation/test_parity_any_all.py +0 -40
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/computation/test_parity_apply_func.py +0 -42
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/computation/test_parity_binary_ops.py +0 -40
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/computation/test_parity_combine.py +0 -37
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/computation/test_parity_compute.py +0 -60
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/computation/test_parity_corrwith.py +0 -40
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/computation/test_parity_cov.py +0 -40
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/computation/test_parity_cumulative.py +0 -90
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/computation/test_parity_describe.py +0 -40
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/computation/test_parity_eval.py +0 -40
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/computation/test_parity_melt.py +0 -40
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/computation/test_parity_missing_data.py +0 -42
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/computation/test_parity_pivot.py +0 -37
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/data_type_ops/__init__.py +0 -16
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/data_type_ops/test_parity_base.py +0 -36
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/data_type_ops/test_parity_binary_ops.py +0 -42
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/data_type_ops/test_parity_boolean_ops.py +0 -47
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/data_type_ops/test_parity_categorical_ops.py +0 -55
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/data_type_ops/test_parity_complex_ops.py +0 -40
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/data_type_ops/test_parity_date_ops.py +0 -47
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/data_type_ops/test_parity_datetime_ops.py +0 -47
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/data_type_ops/test_parity_null_ops.py +0 -42
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/data_type_ops/test_parity_num_arithmetic.py +0 -43
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/data_type_ops/test_parity_num_ops.py +0 -47
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/data_type_ops/test_parity_num_reverse.py +0 -43
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/data_type_ops/test_parity_string_ops.py +0 -47
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/data_type_ops/test_parity_timedelta_ops.py +0 -47
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/data_type_ops/test_parity_udt_ops.py +0 -40
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/data_type_ops/testing_utils.py +0 -226
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/diff_frames_ops/__init__.py +0 -16
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/diff_frames_ops/test_parity_align.py +0 -39
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/diff_frames_ops/test_parity_basic_slow.py +0 -55
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/diff_frames_ops/test_parity_cov_corrwith.py +0 -39
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/diff_frames_ops/test_parity_dot_frame.py +0 -39
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/diff_frames_ops/test_parity_dot_series.py +0 -39
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/diff_frames_ops/test_parity_index.py +0 -39
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/diff_frames_ops/test_parity_series.py +0 -39
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/diff_frames_ops/test_parity_setitem_frame.py +0 -43
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/diff_frames_ops/test_parity_setitem_series.py +0 -43
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/frame/__init__.py +0 -16
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/frame/test_parity_attrs.py +0 -40
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/frame/test_parity_constructor.py +0 -39
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/frame/test_parity_conversion.py +0 -42
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/frame/test_parity_reindexing.py +0 -42
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/frame/test_parity_reshaping.py +0 -37
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/frame/test_parity_spark.py +0 -40
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/frame/test_parity_take.py +0 -42
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/frame/test_parity_time_series.py +0 -48
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/frame/test_parity_truncate.py +0 -40
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/groupby/__init__.py +0 -16
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/groupby/test_parity_aggregate.py +0 -40
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/groupby/test_parity_apply_func.py +0 -41
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/groupby/test_parity_cumulative.py +0 -67
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/groupby/test_parity_describe.py +0 -40
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/groupby/test_parity_groupby.py +0 -55
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/groupby/test_parity_head_tail.py +0 -40
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/groupby/test_parity_index.py +0 -38
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/groupby/test_parity_missing_data.py +0 -55
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/groupby/test_parity_split_apply.py +0 -39
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/groupby/test_parity_stat.py +0 -38
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/indexes/__init__.py +0 -16
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/indexes/test_parity_align.py +0 -40
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/indexes/test_parity_base.py +0 -50
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/indexes/test_parity_category.py +0 -73
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/indexes/test_parity_datetime.py +0 -39
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/indexes/test_parity_indexing.py +0 -40
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/indexes/test_parity_reindex.py +0 -40
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/indexes/test_parity_rename.py +0 -40
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/indexes/test_parity_reset_index.py +0 -48
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/indexes/test_parity_timedelta.py +0 -39
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/io/__init__.py +0 -16
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/io/test_parity_io.py +0 -40
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/plot/__init__.py +0 -16
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/plot/test_parity_frame_plot.py +0 -45
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/plot/test_parity_frame_plot_matplotlib.py +0 -45
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/plot/test_parity_frame_plot_plotly.py +0 -49
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/plot/test_parity_series_plot.py +0 -37
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/plot/test_parity_series_plot_matplotlib.py +0 -53
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/plot/test_parity_series_plot_plotly.py +0 -45
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/series/__init__.py +0 -16
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/series/test_parity_all_any.py +0 -38
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/series/test_parity_arg_ops.py +0 -37
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/series/test_parity_as_of.py +0 -37
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/series/test_parity_as_type.py +0 -38
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/series/test_parity_compute.py +0 -37
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/series/test_parity_conversion.py +0 -40
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/series/test_parity_cumulative.py +0 -40
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/series/test_parity_index.py +0 -38
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/series/test_parity_missing_data.py +0 -40
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/series/test_parity_series.py +0 -37
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/series/test_parity_sort.py +0 -38
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/series/test_parity_stat.py +0 -38
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/test_parity_categorical.py +0 -66
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/test_parity_config.py +0 -37
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/test_parity_csv.py +0 -37
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/test_parity_dataframe_conversion.py +0 -42
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/test_parity_dataframe_spark_io.py +0 -39
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/test_parity_default_index.py +0 -49
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/test_parity_ewm.py +0 -37
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/test_parity_expanding.py +0 -39
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/test_parity_extension.py +0 -49
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/test_parity_frame_spark.py +0 -53
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/test_parity_generic_functions.py +0 -43
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/test_parity_indexing.py +0 -49
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/test_parity_indexops_spark.py +0 -39
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/test_parity_internal.py +0 -41
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/test_parity_namespace.py +0 -39
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/test_parity_numpy_compat.py +0 -60
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/test_parity_ops_on_diff_frames.py +0 -48
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/test_parity_ops_on_diff_frames_groupby.py +0 -39
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/test_parity_ops_on_diff_frames_groupby_expanding.py +0 -44
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/test_parity_ops_on_diff_frames_groupby_rolling.py +0 -84
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/test_parity_repr.py +0 -37
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/test_parity_resample.py +0 -45
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/test_parity_reshape.py +0 -39
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/test_parity_rolling.py +0 -39
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/test_parity_scalars.py +0 -37
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/test_parity_series_conversion.py +0 -39
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/test_parity_series_datetime.py +0 -39
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/test_parity_series_string.py +0 -39
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/test_parity_spark_functions.py +0 -39
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/test_parity_sql.py +0 -43
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/test_parity_stats.py +0 -37
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/test_parity_typedef.py +0 -36
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/test_parity_utils.py +0 -37
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/connect/test_parity_window.py +0 -39
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/data_type_ops/__init__.py +0 -16
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/data_type_ops/test_base.py +0 -107
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/data_type_ops/test_binary_ops.py +0 -224
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/data_type_ops/test_boolean_ops.py +0 -825
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/data_type_ops/test_categorical_ops.py +0 -562
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/data_type_ops/test_complex_ops.py +0 -368
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/data_type_ops/test_date_ops.py +0 -257
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/data_type_ops/test_datetime_ops.py +0 -260
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/data_type_ops/test_null_ops.py +0 -178
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/data_type_ops/test_num_arithmetic.py +0 -184
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/data_type_ops/test_num_ops.py +0 -497
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/data_type_ops/test_num_reverse.py +0 -140
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/data_type_ops/test_string_ops.py +0 -354
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/data_type_ops/test_timedelta_ops.py +0 -219
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/data_type_ops/test_udt_ops.py +0 -192
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/data_type_ops/testing_utils.py +0 -228
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/diff_frames_ops/__init__.py +0 -16
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/diff_frames_ops/test_align.py +0 -118
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/diff_frames_ops/test_basic_slow.py +0 -198
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/diff_frames_ops/test_cov_corrwith.py +0 -181
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/diff_frames_ops/test_dot_frame.py +0 -103
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/diff_frames_ops/test_dot_series.py +0 -141
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/diff_frames_ops/test_index.py +0 -109
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/diff_frames_ops/test_series.py +0 -136
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/diff_frames_ops/test_setitem_frame.py +0 -125
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/diff_frames_ops/test_setitem_series.py +0 -217
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/frame/__init__.py +0 -16
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/frame/test_attrs.py +0 -384
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/frame/test_constructor.py +0 -598
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/frame/test_conversion.py +0 -73
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/frame/test_reindexing.py +0 -869
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/frame/test_reshaping.py +0 -487
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/frame/test_spark.py +0 -309
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/frame/test_take.py +0 -156
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/frame/test_time_series.py +0 -149
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/frame/test_truncate.py +0 -163
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/groupby/__init__.py +0 -16
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/groupby/test_aggregate.py +0 -311
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/groupby/test_apply_func.py +0 -524
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/groupby/test_cumulative.py +0 -419
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/groupby/test_describe.py +0 -144
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/groupby/test_groupby.py +0 -979
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/groupby/test_head_tail.py +0 -234
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/groupby/test_index.py +0 -206
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/groupby/test_missing_data.py +0 -421
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/groupby/test_split_apply.py +0 -187
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/groupby/test_stat.py +0 -397
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/indexes/__init__.py +0 -16
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/indexes/test_align.py +0 -100
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/indexes/test_base.py +0 -2743
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/indexes/test_category.py +0 -484
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/indexes/test_datetime.py +0 -276
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/indexes/test_indexing.py +0 -432
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/indexes/test_reindex.py +0 -310
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/indexes/test_rename.py +0 -257
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/indexes/test_reset_index.py +0 -160
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/indexes/test_timedelta.py +0 -128
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/io/__init__.py +0 -16
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/io/test_io.py +0 -137
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/plot/__init__.py +0 -16
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/plot/test_frame_plot.py +0 -170
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/plot/test_frame_plot_matplotlib.py +0 -547
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/plot/test_frame_plot_plotly.py +0 -285
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/plot/test_series_plot.py +0 -106
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/plot/test_series_plot_matplotlib.py +0 -409
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/plot/test_series_plot_plotly.py +0 -247
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/series/__init__.py +0 -16
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/series/test_all_any.py +0 -105
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/series/test_arg_ops.py +0 -197
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/series/test_as_of.py +0 -137
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/series/test_as_type.py +0 -227
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/series/test_compute.py +0 -634
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/series/test_conversion.py +0 -88
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/series/test_cumulative.py +0 -139
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/series/test_index.py +0 -475
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/series/test_missing_data.py +0 -265
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/series/test_series.py +0 -818
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/series/test_sort.py +0 -162
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/series/test_stat.py +0 -780
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/test_categorical.py +0 -741
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/test_config.py +0 -160
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/test_csv.py +0 -453
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/test_dataframe_conversion.py +0 -281
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/test_dataframe_spark_io.py +0 -487
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/test_default_index.py +0 -109
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/test_ewm.py +0 -434
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/test_expanding.py +0 -253
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/test_extension.py +0 -152
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/test_frame_spark.py +0 -162
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/test_generic_functions.py +0 -234
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/test_indexing.py +0 -1339
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/test_indexops_spark.py +0 -82
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/test_internal.py +0 -124
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/test_namespace.py +0 -638
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/test_numpy_compat.py +0 -200
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/test_ops_on_diff_frames.py +0 -1355
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/test_ops_on_diff_frames_groupby.py +0 -655
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/test_ops_on_diff_frames_groupby_expanding.py +0 -113
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/test_ops_on_diff_frames_groupby_rolling.py +0 -118
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/test_repr.py +0 -192
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/test_resample.py +0 -346
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/test_reshape.py +0 -495
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/test_rolling.py +0 -263
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/test_scalars.py +0 -59
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/test_series_conversion.py +0 -85
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/test_series_datetime.py +0 -364
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/test_series_string.py +0 -362
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/test_spark_functions.py +0 -46
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/test_sql.py +0 -123
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/test_stats.py +0 -581
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/test_typedef.py +0 -447
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/test_utils.py +0 -301
- snowflake/snowpark_connect/includes/python/pyspark/pandas/tests/test_window.py +0 -465
- snowflake/snowpark_connect/includes/python/pyspark/resource/tests/__init__.py +0 -16
- snowflake/snowpark_connect/includes/python/pyspark/resource/tests/test_resources.py +0 -83
- snowflake/snowpark_connect/includes/python/pyspark/sql/tests/__init__.py +0 -16
- snowflake/snowpark_connect/includes/python/pyspark/sql/tests/connect/__init__.py +0 -16
- snowflake/snowpark_connect/includes/python/pyspark/sql/tests/connect/client/__init__.py +0 -16
- snowflake/snowpark_connect/includes/python/pyspark/sql/tests/connect/client/test_artifact.py +0 -420
- snowflake/snowpark_connect/includes/python/pyspark/sql/tests/connect/client/test_client.py +0 -358
- snowflake/snowpark_connect/includes/python/pyspark/sql/tests/connect/streaming/__init__.py +0 -16
- snowflake/snowpark_connect/includes/python/pyspark/sql/tests/connect/streaming/test_parity_foreach.py +0 -36
- snowflake/snowpark_connect/includes/python/pyspark/sql/tests/connect/streaming/test_parity_foreach_batch.py +0 -44
- snowflake/snowpark_connect/includes/python/pyspark/sql/tests/connect/streaming/test_parity_listener.py +0 -116
- snowflake/snowpark_connect/includes/python/pyspark/sql/tests/connect/streaming/test_parity_streaming.py +0 -35
- snowflake/snowpark_connect/includes/python/pyspark/sql/tests/connect/test_connect_basic.py +0 -3612
- snowflake/snowpark_connect/includes/python/pyspark/sql/tests/connect/test_connect_column.py +0 -1042
- snowflake/snowpark_connect/includes/python/pyspark/sql/tests/connect/test_connect_function.py +0 -2381
- snowflake/snowpark_connect/includes/python/pyspark/sql/tests/connect/test_connect_plan.py +0 -1060
- snowflake/snowpark_connect/includes/python/pyspark/sql/tests/connect/test_parity_arrow.py +0 -163
- snowflake/snowpark_connect/includes/python/pyspark/sql/tests/connect/test_parity_arrow_map.py +0 -38
- snowflake/snowpark_connect/includes/python/pyspark/sql/tests/connect/test_parity_arrow_python_udf.py +0 -48
- snowflake/snowpark_connect/includes/python/pyspark/sql/tests/connect/test_parity_catalog.py +0 -36
- snowflake/snowpark_connect/includes/python/pyspark/sql/tests/connect/test_parity_column.py +0 -55
- snowflake/snowpark_connect/includes/python/pyspark/sql/tests/connect/test_parity_conf.py +0 -36
- snowflake/snowpark_connect/includes/python/pyspark/sql/tests/connect/test_parity_dataframe.py +0 -96
- snowflake/snowpark_connect/includes/python/pyspark/sql/tests/connect/test_parity_datasources.py +0 -44
- snowflake/snowpark_connect/includes/python/pyspark/sql/tests/connect/test_parity_errors.py +0 -36
- snowflake/snowpark_connect/includes/python/pyspark/sql/tests/connect/test_parity_functions.py +0 -59
- snowflake/snowpark_connect/includes/python/pyspark/sql/tests/connect/test_parity_group.py +0 -36
- snowflake/snowpark_connect/includes/python/pyspark/sql/tests/connect/test_parity_pandas_cogrouped_map.py +0 -59
- snowflake/snowpark_connect/includes/python/pyspark/sql/tests/connect/test_parity_pandas_grouped_map.py +0 -74
- snowflake/snowpark_connect/includes/python/pyspark/sql/tests/connect/test_parity_pandas_grouped_map_with_state.py +0 -62
- snowflake/snowpark_connect/includes/python/pyspark/sql/tests/connect/test_parity_pandas_map.py +0 -58
- snowflake/snowpark_connect/includes/python/pyspark/sql/tests/connect/test_parity_pandas_udf.py +0 -70
- snowflake/snowpark_connect/includes/python/pyspark/sql/tests/connect/test_parity_pandas_udf_grouped_agg.py +0 -50
- snowflake/snowpark_connect/includes/python/pyspark/sql/tests/connect/test_parity_pandas_udf_scalar.py +0 -68
- snowflake/snowpark_connect/includes/python/pyspark/sql/tests/connect/test_parity_pandas_udf_window.py +0 -40
- snowflake/snowpark_connect/includes/python/pyspark/sql/tests/connect/test_parity_readwriter.py +0 -46
- snowflake/snowpark_connect/includes/python/pyspark/sql/tests/connect/test_parity_serde.py +0 -44
- snowflake/snowpark_connect/includes/python/pyspark/sql/tests/connect/test_parity_types.py +0 -100
- snowflake/snowpark_connect/includes/python/pyspark/sql/tests/connect/test_parity_udf.py +0 -100
- snowflake/snowpark_connect/includes/python/pyspark/sql/tests/connect/test_parity_udtf.py +0 -163
- snowflake/snowpark_connect/includes/python/pyspark/sql/tests/connect/test_session.py +0 -181
- snowflake/snowpark_connect/includes/python/pyspark/sql/tests/connect/test_utils.py +0 -42
- snowflake/snowpark_connect/includes/python/pyspark/sql/tests/pandas/__init__.py +0 -16
- snowflake/snowpark_connect/includes/python/pyspark/sql/tests/pandas/test_pandas_cogrouped_map.py +0 -623
- snowflake/snowpark_connect/includes/python/pyspark/sql/tests/pandas/test_pandas_grouped_map.py +0 -869
- snowflake/snowpark_connect/includes/python/pyspark/sql/tests/pandas/test_pandas_grouped_map_with_state.py +0 -342
- snowflake/snowpark_connect/includes/python/pyspark/sql/tests/pandas/test_pandas_map.py +0 -436
- snowflake/snowpark_connect/includes/python/pyspark/sql/tests/pandas/test_pandas_udf.py +0 -363
- snowflake/snowpark_connect/includes/python/pyspark/sql/tests/pandas/test_pandas_udf_grouped_agg.py +0 -592
- snowflake/snowpark_connect/includes/python/pyspark/sql/tests/pandas/test_pandas_udf_scalar.py +0 -1503
- snowflake/snowpark_connect/includes/python/pyspark/sql/tests/pandas/test_pandas_udf_typehints.py +0 -392
- snowflake/snowpark_connect/includes/python/pyspark/sql/tests/pandas/test_pandas_udf_typehints_with_future_annotations.py +0 -375
- snowflake/snowpark_connect/includes/python/pyspark/sql/tests/pandas/test_pandas_udf_window.py +0 -411
- snowflake/snowpark_connect/includes/python/pyspark/sql/tests/streaming/__init__.py +0 -16
- snowflake/snowpark_connect/includes/python/pyspark/sql/tests/streaming/test_streaming.py +0 -401
- snowflake/snowpark_connect/includes/python/pyspark/sql/tests/streaming/test_streaming_foreach.py +0 -295
- snowflake/snowpark_connect/includes/python/pyspark/sql/tests/streaming/test_streaming_foreach_batch.py +0 -106
- snowflake/snowpark_connect/includes/python/pyspark/sql/tests/streaming/test_streaming_listener.py +0 -558
- snowflake/snowpark_connect/includes/python/pyspark/sql/tests/test_arrow.py +0 -1346
- snowflake/snowpark_connect/includes/python/pyspark/sql/tests/test_arrow_map.py +0 -182
- snowflake/snowpark_connect/includes/python/pyspark/sql/tests/test_arrow_python_udf.py +0 -202
- snowflake/snowpark_connect/includes/python/pyspark/sql/tests/test_catalog.py +0 -503
- snowflake/snowpark_connect/includes/python/pyspark/sql/tests/test_column.py +0 -225
- snowflake/snowpark_connect/includes/python/pyspark/sql/tests/test_conf.py +0 -83
- snowflake/snowpark_connect/includes/python/pyspark/sql/tests/test_context.py +0 -201
- snowflake/snowpark_connect/includes/python/pyspark/sql/tests/test_dataframe.py +0 -1931
- snowflake/snowpark_connect/includes/python/pyspark/sql/tests/test_datasources.py +0 -256
- snowflake/snowpark_connect/includes/python/pyspark/sql/tests/test_errors.py +0 -69
- snowflake/snowpark_connect/includes/python/pyspark/sql/tests/test_functions.py +0 -1349
- snowflake/snowpark_connect/includes/python/pyspark/sql/tests/test_group.py +0 -53
- snowflake/snowpark_connect/includes/python/pyspark/sql/tests/test_pandas_sqlmetrics.py +0 -68
- snowflake/snowpark_connect/includes/python/pyspark/sql/tests/test_readwriter.py +0 -283
- snowflake/snowpark_connect/includes/python/pyspark/sql/tests/test_serde.py +0 -155
- snowflake/snowpark_connect/includes/python/pyspark/sql/tests/test_session.py +0 -412
- snowflake/snowpark_connect/includes/python/pyspark/sql/tests/test_types.py +0 -1581
- snowflake/snowpark_connect/includes/python/pyspark/sql/tests/test_udf.py +0 -961
- snowflake/snowpark_connect/includes/python/pyspark/sql/tests/test_udf_profiler.py +0 -165
- snowflake/snowpark_connect/includes/python/pyspark/sql/tests/test_udtf.py +0 -1456
- snowflake/snowpark_connect/includes/python/pyspark/sql/tests/test_utils.py +0 -1686
- snowflake/snowpark_connect/includes/python/pyspark/streaming/tests/__init__.py +0 -16
- snowflake/snowpark_connect/includes/python/pyspark/streaming/tests/test_context.py +0 -184
- snowflake/snowpark_connect/includes/python/pyspark/streaming/tests/test_dstream.py +0 -706
- snowflake/snowpark_connect/includes/python/pyspark/streaming/tests/test_kinesis.py +0 -118
- snowflake/snowpark_connect/includes/python/pyspark/streaming/tests/test_listener.py +0 -160
- snowflake/snowpark_connect/includes/python/pyspark/tests/__init__.py +0 -16
- snowflake/snowpark_connect/includes/python/pyspark/tests/test_appsubmit.py +0 -306
- snowflake/snowpark_connect/includes/python/pyspark/tests/test_broadcast.py +0 -196
- snowflake/snowpark_connect/includes/python/pyspark/tests/test_conf.py +0 -44
- snowflake/snowpark_connect/includes/python/pyspark/tests/test_context.py +0 -346
- snowflake/snowpark_connect/includes/python/pyspark/tests/test_daemon.py +0 -89
- snowflake/snowpark_connect/includes/python/pyspark/tests/test_install_spark.py +0 -124
- snowflake/snowpark_connect/includes/python/pyspark/tests/test_join.py +0 -69
- snowflake/snowpark_connect/includes/python/pyspark/tests/test_memory_profiler.py +0 -167
- snowflake/snowpark_connect/includes/python/pyspark/tests/test_pin_thread.py +0 -194
- snowflake/snowpark_connect/includes/python/pyspark/tests/test_profiler.py +0 -168
- snowflake/snowpark_connect/includes/python/pyspark/tests/test_rdd.py +0 -939
- snowflake/snowpark_connect/includes/python/pyspark/tests/test_rddbarrier.py +0 -52
- snowflake/snowpark_connect/includes/python/pyspark/tests/test_rddsampler.py +0 -66
- snowflake/snowpark_connect/includes/python/pyspark/tests/test_readwrite.py +0 -368
- snowflake/snowpark_connect/includes/python/pyspark/tests/test_serializers.py +0 -257
- snowflake/snowpark_connect/includes/python/pyspark/tests/test_shuffle.py +0 -267
- snowflake/snowpark_connect/includes/python/pyspark/tests/test_stage_sched.py +0 -153
- snowflake/snowpark_connect/includes/python/pyspark/tests/test_statcounter.py +0 -130
- snowflake/snowpark_connect/includes/python/pyspark/tests/test_taskcontext.py +0 -350
- snowflake/snowpark_connect/includes/python/pyspark/tests/test_util.py +0 -97
- snowflake/snowpark_connect/includes/python/pyspark/tests/test_worker.py +0 -271
- snowpark_connect-0.24.0.dist-info/RECORD +0 -898
- {snowpark_connect-0.24.0.data → snowpark_connect-0.25.0.data}/scripts/snowpark-connect +0 -0
- {snowpark_connect-0.24.0.data → snowpark_connect-0.25.0.data}/scripts/snowpark-session +0 -0
- {snowpark_connect-0.24.0.data → snowpark_connect-0.25.0.data}/scripts/snowpark-submit +0 -0
- {snowpark_connect-0.24.0.dist-info → snowpark_connect-0.25.0.dist-info}/WHEEL +0 -0
- {snowpark_connect-0.24.0.dist-info → snowpark_connect-0.25.0.dist-info}/licenses/LICENSE-binary +0 -0
- {snowpark_connect-0.24.0.dist-info → snowpark_connect-0.25.0.dist-info}/licenses/LICENSE.txt +0 -0
- {snowpark_connect-0.24.0.dist-info → snowpark_connect-0.25.0.dist-info}/licenses/NOTICE-binary +0 -0
- {snowpark_connect-0.24.0.dist-info → snowpark_connect-0.25.0.dist-info}/top_level.txt +0 -0
|
@@ -1,551 +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 tempfile
|
|
19
|
-
import unittest
|
|
20
|
-
|
|
21
|
-
import numpy as np
|
|
22
|
-
from pyspark.ml import Estimator, Model
|
|
23
|
-
from pyspark.ml.classification import LogisticRegression
|
|
24
|
-
from pyspark.ml.evaluation import (
|
|
25
|
-
BinaryClassificationEvaluator,
|
|
26
|
-
RegressionEvaluator,
|
|
27
|
-
)
|
|
28
|
-
from pyspark.ml.linalg import Vectors
|
|
29
|
-
from pyspark.ml.param import Param, Params
|
|
30
|
-
from pyspark.ml.tuning import (
|
|
31
|
-
CrossValidator,
|
|
32
|
-
CrossValidatorModel,
|
|
33
|
-
ParamGridBuilder,
|
|
34
|
-
TrainValidationSplit,
|
|
35
|
-
TrainValidationSplitModel,
|
|
36
|
-
)
|
|
37
|
-
from pyspark.sql.functions import rand
|
|
38
|
-
from pyspark.testing.mlutils import SparkSessionTestCase
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
class HasInducedError(Params):
|
|
42
|
-
def __init__(self):
|
|
43
|
-
super(HasInducedError, self).__init__()
|
|
44
|
-
self.inducedError = Param(
|
|
45
|
-
self, "inducedError", "Uniformly-distributed error added to feature"
|
|
46
|
-
)
|
|
47
|
-
|
|
48
|
-
def getInducedError(self):
|
|
49
|
-
return self.getOrDefault(self.inducedError)
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
class InducedErrorModel(Model, HasInducedError):
|
|
53
|
-
def __init__(self):
|
|
54
|
-
super(InducedErrorModel, self).__init__()
|
|
55
|
-
|
|
56
|
-
def _transform(self, dataset):
|
|
57
|
-
return dataset.withColumn(
|
|
58
|
-
"prediction", dataset.feature + (rand(0) * self.getInducedError())
|
|
59
|
-
)
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
class InducedErrorEstimator(Estimator, HasInducedError):
|
|
63
|
-
def __init__(self, inducedError=1.0):
|
|
64
|
-
super(InducedErrorEstimator, self).__init__()
|
|
65
|
-
self._set(inducedError=inducedError)
|
|
66
|
-
|
|
67
|
-
def _fit(self, dataset):
|
|
68
|
-
model = InducedErrorModel()
|
|
69
|
-
self._copyValues(model)
|
|
70
|
-
return model
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
class ParamGridBuilderTests(SparkSessionTestCase):
|
|
74
|
-
def test_addGrid(self):
|
|
75
|
-
with self.assertRaises(TypeError):
|
|
76
|
-
(ParamGridBuilder().addGrid("must be an instance of Param", ["not", "string"]).build())
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
class ValidatorTestUtilsMixin:
|
|
80
|
-
def assert_param_maps_equal(self, paramMaps1, paramMaps2):
|
|
81
|
-
self.assertEqual(len(paramMaps1), len(paramMaps2))
|
|
82
|
-
for paramMap1, paramMap2 in zip(paramMaps1, paramMaps2):
|
|
83
|
-
self.assertEqual(set(paramMap1.keys()), set(paramMap2.keys()))
|
|
84
|
-
for param in paramMap1.keys():
|
|
85
|
-
v1 = paramMap1[param]
|
|
86
|
-
v2 = paramMap2[param]
|
|
87
|
-
if isinstance(v1, Params):
|
|
88
|
-
self.assertEqual(v1.uid, v2.uid)
|
|
89
|
-
else:
|
|
90
|
-
self.assertEqual(v1, v2)
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
class CrossValidatorTests(SparkSessionTestCase, ValidatorTestUtilsMixin):
|
|
94
|
-
def test_gen_avg_and_std_metrics(self):
|
|
95
|
-
metrics_all = [
|
|
96
|
-
[1.0, 3.0, 2.0, 4.0],
|
|
97
|
-
[3.0, 2.0, 2.0, 4.0],
|
|
98
|
-
[3.0, 2.5, 2.1, 8.0],
|
|
99
|
-
]
|
|
100
|
-
avg_metrics, std_metrics = CrossValidator._gen_avg_and_std_metrics(metrics_all)
|
|
101
|
-
assert np.allclose(avg_metrics, [2.33333333, 2.5, 2.03333333, 5.33333333])
|
|
102
|
-
assert np.allclose(std_metrics, [0.94280904, 0.40824829, 0.04714045, 1.88561808])
|
|
103
|
-
assert isinstance(avg_metrics, list)
|
|
104
|
-
assert isinstance(std_metrics, list)
|
|
105
|
-
|
|
106
|
-
def test_copy(self):
|
|
107
|
-
dataset = self.spark.createDataFrame(
|
|
108
|
-
[(10, 10.0), (50, 50.0), (100, 100.0), (500, 500.0)] * 10, ["feature", "label"]
|
|
109
|
-
)
|
|
110
|
-
|
|
111
|
-
iee = InducedErrorEstimator()
|
|
112
|
-
evaluator = RegressionEvaluator(metricName="rmse")
|
|
113
|
-
|
|
114
|
-
grid = ParamGridBuilder().addGrid(iee.inducedError, [100.0, 0.0, 10000.0]).build()
|
|
115
|
-
cv = CrossValidator(
|
|
116
|
-
estimator=iee,
|
|
117
|
-
estimatorParamMaps=grid,
|
|
118
|
-
evaluator=evaluator,
|
|
119
|
-
collectSubModels=True,
|
|
120
|
-
numFolds=2,
|
|
121
|
-
)
|
|
122
|
-
cvCopied = cv.copy()
|
|
123
|
-
for param in [
|
|
124
|
-
lambda x: x.getEstimator().uid,
|
|
125
|
-
# SPARK-32092: CrossValidator.copy() needs to copy all existing params
|
|
126
|
-
lambda x: x.getNumFolds(),
|
|
127
|
-
lambda x: x.getFoldCol(),
|
|
128
|
-
lambda x: x.getCollectSubModels(),
|
|
129
|
-
lambda x: x.getParallelism(),
|
|
130
|
-
lambda x: x.getSeed(),
|
|
131
|
-
]:
|
|
132
|
-
self.assertEqual(param(cv), param(cvCopied))
|
|
133
|
-
|
|
134
|
-
cvModel = cv.fit(dataset)
|
|
135
|
-
cvModelCopied = cvModel.copy()
|
|
136
|
-
for index in range(len(cvModel.avgMetrics)):
|
|
137
|
-
self.assertTrue(
|
|
138
|
-
abs(cvModel.avgMetrics[index] - cvModelCopied.avgMetrics[index]) < 0.0001
|
|
139
|
-
)
|
|
140
|
-
self.assertTrue(np.allclose(cvModel.stdMetrics, cvModelCopied.stdMetrics))
|
|
141
|
-
# SPARK-32092: CrossValidatorModel.copy() needs to copy all existing params
|
|
142
|
-
for param in [lambda x: x.getNumFolds(), lambda x: x.getFoldCol(), lambda x: x.getSeed()]:
|
|
143
|
-
self.assertEqual(param(cvModel), param(cvModelCopied))
|
|
144
|
-
|
|
145
|
-
cvModel.avgMetrics[0] = "foo"
|
|
146
|
-
self.assertNotEqual(
|
|
147
|
-
cvModelCopied.avgMetrics[0],
|
|
148
|
-
"foo",
|
|
149
|
-
"Changing the original avgMetrics should not affect the copied model",
|
|
150
|
-
)
|
|
151
|
-
cvModel.stdMetrics[0] = "foo"
|
|
152
|
-
self.assertNotEqual(
|
|
153
|
-
cvModelCopied.stdMetrics[0],
|
|
154
|
-
"foo",
|
|
155
|
-
"Changing the original stdMetrics should not affect the copied model",
|
|
156
|
-
)
|
|
157
|
-
cvModel.subModels[0][0].getInducedError = lambda: "foo"
|
|
158
|
-
self.assertNotEqual(
|
|
159
|
-
cvModelCopied.subModels[0][0].getInducedError(),
|
|
160
|
-
"foo",
|
|
161
|
-
"Changing the original subModels should not affect the copied model",
|
|
162
|
-
)
|
|
163
|
-
|
|
164
|
-
def test_fit_minimize_metric(self):
|
|
165
|
-
dataset = self.spark.createDataFrame(
|
|
166
|
-
[(10, 10.0), (50, 50.0), (100, 100.0), (500, 500.0)] * 10, ["feature", "label"]
|
|
167
|
-
)
|
|
168
|
-
|
|
169
|
-
iee = InducedErrorEstimator()
|
|
170
|
-
evaluator = RegressionEvaluator(metricName="rmse")
|
|
171
|
-
|
|
172
|
-
grid = ParamGridBuilder().addGrid(iee.inducedError, [100.0, 0.0, 10000.0]).build()
|
|
173
|
-
cv = CrossValidator(estimator=iee, estimatorParamMaps=grid, evaluator=evaluator)
|
|
174
|
-
cvModel = cv.fit(dataset)
|
|
175
|
-
bestModel = cvModel.bestModel
|
|
176
|
-
bestModelMetric = evaluator.evaluate(bestModel.transform(dataset))
|
|
177
|
-
|
|
178
|
-
self.assertEqual(
|
|
179
|
-
0.0, bestModel.getOrDefault("inducedError"), "Best model should have zero induced error"
|
|
180
|
-
)
|
|
181
|
-
self.assertEqual(0.0, bestModelMetric, "Best model has RMSE of 0")
|
|
182
|
-
|
|
183
|
-
def test_fit_maximize_metric(self):
|
|
184
|
-
dataset = self.spark.createDataFrame(
|
|
185
|
-
[(10, 10.0), (50, 50.0), (100, 100.0), (500, 500.0)] * 10, ["feature", "label"]
|
|
186
|
-
)
|
|
187
|
-
|
|
188
|
-
iee = InducedErrorEstimator()
|
|
189
|
-
evaluator = RegressionEvaluator(metricName="r2")
|
|
190
|
-
|
|
191
|
-
grid = ParamGridBuilder().addGrid(iee.inducedError, [100.0, 0.0, 10000.0]).build()
|
|
192
|
-
cv = CrossValidator(estimator=iee, estimatorParamMaps=grid, evaluator=evaluator)
|
|
193
|
-
cvModel = cv.fit(dataset)
|
|
194
|
-
bestModel = cvModel.bestModel
|
|
195
|
-
bestModelMetric = evaluator.evaluate(bestModel.transform(dataset))
|
|
196
|
-
|
|
197
|
-
self.assertEqual(
|
|
198
|
-
0.0, bestModel.getOrDefault("inducedError"), "Best model should have zero induced error"
|
|
199
|
-
)
|
|
200
|
-
self.assertEqual(1.0, bestModelMetric, "Best model has R-squared of 1")
|
|
201
|
-
|
|
202
|
-
def test_param_grid_type_coercion(self):
|
|
203
|
-
lr = LogisticRegression(maxIter=10)
|
|
204
|
-
paramGrid = ParamGridBuilder().addGrid(lr.regParam, [0.5, 1]).build()
|
|
205
|
-
for param in paramGrid:
|
|
206
|
-
for v in param.values():
|
|
207
|
-
assert type(v) == float
|
|
208
|
-
|
|
209
|
-
def test_parallel_evaluation(self):
|
|
210
|
-
dataset = self.spark.createDataFrame(
|
|
211
|
-
[
|
|
212
|
-
(Vectors.dense([0.0]), 0.0),
|
|
213
|
-
(Vectors.dense([0.4]), 1.0),
|
|
214
|
-
(Vectors.dense([0.5]), 0.0),
|
|
215
|
-
(Vectors.dense([0.6]), 1.0),
|
|
216
|
-
(Vectors.dense([1.0]), 1.0),
|
|
217
|
-
]
|
|
218
|
-
* 10,
|
|
219
|
-
["features", "label"],
|
|
220
|
-
)
|
|
221
|
-
|
|
222
|
-
lr = LogisticRegression()
|
|
223
|
-
grid = ParamGridBuilder().addGrid(lr.maxIter, [5, 6]).build()
|
|
224
|
-
evaluator = BinaryClassificationEvaluator()
|
|
225
|
-
|
|
226
|
-
# test save/load of CrossValidator
|
|
227
|
-
cv = CrossValidator(estimator=lr, estimatorParamMaps=grid, evaluator=evaluator)
|
|
228
|
-
cv.setParallelism(1)
|
|
229
|
-
cvSerialModel = cv.fit(dataset)
|
|
230
|
-
cv.setParallelism(2)
|
|
231
|
-
cvParallelModel = cv.fit(dataset)
|
|
232
|
-
self.assertEqual(cvSerialModel.avgMetrics, cvParallelModel.avgMetrics)
|
|
233
|
-
self.assertEqual(cvSerialModel.stdMetrics, cvParallelModel.stdMetrics)
|
|
234
|
-
|
|
235
|
-
def test_expose_sub_models(self):
|
|
236
|
-
temp_path = tempfile.mkdtemp()
|
|
237
|
-
dataset = self.spark.createDataFrame(
|
|
238
|
-
[
|
|
239
|
-
(Vectors.dense([0.0]), 0.0),
|
|
240
|
-
(Vectors.dense([0.4]), 1.0),
|
|
241
|
-
(Vectors.dense([0.5]), 0.0),
|
|
242
|
-
(Vectors.dense([0.6]), 1.0),
|
|
243
|
-
(Vectors.dense([1.0]), 1.0),
|
|
244
|
-
]
|
|
245
|
-
* 10,
|
|
246
|
-
["features", "label"],
|
|
247
|
-
)
|
|
248
|
-
|
|
249
|
-
lr = LogisticRegression()
|
|
250
|
-
grid = ParamGridBuilder().addGrid(lr.maxIter, [0, 1]).build()
|
|
251
|
-
evaluator = BinaryClassificationEvaluator()
|
|
252
|
-
|
|
253
|
-
numFolds = 3
|
|
254
|
-
cv = CrossValidator(
|
|
255
|
-
estimator=lr,
|
|
256
|
-
estimatorParamMaps=grid,
|
|
257
|
-
evaluator=evaluator,
|
|
258
|
-
numFolds=numFolds,
|
|
259
|
-
collectSubModels=True,
|
|
260
|
-
)
|
|
261
|
-
|
|
262
|
-
def checkSubModels(subModels):
|
|
263
|
-
self.assertEqual(len(subModels), numFolds)
|
|
264
|
-
for i in range(numFolds):
|
|
265
|
-
self.assertEqual(len(subModels[i]), len(grid))
|
|
266
|
-
|
|
267
|
-
cvModel = cv.fit(dataset)
|
|
268
|
-
checkSubModels(cvModel.subModels)
|
|
269
|
-
|
|
270
|
-
# Test the default value for option "persistSubModel" to be "true"
|
|
271
|
-
testSubPath = temp_path + "/testCrossValidatorSubModels"
|
|
272
|
-
savingPathWithSubModels = testSubPath + "cvModel3"
|
|
273
|
-
cvModel.save(savingPathWithSubModels)
|
|
274
|
-
cvModel3 = CrossValidatorModel.load(savingPathWithSubModels)
|
|
275
|
-
checkSubModels(cvModel3.subModels)
|
|
276
|
-
cvModel4 = cvModel3.copy()
|
|
277
|
-
checkSubModels(cvModel4.subModels)
|
|
278
|
-
|
|
279
|
-
savingPathWithoutSubModels = testSubPath + "cvModel2"
|
|
280
|
-
cvModel.write().option("persistSubModels", "false").save(savingPathWithoutSubModels)
|
|
281
|
-
cvModel2 = CrossValidatorModel.load(savingPathWithoutSubModels)
|
|
282
|
-
self.assertEqual(cvModel2.subModels, None)
|
|
283
|
-
|
|
284
|
-
for i in range(numFolds):
|
|
285
|
-
for j in range(len(grid)):
|
|
286
|
-
self.assertEqual(cvModel.subModels[i][j].uid, cvModel3.subModels[i][j].uid)
|
|
287
|
-
|
|
288
|
-
def test_user_specified_folds(self):
|
|
289
|
-
from pyspark.sql import functions as F
|
|
290
|
-
|
|
291
|
-
dataset = self.spark.createDataFrame(
|
|
292
|
-
[
|
|
293
|
-
(Vectors.dense([0.0]), 0.0),
|
|
294
|
-
(Vectors.dense([0.4]), 1.0),
|
|
295
|
-
(Vectors.dense([0.5]), 0.0),
|
|
296
|
-
(Vectors.dense([0.6]), 1.0),
|
|
297
|
-
(Vectors.dense([1.0]), 1.0),
|
|
298
|
-
]
|
|
299
|
-
* 10,
|
|
300
|
-
["features", "label"],
|
|
301
|
-
).repartition(2, "features")
|
|
302
|
-
|
|
303
|
-
dataset_with_folds = (
|
|
304
|
-
dataset.repartition(1)
|
|
305
|
-
.withColumn("random", rand(100))
|
|
306
|
-
.withColumn(
|
|
307
|
-
"fold",
|
|
308
|
-
F.when(F.col("random") < 0.33, 0).when(F.col("random") < 0.66, 1).otherwise(2),
|
|
309
|
-
)
|
|
310
|
-
.repartition(2, "features")
|
|
311
|
-
)
|
|
312
|
-
|
|
313
|
-
lr = LogisticRegression()
|
|
314
|
-
grid = ParamGridBuilder().addGrid(lr.maxIter, [20]).build()
|
|
315
|
-
evaluator = BinaryClassificationEvaluator()
|
|
316
|
-
|
|
317
|
-
cv = CrossValidator(estimator=lr, estimatorParamMaps=grid, evaluator=evaluator, numFolds=3)
|
|
318
|
-
cv_with_user_folds = CrossValidator(
|
|
319
|
-
estimator=lr, estimatorParamMaps=grid, evaluator=evaluator, numFolds=3, foldCol="fold"
|
|
320
|
-
)
|
|
321
|
-
|
|
322
|
-
self.assertEqual(cv.getEstimator().uid, cv_with_user_folds.getEstimator().uid)
|
|
323
|
-
|
|
324
|
-
cvModel1 = cv.fit(dataset)
|
|
325
|
-
cvModel2 = cv_with_user_folds.fit(dataset_with_folds)
|
|
326
|
-
for index in range(len(cvModel1.avgMetrics)):
|
|
327
|
-
print(abs(cvModel1.avgMetrics[index] - cvModel2.avgMetrics[index]))
|
|
328
|
-
self.assertTrue(abs(cvModel1.avgMetrics[index] - cvModel2.avgMetrics[index]) < 0.1)
|
|
329
|
-
|
|
330
|
-
# test save/load of CrossValidator
|
|
331
|
-
temp_path = tempfile.mkdtemp()
|
|
332
|
-
cvPath = temp_path + "/cv"
|
|
333
|
-
cv_with_user_folds.save(cvPath)
|
|
334
|
-
loadedCV = CrossValidator.load(cvPath)
|
|
335
|
-
self.assertEqual(loadedCV.getFoldCol(), cv_with_user_folds.getFoldCol())
|
|
336
|
-
|
|
337
|
-
def test_invalid_user_specified_folds(self):
|
|
338
|
-
dataset_with_folds = self.spark.createDataFrame(
|
|
339
|
-
[
|
|
340
|
-
(Vectors.dense([0.0]), 0.0, 0),
|
|
341
|
-
(Vectors.dense([0.4]), 1.0, 1),
|
|
342
|
-
(Vectors.dense([0.5]), 0.0, 2),
|
|
343
|
-
(Vectors.dense([0.6]), 1.0, 0),
|
|
344
|
-
(Vectors.dense([1.0]), 1.0, 1),
|
|
345
|
-
]
|
|
346
|
-
* 10,
|
|
347
|
-
["features", "label", "fold"],
|
|
348
|
-
)
|
|
349
|
-
|
|
350
|
-
lr = LogisticRegression()
|
|
351
|
-
grid = ParamGridBuilder().addGrid(lr.maxIter, [20]).build()
|
|
352
|
-
evaluator = BinaryClassificationEvaluator()
|
|
353
|
-
|
|
354
|
-
cv = CrossValidator(
|
|
355
|
-
estimator=lr, estimatorParamMaps=grid, evaluator=evaluator, numFolds=2, foldCol="fold"
|
|
356
|
-
)
|
|
357
|
-
with self.assertRaisesRegex(Exception, "Fold number must be in range"):
|
|
358
|
-
cv.fit(dataset_with_folds)
|
|
359
|
-
|
|
360
|
-
cv = CrossValidator(
|
|
361
|
-
estimator=lr, estimatorParamMaps=grid, evaluator=evaluator, numFolds=4, foldCol="fold"
|
|
362
|
-
)
|
|
363
|
-
with self.assertRaisesRegex(Exception, "The validation data at fold 3 is empty"):
|
|
364
|
-
cv.fit(dataset_with_folds)
|
|
365
|
-
|
|
366
|
-
|
|
367
|
-
class TrainValidationSplitTests(SparkSessionTestCase, ValidatorTestUtilsMixin):
|
|
368
|
-
def test_fit_minimize_metric(self):
|
|
369
|
-
dataset = self.spark.createDataFrame(
|
|
370
|
-
[(10, 10.0), (50, 50.0), (100, 100.0), (500, 500.0)] * 10, ["feature", "label"]
|
|
371
|
-
)
|
|
372
|
-
|
|
373
|
-
iee = InducedErrorEstimator()
|
|
374
|
-
evaluator = RegressionEvaluator(metricName="rmse")
|
|
375
|
-
|
|
376
|
-
grid = ParamGridBuilder().addGrid(iee.inducedError, [100.0, 0.0, 10000.0]).build()
|
|
377
|
-
tvs = TrainValidationSplit(estimator=iee, estimatorParamMaps=grid, evaluator=evaluator)
|
|
378
|
-
tvsModel = tvs.fit(dataset)
|
|
379
|
-
bestModel = tvsModel.bestModel
|
|
380
|
-
bestModelMetric = evaluator.evaluate(bestModel.transform(dataset))
|
|
381
|
-
validationMetrics = tvsModel.validationMetrics
|
|
382
|
-
|
|
383
|
-
self.assertEqual(
|
|
384
|
-
0.0, bestModel.getOrDefault("inducedError"), "Best model should have zero induced error"
|
|
385
|
-
)
|
|
386
|
-
self.assertEqual(0.0, bestModelMetric, "Best model has RMSE of 0")
|
|
387
|
-
self.assertEqual(
|
|
388
|
-
len(grid),
|
|
389
|
-
len(validationMetrics),
|
|
390
|
-
"validationMetrics has the same size of grid parameter",
|
|
391
|
-
)
|
|
392
|
-
self.assertEqual(0.0, min(validationMetrics))
|
|
393
|
-
|
|
394
|
-
def test_fit_maximize_metric(self):
|
|
395
|
-
dataset = self.spark.createDataFrame(
|
|
396
|
-
[(10, 10.0), (50, 50.0), (100, 100.0), (500, 500.0)] * 10, ["feature", "label"]
|
|
397
|
-
)
|
|
398
|
-
|
|
399
|
-
iee = InducedErrorEstimator()
|
|
400
|
-
evaluator = RegressionEvaluator(metricName="r2")
|
|
401
|
-
|
|
402
|
-
grid = ParamGridBuilder().addGrid(iee.inducedError, [100.0, 0.0, 10000.0]).build()
|
|
403
|
-
tvs = TrainValidationSplit(estimator=iee, estimatorParamMaps=grid, evaluator=evaluator)
|
|
404
|
-
tvsModel = tvs.fit(dataset)
|
|
405
|
-
bestModel = tvsModel.bestModel
|
|
406
|
-
bestModelMetric = evaluator.evaluate(bestModel.transform(dataset))
|
|
407
|
-
validationMetrics = tvsModel.validationMetrics
|
|
408
|
-
|
|
409
|
-
self.assertEqual(
|
|
410
|
-
0.0, bestModel.getOrDefault("inducedError"), "Best model should have zero induced error"
|
|
411
|
-
)
|
|
412
|
-
self.assertEqual(1.0, bestModelMetric, "Best model has R-squared of 1")
|
|
413
|
-
self.assertEqual(
|
|
414
|
-
len(grid),
|
|
415
|
-
len(validationMetrics),
|
|
416
|
-
"validationMetrics has the same size of grid parameter",
|
|
417
|
-
)
|
|
418
|
-
self.assertEqual(1.0, max(validationMetrics))
|
|
419
|
-
|
|
420
|
-
def test_parallel_evaluation(self):
|
|
421
|
-
dataset = self.spark.createDataFrame(
|
|
422
|
-
[
|
|
423
|
-
(Vectors.dense([0.0]), 0.0),
|
|
424
|
-
(Vectors.dense([0.4]), 1.0),
|
|
425
|
-
(Vectors.dense([0.5]), 0.0),
|
|
426
|
-
(Vectors.dense([0.6]), 1.0),
|
|
427
|
-
(Vectors.dense([1.0]), 1.0),
|
|
428
|
-
]
|
|
429
|
-
* 10,
|
|
430
|
-
["features", "label"],
|
|
431
|
-
)
|
|
432
|
-
lr = LogisticRegression()
|
|
433
|
-
grid = ParamGridBuilder().addGrid(lr.maxIter, [5, 6]).build()
|
|
434
|
-
evaluator = BinaryClassificationEvaluator()
|
|
435
|
-
tvs = TrainValidationSplit(estimator=lr, estimatorParamMaps=grid, evaluator=evaluator)
|
|
436
|
-
tvs.setParallelism(1)
|
|
437
|
-
tvsSerialModel = tvs.fit(dataset)
|
|
438
|
-
tvs.setParallelism(2)
|
|
439
|
-
tvsParallelModel = tvs.fit(dataset)
|
|
440
|
-
self.assertEqual(tvsSerialModel.validationMetrics, tvsParallelModel.validationMetrics)
|
|
441
|
-
|
|
442
|
-
def test_expose_sub_models(self):
|
|
443
|
-
temp_path = tempfile.mkdtemp()
|
|
444
|
-
dataset = self.spark.createDataFrame(
|
|
445
|
-
[
|
|
446
|
-
(Vectors.dense([0.0]), 0.0),
|
|
447
|
-
(Vectors.dense([0.4]), 1.0),
|
|
448
|
-
(Vectors.dense([0.5]), 0.0),
|
|
449
|
-
(Vectors.dense([0.6]), 1.0),
|
|
450
|
-
(Vectors.dense([1.0]), 1.0),
|
|
451
|
-
]
|
|
452
|
-
* 10,
|
|
453
|
-
["features", "label"],
|
|
454
|
-
)
|
|
455
|
-
lr = LogisticRegression()
|
|
456
|
-
grid = ParamGridBuilder().addGrid(lr.maxIter, [0, 1]).build()
|
|
457
|
-
evaluator = BinaryClassificationEvaluator()
|
|
458
|
-
tvs = TrainValidationSplit(
|
|
459
|
-
estimator=lr, estimatorParamMaps=grid, evaluator=evaluator, collectSubModels=True
|
|
460
|
-
)
|
|
461
|
-
tvsModel = tvs.fit(dataset)
|
|
462
|
-
self.assertEqual(len(tvsModel.subModels), len(grid))
|
|
463
|
-
|
|
464
|
-
# Test the default value for option "persistSubModel" to be "true"
|
|
465
|
-
testSubPath = temp_path + "/testTrainValidationSplitSubModels"
|
|
466
|
-
savingPathWithSubModels = testSubPath + "cvModel3"
|
|
467
|
-
tvsModel.save(savingPathWithSubModels)
|
|
468
|
-
tvsModel3 = TrainValidationSplitModel.load(savingPathWithSubModels)
|
|
469
|
-
self.assertEqual(len(tvsModel3.subModels), len(grid))
|
|
470
|
-
tvsModel4 = tvsModel3.copy()
|
|
471
|
-
self.assertEqual(len(tvsModel4.subModels), len(grid))
|
|
472
|
-
|
|
473
|
-
savingPathWithoutSubModels = testSubPath + "cvModel2"
|
|
474
|
-
tvsModel.write().option("persistSubModels", "false").save(savingPathWithoutSubModels)
|
|
475
|
-
tvsModel2 = TrainValidationSplitModel.load(savingPathWithoutSubModels)
|
|
476
|
-
self.assertEqual(tvsModel2.subModels, None)
|
|
477
|
-
|
|
478
|
-
for i in range(len(grid)):
|
|
479
|
-
self.assertEqual(tvsModel.subModels[i].uid, tvsModel3.subModels[i].uid)
|
|
480
|
-
|
|
481
|
-
def test_copy(self):
|
|
482
|
-
dataset = self.spark.createDataFrame(
|
|
483
|
-
[(10, 10.0), (50, 50.0), (100, 100.0), (500, 500.0)] * 10, ["feature", "label"]
|
|
484
|
-
)
|
|
485
|
-
|
|
486
|
-
iee = InducedErrorEstimator()
|
|
487
|
-
evaluator = RegressionEvaluator(metricName="r2")
|
|
488
|
-
|
|
489
|
-
grid = ParamGridBuilder().addGrid(iee.inducedError, [100.0, 0.0, 10000.0]).build()
|
|
490
|
-
tvs = TrainValidationSplit(
|
|
491
|
-
estimator=iee, estimatorParamMaps=grid, evaluator=evaluator, collectSubModels=True
|
|
492
|
-
)
|
|
493
|
-
tvsModel = tvs.fit(dataset)
|
|
494
|
-
tvsCopied = tvs.copy()
|
|
495
|
-
tvsModelCopied = tvsModel.copy()
|
|
496
|
-
|
|
497
|
-
for param in [
|
|
498
|
-
lambda x: x.getCollectSubModels(),
|
|
499
|
-
lambda x: x.getParallelism(),
|
|
500
|
-
lambda x: x.getSeed(),
|
|
501
|
-
lambda x: x.getTrainRatio(),
|
|
502
|
-
]:
|
|
503
|
-
self.assertEqual(param(tvs), param(tvsCopied))
|
|
504
|
-
|
|
505
|
-
for param in [
|
|
506
|
-
lambda x: x.getSeed(),
|
|
507
|
-
lambda x: x.getTrainRatio(),
|
|
508
|
-
]:
|
|
509
|
-
self.assertEqual(param(tvsModel), param(tvsModelCopied))
|
|
510
|
-
|
|
511
|
-
self.assertEqual(
|
|
512
|
-
tvs.getEstimator().uid,
|
|
513
|
-
tvsCopied.getEstimator().uid,
|
|
514
|
-
"Copied TrainValidationSplit has the same uid of Estimator",
|
|
515
|
-
)
|
|
516
|
-
|
|
517
|
-
self.assertEqual(tvsModel.bestModel.uid, tvsModelCopied.bestModel.uid)
|
|
518
|
-
self.assertEqual(
|
|
519
|
-
len(tvsModel.validationMetrics),
|
|
520
|
-
len(tvsModelCopied.validationMetrics),
|
|
521
|
-
"Copied validationMetrics has the same size of the original",
|
|
522
|
-
)
|
|
523
|
-
for index in range(len(tvsModel.validationMetrics)):
|
|
524
|
-
self.assertEqual(
|
|
525
|
-
tvsModel.validationMetrics[index], tvsModelCopied.validationMetrics[index]
|
|
526
|
-
)
|
|
527
|
-
|
|
528
|
-
tvsModel.validationMetrics[0] = "foo"
|
|
529
|
-
self.assertNotEqual(
|
|
530
|
-
tvsModelCopied.validationMetrics[0],
|
|
531
|
-
"foo",
|
|
532
|
-
"Changing the original validationMetrics should not affect the copied model",
|
|
533
|
-
)
|
|
534
|
-
tvsModel.subModels[0].getInducedError = lambda: "foo"
|
|
535
|
-
self.assertNotEqual(
|
|
536
|
-
tvsModelCopied.subModels[0].getInducedError(),
|
|
537
|
-
"foo",
|
|
538
|
-
"Changing the original subModels should not affect the copied model",
|
|
539
|
-
)
|
|
540
|
-
|
|
541
|
-
|
|
542
|
-
if __name__ == "__main__":
|
|
543
|
-
from pyspark.ml.tests.tuning.test_tuning import * # noqa: F401
|
|
544
|
-
|
|
545
|
-
try:
|
|
546
|
-
import xmlrunner
|
|
547
|
-
|
|
548
|
-
testRunner = xmlrunner.XMLTestRunner(output="target/test-reports", verbosity=2)
|
|
549
|
-
except ImportError:
|
|
550
|
-
testRunner = None
|
|
551
|
-
unittest.main(testRunner=testRunner, verbosity=2)
|
|
@@ -1,137 +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 tempfile
|
|
19
|
-
import unittest
|
|
20
|
-
|
|
21
|
-
from pyspark.ml.classification import LogisticRegression, LogisticRegressionModel
|
|
22
|
-
from pyspark.ml.evaluation import BinaryClassificationEvaluator
|
|
23
|
-
from pyspark.ml.linalg import Vectors
|
|
24
|
-
from pyspark.ml.tuning import (
|
|
25
|
-
ParamGridBuilder,
|
|
26
|
-
TrainValidationSplit,
|
|
27
|
-
TrainValidationSplitModel,
|
|
28
|
-
)
|
|
29
|
-
from pyspark.testing.mlutils import (
|
|
30
|
-
DummyEvaluator,
|
|
31
|
-
DummyLogisticRegression,
|
|
32
|
-
DummyLogisticRegressionModel,
|
|
33
|
-
SparkSessionTestCase,
|
|
34
|
-
)
|
|
35
|
-
from pyspark.ml.tests.tuning.test_tuning import ValidatorTestUtilsMixin
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
class TrainValidationSplitIOBasicTests(SparkSessionTestCase, ValidatorTestUtilsMixin):
|
|
39
|
-
def _run_test_save_load_trained_model(self, LogisticRegressionCls, LogisticRegressionModelCls):
|
|
40
|
-
# This tests saving and loading the trained model only.
|
|
41
|
-
# Save/load for TrainValidationSplit will be added later: SPARK-13786
|
|
42
|
-
temp_path = tempfile.mkdtemp()
|
|
43
|
-
dataset = self.spark.createDataFrame(
|
|
44
|
-
[
|
|
45
|
-
(Vectors.dense([0.0]), 0.0),
|
|
46
|
-
(Vectors.dense([0.4]), 1.0),
|
|
47
|
-
(Vectors.dense([0.5]), 0.0),
|
|
48
|
-
(Vectors.dense([0.6]), 1.0),
|
|
49
|
-
(Vectors.dense([1.0]), 1.0),
|
|
50
|
-
]
|
|
51
|
-
* 10,
|
|
52
|
-
["features", "label"],
|
|
53
|
-
)
|
|
54
|
-
lr = LogisticRegressionCls()
|
|
55
|
-
grid = ParamGridBuilder().addGrid(lr.maxIter, [0, 1]).build()
|
|
56
|
-
evaluator = BinaryClassificationEvaluator()
|
|
57
|
-
tvs = TrainValidationSplit(
|
|
58
|
-
estimator=lr,
|
|
59
|
-
estimatorParamMaps=grid,
|
|
60
|
-
evaluator=evaluator,
|
|
61
|
-
collectSubModels=True,
|
|
62
|
-
seed=42,
|
|
63
|
-
)
|
|
64
|
-
tvsModel = tvs.fit(dataset)
|
|
65
|
-
lrModel = tvsModel.bestModel
|
|
66
|
-
|
|
67
|
-
lrModelPath = temp_path + "/lrModel"
|
|
68
|
-
lrModel.save(lrModelPath)
|
|
69
|
-
loadedLrModel = LogisticRegressionModelCls.load(lrModelPath)
|
|
70
|
-
self.assertEqual(loadedLrModel.uid, lrModel.uid)
|
|
71
|
-
self.assertEqual(loadedLrModel.intercept, lrModel.intercept)
|
|
72
|
-
|
|
73
|
-
tvsModelPath = temp_path + "/tvsModel"
|
|
74
|
-
tvsModel.save(tvsModelPath)
|
|
75
|
-
loadedTvsModel = TrainValidationSplitModel.load(tvsModelPath)
|
|
76
|
-
for param in [
|
|
77
|
-
lambda x: x.getSeed(),
|
|
78
|
-
lambda x: x.getTrainRatio(),
|
|
79
|
-
]:
|
|
80
|
-
self.assertEqual(param(tvsModel), param(loadedTvsModel))
|
|
81
|
-
|
|
82
|
-
self.assertTrue(all(loadedTvsModel.isSet(param) for param in loadedTvsModel.params))
|
|
83
|
-
|
|
84
|
-
def test_save_load_trained_model(self):
|
|
85
|
-
self._run_test_save_load_trained_model(LogisticRegression, LogisticRegressionModel)
|
|
86
|
-
self._run_test_save_load_trained_model(
|
|
87
|
-
DummyLogisticRegression, DummyLogisticRegressionModel
|
|
88
|
-
)
|
|
89
|
-
|
|
90
|
-
def _run_test_save_load_simple_estimator(self, LogisticRegressionCls, evaluatorCls):
|
|
91
|
-
# This tests saving and loading the trained model only.
|
|
92
|
-
# Save/load for TrainValidationSplit will be added later: SPARK-13786
|
|
93
|
-
temp_path = tempfile.mkdtemp()
|
|
94
|
-
dataset = self.spark.createDataFrame(
|
|
95
|
-
[
|
|
96
|
-
(Vectors.dense([0.0]), 0.0),
|
|
97
|
-
(Vectors.dense([0.4]), 1.0),
|
|
98
|
-
(Vectors.dense([0.5]), 0.0),
|
|
99
|
-
(Vectors.dense([0.6]), 1.0),
|
|
100
|
-
(Vectors.dense([1.0]), 1.0),
|
|
101
|
-
]
|
|
102
|
-
* 10,
|
|
103
|
-
["features", "label"],
|
|
104
|
-
)
|
|
105
|
-
lr = LogisticRegressionCls()
|
|
106
|
-
grid = ParamGridBuilder().addGrid(lr.maxIter, [0, 1]).build()
|
|
107
|
-
evaluator = evaluatorCls()
|
|
108
|
-
tvs = TrainValidationSplit(estimator=lr, estimatorParamMaps=grid, evaluator=evaluator)
|
|
109
|
-
tvsModel = tvs.fit(dataset)
|
|
110
|
-
|
|
111
|
-
tvsPath = temp_path + "/tvs"
|
|
112
|
-
tvs.save(tvsPath)
|
|
113
|
-
loadedTvs = TrainValidationSplit.load(tvsPath)
|
|
114
|
-
self.assertEqual(loadedTvs.getEstimator().uid, tvs.getEstimator().uid)
|
|
115
|
-
self.assertEqual(loadedTvs.getEvaluator().uid, tvs.getEvaluator().uid)
|
|
116
|
-
self.assert_param_maps_equal(loadedTvs.getEstimatorParamMaps(), tvs.getEstimatorParamMaps())
|
|
117
|
-
|
|
118
|
-
tvsModelPath = temp_path + "/tvsModel"
|
|
119
|
-
tvsModel.save(tvsModelPath)
|
|
120
|
-
loadedModel = TrainValidationSplitModel.load(tvsModelPath)
|
|
121
|
-
self.assertEqual(loadedModel.bestModel.uid, tvsModel.bestModel.uid)
|
|
122
|
-
|
|
123
|
-
def test_save_load_simple_estimator(self):
|
|
124
|
-
self._run_test_save_load_simple_estimator(LogisticRegression, BinaryClassificationEvaluator)
|
|
125
|
-
self._run_test_save_load_simple_estimator(DummyLogisticRegression, DummyEvaluator)
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
if __name__ == "__main__":
|
|
129
|
-
from pyspark.ml.tests.tuning.test_tvs_io_basic import * # noqa: F401
|
|
130
|
-
|
|
131
|
-
try:
|
|
132
|
-
import xmlrunner
|
|
133
|
-
|
|
134
|
-
testRunner = xmlrunner.XMLTestRunner(output="target/test-reports", verbosity=2)
|
|
135
|
-
except ImportError:
|
|
136
|
-
testRunner = None
|
|
137
|
-
unittest.main(testRunner=testRunner, verbosity=2)
|