From ff66e1aaf32dbbd8c638b2f447dd49daaa8189ab Mon Sep 17 00:00:00 2001 From: Jan Aalmoes Date: Mon, 18 Nov 2024 15:54:13 +0100 Subject: Nouvelle generation --- tikz/attack/bin.tex | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 tikz/attack/bin.tex (limited to 'tikz/attack/bin.tex') diff --git a/tikz/attack/bin.tex b/tikz/attack/bin.tex new file mode 100644 index 0000000..714ff6b --- /dev/null +++ b/tikz/attack/bin.tex @@ -0,0 +1,18 @@ +\begin{tikzpicture} + + \def \h{4} + + %Donnée utilisateur + \node[rectangle,draw=red] (s) at (2*\h,0) {Sensitive attribute}; + + %Pipeline + \node[rectangle,draw=blue] (inf) at (0,0) {Classification}; + + %Attaque + \node[rectangle,draw=blue] (att) at (\h,0) {Attack}; + + \draw[->,color=blue] (inf) to (att); + \draw[->,color=red] (att) to (s); + +\end{tikzpicture} + -- cgit v1.2.3