-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.tex
223 lines (172 loc) · 7.25 KB
/
main.tex
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
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
\documentclass[a4paper,11pt]{book}
%% Language and font encodings
\usepackage[english]{babel}
\usepackage[utf8x]{inputenc}
\usepackage[T1]{fontenc}
%% Euro symbol
\usepackage{textcomp}
%% tabel rows
%% color rows table
\usepackage{xcolor}
\usepackage{color}
\usepackage{colortbl}
\usepackage[labelformat=empty, position=top]{subcaption}
\usepackage[export]{adjustbox}
\definecolor{grayrow}{rgb}{0.85, 0.85, 0.85}
\definecolor{lightgray}{rgb}{0.83, 0.83, 0.83}
\definecolor{darkgrayrow}{rgb}{0.7, 0.7, 0.7}
\definecolor{RoyalRed}{rgb}{0.61,0.11,0.19}
\usepackage{emptypage} % remove header in blanck pages
%% Sets page size and margins
\usepackage[a4paper,top=3cm,bottom=2cm,left=3cm,right=3cm,marginparwidth=1.75cm]{geometry}
%% Useful packages
\usepackage{amsmath}
\usepackage{graphicx}
\usepackage{epigraph}
%\usepackage[colorinlistoftodos]{todonotes}
\usepackage[colorlinks=true, allcolors=blue]{hyperref}
% include file and not recompile it
\usepackage{standalone}
\usepackage{dsfont}
%% images directory
\graphicspath{{img/}}
%% colors
\hypersetup{
colorlinks,
citecolor=black,
filecolor=black,
linkcolor=black,
urlcolor=blue
}
\usepackage{numprint}
\npthousandsep{\,}
\usepackage{listings}
\definecolor{codegreen}{rgb}{0,0.6,0}
\definecolor{codegray}{rgb}{0.5,0.5,0.5}
\definecolor{codepurple}{rgb}{0.58,0,0.82}
\definecolor{backcolour}{rgb}{0.95,0.95,0.92}
\lstdefinestyle{snippet}{
backgroundcolor=\color{backcolour},
commentstyle=\color{codegreen},
keywordstyle=\color{magenta},
numberstyle=\tiny\color{codegray},
stringstyle=\color{codepurple},
basicstyle=\ttfamily\footnotesize,
breakatwhitespace=false,
breaklines=true,
captionpos=t,
keepspaces=true,
numbers=left,
numbersep=5pt,
showspaces=false,
showstringspaces=false,
showtabs=false,
tabsize=2
}
\lstdefinestyle{c++}{
backgroundcolor=\color{backcolour},
commentstyle=\color{green}\ttfamily,
keywordstyle=\color{blue}\ttfamily,
numberstyle=\tiny\color{codegray},
stringstyle=\color{red}\ttfamily,
basicstyle=\ttfamily\footnotesize,
morecomment=[l][\color{magenta}]{\#}
breakatwhitespace=false,
breaklines=true,
captionpos=t,
keepspaces=true,
numbers=left,
numbersep=5pt,
showspaces=false,
showstringspaces=false,
showtabs=false,
tabsize=2
}
\lstdefinestyle{Java}{
backgroundcolor=\color{backcolour},
commentstyle=\color{green}\ttfamily,
keywordstyle=\color{blue}\ttfamily,
numberstyle=\tiny\color{codegray},
stringstyle=\color{red}\ttfamily,
basicstyle=\ttfamily\footnotesize,
showspaces=false,
showtabs=false,
breaklines=true,
showstringspaces=false,
breakatwhitespace=true,
commentstyle=\color{codegray},
keywordstyle=\color{blue},
stringstyle=\color{red},
basicstyle=\ttfamily,
moredelim=[il][\textcolor{codegray}]{$$},
moredelim=[is][\textcolor{codegray}]{\%\%}{\%\%}
}
\usepackage[]{algorithm2e}
%% Custom commands
\newcommand{\quotes}[1]{``#1''}
%% Start Document
\begin{document}
\input{./tex/Cover.tex}
\thispagestyle{empty}
\begin{flushright}
%% insert inscription (page 2)
\end{flushright}
%% Epigraph
\chapter*{}
\pagenumbering{gobble}% Remove page numbers (and reset to 1)
\epigraph{\quotes{\emph{No one know nothing,\\everyone know something,\\but something is nothing to someone,\\while\\something is important to everybody}}}{Daudi, Manyara}
%\epigraph{\quotes{\emph{Software is like sex:\\it's better when it's free}}{Linus Torvalds}}
%% Abstract
\pagenumbering{gobble}% Remove page numbers (and reset to 1)
\input{./tex/Abstract.tex}
\tableofcontents
\newpage
%% Introduction
\pagenumbering{arabic}% Arabic page numbers (and reset to 1)
\input{./tex/Introduction.tex}
%% Chapter 1 - DNetPRO algorithm
\input{./tex/Chapter1/chapter1.tex}
% Introduction to feature selection problem and theoretical background. Focus on biological Big Data and problems related.
% Description of the method and efficiency a biological toy model.
% Description of the algorithm implementation with focus on performances of the new implementation.
% Application of the DNetPRO on the Synapse dataset (mRNA, miRNA, RPPA) of Yuan et al. with discussion about obtained performances compared with the most common ML methods and signature characterization
% Application of the DNetPRO on the Cytokine dataset with data description and obtained results
% Application of the DNetPRO on the Bovini dataset with data description and obtained results with biological interpretation
%% Chapter 2 - Neural Network and Byron
\input{./tex/Chapter2/chapter2.tex}
% Description of the modern deep neural networks with potential applications
% Neural Network laboratory developed in pure numpy. Study of the neural network functionality and testing of the code against tensorflow
% rFBP library to optimize the Julia code with reference to the Scorer library and application to COMPARE data (Daniele Thesis)
% Neural Network library for parallel computing developed in C++ with python wrap. Description of the algorithms and strategies chosen in the library development.
% Introduction on the image classification and detection with Yolo architecture. Implementation in Byron with description of performances against darknet (original implementation). Focus on performances (time, memory, cpu).
% Introduction on Super Resolution problem with focus on state-of-art neural network architecture. Description of the Byron implementation and application on NMR data with the most common measurements. Super-resolution allows better detection!
% Introduction on Image Segmentation problem and application of Unet (Byron implementation) on femur images (TODO)
%% Chapter 3 - CHIMeRA project
\input{./tex/Chapter3/chapter3.tex}
% Many public datasets available. Description of the database used in chimera
% Description of the web scraping techinques used to obtain the "no-public" datasets. Reference to the github project
% What is CHIMeRA project and which potentiality it has. Description of the database created and of the query implemented to obtain the results (TODO: better query)
% Some query examples like leukemia subnetwork and PRNP subnetwork. Description of the information extracted by these subnetworks
%% Chapter 4 - cardiological data
% \input{./tex/Chapter4/AppitechData.tex}
% % Description of the pulsoximmetry and of the cardiological data analyzed
% \input{./tex/Chapter4/CardioFeature.tex}
% % Description of the features extracted on the cardiological dataset
% \input{./tex/Chapter4/AgePrediction.tex}
% % Pipeline of the feature selection with age prediction obtained on cardio data
%% Conclusion
\input{./tex/Conclusions.tex}
%% Acknowledgment
\pagenumbering{gobble}% Remove page numbers (and reset to 1)
\input{./tex/Acknowledgment.tex}
%% Appendix
\input{./tex/Appendix/appendix.tex}
% reference to the studies about performances of the developed algorithms.
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%\clearpage
%\input{./tex/Relazione.tex}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\clearpage
\bibliographystyle{abbrv}
\bibliography{biblio}
\end{document}