From 8bbc035c904791895e2f55245348b9f27af8ea9b Mon Sep 17 00:00:00 2001 From: Jan Aalmoes Date: Thu, 7 Nov 2024 11:36:14 +0100 Subject: initial commit --- tikz/nobin_ens.tex | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 tikz/nobin_ens.tex (limited to 'tikz/nobin_ens.tex') diff --git a/tikz/nobin_ens.tex b/tikz/nobin_ens.tex new file mode 100644 index 0000000..4bb041f --- /dev/null +++ b/tikz/nobin_ens.tex @@ -0,0 +1,31 @@ +\begin{tikzpicture} + + \def \h{4} + + %Pipeline + \node[rectangle,draw=red] (s) at (2*\h,0) {Attribut sensible}; + \node[rectangle,draw=blue] (inf) at (0,0) {Classification}; + \node[rectangle,draw=blue] (att) at (\h,0) {Attaque}; + \draw[->,color=blue] (inf) to (att); + \draw[->,color=red] (att) to (s); + + %Ensembles + \node (c0) at (0,1) {$0$}; + \node (c1) at (0,2) {$1$}; + \node (c2) at (0,3) {$2$}; + \node (c3) at (0,4) {$\vdots$}; + + \node (a0) at (2*\h,1) {$853$}; + \node (a1) at (2*\h,2) {$22$}; + \node (a2) at (2*\h,3) {$312$}; + \node (a3) at (2*\h,4) {$\vdots$}; + + \draw[->] (c0) to (a0); + \draw[->] (c1) to (a1); + \draw[->] (c2) to (a2); + \draw[->] (c3) to (a3); + + + +\end{tikzpicture} + -- cgit v1.2.3