diff options
author | Jan Aalmoes <jan.aalmoes@inria.fr> | 2024-11-18 15:54:13 +0100 |
---|---|---|
committer | Jan Aalmoes <jan.aalmoes@inria.fr> | 2024-11-18 15:54:13 +0100 |
commit | ff66e1aaf32dbbd8c638b2f447dd49daaa8189ab (patch) | |
tree | e1a9e65f67bd6f7196e470186d1f6d7c7210442e /tikz/attack/ef.tex | |
parent | 8bbc035c904791895e2f55245348b9f27af8ea9b (diff) |
Nouvelle generation
Diffstat (limited to 'tikz/attack/ef.tex')
-rw-r--r-- | tikz/attack/ef.tex | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/tikz/attack/ef.tex b/tikz/attack/ef.tex new file mode 100644 index 0000000..ed7da7f --- /dev/null +++ b/tikz/attack/ef.tex @@ -0,0 +1,22 @@ +\begin{tikzpicture} + + \def \h{4} + + %Pipeline + \node[rectangle,draw=red] (s) at (2*\h,0) {Sensitive attribute}; + \node[rectangle,draw=blue] (inf) at (0,0) {Classification}; + \node[rectangle,draw=blue] (att) at (\h,0) {Attack}; + \draw[->,color=blue] (inf) to (att); + \draw[->,color=red] (att) to (s); + + %Ensembles + \node (c0) at (0,1) {$E=\{0,\cdots,m-1\}$}; + + \node (a0) at (2*\h,1) {$F=\{0,\cdots,n-1\}$}; + + \draw[->] (c0) to (a0); + + + +\end{tikzpicture} + |