blob: 2f40530b9ea9867d2f071004d5f7cf9de9de9c10 (
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
|
\documentclass{article}
\usepackage{graphicx}
\usepackage{amsmath}
\usepackage{amsthm}
\usepackage{amsfonts}
\usepackage{algpseudocode}
\usepackage{algorithm}
\usepackage{placeins}
\usepackage{subcaption}
\usepackage{graphicx}
\usepackage{setspace}
\newtheorem{definition}{Definition}
\newtheorem{theorem}{Theorem}
\newtheorem{lemma}{Lemma}
\newtheorem{corollary}{Corollary}[theorem]
\doublespace
\begin{document}
\begin{abstract}
The abstract
\end{abstract}
\tableofcontents
\newpage
\section{Introduction}
\input{introduction}
\section{Finit classification}
\input{finit_classif}
\section{Applications}
\input{utility}
\subsection{Attribute inference attack}
\subsection{Painting classification}
\subsection{Lora}
\subsection{Tabular data}
\input{tabular}
\subsection{Movie recommender system}
\subsection{labeled faces in the wild}
\section{Computing cost}
\subsection{Cost of training}
\subsection{Cost of inference}
\section{Decentralization}
\subsection{Sharing indexes}
\subsection{Sharing matrix of probability law}
\section{Privacy}
\subsection{Private indexing}
\subsection{Differential privacy}
\section{Fairness}
\subsection{Preprocessing}
\subsection{Inprocessing and postprocessing}
\section{Explainability}
\subsection{Transparancy}
\subsection{Interpretability}
\subsection{Explainability}
\section{Conclusion}
\end{document}
|