How to convert normalized output into standard values

I have applied min max normalization before apply neural network prediction in R . After getting normalized output, How to convert normalized output into standard values

Hi,

Definitely easier to help if you have a reprex for us (FAQ: How to do a minimal reproducible example ( reprex ) for beginners ).

In general, you will just save that min and max value and before training and reverse the transformation on the output values in the specified way to get back to your range. See discussion here: python - How to recover original values after a model predict in keras? - Stack Overflow

Thanks a lot , it helped.

1 Like

Great :slight_smile: If it solved your problem sufficiently feel free to mark it as the solution.

This topic was automatically closed 21 days after the last reply. New replies are no longer allowed.

If you have a query related to it or one of the replies, start a new topic and refer back with a link.