summaryrefslogtreecommitdiff
path: root/tikz/data.tex
diff options
context:
space:
mode:
authorJan Aalmoes <jan.aalmoes@inria.fr>2024-11-18 15:54:13 +0100
committerJan Aalmoes <jan.aalmoes@inria.fr>2024-11-18 15:54:13 +0100
commitff66e1aaf32dbbd8c638b2f447dd49daaa8189ab (patch)
treee1a9e65f67bd6f7196e470186d1f6d7c7210442e /tikz/data.tex
parent8bbc035c904791895e2f55245348b9f27af8ea9b (diff)
Nouvelle generation
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}