spark-instrumented-optimizer/python/pyspark/ml/evaluation.pyi
zero323 665817bd4f [SPARK-33457][PYTHON] Adjust mypy configuration
### What changes were proposed in this pull request?

This pull request:

- Adds following flags to the main mypy configuration:
  - [`strict_optional`](https://mypy.readthedocs.io/en/stable/config_file.html#confval-strict_optional)
  - [`no_implicit_optional`](https://mypy.readthedocs.io/en/stable/config_file.html#confval-no_implicit_optional)
  - [`disallow_untyped_defs`](https://mypy.readthedocs.io/en/stable/config_file.html#confval-disallow_untyped_calls)

These flags are enabled only for public API and disabled for tests and internal modules.

Additionally, these PR fixes missing annotations.

### Why are the changes needed?

Primary reason to propose this changes is to use standard configuration as used by typeshed project. This will allow us to be more strict, especially when interacting with JVM code. See for example https://github.com/apache/spark/pull/29122#pullrequestreview-513112882

Additionally, it will allow us to detect cases where annotations have unintentionally omitted.

### Does this PR introduce _any_ user-facing change?

Annotations only.

### How was this patch tested?

`dev/lint-python`.

Closes #30382 from zero323/SPARK-33457.

Authored-by: zero323 <mszymkiewicz@gmail.com>
Signed-off-by: HyukjinKwon <gurwls223@apache.org>
2020-11-25 09:27:04 +09:00

284 lines
9.8 KiB
Python

#
# Licensed to the Apache Software Foundation (ASF) under one
# or more contributor license agreements. See the NOTICE file
# distributed with this work for additional information
# regarding copyright ownership. The ASF licenses this file
# to you under the Apache License, Version 2.0 (the
# "License"); you may not use this file except in compliance
# with the License. You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing,
# software distributed under the License is distributed on an
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
# KIND, either express or implied. See the License for the
# specific language governing permissions and limitations
# under the License.
import abc
from typing import Optional
from pyspark.ml._typing import (
ParamMap,
BinaryClassificationEvaluatorMetricType,
ClusteringEvaluatorMetricType,
MulticlassClassificationEvaluatorMetricType,
MultilabelClassificationEvaluatorMetricType,
RankingEvaluatorMetricType,
RegressionEvaluatorMetricType,
)
from pyspark.ml.wrapper import JavaParams
from pyspark.ml.param import Param, Params
from pyspark.ml.param.shared import (
HasFeaturesCol,
HasLabelCol,
HasPredictionCol,
HasProbabilityCol,
HasRawPredictionCol,
HasWeightCol,
)
from pyspark.ml.util import JavaMLReadable, JavaMLWritable
from pyspark.sql.dataframe import DataFrame
class Evaluator(Params, metaclass=abc.ABCMeta):
def evaluate(
self, dataset: DataFrame, params: Optional[ParamMap] = ...
) -> float: ...
def isLargerBetter(self) -> bool: ...
class JavaEvaluator(JavaParams, Evaluator, metaclass=abc.ABCMeta):
def isLargerBetter(self) -> bool: ...
class BinaryClassificationEvaluator(
JavaEvaluator,
HasLabelCol,
HasRawPredictionCol,
HasWeightCol,
JavaMLReadable[BinaryClassificationEvaluator],
JavaMLWritable,
):
metricName: Param[BinaryClassificationEvaluatorMetricType]
numBins: Param[int]
def __init__(
self,
*,
rawPredictionCol: str = ...,
labelCol: str = ...,
metricName: BinaryClassificationEvaluatorMetricType = ...,
weightCol: Optional[str] = ...,
numBins: int = ...
) -> None: ...
def setMetricName(
self, value: BinaryClassificationEvaluatorMetricType
) -> BinaryClassificationEvaluator: ...
def getMetricName(self) -> BinaryClassificationEvaluatorMetricType: ...
def setNumBins(self, value: int) -> BinaryClassificationEvaluator: ...
def getNumBins(self) -> int: ...
def setLabelCol(self, value: str) -> BinaryClassificationEvaluator: ...
def setRawPredictionCol(self, value: str) -> BinaryClassificationEvaluator: ...
def setWeightCol(self, value: str) -> BinaryClassificationEvaluator: ...
def setParams(
self,
*,
rawPredictionCol: str = ...,
labelCol: str = ...,
metricName: BinaryClassificationEvaluatorMetricType = ...,
weightCol: Optional[str] = ...,
numBins: int = ...
) -> BinaryClassificationEvaluator: ...
class RegressionEvaluator(
JavaEvaluator,
HasLabelCol,
HasPredictionCol,
HasWeightCol,
JavaMLReadable[RegressionEvaluator],
JavaMLWritable,
):
metricName: Param[RegressionEvaluatorMetricType]
throughOrigin: Param[bool]
def __init__(
self,
*,
predictionCol: str = ...,
labelCol: str = ...,
metricName: RegressionEvaluatorMetricType = ...,
weightCol: Optional[str] = ...,
throughOrigin: bool = ...
) -> None: ...
def setMetricName(
self, value: RegressionEvaluatorMetricType
) -> RegressionEvaluator: ...
def getMetricName(self) -> RegressionEvaluatorMetricType: ...
def setThroughOrigin(self, value: bool) -> RegressionEvaluator: ...
def getThroughOrigin(self) -> bool: ...
def setLabelCol(self, value: str) -> RegressionEvaluator: ...
def setPredictionCol(self, value: str) -> RegressionEvaluator: ...
def setWeightCol(self, value: str) -> RegressionEvaluator: ...
def setParams(
self,
*,
predictionCol: str = ...,
labelCol: str = ...,
metricName: RegressionEvaluatorMetricType = ...,
weightCol: Optional[str] = ...,
throughOrigin: bool = ...
) -> RegressionEvaluator: ...
class MulticlassClassificationEvaluator(
JavaEvaluator,
HasLabelCol,
HasPredictionCol,
HasWeightCol,
HasProbabilityCol,
JavaMLReadable[MulticlassClassificationEvaluator],
JavaMLWritable,
):
metricName: Param[MulticlassClassificationEvaluatorMetricType]
metricLabel: Param[float]
beta: Param[float]
eps: Param[float]
def __init__(
self,
*,
predictionCol: str = ...,
labelCol: str = ...,
metricName: MulticlassClassificationEvaluatorMetricType = ...,
weightCol: Optional[str] = ...,
metricLabel: float = ...,
beta: float = ...,
probabilityCol: str = ...,
eps: float = ...
) -> None: ...
def setMetricName(
self, value: MulticlassClassificationEvaluatorMetricType
) -> MulticlassClassificationEvaluator: ...
def getMetricName(self) -> MulticlassClassificationEvaluatorMetricType: ...
def setMetricLabel(self, value: float) -> MulticlassClassificationEvaluator: ...
def getMetricLabel(self) -> float: ...
def setBeta(self, value: float) -> MulticlassClassificationEvaluator: ...
def getBeta(self) -> float: ...
def setEps(self, value: float) -> MulticlassClassificationEvaluator: ...
def getEps(self) -> float: ...
def setLabelCol(self, value: str) -> MulticlassClassificationEvaluator: ...
def setPredictionCol(self, value: str) -> MulticlassClassificationEvaluator: ...
def setProbabilityCol(self, value: str) -> MulticlassClassificationEvaluator: ...
def setWeightCol(self, value: str) -> MulticlassClassificationEvaluator: ...
def setParams(
self,
*,
predictionCol: str = ...,
labelCol: str = ...,
metricName: MulticlassClassificationEvaluatorMetricType = ...,
weightCol: Optional[str] = ...,
metricLabel: float = ...,
beta: float = ...,
probabilityCol: str = ...,
eps: float = ...
) -> MulticlassClassificationEvaluator: ...
class MultilabelClassificationEvaluator(
JavaEvaluator,
HasLabelCol,
HasPredictionCol,
JavaMLReadable[MultilabelClassificationEvaluator],
JavaMLWritable,
):
metricName: Param[MultilabelClassificationEvaluatorMetricType]
metricLabel: Param[float]
def __init__(
self,
*,
predictionCol: str = ...,
labelCol: str = ...,
metricName: MultilabelClassificationEvaluatorMetricType = ...,
metricLabel: float = ...
) -> None: ...
def setMetricName(
self, value: MultilabelClassificationEvaluatorMetricType
) -> MultilabelClassificationEvaluator: ...
def getMetricName(self) -> MultilabelClassificationEvaluatorMetricType: ...
def setMetricLabel(self, value: float) -> MultilabelClassificationEvaluator: ...
def getMetricLabel(self) -> float: ...
def setLabelCol(self, value: str) -> MultilabelClassificationEvaluator: ...
def setPredictionCol(self, value: str) -> MultilabelClassificationEvaluator: ...
def setParams(
self,
*,
predictionCol: str = ...,
labelCol: str = ...,
metricName: MultilabelClassificationEvaluatorMetricType = ...,
metricLabel: float = ...
) -> MultilabelClassificationEvaluator: ...
class ClusteringEvaluator(
JavaEvaluator,
HasPredictionCol,
HasFeaturesCol,
HasWeightCol,
JavaMLReadable[ClusteringEvaluator],
JavaMLWritable,
):
metricName: Param[ClusteringEvaluatorMetricType]
distanceMeasure: Param[str]
def __init__(
self,
*,
predictionCol: str = ...,
featuresCol: str = ...,
metricName: ClusteringEvaluatorMetricType = ...,
distanceMeasure: str = ...,
weightCol: Optional[str] = ...
) -> None: ...
def setParams(
self,
*,
predictionCol: str = ...,
featuresCol: str = ...,
metricName: ClusteringEvaluatorMetricType = ...,
distanceMeasure: str = ...,
weightCol: Optional[str] = ...
) -> ClusteringEvaluator: ...
def setMetricName(
self, value: ClusteringEvaluatorMetricType
) -> ClusteringEvaluator: ...
def getMetricName(self) -> ClusteringEvaluatorMetricType: ...
def setDistanceMeasure(self, value: str) -> ClusteringEvaluator: ...
def getDistanceMeasure(self) -> str: ...
def setFeaturesCol(self, value: str) -> ClusteringEvaluator: ...
def setPredictionCol(self, value: str) -> ClusteringEvaluator: ...
def setWeightCol(self, value: str) -> ClusteringEvaluator: ...
class RankingEvaluator(
JavaEvaluator,
HasLabelCol,
HasPredictionCol,
JavaMLReadable[RankingEvaluator],
JavaMLWritable,
):
metricName: Param[RankingEvaluatorMetricType]
k: Param[int]
def __init__(
self,
*,
predictionCol: str = ...,
labelCol: str = ...,
metricName: RankingEvaluatorMetricType = ...,
k: int = ...
) -> None: ...
def setMetricName(self, value: RankingEvaluatorMetricType) -> RankingEvaluator: ...
def getMetricName(self) -> RankingEvaluatorMetricType: ...
def setK(self, value: int) -> RankingEvaluator: ...
def getK(self) -> int: ...
def setLabelCol(self, value: str) -> RankingEvaluator: ...
def setPredictionCol(self, value: str) -> RankingEvaluator: ...
def setParams(
self,
*,
predictionCol: str = ...,
labelCol: str = ...,
metricName: RankingEvaluatorMetricType = ...,
k: int = ...
) -> RankingEvaluator: ...