-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmain-digital.tex
80 lines (60 loc) · 2.26 KB
/
main-digital.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
\documentclass[a4paper,10pt,twoside,openright]{book}
% \documentclass[a4paper,10pt,twoside,openright,draft]{book}
% Style file
\usepackage{structure-digital}
% PDF Metadata
\hypersetup{
pdftitle={Data augmentation and image understanding},
pdfsubject={The role of data augmentation as implicit regularisation of artificial neural networks and inductive bias from visual perception and biological vision},
pdfauthor={Alex Hernandez-Garcia},
pdfkeywords={data augmentation; regularization; deep learning; neuroscience; visual perception; salience; attention; vision; self-supervised learning}
}
% Include chapters and other sections: the lines corresponding to different chapters can be commented out during
% the process of writing to speed up the compilation time.
\includeonly{
includes/foreword/foreword,
includes/abstract/abstract,
includes/intro/intro,
includes/background/background,
includes/regularisation/regularisation,
includes/daug-reg/daug-reg,
includes/daug-it/daug-it,
includes/invariance/invariance,
includes/global-salience/global-salience,
includes/image-id/image-id,
includes/discussion/discussion,
}
\begin{document}
% Arabic numbers from the start
\pagenumbering{arabic}
%%% COVER %%%
\input{includes/cover/frontmatter-digital}
%%% FOREWORD %%%
\include{includes/foreword/foreword}
%%% ABSTRACT %%%
\include{includes/abstract/abstract}
% Table of contents
\tableofcontents
\addcontentsline{toc}{chapter}{Contents}
\clearpage
%%% CHAPTER 1: INTRODUCTION %%%
\include{includes/intro/intro}
%%% CHAPTER 2: BACKGROUND %%%
\include{includes/background/background}
%%% CHAPTER 3: REGULARISATION %%%
\include{includes/regularisation/regularisation}
%%% CHAPTER 4: DATA AUGMENTATION INSTEAD OF REGULARISATION %%%
\include{includes/daug-reg/daug-reg}
%%% CHAPTER 5: DATA AUGMENTATION AND IT CORTEX %%%
\include{includes/daug-it/daug-it}
%%% CHAPTER 6: INVARIANCE %%%
\include{includes/invariance/invariance}
%%% CHAPTER 7: GLOBAL SALIENCE %%%
\include{includes/global-salience/global-salience}
%%% CHAPTER 8: IMAGE IDENTIFICATION %%%
\include{includes/image-id/image-id}
%%% CHAPTER 9 GENERAL DISCUSSION %%%
\include{includes/discussion/discussion}
%%% LAST PAGE %%%
\includepdf[pages=-]{includes/lastpage/lastpage}
\end{document}