"Brute Force Feature Selection"

pengiepengie MemberPosts:21Maven
edited June 2019 inHelp
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 '?'.

Answers

  • cherokeecherokee MemberPosts:82Guru
    Hi pengie!

    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
  • pengiepengie MemberPosts:21Maven
    Process setup for RapidMiner 4.5






























    Process setup for RapidMiner 5 RC











































    <连接from_op =“性能”from_port = "性能nce" to_op="Log" to_port="through 1"/>














  • haddockhaddock MemberPosts:849Maven
    Hi there,

    Chero's right, you'll need to iterate over the attributes to build a macro, and then log that, like this...





























    <操作符名称= " Macro2Log " class = "Macro2Log">










  • pengiepengie MemberPosts:21Maven
    Dear Haddock,

    Thank you. It worked perfectly.:)
Sign InorRegisterto comment.