summaryrefslogtreecommitdiff
path: root/tikz/data.tex
diff options
context:
space:
mode:
Diffstat (limited to 'tikz/data.tex')
-rw-r--r--tikz/data.tex17
1 files changed, 17 insertions, 0 deletions
diff --git a/tikz/data.tex b/tikz/data.tex
new file mode 100644
index 0000000..62a09d0
--- /dev/null
+++ b/tikz/data.tex
@@ -0,0 +1,17 @@
+\input{tikz/asset/data}
+\begin{tikzpicture}
+ \node[database,label={[align=center]above:Donnée\\cible}] (base) at (0,0) {};
+ \node[rectangle,draw,align=center] (cible) at (10,0) {Modèle\\cible};
+ \draw[->,align=center] (base) to[bend left] node[midway,above] {80\% entraînement\\sans attribut sensible} (cible);
+ \draw[->,blue] (base) to[bend right] node[midway,below] (test) {20\% évaluation} (cible);
+ \pause
+ \node[database,label={[align=left]right:Donnée\\auxiliaire}] (aux) at (10,-4.5) {};
+ \draw[->] (test) to[out=-90,in=90] node[midway,above] {\hspace{50px}Attribut sensible} (aux);
+ \draw[->,blue] (cible) to node[midway,right] {Prédiction} (aux);
+ \pause
+ \node[rectangle,draw,align=center] (attaque) at (3,-4.5) {Modèle\\AIA};
+ \draw[->] (aux) to node[midway,below] {80\% entraînement} (attaque);
+ \draw[->] (aux) to node[midway,above] {20\% évaluation} (attaque);
+ \node[rectangle,align=center] (result) at (0,-4.5) {Exactitude\\équilibrée};
+ \draw[->] (attaque) to (result);
+\end{tikzpicture}