Hello,
I am new to this forum.
I am running an issue in the multi regression multi ouput DNN problem. To be precise 12 independent features and 9 dependent features (targets) total of 33, 600 dataset, in short total dataset = (33600, 12) (33600, 9).
Since the output features have the wide range for my application problem
[-13818.05 , -4.845e-11], they are normalized before training.
With the architecture, the model seems to be performing well for the normalized data resulting in maximum percentage error of around 1.2%, but once they are denormalized with the referenced min max values, the percentage error is enormous. I am attaching the ranges of ground truth, prediction, percentage error for both normalized and denormalized data for reference.
Range of normalized Ground truth
[ 0.4929172429487244 , 0.9999999999999984 ]
Range of normalized predictions
[ 0.49188894 , 1.009478 ]
Range of denormalized percentage error
[ 1.2469393977925297e-06 , 1.2643524127114114 ]
Range of denormalized Ground truth
[ -13818.049816278619 , -4.840588041497504e-11 ]
Range of denormalized predictions
[ -13846.071 , 258.2756 ]
Range of denormalized percentage error
[ 0.0001384670821255034 , 14931722713440.225 ]
P.S : I have tried even the Standardization also for scaling but the results were worse than the Min-max Normalization.
Further, feel free to ask if any details you would like to know.
I would really appreciate the suggestions.
Regards,
Naresh