Are you sure you want to delete this access key?
Permutation feature importance, is a method used to evaluate the importance of each feature in a machine learning model. This process is repeated for each feature, and the importance of each feature is determined by how much the model's performance decreased when that feature was shuffled
or deleted
.
Check out the experiment tab through DagsHub Repository or from the MLflow UI
Feature deletion is not typically used in MLPs for feature importance calculation. Feature deletion involves removing a particular feature from the input data and observing the effect on the model's performance. However, this approach is not commonly used in MLPs because it can significantly alter the model architecture and performance, making it difficult to interpret the importance of a single feature. Additionally, in MLPs, each hidden unit in a layer is typically connected to all input features, so deleting a single feature may affect the model in complex ways, making it difficult to isolate the importance of that feature.
drop feature | Val Loss |
---|---|
Full Model | 4.044 |
Feature 01 | 4.078 |
Feature 02 | 4.082 |
Feature 03 | 4.114 |
Feature 04 | 8.039 |
Feature 05 | 4.075 |
Feature 06 | 4.034 |
Feature 07 | 4.075 |
Feature 08 | 4.402 |
![]() |
In multi-layer perceptron (MLP) models, feature shuffling is typically used for calculating feature importance using permutation feature importance. Feature shuffling involves randomly permuting the values of a particular feature in the input data while keeping all other features fixed, and then observing the effect on the model's performance.
Shuffle feature | Val Loss |
---|---|
Full Model | 4.044 |
Feature 01 | 4.074 |
Feature 02 | 4.127 |
Feature 03 | 4.182 |
Feature 04 | 8.474 |
Feature 05 | 8.470 |
Feature 06 | 8.484 |
Feature 07 | 8.669 |
Feature 08 | 11.696 |
![]() |
Press p or to see the previous file or, n or to see the next file
Are you sure you want to delete this access key?
Are you sure you want to delete this access key?
Are you sure you want to delete this access key?
Are you sure you want to delete this access key?