Skip to content
This repository has been archived by the owner on Nov 22, 2022. It is now read-only.

[SPARK-32933] Revert blockify gmm #537

Merged
merged 1 commit into from
Sep 23, 2020
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 2 additions & 7 deletions third_party/3/pyspark/ml/clustering.pyi
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,6 @@ from pyspark.ml.util import (
from pyspark.ml.wrapper import JavaEstimator, JavaModel, JavaParams, JavaWrapper
from pyspark.ml.param.shared import (
HasAggregationDepth,
HasBlockSize,
HasCheckpointInterval,
HasDistanceMeasure,
HasFeaturesCol,
Expand Down Expand Up @@ -71,7 +70,6 @@ class _GaussianMixtureParams(
HasTol,
HasAggregationDepth,
HasWeightCol,
HasBlockSize,
):
k: Param[int]
def __init__(self, *args: Any): ...
Expand Down Expand Up @@ -115,8 +113,7 @@ class GaussianMixture(
maxIter: int = ...,
seed: Optional[int] = ...,
aggregationDepth: int = ...,
weightCol: Optional[str] = ...,
blockSize: int = ...
weightCol: Optional[str] = ...
) -> None: ...
def setParams(
self,
Expand All @@ -129,8 +126,7 @@ class GaussianMixture(
maxIter: int = ...,
seed: Optional[int] = ...,
aggregationDepth: int = ...,
weightCol: Optional[str] = ...,
blockSize: int = ...
weightCol: Optional[str] = ...
) -> GaussianMixture: ...
def setK(self, value: int) -> GaussianMixture: ...
def setMaxIter(self, value: int) -> GaussianMixture: ...
Expand All @@ -141,7 +137,6 @@ class GaussianMixture(
def setSeed(self, value: int) -> GaussianMixture: ...
def setTol(self, value: float) -> GaussianMixture: ...
def setAggregationDepth(self, value: int) -> GaussianMixture: ...
def setBlockSize(self, value: int) -> GaussianMixture: ...

class GaussianMixtureSummary(ClusteringSummary):
@property
Expand Down