summaryrefslogtreecommitdiff
path: root/contexte/figure/tikz/train.tex
diff options
context:
space:
mode:
Diffstat (limited to 'contexte/figure/tikz/train.tex')
-rw-r--r--contexte/figure/tikz/train.tex9
1 files changed, 9 insertions, 0 deletions
diff --git a/contexte/figure/tikz/train.tex b/contexte/figure/tikz/train.tex
new file mode 100644
index 0000000..e0d0b1e
--- /dev/null
+++ b/contexte/figure/tikz/train.tex
@@ -0,0 +1,9 @@
+\begin{tikzpicture}
+\node[database,label=Données] (d) at (0,0) {};
+\node[cloud,draw,label=Paramètres,aspect=10] (p) at (5,0) {};
+\node[] (a) at (2.5,-2) {Attaqueur};
+
+\draw[->] (d) to node[midway,above] {Entrainement} (p);
+ \draw[->] (p) to node[midway,right,align=center] {Modèle publié} (a);
+\draw[->] (a) to node[midway,left,align=center] {Informations sensibles} (d);
+\end{tikzpicture}