We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a7755fd commit ecafd2bCopy full SHA for ecafd2b
python/pyspark/ml/tests.py
@@ -2096,6 +2096,11 @@ def test_java_params(self):
2096
# NOTE: disable check_params_exist until there is parity with Scala API
2097
ParamTests.check_params(self, cls(), check_params_exist=False)
2098
2099
+ # Additional classes that need explicit construction
2100
+ from pyspark.ml.feature import CountVectorizerModel
2101
+ ParamTests.check_params(self, CountVectorizerModel.from_vocabulary(['a'], 'input'),
2102
+ check_params_exist=False)
2103
+
2104
2105
def _squared_distance(a, b):
2106
if isinstance(a, Vector):
0 commit comments