"<!-- INDEX : Simple regression with a Dense Neural Network (DNN) - BHPD dataset -->\n",
"\n",
"A very simple and classic example of **regression** :\n",
"\n",
"## Objectives :\n",
"Predicts **housing prices** from a set of house features. \n",
" - Predicts **housing prices** from a set of house features. \n",
" - Understanding the principle and the architecture of a regression with a dense neural network \n",
"\n",
"\n",
"The **[Boston Housing Dataset](https://www.cs.toronto.edu/~delve/data/boston/bostonDetail.html)** consists of price of houses in various places in Boston. \n",
"Alongside with price, the dataset also provide information such as Crime, areas of non-retail business in the town, \n",
...
...
%% Cell type:markdown id: tags:

# Deep Neural Network (DNN) - BHPD dataset
<!-- INDEX : Simple regression with a Dense Neural Network (DNN) - BHPD dataset -->
A very simple and classic example of **regression** :
## Objectives :
Predicts **housing prices** from a set of house features.
- Predicts **housing prices** from a set of house features.
- Understanding the principle and the architecture of a regression with a dense neural network
The **[Boston Housing Dataset](https://www.cs.toronto.edu/~delve/data/boston/bostonDetail.html)** consists of price of houses in various places in Boston.
Alongside with price, the dataset also provide information such as Crime, areas of non-retail business in the town,
age of people who own the house and many other attributes...
Boston housing is a famous historic dataset, so we can get it directly from [Keras datasets](https://www.tensorflow.org/api_docs/python/tf/keras/datasets)