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
random forest weight calculation method in rapidminer node
INHYEOK_SONG
Member Posts: 11 Learner I
in Help
I am studying feature importance. A question that arises while studying is that python sklearn random forest calculates feature importance through MDI, and I want to know how the random forest in rapidminer calculates weights.
1. MDI(Mean Decrease in Impurity) Importance
2. Permutation Importance
3. Drop Column Importance
0
Answers
To understand the attribute weights calculated for Random Forest in RapidMiner, please refer to the open sourced GitHub page.
According to the documentation, the output port for feature weight from RF model returns the
Hope it helps!
YY
Thanks for your reply.
https://towardsdatascience.com/the-mathematics-of-decision-trees-random-forest-and-feature-importance-in-scikit-learn-and-spark-f2861df67e3
Could you please tell me if it is like the spark random forest feature importance method in this article?