Github user jkbradley commented on a diff in the pull request:
https://github.com/apache/spark/pull/10242#discussion_r60470025
--- Diff: python/pyspark/ml/clustering.py ---
@@ -310,6 +311,374 @@ def _create_model(self, java_model):
return BisectingKMeansModel(java_model)
+class LDAModel(JavaModel):
+ """
+ A clustering model derived from the LDA method.
+
+ .. versionadded:: 2.0.0
+ """
+
+ @since("2.0.0")
+ def isDistributed(self):
+ """Indicates whether this instance is of type
DistributedLDAModel"""
+ return self._call_java("isDistributed")
+
+ @since("2.0.0")
+ def vocabSize(self):
+ """Vocabulary size (number of terms or terms in the vocabulary)"""
--- End diff --
"terms or terms" must be a mistake from a search-and-replace. I bet it's
supposed to be "terms or words"
Could you fix that here and in the Scala doc too please?
---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at [email protected] or file a JIRA ticket
with INFRA.
---
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]