朴素贝叶斯与Apache Spark MLlib

时间:2015-10-13 07:22:59

标签: scala apache-spark text-classification naivebayes apache-spark-mllib

我使用朴素贝叶斯与Apache Spark MLlib进行文本分类遵循教程:http://avulanov.blogspot.com/2014/08/text-classification-with-apache-spark.html

 /* instantiate Spark context (not needed for running inside Spark shell */
val sc = new SparkContext("local", "test")
/* word to vector space converter, limit to 10000 words */
val htf = new HashingTF(10000)
/* load positive and negative sentences from the dataset */
/* let 1 - positive class, 0 - negative class */
/* tokenize sentences and transform them into vector space model */
val positiveData = sc.textFile("/data/rt-polaritydata/rt-polarity.pos")
  .map { text => new LabeledPoint(1, htf.transform(text.split(" ")))}
val negativeData = sc.textFile("/data/rt-polaritydata/rt-polarity.neg")
  .map { text => new LabeledPoint(0, htf.transform(text.split(" ")))}
/* split the data 60% for training, 40% for testing */
val posSplits = positiveData.randomSplit(Array(0.6, 0.4), seed = 11L)
val negSplits = negativeData.randomSplit(Array(0.6, 0.4), seed = 11L)
/* union train data with positive and negative sentences */
val training = posSplits(0).union(negSplits(0))
/* union test data with positive and negative sentences */
val test = posSplits(1).union(negSplits(1))
/* Multinomial Naive Bayesian classifier */
val model = NaiveBayes.train(training)
/* predict */
val predictionAndLabels = test.map { point =>
  val score = model.predict(point.features)
  (score, point.label)
}
/* metrics */
val metrics = new MulticlassMetrics(predictionAndLabels)
/* output F1-measure for all labels (0 and 1, negative and positive) */
metrics.labels.foreach( l => println(metrics.fMeasure(l)))

但是,经过训练数据。如果我想知道句子,我该怎么办?#34;祝你有个美好的一天"是积极的还是消极的? 谢谢。

1 个答案:

答案 0 :(得分:3)

一般来说,您需要两件事来预测原始数据:

  1. 应用您用于训练数据的相同转换。如果某些变压器需要装配(如IDF,标准化,编码),则必须使用经过训练的数据。由于您的方法非常简单,所以您需要的是:

    val testData = htf.transform("Have a nice day".split(" "))
    
  2. 使用训练模型的predict方法:

    model.predict(testData)