Issue
To feed my generative neural net, I need to normalize some data between -1 and 1.
I do it with MinMaxScaler
from Sklearn and it works great.
Now, my generator is going to output data between -1 and 1.
How to revert MinMaxScaler
to get real data ?
Solution
You do that with inverse transform.
Answered By - Lukasz Tracewski
0 comments:
Post a Comment
Note: Only a member of this blog may post a comment.