srowen commented on a change in pull request #29482:
URL: https://github.com/apache/spark/pull/29482#discussion_r474146860



##########
File path: 
mllib/src/main/scala/org/apache/spark/ml/feature/CountVectorizer.scala
##########
@@ -241,7 +241,9 @@ class CountVectorizer @Since("1.5.0") (@Since("1.5.0") 
override val uid: String)
     }
     wordCounts.unpersist()
 
-    require(vocab.length > 0, "The vocabulary size should be > 0. Lower minDF 
as necessary.")
+    if (vocab.isEmpty) {
+      this.logWarning("The vocabulary size is empty. Alter minDF/maxDF as 
necessary.")

Review comment:
       Oops I think you're right. Still we could retain the advice to decrease 
the min or increase the max




----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

For queries about this service, please contact Infrastructure at:
[email protected]



---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to