diff --git a/BHPD/01-DNN-Regression.ipynb b/BHPD/01-DNN-Regression.ipynb
index 4efb92a81d69067f1c014adef22e024bc0f138a5..a713f2a7cf7553a96c709f27199b8000d9d9e23c 100644
--- a/BHPD/01-DNN-Regression.ipynb
+++ b/BHPD/01-DNN-Regression.ipynb
@@ -17,9 +17,22 @@
     "\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 theses informations : \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",
     "## What we're going to do :\n",
     "\n",
     " - Retrieve data\n",