🎉Community Raffle - Win $25

An exclusive raffle opportunity for active members like you! Complete your profile, answer questions and get your first accepted badge to enter the raffle.
Join and Win

Normalization without Group Model

User: "Jerwuney"
New Altair Community Member
Updated by Jocelyn
Hi, 

I used normalization in my regression analysis and realized the following:

1. If I apply Group Models parameter, the result is almost similar to when I build the model without normalization.

2. If I remove the Group Models parameter and use only the Normalization parameter, I get better predictions (more predicted values are closed to the actual values). But squared correlation becomes zero and RMSE increases.

I used Decision Tree Regression.

Please does it mean that Normalization should always be tagged with Group Models?

Was the initial results merely a memorization?

Thank you.
Jerwuney

Find more posts tagged with

Sort by:
1 - 2 of 21
    User: "BalazsBaranyRM"
    New Altair Community Member
    Accepted Answer
    Hi!

    Normalization only helps with algorithms that compare or calculate multiple attributes with different numeric ranges. Example: Age (in years) and income (in dollars) are very different numeric ranges. This would make k-NN or Principal Component Analysis heavily influenced by income and not by the age.

    You don't need normalization with Decision Tree regression. If squared correlation becomes zero, you did something wrong. 

    If you do a normalization on the training side but not on the testing side, you are building models on data with different properties -- this won't improve your models. 

    Group Models is helpful in the situations where you would like to make sure that the normalization or other preprocessing operation is applied in the same way on both the training and the testing data, and then is built into the production model. 

    Regards,
    Balázs
    User: "Jerwuney"
    New Altair Community Member
    OP
    Accepted Answer
    Hi @BalazsBarany

    Thanks. This helps. 

    Regards,
    Jerwuney