Scales in operator ParameterOptimization

Clan21Clan21 MemberPosts:9Contributor II
edited November 2018 inHelp
Hello,
inParameterOptimizationoperator is buttonEdit Parameter Settingwhich 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, MemberPosts:2,531Unicorn
    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 MemberPosts:9Contributor II
    谢谢。可以帮助很多。
Sign InorRegisterto comment.