Github user MrBago commented on a diff in the pull request:

    https://github.com/apache/spark/pull/20058#discussion_r159105728
  
    --- Diff: python/pyspark/ml/base.py ---
    @@ -18,13 +18,40 @@
     from abc import ABCMeta, abstractmethod
     
     import copy
    +import threading
     
     from pyspark import since
    -from pyspark.ml.param import Params
     from pyspark.ml.param.shared import *
     from pyspark.ml.common import inherit_doc
     from pyspark.sql.functions import udf
    -from pyspark.sql.types import StructField, StructType, DoubleType
    +from pyspark.sql.types import StructField, StructType
    +
    +
    +class FitMutlipleIterator(object):
    --- End diff --
    
    @jkbradley @WeichenXu123 I made `FitMultipleIterator` a private class, is 
that good enough or should I make it internal to the `fitMultiple` method?


---

---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to