spark-instrumented-optimizer/python/pyspark/mllib/linalg/__init__.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

287 lines
9.4 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.
from typing import overload
from typing import (
Any,
Dict,
Generic,
Iterable,
List,
Optional,
Tuple,
Type,
TypeVar,
Union,
)
from pyspark.ml import linalg as newlinalg
from pyspark.sql.types import StructType, UserDefinedType
from numpy import float64, ndarray # type: ignore[import]
QT = TypeVar("QT")
RT = TypeVar("RT")
class VectorUDT(UserDefinedType):
@classmethod
def sqlType(cls) -> StructType: ...
@classmethod
def module(cls) -> str: ...
@classmethod
def scalaUDT(cls) -> str: ...
def serialize(
self, obj: Vector
) -> Tuple[int, Optional[int], Optional[List[int]], List[float]]: ...
def deserialize(self, datum: Any) -> Vector: ...
def simpleString(self) -> str: ...
class MatrixUDT(UserDefinedType):
@classmethod
def sqlType(cls) -> StructType: ...
@classmethod
def module(cls) -> str: ...
@classmethod
def scalaUDT(cls) -> str: ...
def serialize(
self, obj: Matrix
) -> Tuple[
int, int, int, Optional[List[int]], Optional[List[int]], List[float], bool
]: ...
def deserialize(self, datum: Any) -> Matrix: ...
def simpleString(self) -> str: ...
class Vector:
__UDT__: VectorUDT
def toArray(self) -> ndarray: ...
def asML(self) -> newlinalg.Vector: ...
class DenseVector(Vector):
array: ndarray
@overload
def __init__(self, *elements: float) -> None: ...
@overload
def __init__(self, __arr: bytes) -> None: ...
@overload
def __init__(self, __arr: Iterable[float]) -> None: ...
@staticmethod
def parse(s: str) -> DenseVector: ...
def __reduce__(self) -> Tuple[Type[DenseVector], bytes]: ...
def numNonzeros(self) -> int: ...
def norm(self, p: Union[float, str]) -> float64: ...
def dot(self, other: Iterable[float]) -> float64: ...
def squared_distance(self, other: Iterable[float]) -> float64: ...
def toArray(self) -> ndarray: ...
def asML(self) -> newlinalg.DenseVector: ...
@property
def values(self) -> ndarray: ...
def __getitem__(self, item: int) -> float64: ...
def __len__(self) -> int: ...
def __eq__(self, other: Any) -> bool: ...
def __ne__(self, other: Any) -> bool: ...
def __hash__(self) -> int: ...
def __getattr__(self, item: str) -> Any: ...
def __neg__(self) -> DenseVector: ...
def __add__(self, other: Union[float, Iterable[float]]) -> DenseVector: ...
def __sub__(self, other: Union[float, Iterable[float]]) -> DenseVector: ...
def __mul__(self, other: Union[float, Iterable[float]]) -> DenseVector: ...
def __div__(self, other: Union[float, Iterable[float]]) -> DenseVector: ...
def __truediv__(self, other: Union[float, Iterable[float]]) -> DenseVector: ...
def __mod__(self, other: Union[float, Iterable[float]]) -> DenseVector: ...
def __radd__(self, other: Union[float, Iterable[float]]) -> DenseVector: ...
def __rsub__(self, other: Union[float, Iterable[float]]) -> DenseVector: ...
def __rmul__(self, other: Union[float, Iterable[float]]) -> DenseVector: ...
def __rdiv__(self, other: Union[float, Iterable[float]]) -> DenseVector: ...
def __rtruediv__(self, other: Union[float, Iterable[float]]) -> DenseVector: ...
def __rmod__(self, other: Union[float, Iterable[float]]) -> DenseVector: ...
class SparseVector(Vector):
size: int
indices: ndarray
values: ndarray
@overload
def __init__(self, size: int, *args: Tuple[int, float]) -> None: ...
@overload
def __init__(self, size: int, __indices: bytes, __values: bytes) -> None: ...
@overload
def __init__(
self, size: int, __indices: Iterable[int], __values: Iterable[float]
) -> None: ...
@overload
def __init__(self, size: int, __pairs: Iterable[Tuple[int, float]]) -> None: ...
@overload
def __init__(self, size: int, __map: Dict[int, float]) -> None: ...
def numNonzeros(self) -> int: ...
def norm(self, p: Union[float, str]) -> float64: ...
def __reduce__(self) -> Tuple[Type[SparseVector], Tuple[int, bytes, bytes]]: ...
@staticmethod
def parse(s: str) -> SparseVector: ...
def dot(self, other: Iterable[float]) -> float64: ...
def squared_distance(self, other: Iterable[float]) -> float64: ...
def toArray(self) -> ndarray: ...
def asML(self) -> newlinalg.SparseVector: ...
def __len__(self) -> int: ...
def __eq__(self, other: Any) -> bool: ...
def __getitem__(self, index: int) -> float64: ...
def __ne__(self, other: Any) -> bool: ...
def __hash__(self) -> int: ...
class Vectors:
@overload
@staticmethod
def sparse(size: int, *args: Tuple[int, float]) -> SparseVector: ...
@overload
@staticmethod
def sparse(size: int, __indices: bytes, __values: bytes) -> SparseVector: ...
@overload
@staticmethod
def sparse(
size: int, __indices: Iterable[int], __values: Iterable[float]
) -> SparseVector: ...
@overload
@staticmethod
def sparse(size: int, __pairs: Iterable[Tuple[int, float]]) -> SparseVector: ...
@overload
@staticmethod
def sparse(size: int, __map: Dict[int, float]) -> SparseVector: ...
@overload
@staticmethod
def dense(*elements: float) -> DenseVector: ...
@overload
@staticmethod
def dense(__arr: bytes) -> DenseVector: ...
@overload
@staticmethod
def dense(__arr: Iterable[float]) -> DenseVector: ...
@staticmethod
def fromML(vec: newlinalg.DenseVector) -> DenseVector: ...
@staticmethod
def stringify(vector: Vector) -> str: ...
@staticmethod
def squared_distance(v1: Vector, v2: Vector) -> float64: ...
@staticmethod
def norm(vector: Vector, p: Union[float, str]) -> float64: ...
@staticmethod
def parse(s: str) -> Vector: ...
@staticmethod
def zeros(size: int) -> DenseVector: ...
class Matrix:
__UDT__: MatrixUDT
numRows: int
numCols: int
isTransposed: bool
def __init__(
self, numRows: int, numCols: int, isTransposed: bool = ...
) -> None: ...
def toArray(self) -> ndarray: ...
def asML(self) -> newlinalg.Matrix: ...
class DenseMatrix(Matrix):
values: Any
@overload
def __init__(
self, numRows: int, numCols: int, values: bytes, isTransposed: bool = ...
) -> None: ...
@overload
def __init__(
self,
numRows: int,
numCols: int,
values: Iterable[float],
isTransposed: bool = ...,
) -> None: ...
def __reduce__(self) -> Tuple[Type[DenseMatrix], Tuple[int, int, bytes, int]]: ...
def toArray(self) -> ndarray: ...
def toSparse(self) -> SparseMatrix: ...
def asML(self) -> newlinalg.DenseMatrix: ...
def __getitem__(self, indices: Tuple[int, int]) -> float64: ...
def __eq__(self, other: Any) -> bool: ...
class SparseMatrix(Matrix):
colPtrs: ndarray
rowIndices: ndarray
values: ndarray
@overload
def __init__(
self,
numRows: int,
numCols: int,
colPtrs: bytes,
rowIndices: bytes,
values: bytes,
isTransposed: bool = ...,
) -> None: ...
@overload
def __init__(
self,
numRows: int,
numCols: int,
colPtrs: Iterable[int],
rowIndices: Iterable[int],
values: Iterable[float],
isTransposed: bool = ...,
) -> None: ...
def __reduce__(
self,
) -> Tuple[Type[SparseMatrix], Tuple[int, int, bytes, bytes, bytes, int]]: ...
def __getitem__(self, indices: Tuple[int, int]) -> float64: ...
def toArray(self) -> ndarray: ...
def toDense(self) -> DenseMatrix: ...
def asML(self) -> newlinalg.SparseMatrix: ...
def __eq__(self, other: Any) -> bool: ...
class Matrices:
@overload
@staticmethod
def dense(
numRows: int, numCols: int, values: bytes, isTransposed: bool = ...
) -> DenseMatrix: ...
@overload
@staticmethod
def dense(
numRows: int, numCols: int, values: Iterable[float], isTransposed: bool = ...
) -> DenseMatrix: ...
@overload
@staticmethod
def sparse(
numRows: int,
numCols: int,
colPtrs: bytes,
rowIndices: bytes,
values: bytes,
isTransposed: bool = ...,
) -> SparseMatrix: ...
@overload
@staticmethod
def sparse(
numRows: int,
numCols: int,
colPtrs: Iterable[int],
rowIndices: Iterable[int],
values: Iterable[float],
isTransposed: bool = ...,
) -> SparseMatrix: ...
@staticmethod
def fromML(mat: newlinalg.Matrix) -> Matrix: ...
class QRDecomposition(Generic[QT, RT]):
def __init__(self, Q: QT, R: RT) -> None: ...
@property
def Q(self) -> QT: ...
@property
def R(self) -> RT: ...