blob: f42a4d88e86a4a6fbf99cd3dd1c74f9b7b054ad6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
|
\documentclass{report}
\usepackage[french]{babel}
\usepackage{placeins}
%\usepackage[draft]{graphicx}
\usepackage{graphicx}
\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{mathabx}
\lstset{
basicstyle=\small\ttfamily,
columns=flexible,
breaklines=true
}
\usetikzlibrary {shapes.geometric}
\usetikzlibrary {shapes.symbols}
\usetikzlibrary{decorations.pathreplacing}
%\input{aia/00macros}
\input{theorem}
\input{macros}
\input{tikz_assets/data}
\input{tikz_assets/param}
\begin{document}
\begin{titlepage}
\begin{center}
\Huge
\textbf{Intelligence artificielle pour des services moraux}
\vspace{3cm}
\Large
\textbf{Jan Aalmoes}
\large
Sous la supervison de \\
Antoine Boutet et Mathieu Cunche
\vfill
Institut National des Sciences Appliquées\\
Laboratoire CITI\\
Institut National de Recherche en Informatique et en Automatique\\
Equipe PRIVATICS
\end{center}
\end{titlepage}
\tableofcontents
\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}
\end{document}
|