From dcb0f079df9721446c11d46365069d2889e09627 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Cl=C3=A9ment=20Piovesan?= Date: Wed, 28 Nov 2018 14:25:06 +0100 Subject: [PATCH 1/3] Update answers.md with name and group number MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Clément Piovesan --- answers.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/answers.md b/answers.md index bb3b84e..e53b129 100644 --- a/answers.md +++ b/answers.md @@ -1,10 +1,10 @@ # Answers -Nom: -Prénom: -NB: +Nom: PIOVESAN +Prénom: Clément +NB: 2 -## 1.3 +## 1.3 Définir les objets suivants: graph: tensor: From 73f2b9cb0a3ab3e4c8decfcc0ae74eaacff8e9d4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Cl=C3=A9ment=20Piovesan?= Date: Wed, 12 Dec 2018 08:31:45 +0100 Subject: [PATCH 2/3] Update TP up to the end of part 2 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Clément Piovesan --- answers.md | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/answers.md b/answers.md index e53b129..db57e92 100644 --- a/answers.md +++ b/answers.md @@ -6,9 +6,12 @@ NB: 2 ## 1.3 Définir les objets suivants: -graph: -tensor: -layer: +graph: Un graph contient un ensemble d'objects d'opération, qui conrespondent à des unités de computation. C'est un "dataflow" qui représente les opérations effectuées par TensorFlow. +tensor: C'est une généralisation de matrices ayant une dimension supérieure à 3. Ce sont des tableaux à n dimensions. +layer: C'est une classe qui implémente des opérations communes de réseaux de neuronnes. ## 3 answer: + + +docker run -it -p 8500:8500 -e MODEL_NAME=mnist -t cpiovesan/tp3 From de7d146380a4d260710a35e9eca874d60a5bb165 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Cl=C3=A9ment=20Piovesan?= Date: Wed, 12 Dec 2018 09:23:00 +0100 Subject: [PATCH 3/3] Update with part 3 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Clément Piovesan --- answers.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/answers.md b/answers.md index db57e92..cf11f15 100644 --- a/answers.md +++ b/answers.md @@ -12,6 +12,6 @@ layer: C'est une classe qui implémente des opérations communes de réseaux de ## 3 answer: - +Un modèle ne doit pas être entrainé qu'une seule fois, mais de manière régulière afin de le maintenir à jour voir en permanence. Nous pouvons utiliser Docker pour cela ou Torus. docker run -it -p 8500:8500 -e MODEL_NAME=mnist -t cpiovesan/tp3