Load the sample data.
X is a 13-by-252 matrix defining thirteen attributes of 252 different neighborhoods. For more information on the data, type help house_dataset
in the command line.
Train an autoencoder on the attribute data.
Create a network object from the autoencoder, autoenc
.
Predict the attributes using the network, net
.
Fit a linear regression model between the actual and estimated attributes data. Compute the estimated Pearson correlation coefficient, the slope and the intercept (bias) of the regression model, using all attribute data as one data set.
The correlation coefficient is almost 1, which indicates that the attributes data and the estimations from the neural network are highly close to each other.
Plot the actual data and the fitted line.
The data appears to be on the fitted line, which visually supports the conclusion that the predictions are very close to the actual data.