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,441 +0,0 @@
|
|
|
1
|
-
# -*- coding: utf-8 -*-
|
|
2
|
-
#
|
|
3
|
-
# Licensed to the Apache Software Foundation (ASF) under one or more
|
|
4
|
-
# contributor license agreements. See the NOTICE file distributed with
|
|
5
|
-
# this work for additional information regarding copyright ownership.
|
|
6
|
-
# The ASF licenses this file to You under the Apache License, Version 2.0
|
|
7
|
-
# (the "License"); you may not use this file except in compliance with
|
|
8
|
-
# the License. You may obtain a copy of the License at
|
|
9
|
-
#
|
|
10
|
-
# http://www.apache.org/licenses/LICENSE-2.0
|
|
11
|
-
#
|
|
12
|
-
# Unless required by applicable law or agreed to in writing, software
|
|
13
|
-
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
14
|
-
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
15
|
-
# See the License for the specific language governing permissions and
|
|
16
|
-
# limitations under the License.
|
|
17
|
-
#
|
|
18
|
-
|
|
19
|
-
import inspect
|
|
20
|
-
import array as pyarray
|
|
21
|
-
import unittest
|
|
22
|
-
|
|
23
|
-
import numpy as np
|
|
24
|
-
|
|
25
|
-
from pyspark import keyword_only
|
|
26
|
-
from pyspark.ml.classification import LogisticRegression
|
|
27
|
-
from pyspark.ml.clustering import KMeans
|
|
28
|
-
from pyspark.ml.feature import (
|
|
29
|
-
Binarizer,
|
|
30
|
-
Bucketizer,
|
|
31
|
-
ElementwiseProduct,
|
|
32
|
-
IndexToString,
|
|
33
|
-
MaxAbsScaler,
|
|
34
|
-
VectorSlicer,
|
|
35
|
-
Word2Vec,
|
|
36
|
-
)
|
|
37
|
-
from pyspark.ml.linalg import DenseVector, SparseVector, Vectors
|
|
38
|
-
from pyspark.ml.param import Param, Params, TypeConverters
|
|
39
|
-
from pyspark.ml.param.shared import HasInputCol, HasMaxIter, HasSeed
|
|
40
|
-
from pyspark.ml.regression import LinearRegressionModel, GeneralizedLinearRegressionModel
|
|
41
|
-
from pyspark.ml.wrapper import JavaParams
|
|
42
|
-
from pyspark.testing.mlutils import check_params, PySparkTestCase, SparkSessionTestCase
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
class ParamTypeConversionTests(PySparkTestCase):
|
|
46
|
-
"""
|
|
47
|
-
Test that param type conversion happens.
|
|
48
|
-
"""
|
|
49
|
-
|
|
50
|
-
def test_int(self):
|
|
51
|
-
lr = LogisticRegression(maxIter=5.0)
|
|
52
|
-
self.assertEqual(lr.getMaxIter(), 5)
|
|
53
|
-
self.assertTrue(type(lr.getMaxIter()) == int)
|
|
54
|
-
self.assertRaises(TypeError, lambda: LogisticRegression(maxIter="notAnInt"))
|
|
55
|
-
self.assertRaises(TypeError, lambda: LogisticRegression(maxIter=5.1))
|
|
56
|
-
|
|
57
|
-
def test_float(self):
|
|
58
|
-
lr = LogisticRegression(tol=1)
|
|
59
|
-
self.assertEqual(lr.getTol(), 1.0)
|
|
60
|
-
self.assertTrue(type(lr.getTol()) == float)
|
|
61
|
-
self.assertRaises(TypeError, lambda: LogisticRegression(tol="notAFloat"))
|
|
62
|
-
|
|
63
|
-
def test_vector(self):
|
|
64
|
-
ewp = ElementwiseProduct(scalingVec=[1, 3])
|
|
65
|
-
self.assertEqual(ewp.getScalingVec(), DenseVector([1.0, 3.0]))
|
|
66
|
-
ewp = ElementwiseProduct(scalingVec=np.array([1.2, 3.4]))
|
|
67
|
-
self.assertEqual(ewp.getScalingVec(), DenseVector([1.2, 3.4]))
|
|
68
|
-
self.assertRaises(TypeError, lambda: ElementwiseProduct(scalingVec=["a", "b"]))
|
|
69
|
-
|
|
70
|
-
def test_list(self):
|
|
71
|
-
lst = [0, 1]
|
|
72
|
-
for lst_like in [
|
|
73
|
-
lst,
|
|
74
|
-
np.array(lst),
|
|
75
|
-
DenseVector(lst),
|
|
76
|
-
SparseVector(len(lst), range(len(lst)), lst),
|
|
77
|
-
pyarray.array("l", lst),
|
|
78
|
-
range(2),
|
|
79
|
-
tuple(lst),
|
|
80
|
-
]:
|
|
81
|
-
converted = TypeConverters.toList(lst_like)
|
|
82
|
-
self.assertEqual(type(converted), list)
|
|
83
|
-
self.assertListEqual(converted, lst)
|
|
84
|
-
|
|
85
|
-
def test_list_int(self):
|
|
86
|
-
for indices in [
|
|
87
|
-
[1.0, 2.0],
|
|
88
|
-
np.array([1.0, 2.0]),
|
|
89
|
-
DenseVector([1.0, 2.0]),
|
|
90
|
-
SparseVector(2, {0: 1.0, 1: 2.0}),
|
|
91
|
-
range(1, 3),
|
|
92
|
-
(1.0, 2.0),
|
|
93
|
-
pyarray.array("d", [1.0, 2.0]),
|
|
94
|
-
]:
|
|
95
|
-
vs = VectorSlicer(indices=indices)
|
|
96
|
-
self.assertListEqual(vs.getIndices(), [1, 2])
|
|
97
|
-
self.assertTrue(all([type(v) == int for v in vs.getIndices()]))
|
|
98
|
-
self.assertRaises(TypeError, lambda: VectorSlicer(indices=["a", "b"]))
|
|
99
|
-
|
|
100
|
-
def test_list_float(self):
|
|
101
|
-
b = Bucketizer(splits=[1, 4])
|
|
102
|
-
self.assertEqual(b.getSplits(), [1.0, 4.0])
|
|
103
|
-
self.assertTrue(all([type(v) == float for v in b.getSplits()]))
|
|
104
|
-
self.assertRaises(TypeError, lambda: Bucketizer(splits=["a", 1.0]))
|
|
105
|
-
|
|
106
|
-
def test_list_list_float(self):
|
|
107
|
-
b = Bucketizer(splitsArray=[[-0.1, 0.5, 3], [-5, 1.5]])
|
|
108
|
-
self.assertEqual(b.getSplitsArray(), [[-0.1, 0.5, 3.0], [-5.0, 1.5]])
|
|
109
|
-
self.assertTrue(all([type(v) == list for v in b.getSplitsArray()]))
|
|
110
|
-
self.assertTrue(all([type(v) == float for v in b.getSplitsArray()[0]]))
|
|
111
|
-
self.assertTrue(all([type(v) == float for v in b.getSplitsArray()[1]]))
|
|
112
|
-
self.assertRaises(TypeError, lambda: Bucketizer(splitsArray=["a", 1.0]))
|
|
113
|
-
self.assertRaises(TypeError, lambda: Bucketizer(splitsArray=[[-5, 1.5], ["a", 1.0]]))
|
|
114
|
-
|
|
115
|
-
def test_list_string(self):
|
|
116
|
-
for labels in [np.array(["a", "b"]), ["a", "b"], np.array(["a", "b"])]:
|
|
117
|
-
idx_to_string = IndexToString(labels=labels)
|
|
118
|
-
self.assertListEqual(idx_to_string.getLabels(), ["a", "b"])
|
|
119
|
-
self.assertRaises(TypeError, lambda: IndexToString(labels=["a", 2]))
|
|
120
|
-
|
|
121
|
-
def test_string(self):
|
|
122
|
-
lr = LogisticRegression()
|
|
123
|
-
for col in ["features", "features", np.str_("features")]:
|
|
124
|
-
lr.setFeaturesCol(col)
|
|
125
|
-
self.assertEqual(lr.getFeaturesCol(), "features")
|
|
126
|
-
self.assertRaises(TypeError, lambda: LogisticRegression(featuresCol=2.3))
|
|
127
|
-
|
|
128
|
-
def test_bool(self):
|
|
129
|
-
self.assertRaises(TypeError, lambda: LogisticRegression(fitIntercept=1))
|
|
130
|
-
self.assertRaises(TypeError, lambda: LogisticRegression(fitIntercept="false"))
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
class TestParams(HasMaxIter, HasInputCol, HasSeed):
|
|
134
|
-
"""
|
|
135
|
-
A subclass of Params mixed with HasMaxIter, HasInputCol and HasSeed.
|
|
136
|
-
"""
|
|
137
|
-
|
|
138
|
-
@keyword_only
|
|
139
|
-
def __init__(self, seed=None):
|
|
140
|
-
super(TestParams, self).__init__()
|
|
141
|
-
self._setDefault(maxIter=10)
|
|
142
|
-
kwargs = self._input_kwargs
|
|
143
|
-
self.setParams(**kwargs)
|
|
144
|
-
|
|
145
|
-
@keyword_only
|
|
146
|
-
def setParams(self, seed=None):
|
|
147
|
-
"""
|
|
148
|
-
setParams(self, seed=None)
|
|
149
|
-
Sets params for this test.
|
|
150
|
-
"""
|
|
151
|
-
kwargs = self._input_kwargs
|
|
152
|
-
return self._set(**kwargs)
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
class OtherTestParams(HasMaxIter, HasInputCol, HasSeed):
|
|
156
|
-
"""
|
|
157
|
-
A subclass of Params mixed with HasMaxIter, HasInputCol and HasSeed.
|
|
158
|
-
"""
|
|
159
|
-
|
|
160
|
-
@keyword_only
|
|
161
|
-
def __init__(self, seed=None):
|
|
162
|
-
super(OtherTestParams, self).__init__()
|
|
163
|
-
self._setDefault(maxIter=10)
|
|
164
|
-
kwargs = self._input_kwargs
|
|
165
|
-
self.setParams(**kwargs)
|
|
166
|
-
|
|
167
|
-
@keyword_only
|
|
168
|
-
def setParams(self, seed=None):
|
|
169
|
-
"""
|
|
170
|
-
setParams(self, seed=None)
|
|
171
|
-
Sets params for this test.
|
|
172
|
-
"""
|
|
173
|
-
kwargs = self._input_kwargs
|
|
174
|
-
return self._set(**kwargs)
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
class HasThrowableProperty(Params):
|
|
178
|
-
def __init__(self):
|
|
179
|
-
super(HasThrowableProperty, self).__init__()
|
|
180
|
-
self.p = Param(self, "none", "empty param")
|
|
181
|
-
|
|
182
|
-
@property
|
|
183
|
-
def test_property(self):
|
|
184
|
-
raise RuntimeError("Test property to raise error when invoked")
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
class ParamTests(SparkSessionTestCase):
|
|
188
|
-
def test_copy_new_parent(self):
|
|
189
|
-
testParams = TestParams()
|
|
190
|
-
# Copying an instantiated param should fail
|
|
191
|
-
with self.assertRaises(ValueError):
|
|
192
|
-
testParams.maxIter._copy_new_parent(testParams)
|
|
193
|
-
# Copying a dummy param should succeed
|
|
194
|
-
TestParams.maxIter._copy_new_parent(testParams)
|
|
195
|
-
maxIter = testParams.maxIter
|
|
196
|
-
self.assertEqual(maxIter.name, "maxIter")
|
|
197
|
-
self.assertEqual(maxIter.doc, "max number of iterations (>= 0).")
|
|
198
|
-
self.assertTrue(maxIter.parent == testParams.uid)
|
|
199
|
-
|
|
200
|
-
def test_param(self):
|
|
201
|
-
testParams = TestParams()
|
|
202
|
-
maxIter = testParams.maxIter
|
|
203
|
-
self.assertEqual(maxIter.name, "maxIter")
|
|
204
|
-
self.assertEqual(maxIter.doc, "max number of iterations (>= 0).")
|
|
205
|
-
self.assertTrue(maxIter.parent == testParams.uid)
|
|
206
|
-
|
|
207
|
-
def test_hasparam(self):
|
|
208
|
-
testParams = TestParams()
|
|
209
|
-
self.assertTrue(all([testParams.hasParam(p.name) for p in testParams.params]))
|
|
210
|
-
self.assertFalse(testParams.hasParam("notAParameter"))
|
|
211
|
-
self.assertTrue(testParams.hasParam("maxIter"))
|
|
212
|
-
|
|
213
|
-
def test_resolveparam(self):
|
|
214
|
-
testParams = TestParams()
|
|
215
|
-
self.assertEqual(testParams._resolveParam(testParams.maxIter), testParams.maxIter)
|
|
216
|
-
self.assertEqual(testParams._resolveParam("maxIter"), testParams.maxIter)
|
|
217
|
-
|
|
218
|
-
self.assertEqual(testParams._resolveParam("maxIter"), testParams.maxIter)
|
|
219
|
-
self.assertRaises(AttributeError, lambda: testParams._resolveParam("아"))
|
|
220
|
-
|
|
221
|
-
# Invalid type
|
|
222
|
-
invalid_type = 1
|
|
223
|
-
self.assertRaises(TypeError, testParams._resolveParam, invalid_type)
|
|
224
|
-
|
|
225
|
-
def test_params(self):
|
|
226
|
-
testParams = TestParams()
|
|
227
|
-
maxIter = testParams.maxIter
|
|
228
|
-
inputCol = testParams.inputCol
|
|
229
|
-
seed = testParams.seed
|
|
230
|
-
|
|
231
|
-
params = testParams.params
|
|
232
|
-
self.assertEqual(params, [inputCol, maxIter, seed])
|
|
233
|
-
|
|
234
|
-
self.assertTrue(testParams.hasParam(maxIter.name))
|
|
235
|
-
self.assertTrue(testParams.hasDefault(maxIter))
|
|
236
|
-
self.assertFalse(testParams.isSet(maxIter))
|
|
237
|
-
self.assertTrue(testParams.isDefined(maxIter))
|
|
238
|
-
self.assertEqual(testParams.getMaxIter(), 10)
|
|
239
|
-
|
|
240
|
-
self.assertTrue(testParams.hasParam(inputCol.name))
|
|
241
|
-
self.assertFalse(testParams.hasDefault(inputCol))
|
|
242
|
-
self.assertFalse(testParams.isSet(inputCol))
|
|
243
|
-
self.assertFalse(testParams.isDefined(inputCol))
|
|
244
|
-
with self.assertRaises(KeyError):
|
|
245
|
-
testParams.getInputCol()
|
|
246
|
-
|
|
247
|
-
otherParam = Param(
|
|
248
|
-
Params._dummy(),
|
|
249
|
-
"otherParam",
|
|
250
|
-
"Parameter used to test that " + "set raises an error for a non-member parameter.",
|
|
251
|
-
typeConverter=TypeConverters.toString,
|
|
252
|
-
)
|
|
253
|
-
with self.assertRaises(ValueError):
|
|
254
|
-
testParams.set(otherParam, "value")
|
|
255
|
-
|
|
256
|
-
# Since the default is normally random, set it to a known number for debug str
|
|
257
|
-
testParams._setDefault(seed=41)
|
|
258
|
-
|
|
259
|
-
self.assertEqual(
|
|
260
|
-
testParams.explainParams(),
|
|
261
|
-
"\n".join(
|
|
262
|
-
[
|
|
263
|
-
"inputCol: input column name. (undefined)",
|
|
264
|
-
"maxIter: max number of iterations (>= 0). (default: 10)",
|
|
265
|
-
"seed: random seed. (default: 41)",
|
|
266
|
-
]
|
|
267
|
-
),
|
|
268
|
-
)
|
|
269
|
-
|
|
270
|
-
def test_clear_param(self):
|
|
271
|
-
df = self.spark.createDataFrame([(Vectors.dense([1.0]),), (Vectors.dense([2.0]),)], ["a"])
|
|
272
|
-
maScaler = MaxAbsScaler(inputCol="a", outputCol="scaled")
|
|
273
|
-
model = maScaler.fit(df)
|
|
274
|
-
self.assertTrue(model.isSet(model.outputCol))
|
|
275
|
-
self.assertEqual(model.getOutputCol(), "scaled")
|
|
276
|
-
model.clear(model.outputCol)
|
|
277
|
-
self.assertFalse(model.isSet(model.outputCol))
|
|
278
|
-
self.assertEqual(model.getOutputCol()[:12], "MaxAbsScaler")
|
|
279
|
-
output = model.transform(df)
|
|
280
|
-
self.assertEqual(model.getOutputCol(), output.schema.names[1])
|
|
281
|
-
|
|
282
|
-
def test_kmeans_param(self):
|
|
283
|
-
algo = KMeans()
|
|
284
|
-
self.assertEqual(algo.getInitMode(), "k-means||")
|
|
285
|
-
algo.setK(10)
|
|
286
|
-
self.assertEqual(algo.getK(), 10)
|
|
287
|
-
algo.setInitSteps(10)
|
|
288
|
-
self.assertEqual(algo.getInitSteps(), 10)
|
|
289
|
-
self.assertEqual(algo.getDistanceMeasure(), "euclidean")
|
|
290
|
-
algo.setDistanceMeasure("cosine")
|
|
291
|
-
self.assertEqual(algo.getDistanceMeasure(), "cosine")
|
|
292
|
-
|
|
293
|
-
def test_hasseed(self):
|
|
294
|
-
noSeedSpecd = TestParams()
|
|
295
|
-
withSeedSpecd = TestParams(seed=42)
|
|
296
|
-
other = OtherTestParams()
|
|
297
|
-
# Check that we no longer use 42 as the magic number
|
|
298
|
-
self.assertNotEqual(noSeedSpecd.getSeed(), 42)
|
|
299
|
-
origSeed = noSeedSpecd.getSeed()
|
|
300
|
-
# Check that we only compute the seed once
|
|
301
|
-
self.assertEqual(noSeedSpecd.getSeed(), origSeed)
|
|
302
|
-
# Check that a specified seed is honored
|
|
303
|
-
self.assertEqual(withSeedSpecd.getSeed(), 42)
|
|
304
|
-
# Check that a different class has a different seed
|
|
305
|
-
self.assertNotEqual(other.getSeed(), noSeedSpecd.getSeed())
|
|
306
|
-
|
|
307
|
-
def test_param_property_error(self):
|
|
308
|
-
param_store = HasThrowableProperty()
|
|
309
|
-
self.assertRaises(RuntimeError, lambda: param_store.test_property)
|
|
310
|
-
params = param_store.params # should not invoke the property 'test_property'
|
|
311
|
-
self.assertEqual(len(params), 1)
|
|
312
|
-
|
|
313
|
-
def test_word2vec_param(self):
|
|
314
|
-
model = Word2Vec().setWindowSize(6)
|
|
315
|
-
# Check windowSize is set properly
|
|
316
|
-
self.assertEqual(model.getWindowSize(), 6)
|
|
317
|
-
|
|
318
|
-
def test_copy_param_extras(self):
|
|
319
|
-
tp = TestParams(seed=42)
|
|
320
|
-
extra = {tp.getParam(TestParams.inputCol.name): "copy_input"}
|
|
321
|
-
tp_copy = tp.copy(extra=extra)
|
|
322
|
-
self.assertEqual(tp.uid, tp_copy.uid)
|
|
323
|
-
self.assertEqual(tp.params, tp_copy.params)
|
|
324
|
-
for k, v in extra.items():
|
|
325
|
-
self.assertTrue(tp_copy.isDefined(k))
|
|
326
|
-
self.assertEqual(tp_copy.getOrDefault(k), v)
|
|
327
|
-
copied_no_extra = {}
|
|
328
|
-
for k, v in tp_copy._paramMap.items():
|
|
329
|
-
if k not in extra:
|
|
330
|
-
copied_no_extra[k] = v
|
|
331
|
-
self.assertEqual(tp._paramMap, copied_no_extra)
|
|
332
|
-
self.assertEqual(tp._defaultParamMap, tp_copy._defaultParamMap)
|
|
333
|
-
with self.assertRaises(TypeError):
|
|
334
|
-
tp.copy(extra={"unknown_parameter": None})
|
|
335
|
-
with self.assertRaises(TypeError):
|
|
336
|
-
tp.copy(extra=["must be a dict"])
|
|
337
|
-
|
|
338
|
-
def test_logistic_regression_check_thresholds(self):
|
|
339
|
-
self.assertIsInstance(
|
|
340
|
-
LogisticRegression(threshold=0.5, thresholds=[0.5, 0.5]), LogisticRegression
|
|
341
|
-
)
|
|
342
|
-
|
|
343
|
-
self.assertRaisesRegex(
|
|
344
|
-
ValueError,
|
|
345
|
-
"Logistic Regression getThreshold found inconsistent.*$",
|
|
346
|
-
LogisticRegression,
|
|
347
|
-
threshold=0.42,
|
|
348
|
-
thresholds=[0.5, 0.5],
|
|
349
|
-
)
|
|
350
|
-
|
|
351
|
-
def test_preserve_set_state(self):
|
|
352
|
-
dataset = self.spark.createDataFrame([(0.5,)], ["data"])
|
|
353
|
-
binarizer = Binarizer(inputCol="data")
|
|
354
|
-
self.assertFalse(binarizer.isSet("threshold"))
|
|
355
|
-
binarizer.transform(dataset)
|
|
356
|
-
binarizer._transfer_params_from_java()
|
|
357
|
-
self.assertFalse(
|
|
358
|
-
binarizer.isSet("threshold"),
|
|
359
|
-
"Params not explicitly set should remain unset after transform",
|
|
360
|
-
)
|
|
361
|
-
|
|
362
|
-
def test_default_params_transferred(self):
|
|
363
|
-
dataset = self.spark.createDataFrame([(0.5,)], ["data"])
|
|
364
|
-
binarizer = Binarizer(inputCol="data")
|
|
365
|
-
# intentionally change the pyspark default, but don't set it
|
|
366
|
-
binarizer._defaultParamMap[binarizer.outputCol] = "my_default"
|
|
367
|
-
result = binarizer.transform(dataset).select("my_default").collect()
|
|
368
|
-
self.assertFalse(binarizer.isSet(binarizer.outputCol))
|
|
369
|
-
self.assertEqual(result[0][0], 1.0)
|
|
370
|
-
|
|
371
|
-
def test_lr_evaluate_invaild_type(self):
|
|
372
|
-
lr = LinearRegressionModel()
|
|
373
|
-
invalid_type = ""
|
|
374
|
-
self.assertRaises(TypeError, lr.evaluate, invalid_type)
|
|
375
|
-
|
|
376
|
-
def test_glr_evaluate_invaild_type(self):
|
|
377
|
-
glr = GeneralizedLinearRegressionModel()
|
|
378
|
-
invalid_type = ""
|
|
379
|
-
self.assertRaises(TypeError, glr.evaluate, invalid_type)
|
|
380
|
-
|
|
381
|
-
|
|
382
|
-
class DefaultValuesTests(PySparkTestCase):
|
|
383
|
-
"""
|
|
384
|
-
Test :py:class:`JavaParams` classes to see if their default Param values match
|
|
385
|
-
those in their Scala counterparts.
|
|
386
|
-
"""
|
|
387
|
-
|
|
388
|
-
def test_java_params(self):
|
|
389
|
-
import re
|
|
390
|
-
|
|
391
|
-
import pyspark.ml.feature
|
|
392
|
-
import pyspark.ml.classification
|
|
393
|
-
import pyspark.ml.clustering
|
|
394
|
-
import pyspark.ml.evaluation
|
|
395
|
-
import pyspark.ml.pipeline
|
|
396
|
-
import pyspark.ml.recommendation
|
|
397
|
-
import pyspark.ml.regression
|
|
398
|
-
|
|
399
|
-
modules = [
|
|
400
|
-
pyspark.ml.feature,
|
|
401
|
-
pyspark.ml.classification,
|
|
402
|
-
pyspark.ml.clustering,
|
|
403
|
-
pyspark.ml.evaluation,
|
|
404
|
-
pyspark.ml.pipeline,
|
|
405
|
-
pyspark.ml.recommendation,
|
|
406
|
-
pyspark.ml.regression,
|
|
407
|
-
]
|
|
408
|
-
for module in modules:
|
|
409
|
-
for name, cls in inspect.getmembers(module, inspect.isclass):
|
|
410
|
-
if (
|
|
411
|
-
not name.endswith("Model")
|
|
412
|
-
and not name.endswith("Params")
|
|
413
|
-
and issubclass(cls, JavaParams)
|
|
414
|
-
and not inspect.isabstract(cls)
|
|
415
|
-
and not re.match("_?Java", name)
|
|
416
|
-
and name != "_LSH"
|
|
417
|
-
and name != "_Selector"
|
|
418
|
-
):
|
|
419
|
-
check_params(self, cls(), check_params_exist=True)
|
|
420
|
-
|
|
421
|
-
# Additional classes that need explicit construction
|
|
422
|
-
from pyspark.ml.feature import CountVectorizerModel, StringIndexerModel
|
|
423
|
-
|
|
424
|
-
check_params(
|
|
425
|
-
self, CountVectorizerModel.from_vocabulary(["a"], "input"), check_params_exist=True
|
|
426
|
-
)
|
|
427
|
-
check_params(
|
|
428
|
-
self, StringIndexerModel.from_labels(["a", "b"], "input"), check_params_exist=True
|
|
429
|
-
)
|
|
430
|
-
|
|
431
|
-
|
|
432
|
-
if __name__ == "__main__":
|
|
433
|
-
from pyspark.ml.tests.test_param import * # noqa: F401
|
|
434
|
-
|
|
435
|
-
try:
|
|
436
|
-
import xmlrunner
|
|
437
|
-
|
|
438
|
-
testRunner = xmlrunner.XMLTestRunner(output="target/test-reports", verbosity=2)
|
|
439
|
-
except ImportError:
|
|
440
|
-
testRunner = None
|
|
441
|
-
unittest.main(testRunner=testRunner, verbosity=2)
|