You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hivemall.apache.org by my...@apache.org on 2019/12/20 15:45:31 UTC

[incubator-hivemall] branch master updated: Fixed a typo

This is an automated email from the ASF dual-hosted git repository.

myui pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-hivemall.git


The following commit(s) were added to refs/heads/master by this push:
     new 939c37a  Fixed a typo
939c37a is described below

commit 939c37a1cae692d9279156fa8a5b9d112f9919d4
Author: Makoto Yui <my...@apache.org>
AuthorDate: Sat Dec 21 00:45:22 2019 +0900

    Fixed a typo
---
 core/src/main/java/hivemall/smile/tools/DecisionPathUDF.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/core/src/main/java/hivemall/smile/tools/DecisionPathUDF.java b/core/src/main/java/hivemall/smile/tools/DecisionPathUDF.java
index 9b4be97..f9a0603 100644
--- a/core/src/main/java/hivemall/smile/tools/DecisionPathUDF.java
+++ b/core/src/main/java/hivemall/smile/tools/DecisionPathUDF.java
@@ -142,7 +142,7 @@ public final class DecisionPathUDF extends UDFWithOptions {
     @Override
     public ObjectInspector initialize(ObjectInspector[] argOIs) throws UDFArgumentException {
         if (argOIs.length < 3 || argOIs.length > 6) {
-            showHelp("tree_predict takes 3 ~ 6 arguments");
+            showHelp("decision_path takes 3 ~ 6 arguments");
         }
 
         this.modelOI = HiveUtils.asStringOI(argOIs[1]);