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 f82d595  Fixed a documentation bug
f82d595 is described below

commit f82d5950a962640fa2bd5b7cc0f7f7b856624888
Author: Makoto Yui <[email protected]>
AuthorDate: Fri Jul 26 16:33:22 2019 +0900

    Fixed a documentation bug
---
 docs/gitbook/eval/regression.md | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/docs/gitbook/eval/regression.md b/docs/gitbook/eval/regression.md
index d8db64b..0b0d200 100644
--- a/docs/gitbook/eval/regression.md
+++ b/docs/gitbook/eval/regression.md
@@ -43,7 +43,7 @@ select
    -- sum(abs(predicted - actual))/count(1) as MAE,
 -- coefficient of determination (R^2)
    -- 1 - sum(pow(actual - predicted,2.0)) / sum(pow(actual - 
${mean_actual},2.0)) as R2
-   r2(actual, predicted) as R2 -- supported since Hivemall v0.4.1-alpha.5
+   r2(predicted, actual) as R2
 from
    e2006tfidf_pa2a_submit;
 ```

Reply via email to