" - Understanding the principle and the architecture of a regression with a dense neural network with backup and restore of the trained model. \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",
"age of people who own the house and many other attributes...\n",
"Alongside with price, the dataset also provide these information :\n",
"\n",
" - CRIM: This is the per capita crime rate by town\n",
" - ZN: This is the proportion of residential land zoned for lots larger than 25,000 sq.ft\n",
" - INDUS: This is the proportion of non-retail business acres per town\n",
" - CHAS: This is the Charles River dummy variable (this is equal to 1 if tract bounds river; 0 otherwise)\n",
" - NOX: This is the nitric oxides concentration (parts per 10 million)\n",
" - RM: This is the average number of rooms per dwelling\n",
" - AGE: This is the proportion of owner-occupied units built prior to 1940\n",
" - DIS: This is the weighted distances to five Boston employment centers\n",
" - RAD: This is the index of accessibility to radial highways\n",
" - TAX: This is the full-value property-tax rate per 10,000 dollars\n",
" - PTRATIO: This is the pupil-teacher ratio by town\n",
" - B: This is calculated as 1000(Bk — 0.63)^2, where Bk is the proportion of people of African American descent by town\n",
" - LSTAT: This is the percentage lower status of the population\n",
" - MEDV: This is the median value of owner-occupied homes in 1000 dollars\n",
# <!-- TITLE --> [BHP2] - Regression with a Dense Network (DNN) - Advanced code
<!-- DESC --> More advanced example of DNN network code - BHPD dataset
<!-- AUTHOR : Jean-Luc Parouty (CNRS/SIMaP) -->
## Objectives :
- Predicts **housing prices** from a set of house features.
- Understanding the principle and the architecture of a regression with a dense neural network with backup and restore of the trained model.
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...
Alongside with price, the dataset also provide these information :
- CRIM: This is the per capita crime rate by town
- ZN: This is the proportion of residential land zoned for lots larger than 25,000 sq.ft
- INDUS: This is the proportion of non-retail business acres per town
- CHAS: This is the Charles River dummy variable (this is equal to 1 if tract bounds river; 0 otherwise)
- NOX: This is the nitric oxides concentration (parts per 10 million)
- RM: This is the average number of rooms per dwelling
- AGE: This is the proportion of owner-occupied units built prior to 1940
- DIS: This is the weighted distances to five Boston employment centers
- RAD: This is the index of accessibility to radial highways
- TAX: This is the full-value property-tax rate per 10,000 dollars
- PTRATIO: This is the pupil-teacher ratio by town
- B: This is calculated as 1000(Bk — 0.63)^2, where Bk is the proportion of people of African American descent by town
- LSTAT: This is the percentage lower status of the population
- MEDV: This is the median value of owner-occupied homes in 1000 dollars
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)