diff --git a/python/pyspark/ml/feature.py b/python/pyspark/ml/feature.py index a1911cebe3fbf45981b6744901ed059f9bd588ee..1b298e639d3b6562827e21aad924ac58fa768013 100644 --- a/python/pyspark/ml/feature.py +++ b/python/pyspark/ml/feature.py @@ -340,7 +340,7 @@ class CountVectorizer(JavaEstimator, HasInputCol, HasOutputCol, JavaMLReadable, """ Sets the value of :py:attr:`binary`. """ - self._paramMap[self.binary] = value + self._set(binary=value) return self @since("2.0.0") @@ -569,7 +569,7 @@ class HashingTF(JavaTransformer, HasInputCol, HasOutputCol, HasNumFeatures, Java """ Sets the value of :py:attr:`binary`. """ - self._paramMap[self.binary] = value + self._set(binary=value) return self @since("2.0.0")