diff options
author | Jan Aalmoes <jan.aalmoes@inria.fr> | 2024-09-11 00:10:50 +0200 |
---|---|---|
committer | Jan Aalmoes <jan.aalmoes@inria.fr> | 2024-09-11 00:10:50 +0200 |
commit | bf5b05a84e877391fddd1b0a0b752f71ec05e901 (patch) | |
tree | 149609eeff1d475cd60f398f0e4bfd786c5d281c /template_these_INSA_cotut.tex | |
parent | 03556b31409ac5e8b81283d3a6481691c11846d7 (diff) |
Preuve existe f pas cca equivalant exists f BA pas randomguess
Diffstat (limited to 'template_these_INSA_cotut.tex')
-rw-r--r-- | template_these_INSA_cotut.tex | 138 |
1 files changed, 138 insertions, 0 deletions
diff --git a/template_these_INSA_cotut.tex b/template_these_INSA_cotut.tex new file mode 100644 index 0000000..dc1d568 --- /dev/null +++ b/template_these_INSA_cotut.tex @@ -0,0 +1,138 @@ +\documentclass[a4paper,titlepage,12pt,french,twoside,openright]{report}
+
+\usepackage{graphicx}
+\usepackage{xcolor}
+\usepackage[paper=a4paper,margin=2.5cm]{geometry}% http://ctan.org/pkg/geometry
+\usepackage[pdftex,colorlinks=false]{hyperref}
+\usepackage[french]{babel}
+\usepackage[T1]{fontenc}
+\usepackage[scaled]{helvet}
+\renewcommand*{\familydefault}{\sfdefault}
+\usepackage{colortbl}
+\usepackage{ulem}
+\usepackage{lipsum}
+\usepackage{upgreek}
+\usepackage{amsmath}
+\usepackage{amsthm}
+\usepackage{amsfonts}
+\usepackage{csquotes}
+\usepackage{algpseudocode}
+\usepackage{algorithm}
+\usepackage{subcaption}
+\usepackage{setspace}
+\usepackage{tikz}
+\usepackage{cite}
+\usepackage{hyperref}
+\usepackage{listings}
+\usepackage{multirow}
+\usepackage{placeins}
+\usepackage{mathabx}
+\lstset{
+basicstyle=\small\ttfamily,
+columns=flexible,
+breaklines=true
+}
+
+\usetikzlibrary {shapes.geometric}
+\usetikzlibrary {shapes.symbols}
+\usetikzlibrary{decorations.pathreplacing}
+
+
+\definecolor{tabED}{rgb}{0.90, 0.87, 0.93}
+\definecolor{txtED}{rgb}{0.60, 0.28, 0.02}
+\definecolor{siteED}{rgb}{0.04, 0.27, 0.47}
+
+\usetikzlibrary {shapes.geometric}
+\usetikzlibrary {shapes.symbols}
+\usetikzlibrary{decorations.pathreplacing}
+
+\input{macros}
+\input{theorem}
+
+\input{tikz_assets/data}
+\input{tikz_assets/param}
+
+
+\begin{document}
+
+\hypersetup{
+pdftitle={Titre de la thèse}, %informations dans le titre
+pdfauthor={Auteur}, %dans les informations du document
+pdfsubject={Th\`ese} %sous Acrobat.
+}
+
+\include{garde}
+
+\newgeometry{top=2.5cm,bottom=2.5cm,right=2.5cm,left=2.5cm}
+
+
+\include{ED}
+
+\normalsize
+\normalfont
+\rmfamily
+
+\tableofcontents
+\newpage
+
+\chapter*{Remerciements}
+\input{remerciements}
+\chapter*{Avertissement}
+\input{avertissement}
+\chapter{Introduction}
+ \section{Qu'est-ce que l'Intelligence Artificielle ?}
+ \label{sec:contexte-ckoi}
+ \input{contexte/ckoi}
+ \section{Philosophie de l'IA}
+ \label{sec:contexte-phi}
+ \input{contexte/philo}
+ \section{Les stratégies IA}
+ \input{contexte/strat}
+ \section{Enjeux}
+ \label{sec:contexte-enjeu}
+ \input{contexte/enjeux}
+ \section{Bases legales}
+ \input{contexte/legal}
+ \label{sec:contexte-legal}
+
+\chapter{Background}
+ \input{background/main}
+
+\chapter{Classification finie}
+ \label{sec:fini}
+ \input{classification_finie/main}
+
+\chapter{Attaque d'inférence d'attribut sensible}
+\label{sec:aia}.
+\input{aia/main}
+
+ \section{Regression}
+ \subsection{Equitée et regression}
+ \subsubsection{Une bien-heureuse conséquence de l'\textit{adversarial debiasing}}
+
+
+\chapter{Données synthétiques}
+\label{sec:synth}
+\input{synthetic/main}
+
+\chapter{Conclusion}
+\input{conclusion}
+
+\bibliographystyle{plain}
+\bibliography{biblio}
+
+\appendix
+\chapter{Mot clé pour la recherche projets IA}
+\input{annexe/ai_words}
+
+\newpage
+\chapter*{Liste des figures}
+
+\newpage
+\chapter*{Liste des tableaux}
+
+\newpage
+\sffamily
+\include{folio}
+
+\end{document}
|