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.

Problem getPredictedLabel() method

navnav Member Posts: 28 Contributor II
edited November 2018 in Help
Hi, i tried to compare the label and the prediction value of the r
Output exampleSet of a rapidminer process in java with the methods getlabel and getPredictedLabel but the latter return to me double value like 0.353 or 0.127 but the label is a polynamial type with value 0 and 1. In the gui i don't have this problem, why?
Tagged:

Answers

  • SkirzynskiSkirzynski Member Posts: 164 Maven
    Hey,

    internally polynominal values are mapped to doubles. To return the value as a String use ...

    example.getValueAsString(example.getAttributes().getLabel());
    example.getValueAsString(example.getAttributes().getPredictedLabel());
    Best regards
      Marcin
  • navnav Member Posts: 28 Contributor II
    Thank you very much... Actually I knew that polynominal value were wapped in double but I didn't understand why with only two possible value the method returned many different double values
Sign In or Register to comment.