From de9637ff035fdbed9059bd51d329addf858a3d92 Mon Sep 17 00:00:00 2001 From: lee Date: Fri, 23 Apr 2021 17:37:49 +0100 Subject: [PATCH] week3 - day2: testing and feedback --- .../piscine/Week3/w3day02.md | 244 +++++++++--------- 1 file changed, 124 insertions(+), 120 deletions(-) diff --git a/one_md_per_day_format/piscine/Week3/w3day02.md b/one_md_per_day_format/piscine/Week3/w3day02.md index e4145a3..a9b11b5 100644 --- a/one_md_per_day_format/piscine/Week3/w3day02.md +++ b/one_md_per_day_format/piscine/Week3/w3day02.md @@ -1,184 +1,188 @@ -# D02 Piscine AI - Data Science - - -# Table of Contents: +# D02 Piscine AI - Data Science +# Table of Contents # Introduction + Keras backend TF -The goal of this day is to learn to use Keras to build Neural Networks. +The goal of this day is to learn to use Keras to build Neural Networks. There are two ways to build Keras models: sequential and functional. -The sequential API allows you to create models layer-by-layer for most problems. It is limited in that it does not allow you to create models that share layers or have multiple inputs or outputs. The exercises focuses on the usage of the sequential API. +The sequential API allows you to create models layer-by-layer for most problems. It is limited in that it does not allow you to create models that share layers or have multiple inputs or outputs. The exercises focuses on the usage of the sequential API. '2.4.3' ## Historical - - ## Rules -The correction will provide the code and output because it is not straightforward to reproduce results using Keras. There are many source of randomness. Even if all the seeds are fixed to a constant they may be other source of randomness. https://machinelearningmastery.com/reproducible-results-neural-networks-keras/ +The correction will provide the code and output because it is not straightforward to reproduce results using Keras. There are many source of randomness. Even if all the seeds are fixed to a constant they may be other source of randomness. + +- https://machinelearningmastery.com/reproducible-results-neural-networks-keras/ A developper -## Ressources -https://machinelearningmastery.com/tutorial-first-neural-network-python-keras/ + +## Resources + +- https://machinelearningmastery.com/tutorial-first-neural-network-python-keras/ # Exercise 1 Sequential -The goal of this exercise is to learn to call the object `Sequential`. +The goal of this exercise is to learn to call the object `Sequential`. 1. Put the object Sequential in a variable named `model` and print the variable `model`. -## Correction +## Correction 1. This question is validated if the output is: `