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
Using model simulator to score a model
Chemical_eng
Member Posts: 16 Contributor II
in Help
Hello,
I am using model simulator to score a model . Sometimes when I want to do this one of the input parameters is marked in red, I guess because it is outside the training range ? Can you tell me why ? What is the interpretation or consequences of doing this ?
I am using model simulator to score a model . Sometimes when I want to do this one of the input parameters is marked in red, I guess because it is outside the training range ? Can you tell me why ? What is the interpretation or consequences of doing this ?
0
Best Answer
-
BalazsBarany Administrator, Moderator, Employee-RapidMiner, RapidMiner Certified Analyst, RapidMiner Certified Expert Posts: 955 UnicornHi!
Exactly, you get the red text when entering a value outside of the training range.
Different machine learning methods cope more or less well with exceeding the training range. For example, tree and nearest neighbor methods are often not very good at extrapolation.
Linear regression is often OK. Non-linear ones, neural networks etc. can have expontential effects that are again unsafe when extrapolating.
You can test this. Instead of randomly selecting a test set, you can filter for high values and use that as the test set. Then you can validate the extrapolation capabilities by testing your model on these examples. (This is not a generally reasonable way for validation. But it can help you with testing this particular property of the models.)
Regards,
Balázs0