I am trying to setup a non-linear regression problem in Keras. I have two sets of data say X1 and X2 whose Y values have a similar mean and standard deviation.
The following procedure was under taken:
It is not clear to me why there is such a big difference in the Test score between X1 and X2. Is there any way i can improve the result?
For giggles, I repeated the same procedure as above but included the whole of X1 and X2 dataset instead of taking 30%.
Again X2 seems to perform poorly compared with X1.
The problem was with scaling data appropriately. After data was rescaled to good format - model started to work.