Like the figure below, the distribution of the predicted values is different from ground truth - y_test
.
Can I fit the distribution of the predicted values to the distribution of all data?
Here are some pseudo data.
import numpy as np
import seaborn as sns
y_test = np.random.gamma(2, 2, 1000)
y_predict = np.random.normal(2, 2, 1000)
sns.distplot(y_test)
sns.distplot(y_predict)