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

    https://github.com/apache/spark/pull/12819#discussion_r87151780
  
    --- Diff: 
mllib/src/main/scala/org/apache/spark/ml/classification/NaiveBayes.scala ---
    @@ -109,10 +118,89 @@ class NaiveBayes @Since("1.5.0") (
             s" numClasses=$numClasses, but thresholds has length 
${$(thresholds).length}")
         }
     
    -    val oldDataset: RDD[OldLabeledPoint] =
    -      extractLabeledPoints(dataset).map(OldLabeledPoint.fromML)
    -    val oldModel = OldNaiveBayes.train(oldDataset, $(smoothing), 
$(modelType))
    -    NaiveBayesModel.fromOld(oldModel, this)
    +    val numFeatures = 
dataset.select(col($(featuresCol))).head().getAs[Vector](0).size
    +
    +    val requireNonnegativeValues: Vector => Unit = (v: Vector) => {
    +      val values = v match {
    +        case sv: SparseVector => sv.values
    +        case dv: DenseVector => dv.values
    +      }
    +
    +      require(values.forall(_ >= 0.0),
    +        s"Naive Bayes requires nonnegative feature values but found $v.")
    +    }
    +
    +    val requireZeroOneBernoulliValues: Vector => Unit = (v: Vector) => {
    +      val values = v match {
    +        case sv: SparseVector => sv.values
    +        case dv: DenseVector => dv.values
    +      }
    +
    +      require(values.forall(v => v == 0.0 || v == 1.0),
    +        s"Bernoulli naive Bayes requires 0 or 1 feature values but found 
$v.")
    +    }
    +
    +    val requireValues: Vector => Unit = {
    +      $(modelType) match {
    --- End diff --
    
    @thunterdb Good catch! I updated at #15826. Thanks.


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