Github user yanboliang commented on a diff in the pull request:
https://github.com/apache/spark/pull/7976#discussion_r37490167
--- Diff: python/pyspark/ml/feature.py ---
@@ -817,6 +822,64 @@ class StringIndexerModel(JavaModel):
"""
Model fitted by StringIndexer.
"""
+ @property
+ def labels(self):
+ return self._java_obj.labels
+
+
+@inherit_doc
+class IndexToString(JavaTransformer, HasInputCol, HasOutputCol):
+ """
+ .. note:: Experimental
+ A [[Transformer]] that maps a column of string indices back to a new
column of corresponding
+ string values using either the ML attributes of the input column, or
if provided using the
+ labels supplied by the user.
+ All original columns are kept during transformation.
+ See L{StringIndexer} for converting strings into indices
+ """
+
+ # a placeholder to make the labels show up in generated doc
+ labels = Param(Params._dummy(), "labels",
+ "Optional labels to be provided by the user, if not
supplied column " +
+ "metadata is read for labels. The default value is an
empty array, " +
+ "but the empty array is ignored and column metadata
used instead.")
+
+ @keyword_only
+ def __init__(self, inputCol=None, outputCol=None, labels=[]):
+ """
+ __init__(self, inputCol=None, outputCol=None, labels=[])
+ """
+ super(IndexToString, self).__init__()
+ self._java_obj =
self._new_java_obj("org.apache.spark.ml.feature.IndexToString",
+ self.uid)
+ self.labels = Param(self, "labels",
+ "Optional labels to be provided by the user,
if not supplied column " +
+ "metadata is read for labels. The default
value is an empty array, " +
+ "but the empty array is ignored and column
metadata used instead.")
+ kwargs = self.__init__._input_kwargs
+ self.setParams(**kwargs)
+
+ @keyword_only
+ def setParams(self, inputCol=None, outputCol=None, labels=[]):
+ """
+ setParams(self, inputCol=None, outputCol=None, labels=[])
+ Sets params for this IndexToString
+ """
+ kwargs = self.setParams._input_kwargs
+ return self._set(**kwargs)
+
+ def setLabels(self, value):
+ """
+ Specify the labels to be used.
--- End diff --
`Sets the value of :py:attr:`labels`.`
---
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]