[GitHub] incubator-hivemall issue #46: [HIVEMALL-72] Fix corner-case rescale UDF beha...

2017-02-16 Thread wangyum
Github user wangyum commented on the issue: https://github.com/apache/incubator-hivemall/pull/46 @myui I agree with you. --- If your project is set up for it, you can reply to this email and have your reply appear on GitHub as well. If your project does not have this feature enabled

[GitHub] incubator-hivemall issue #46: [HIVEMALL-72] Fix corner-case rescale UDF beha...

2017-02-16 Thread coveralls
Github user coveralls commented on the issue: https://github.com/apache/incubator-hivemall/pull/46 [![Coverage Status](https://coveralls.io/builds/10190100/badge)](https://coveralls.io/builds/10190100) Coverage increased (+0.3%) to 36.261% when pulling

[GitHub] incubator-hivemall issue #46: [HIVEMALL-72] Fix corner-case rescale UDF beha...

2017-02-16 Thread coveralls
Github user coveralls commented on the issue: https://github.com/apache/incubator-hivemall/pull/46 [![Coverage Status](https://coveralls.io/builds/10190100/badge)](https://coveralls.io/builds/10190100) Coverage increased (+0.3%) to 36.261% when pulling

[GitHub] incubator-hivemall issue #46: [HIVEMALL-72] Fix corner-case rescale UDF beha...

2017-02-15 Thread myui
Github user myui commented on the issue: https://github.com/apache/incubator-hivemall/pull/46 @wangyum Are you agree with the following new behavior of [rescale(value,min,max)](https://en.wikipedia.org/wiki/Feature_scaling#Rescaling)? ``` -- new select

[GitHub] incubator-hivemall issue #46: [HIVEMALL-72] Fix corner-case rescale UDF beha...

2017-02-15 Thread myui
Github user myui commented on the issue: https://github.com/apache/incubator-hivemall/pull/46 Oops.. the latter one is expected. ```sql select rescale(4.2,1.0,3.0),rescale(-0.3, 1.0, 3.0); > 3.0 1.0 select rescale(4.2,1.0,3.0),rescale(-0.3, 1.0, 3.0); >