Skip to content
This repository has been archived by the owner on Oct 8, 2019. It is now read-only.

Commit

Permalink
Fix an error comment
Browse files Browse the repository at this point in the history
  • Loading branch information
myui committed Jul 3, 2015
1 parent 0c79c82 commit 6c4079b
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -81,7 +81,7 @@ public abstract class MulticlassOnlineClassifierUDTF extends LearnerBaseUDTF {
public StructObjectInspector initialize(ObjectInspector[] argOIs) throws UDFArgumentException {
if(argOIs.length < 2) {
throw new UDFArgumentException(getClass().getSimpleName()
+ " takes 2 arguments: List<Int|BigInt|Text> features, {Int|Text} label [, constant text options]");
+ " takes 2 arguments: List<Int|BigInt|Text> features, {Int|BitInt|Text} label [, constant text options]");
}
PrimitiveObjectInspector featureInputOI = processFeaturesOI(argOIs[0]);
this.labelInputOI = HiveUtils.asPrimitiveObjectInspector(argOIs[1]);
Expand Down

0 comments on commit 6c4079b

Please sign in to comment.