Predicting House Prices with basic Informtion and Images of the House
One way to implement regression in neural networks is to use only one neuron in the last layer so that the output of that neuron gets closer to the target value in each iteration. With this given dataset, a simple way to predict house prices is only based on the structured data, which is relatively straightforward. Another way to do so is to create a ConvNet model with mentioned MLP and concatenating output of these two layers. As conducted experiments suggest, the simple mlp regression model performs better than the combined model.