The Boston Housing Problem is a well-known regression task to predict the median value of owner-occupied homes in Boston suburbs based on features like crime rate, number of rooms, property tax, and accessibility to employment centers. This task introduces learners to supervised regression modeling and evaluation metrics such as RMSE, MAE, and R².
Below is the dataset used for the Boston Housing task. The table displays features like crime rate, number of rooms, and accessibility indexes, along with the median home value (in $1000s), the last columns, as the target variable.
CRIM | ZN | INDUS | CHAS | NOX | RM | AGE | DIS | RAD | TAX | PTRATIO | B | LSTAT | MEDV |
---|
Use the visualizations below to explore the dataset. Select a feature from the dropdown menu to see its distribution and trends.
Configure the architecture of the neural network model for training. The number of units in a layer represents the number of neurons in that layer, which determines its capacity to learn patterns from data. Activation functions define how each neuron processes the input it receives.
In this section, configure the parameters to train the neural network. The train/test split ratio determines how much of the data is used for training versus testing the model. The learning rate controls how much the model adjusts during training. The number of epochs defines how many complete passes the model makes over the training dataset. Additionally, the optimizer defines the algorithm used to minimize the loss function.
Evaluate the trained model using regression metrics such as RMSE, MAE, and R². These metrics provide a comprehensive understanding of the model's performance in predicting home values.
RMSE: N/A
MAE: N/A
R²: N/A
Use this section to predict the median home value based on selected input features. Some fields are predefined, while others can be manually entered for customization. The prediction will be displayed based on the trained model.