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
"Brute Force Feature Selection"
I am using the Brute Force Feature Selection operator to go through all different combinations of my attributes (total: 10). Is there a way to create a file containing the attributes that are used and the corresponding performance in each row so that I can see exactly which combination of attributes gives what performance? E.g.
Features Performance
A,B,C 0.8
B,D,G 0.6
C,D,E,F,G 0.7
B,E,H 0.9
...
I have tried using ProcessLog operator but the feature_name value in the Brute Force Feature Selection operator don't seem to work. It just output the value '?'.
Features Performance
A,B,C 0.8
B,D,G 0.6
C,D,E,F,G 0.7
B,E,H 0.9
...
I have tried using ProcessLog operator but the feature_name value in the Brute Force Feature Selection operator don't seem to work. It just output the value '?'.
Tagged:
0
Answers
I think it should work with the log operator. Can you please post your process setup. This way we can exactly see what you are doing and helpmore appropriate.
Best regards,
chero
Chero's right, you'll need to iterate over the attributes to build a macro, and then log that, like this...
Thank you. It worked perfectly.