Skip to content

Commit

Permalink
text change
Browse files Browse the repository at this point in the history
  • Loading branch information
hhbyyh committed Jul 9, 2015
1 parent 24728e4 commit 5f3f655
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -35,10 +35,10 @@ class CountVectorizerModel (override val uid: String, val vocabulary: Array[Stri
extends UnaryTransformer[Seq[String], Vector, CountVectorizerModel] {

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

/**
* Corpus-specific filter to neglect scarce words in a document. For each document, terms with
* 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
Expand Down

0 comments on commit 5f3f655

Please sign in to comment.