I normalized my Data with the built in L2Normalization from MXNet ndarray. Since I want to know the actual value of the prediction I have to denormalize the data to analyze it properly. For normalization I used:
mx.nd.L2Normalization(x, mode='instance')
It computed me the correct values and I also understand how the calculation works. Now I want to reverse it. Is there a built in method?
My idea would be to swap x and y in the function and to solve for x. However I don't know the sum of the instance nor anything else. So I can't simply do it. Is there a function to denormalize? Or do I have to normalize all by myself? That would sadly make the L2Normalization function useless in many cases.