Due to recent updates, all users are required to create an Altair One account to login to the RapidMiner community. Click the Register button to create your account using the same email that you have previously used to login to the RapidMiner community. This will ensure that any previously created content will be synced to your Altair One account. Once you login, you will be asked to provide a username that identifies you to other Community users. Email us at Community with questions.

Scales in operator ParameterOptimization

Clan21Clan21 Member Posts: 9 Contributor II
edited November 2018 in Help
Hello,
in ParameterOptimization operator is button Edit Parameter Setting which display window where is possible to change values of parameters or its type. I have question about values writed like intervals. I cant figure out how with logarithmic scale RM calculate values in particular step. Thanks for help.
Cheers Andrew
Tagged:

Answers

  • landland RapidMiner Certified Analyst, RapidMiner Certified Expert, Member Posts: 2,531 Unicorn
    Hi,
    here's the code generating the sequence:
    double[] values = new double[steps + 1];
    double offset = 1 - min;
    for (int i = 0; i < steps + 1; i++) {
    values = Math.pow(max + offset, (double) i / (double) steps) - offset;
    }
    return values;
    Greetings,
      Sebastian
  • Clan21Clan21 Member Posts: 9 Contributor II
    Thanks. Helps a lot.
Sign In or Register to comment.