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

    https://github.com/apache/spark/pull/5173#discussion_r27260912
  
    --- Diff: python/pyspark/mllib/classification.py ---
    @@ -428,9 +428,10 @@ def save(self, sc, path):
         def load(cls, sc, path):
             java_model = 
sc._jvm.org.apache.spark.mllib.classification.NaiveBayesModel.load(
                 sc._jsc.sc(), path)
    -        py_labels = _java2py(sc, java_model.labels())
    -        py_pi = _java2py(sc, java_model.pi())
    -        py_theta = _java2py(sc, java_model.theta())
    +        # Can not unpickle array.array from Pyrolite in Python3 with 
"bytes"
    --- End diff --
    
    Will this change depending on upstream Pyrolite patches?  If so, can we 
create a JIRA and add a `TODO` referencing it so that we know which changes to 
roll back when that happens?


---
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]

Reply via email to