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 confused result (need answer please)
talebmuhsin
Member Posts: 4 Contributor I
in Help
Hello Everyone
I am trying to use Forward selection to select the best attributes from iris dataset and the subset with (a1,a3,a4) was selected. However when I look at the performance of each subset in a log file I can see that even with subset of 4 features (ALL) the performance is 1 as below
Number of features Performance attributes name
4.0 0.86 a3, a4, a1, a2
4.0 0.93 a3, a4, a1, a2
4.0 0.93 a3, a4, a1, a2
4.0 1.0 a3, a4, a1, a2
4.0 1.0 a3, a4, a1, a2
4.0 0.86 a3, a4, a1, a2
4.0 0.93 a3, a4, a1, a2
4.0 1.0 a3, a4, a1, a2
but it is still select the only three feature
Number of features Performance attributes name
3.0 1.0 a3, a4, a1
can any body explain to me why it is selecting only three feature not 4 or not 2 although the performance is 1.
I am having a real-world dataset with 896 attributes and the same thing happening to me only the best 3 are selected
can anybody tell me please if I am doing some wrong steps or it is correct. I am very confused
Best Regards,
Taleb
I am trying to use Forward selection to select the best attributes from iris dataset and the subset with (a1,a3,a4) was selected. However when I look at the performance of each subset in a log file I can see that even with subset of 4 features (ALL) the performance is 1 as below
Number of features Performance attributes name
4.0 0.86 a3, a4, a1, a2
4.0 0.93 a3, a4, a1, a2
4.0 0.93 a3, a4, a1, a2
4.0 1.0 a3, a4, a1, a2
4.0 1.0 a3, a4, a1, a2
4.0 0.86 a3, a4, a1, a2
4.0 0.93 a3, a4, a1, a2
4.0 1.0 a3, a4, a1, a2
but it is still select the only three feature
Number of features Performance attributes name
3.0 1.0 a3, a4, a1
can any body explain to me why it is selecting only three feature not 4 or not 2 although the performance is 1.
I am having a real-world dataset with 896 attributes and the same thing happening to me only the best 3 are selected
can anybody tell me please if I am doing some wrong steps or it is correct. I am very confused
Best Regards,
Taleb
0
Answers
can you please post your process setup such that I can have a look at it? We did not observe such behavior so far, and the Forward Selection should always select the best subset...
Best regards,
Marius
Best regards,
Marius
Thanks for the reply. I want to show you the process to see whether I am doing it right or wrong Actually as I said in my previous post, I have a dataset consists of 2400 samples and 896 features extracted from each. I am working on a white blood cells classification problem and I have extracted various features from each cell (Shape, Texture, Color). so when I am trying to use forward selection to get the best subset out of 896 then it give me only three features, I expected the forward selection will select at least 40-50 features but it is always get me 3.
I have another issue, when I classify the cells using neural network with the default setting except changing the number of hidden layer, then i got an accuracy of 96%. is that normal? I thought that if I classify the cells based on all the feature I will get a low accuracy because of many feature could be irrelevant. Could you please assist me in this matter
Best Regards,
Taleb