diff options
author | Jan Aalmoes <jan.aalmoes@inria.fr> | 2024-08-05 10:55:57 +0200 |
---|---|---|
committer | Jan Aalmoes <jan.aalmoes@inria.fr> | 2024-08-05 10:55:57 +0200 |
commit | d5aa0421817ada4195e1fc27f238f6e5b9d73189 (patch) | |
tree | 7d588a2dd64b0bb7a46444aa4a425aeb104ac00e /contexte/figure/tikz/train.tex | |
parent | a39f613c516ac92a04ece1b2a87101d02cd4da23 (diff) |
add contexte files
Diffstat (limited to 'contexte/figure/tikz/train.tex')
-rw-r--r-- | contexte/figure/tikz/train.tex | 9 |
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} |