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

    https://github.com/apache/spark/pull/3626#discussion_r21564191
  
    --- Diff: 
mllib/src/main/scala/org/apache/spark/mllib/classification/NaiveBayes.scala ---
    @@ -65,6 +66,25 @@ class NaiveBayesModel private[mllib] (
       override def predict(testData: Vector): Double = {
         labels(brzArgmax(brzPi + brzTheta * testData.toBreeze))
       }
    +
    +  def classProbabilities(testData: RDD[Vector]):
    --- End diff --
    
    Classes are index from 0, so would it work to return (for each instance) a 
Vector of probabilities rather than a Map[Double, Double]?  That seems simpler 
(and more efficient).
    
    Also, I have a PR [https://github.com/apache/spark/pull/3637] for a 
separate part of MLlib which adds a method like this for predicting class 
conditional probabilities.  I'd like us to use the same name for the prediction 
method, but I'm open about choosing a name.  I had used "predictProbabilities" 
to (a) have it start with "predict" like other prediction methods and (b) leave 
open the possibility of supporting a similar method for regression algorithms 
(which can predict probability distributions).  But I'll agree 
"classProbabilities" is more specific.  Do you have strong preferences?


---
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 infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscr...@spark.apache.org
For additional commands, e-mail: reviews-h...@spark.apache.org

Reply via email to