summaryrefslogtreecommitdiff
path: root/tikz/attack/bin.tex
blob: 714ff6bd31eaa0641c00264579db9f4b78a83de3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
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}