-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathreport.tex
185 lines (143 loc) · 4.43 KB
/
report.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
\documentclass[11pt,a4paper]{article}
\setcounter{secnumdepth}{6}
\usepackage{standalone}
\usepackage{geometry} % Used to adjust the document margins
%~ \geometry{bindingoffset=1cm}
\usepackage{fullpage}
\usepackage{multirow}
%~ \usepackage{wasysym}
\usepackage{setspace}
\doublespacing
\usepackage{graphicx}
\usepackage[font=footnotesize]{caption}
\usepackage[noadjust]{cite}
\usepackage[toc,page]{appendix}
\usepackage{hyperref}
\usepackage{amsmath}
\usepackage{amsfonts}
%~ \usepackage{sidecap}
\usepackage{caption}
\usepackage{subcaption}
\usepackage[colorinlistoftodos,disable]{todonotes}
%~ \usepackage[colorinlistoftodos]{todonotes}
\usepackage{csquotes}
\usepackage{parskip} % Spaces between paragraphs
\usepackage[acronym]{glossaries}
% add binding margins
\makeglossaries
%~ \renewcommand*\abstractname{Summary}
% http://www.tex.ac.uk/cgi-bin/texfaq2html?label=altabcr
\setcounter{MaxMatrixCols}{50}
% package name:
\newcommand{\py}{\texttt{python}}
\newcommand{\pr}{\texttt{pyrem}}
\newcommand{\pyeeg}{\texttt{PyEEG}}
\newcommand{\ctit}{\emph}
\newcommand{\ptit}{\emph}
\newcommand{\eg}{\emph{e.g.}}
\newcommand{\ie}{\emph{i.e.}}
\newcommand{\specialcell}[2][c]{\begin{tabular}[#1]{@{}c@{}}#2\end{tabular}}
\newcommand{\FIXME}[2][]{\todo[color=cyan, #1]{\textbf{QG:} #2}}
\newcommand{\TODO}[2][]{\todo[color=red, #1]{\textbf{QG:} #2}}
\newcommand{\citationneeded}[2][]{\todo[color=brown, fancyline, #1]{\textbf{Citation Needed:} #2}}
\newcommand{\contrib}{\emph}
\begin{document}
\pagenumbering{roman}
\title{Vigilance state prediction using random forest and time interval feature space}
\author{Quentin Geissmann\\
\\
\\
\\
\\
Supervised by Giorgio Gilestro\\
\\
\\
Imperial College London
\\
\\
\\
Words count in main text: 4996\\
\\
}
\date{\today}
\clearpage\maketitle
\thispagestyle{empty}
\newpage{}
\listoftodos
\newpage
% our acronyms
\newacronym{rem}{REM}{Rapid Eye Movement}
\newacronym{nrem}{NREM}{Non-Rapid Eye Movement}
\newacronym{eeg}{EEG}{Electroencephalogram}
\newacronym{emg}{EMG}{Electromyogram}
%~ \newacronym{eog}{EOG}{ElectroOculoGram}
\newacronym{svm}{SVM}{Support Vector Machine}
\newacronym{ann}{ANN}{Artificial Neural Network}
\newacronym{hmm}{HMM}{Hidden Markov Model}
%~
%~ \newglossaryentry{epoch}
%~ {
%~ name=epoch,
%~ description={todo
%~ },
%~ sort = epoch
%~ }
%~
%~ \newglossaryentry{$fs$}
%~ {
%~ name=fs,
%~ description={Samplig frequency
%~ },
%~ sort = fs
%~ }
\begin{abstract}
Electroencephalography (EEG) is a very widespread technique which is routinely used
as a diagnostic tool for brain dysfunctions and to investigate neurological
phenomenons.
Because of its relatively non-invasive nature,
it is widely used to determine and quantify sleep stages in humans and model
mammals such as rodents.
Historically, labelling of EEG recordings has been performed visually by trained
human experts. This task is extremely tedious and quite subjective.
Despite recent efforts to develop an automatic classifier of sleep stages,
little adoption has occurred, and manual scoring is still the standard.
This study presents a high accuracy classifier of sleep stages that
could lead to an efficient software tool for biologists.
Exhaustive feature extraction based on discrete wavelet decomposition was used
in combination with a random forest classifier and was demonstrated to achieve
an overall accuracy of as high as 92\%.
In order to optimise feature extraction and pave the way for a future software
implementation, \pr{}, a \py{} package was also developed. \pr{} is here shown
to outperform an alternative runtime implementation by several orders of magnitude.
%~ \\
%~ \\
%~ \begin{itemize}
%~ \item Words in main text: 4996
%~ \item Words in headers: 84
%~ \item Words outside text (captions, etc.): 943
%~ \end{itemize}
\end{abstract}
\newpage
\tableofcontents
\newpage
\printglossaries
\newpage
\pagenumbering{arabic}
\input{intro}
\newpage{}
\input{matmet}
\newpage{}
\input{results}
\newpage{}
\input{discussion}
\newpage{}
\bibliography{report.bib}{}
\bibliographystyle{ieeetr}
%~
\newpage{}
\begin{appendices}
\section{\pr{} documentation}
In order to complement the following documentation, an interactive online version is available at \href{http://gilestrolab.github.io/pyrem/}{http://gilestrolab.github.io/pyrem/}.
\pr{}'s source code is available at \href{https://github.com/gilestrolab/pyrem/tree/master/src/}{https://github.com/gilestrolab/pyrem/tree/master/src/}
\end{appendices}
\end{document}