Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Spark-8703] [ML] Add CountVectorizer as a ml transformer to convert document to words count vector #7084

Closed
wants to merge 9 commits into from
Closed
Original file line number Diff line number Diff line change
@@ -0,0 +1,82 @@
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.apache.spark.ml.feature

import scala.collection.mutable

import org.apache.spark.annotation.Experimental
import org.apache.spark.ml.UnaryTransformer
import org.apache.spark.ml.param.{ParamMap, ParamValidators, IntParam}
import org.apache.spark.ml.util.Identifiable
import org.apache.spark.mllib.linalg.{Vectors, VectorUDT, Vector}
import org.apache.spark.sql.types.{StringType, ArrayType, DataType}

/**
* :: Experimental ::
* Converts a text document to a sparse vector of token counts.
* @param vocabulary An Array over terms. Only the terms in the vocabulary will be counted.
*/
@Experimental
class CountVectorizerModel (override val uid: String, val vocabulary: Array[String])
extends UnaryTransformer[Seq[String], Vector, CountVectorizerModel] {

def this(vocabulary: Array[String]) =
this(Identifiable.randomUID("cntVec"), vocabulary)

/**
* Corpus-specific filter to ignore scarce words in a document. For each document, terms with
* frequency (count) less than the given threshold are ignored.
* Default: 1
* @group param
*/
val minTermFreq: IntParam = new IntParam(this, "minTermFreq",
"minimum frequency (count) filter used to neglect scarce words (>= 1). For each document, " +
"terms with frequency less than the given threshold are ignored.", ParamValidators.gtEq(1))

/** @group setParam */
def setMinTermFreq(value: Int): this.type = set(minTermFreq, value)

/** @group getParam */
def getMinTermFreq: Int = $(minTermFreq)

setDefault(minTermFreq -> 1)

override protected def createTransformFunc: Seq[String] => Vector = {
val dict = vocabulary.zipWithIndex.toMap
document =>
val termCounts = mutable.HashMap.empty[Int, Double]
document.foreach { term =>
dict.get(term) match {
case Some(index) => termCounts.put(index, termCounts.getOrElse(index, 0.0) + 1.0)
case None => // ignore terms not in the vocabulary
}
}
Vectors.sparse(dict.size, termCounts.filter(_._2 >= $(minTermFreq)).toSeq)
}

override protected def validateInputType(inputType: DataType): Unit = {
require(inputType.sameType(ArrayType(StringType)),
s"Input type must be ArrayType(StringType) but got $inputType.")
}

override protected def outputDataType: DataType = new VectorUDT()

override def copy(extra: ParamMap): CountVectorizerModel = {
val copied = new CountVectorizerModel(uid, vocabulary)
copyValues(copied, extra)
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,73 @@
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.apache.spark.ml.feature

import org.apache.spark.SparkFunSuite
import org.apache.spark.ml.param.ParamsSuite
import org.apache.spark.mllib.linalg.{Vector, Vectors}
import org.apache.spark.mllib.util.MLlibTestSparkContext
import org.apache.spark.mllib.util.TestingUtils._

class CountVectorizerSuite extends SparkFunSuite with MLlibTestSparkContext {

test("params") {
ParamsSuite.checkParams(new CountVectorizerModel(Array("empty")))
}

test("CountVectorizerModel common cases") {
val df = sqlContext.createDataFrame(Seq(
(0, "a b c d".split(" ").toSeq,
Vectors.sparse(4, Seq((0, 1.0), (1, 1.0), (2, 1.0), (3, 1.0)))),
(1, "a b b c d a".split(" ").toSeq,
Vectors.sparse(4, Seq((0, 2.0), (1, 2.0), (2, 1.0), (3, 1.0)))),
(2, "a".split(" ").toSeq, Vectors.sparse(4, Seq((0, 1.0)))),
(3, "".split(" ").toSeq, Vectors.sparse(4, Seq())), // empty string
(4, "a notInDict d".split(" ").toSeq,
Vectors.sparse(4, Seq((0, 1.0), (3, 1.0)))) // with words not in vocabulary
)).toDF("id", "words", "expected")
val cv = new CountVectorizerModel(Array("a", "b", "c", "d"))
.setInputCol("words")
.setOutputCol("features")
val output = cv.transform(df).collect()
output.foreach { p =>
val features = p.getAs[Vector]("features")
val expected = p.getAs[Vector]("expected")
assert(features ~== expected absTol 1e-14)
}
}

test("CountVectorizerModel with minTermFreq") {
val df = sqlContext.createDataFrame(Seq(
(0, "a a a b b c c c d ".split(" ").toSeq, Vectors.sparse(4, Seq((0, 3.0), (2, 3.0)))),
(1, "c c c c c c".split(" ").toSeq, Vectors.sparse(4, Seq((2, 6.0)))),
(2, "a".split(" ").toSeq, Vectors.sparse(4, Seq())),
(3, "e e e e e".split(" ").toSeq, Vectors.sparse(4, Seq())))
).toDF("id", "words", "expected")
val cv = new CountVectorizerModel(Array("a", "b", "c", "d"))
.setInputCol("words")
.setOutputCol("features")
.setMinTermFreq(3)
val output = cv.transform(df).collect()
output.foreach { p =>
val features = p.getAs[Vector]("features")
val expected = p.getAs[Vector]("expected")
assert(features ~== expected absTol 1e-14)
}
}
}