From dev-return-2837-archive-asf-public=cust-asf.ponee.io@madlib.apache.org Thu Feb 22 02:24:09 2018 Return-Path: X-Original-To: archive-asf-public@cust-asf.ponee.io Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by mx-eu-01.ponee.io (Postfix) with SMTP id A896518061A for ; Thu, 22 Feb 2018 02:24:08 +0100 (CET) Received: (qmail 11609 invoked by uid 500); 22 Feb 2018 01:24:07 -0000 Mailing-List: contact dev-help@madlib.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@madlib.apache.org Delivered-To: mailing list dev@madlib.apache.org Received: (qmail 11581 invoked by uid 99); 22 Feb 2018 01:24:07 -0000 Received: from git1-us-west.apache.org (HELO git1-us-west.apache.org) (140.211.11.23) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 22 Feb 2018 01:24:07 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id BB8C7E95D9; Thu, 22 Feb 2018 01:24:05 +0000 (UTC) From: njayaram2 To: dev@madlib.apache.org Reply-To: dev@madlib.apache.org Message-ID: Subject: [GitHub] madlib pull request #237: Bugfix: MLP predict using 1.12 model fails on late... Content-Type: text/plain Date: Thu, 22 Feb 2018 01:24:05 +0000 (UTC) GitHub user njayaram2 opened a pull request: https://github.com/apache/madlib/pull/237 Bugfix: MLP predict using 1.12 model fails on later versions JIRA: MADLIB-1207 MADlib 1.12 did not support grouping in MLP. The summary table created used to have the mean and std used for standardizing the independent variable. From MADlib 1.13 onwards, grouping was supported, and the mean and std were moved to the standardization table. This resulted in a failure when MADlib 1.12 MLP models were used to predict using MADlib 1.13. This commit fixes this issue. Closes #237 You can merge this pull request into a Git repository by running: $ git pull https://github.com/njayaram2/madlib bug/mlp-1.12model-grouping Alternatively you can review and apply these changes as the patch at: https://github.com/apache/madlib/pull/237.patch To close this pull request, make a commit to your master/trunk branch with (at least) the following in the commit message: This closes #237 ---- commit 63daad10bf8c610d60be738f79e9bdc22ddc6483 Author: Nandish Jayaram Date: 2018-02-22T01:18:57Z Bugfix: MLP predict using 1.12 model fails on later versions JIRA: MADLIB-1207 MADlib 1.12 did not support grouping in MLP. The summary table created used to have the mean and std used for standardizing the independent variable. From MADlib 1.13 onwards, grouping was supported, and the mean and std were moved to the standardization table. This resulted in a failure when MADlib 1.12 MLP models were used to predict using MADlib 1.13. This commit fixes this issue. Closes #237 ---- ---