summaryrefslogtreecommitdiff
path: root/contexte/figure/tikz/train.tex
blob: e0d0b1e28bd8b8ba07fc3214eaa4ce8ec6f50442 (plain)
1
2
3
4
5
6
7
8
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}