The Altair Community is migrating to a new platform to provide a better experience for you. In preparation for the migration, the Altair Community is on read-only mode from October 28 - November 6, 2024. Technical support via cases will continue to work as is. For any urgent requests from Students/Faculty members, please submit the form linked here
forward selection and backward elimination
I ran a multiple regression model on a dataset having 15 variables first using the "forward selection" nested operator, and then using the "backward elimination" nested operator. I got dramatically different models. the first had 3 independent variables, the second had 8 IVs. why such a bid difference. I realize the serial elimination or addition of IVs may yield local optima, but is it common to get such wildly different "optimal" models for the same dataset? How can training yield such dramatically different trained models?
thanks in advance,
AD
thanks in advance,
AD
0
Best Answers
-
varunm1 Member Posts: 1,207 UnicornHello @AD2019
Yes, you can get highly varying results for both types of selections. The reason is the parameter settings in these operators. If you used a forward selection, and the operator is adding each variable one by one based on the improvement and then it finds there is no improvement (Stuck in local optima) then it stops. The number of speculative rounds (helps avoid local optima) helps you bypass stopping based on one decision round. Stopping behavior and a maximal number of selections and eliminations also decides the number of attributes available after selection.
Below is my dataset that has 408 attributes where forward selection selected 8 attributes and backward elimination selected 401 attributes with default settings.
Hope this helps. Please inform if you need more information.
Regards,
Varun
https://www.varunmandalapu.com/Be Safe. Follow precautions and Maintain Social Distancing
6 -
varunm1 Member Posts: 1,207 UnicornThe backward elimination algorithm does not have this option and my suspicion is that it is getting stuck in a local optimum@AD2019
Can you check again? Backward elimination also has this option.
Regards,
Varun
https://www.varunmandalapu.com/Be Safe. Follow precautions and Maintain Social Distancing
6
Answers