diff options
author | Jan Aalmoes <jan.aalmoes@inria.fr> | 2024-09-04 00:12:49 +0200 |
---|---|---|
committer | Jan Aalmoes <jan.aalmoes@inria.fr> | 2024-09-04 00:12:49 +0200 |
commit | 0e95544f85b523a95fb05b36c4e6b8789c73abfa (patch) | |
tree | 4229bad597b487e2395a2fc91e7023c6672bb29d /contexte/figure/tikz | |
parent | dc5a898dc39326fa3f733f3d9e006bbe3d1f8e4c (diff) |
traduction classification fini
Diffstat (limited to 'contexte/figure/tikz')
-rw-r--r-- | contexte/figure/tikz/function.tex | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/contexte/figure/tikz/function.tex b/contexte/figure/tikz/function.tex new file mode 100644 index 0000000..93d2a58 --- /dev/null +++ b/contexte/figure/tikz/function.tex @@ -0,0 +1,14 @@ +\begin{tikzpicture} + \node[rectangle,draw] (ia) at (0,0) {IA}; + \node (ent) at (-2,0) {Entrée}; + \node (sor) at (2,0) {Sorties}; + \node (par) at (0,-1) {Paramètres}; + + \draw[->] (ent) to (ia); + \draw[->] (ia) to (sor); + \draw[->] (par) to (ia); + + \node[align=left] (par) at (4,0) {Prédiction\\Décision\\Contenu}; + \draw [decorate,decoration = {brace}] (3,-0.6) -- (3,0.6); + +\end{tikzpicture} |