-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpaper.tex
218 lines (151 loc) · 4.65 KB
/
paper.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
\documentclass[12pt]{article}
\usepackage{currothesis}
\usepackage[left=1.5in, right=1.5in, top=1in, bottom=1in]{geometry}
\usepackage{mathtools}
\usepackage{fontspec}
%\setmainfont{Adobe Caslon Pro}
\usepackage{layout}
\usepackage[]{amsmath}
\usepackage{cleveref}
\usepackage{amssymb}
\usepackage{ragged2e}
\usepackage{graphicx}
\usepackage{cite}
\usepackage{ mathrsfs }
\usepackage{booktabs}
\usepackage{listings}
\usepackage{minted}
\usepackage{tikz}
\usepackage{pdfpages}
\usepackage{caption}
\graphicspath{{figures/}}
% Problem with these declarations which I like to use
\DeclarePairedDelimiter{\abs}{\lvert}{\rvert}
\DeclarePairedDelimiter{\norm}{\lVert}{\rVert}
\captionsetup[table]{skip=10pt}
\usetikzlibrary{matrix,chains,positioning,decorations.pathreplacing,arrows}
\DeclareMathOperator*{\argmin}{arg\,min}
\usepackage{titlesec}
\setcounter{secnumdepth}{4}
\titleformat{\paragraph}
{\normalfont\normalsize\bfseries}{\theparagraph}{1em}{}
\titlespacing*{\paragraph}
{0pt}{3.25ex plus 1ex minus .2ex}{1.5ex plus .2ex}
\def\toclevel@paragraph{4}
\setcounter{tocdepth}{4}
\pagestyle{plain}
\setlength{\marginparwidth}{1in}
\newcommand\tline[2]{$\underset{\text{#1}}{\text{\underline{\hspace{#2}}}}$}
\renewcommand{\vec}[1]{\mathbf{#1}}
\begin{document}
% Title page
\thispagestyle{empty}
\begin{center}
\Large
THE COOPER UNION\\
ALBERT NERKEN SCHOOL OF ENGINEERING
\vspace{1in}
{
\LARGE
A Partitioned Autoencoder \\for Audio De-Noising
}
\vspace{1in}
by
Ethan Lusterman
\vspace*{\fill}
A thesis submitted in partial fulfillment\\
of the requirements for the degree of\\
Master of Engineering
\vspace{1in}
September 14, 2016
\vspace{1in}
Professor Sam Keene, Advisor
\end{center}
% Signature Page
\newpage
\thispagestyle{empty}
\begin{center}
\Large
THE COOPER UNION FOR THE \\ADVANCEMENT OF SCIENCE AND ART
\vspace{0.5in}
ALBERT NERKEN SCHOOL OF ENGINEERING
\vspace{1in}
\justify
This thesis was prepared under the direction of the Candidate's Thesis Advisor
and has received approval. It was submitted to the Dean of the School of
Engineering and the full Faculty, and was approved as partial fulfillment of
the requirements for the degree of Master of Engineering.
\raggedright
\vspace{1in}
\hfill \tline{Dean, School of Engineering \hfill Date}{3in}
\vspace{1in}
\tline{Prof. Sam Keene, Thesis Advisor \hfill Date}{3in}
\end{center}
\newpage
\pagenumbering{roman}
\setcounter{page}{1}
\newpage
\begin{center}
{\Large Acknowledgments} \\
\vspace{1in}
\end{center}
\input{ack}
\newpage
\begin{center}
{\Large Abstract} \\
\vspace{1in}
\end{center}
{
\fontsize{12pt}{24pt}\selectfont
\input{abstract}
}
\newpage
\tableofcontents
\newpage
\listoffigures
\newpage
% Table of Nomenclature
% \clearpage
\setcounter{page}{1}
\pagenumbering{arabic}
\fontsize{12pt}{24pt}\selectfont
\section{Introduction}
\input{intro/intro}
\newpage
\section{Background}
\subsection{Machine Learning}
\input{intro/ml}
\subsection{Neural Networks}
\input{intro/nets}
\subsection{Signals and Systems}
\input{intro/sig}
\newpage
\section{Signal Model and Data}
\input{beef/model}
\newpage
\section{De-noising Architectures}
\input{beef/arch}
\newpage
\section{Results}
% just show the MSE plots for all the de-noising systems, as well as plots of your loss function convergence and shit like that. Basically dump all the plots you can into this section, arrange them in the same order as the previous chapter. You can put histograms of the latents in the dan stowell section bc that is basically how curro showed us that its not really working all that well, and then that motivates the curro-net. (he hates that name btw so we should try to keep it). hopefully the curro net gives good results when trained with only noise and signal + noise. be sure to be clear in this section that the classic auto-encoder is more supervised than the stowell and curro-net ones are. you can also include a section in here on your phase reconstruction results bc its relevant and you did all that work so might as well beef up your thesis with it.
\input{results/main}
\newpage
\section{Conclusions and Future Work}
\input{conc}
\newpage
\raggedright
\nocite{*}
\fontsize{12pt}{16pt}\selectfont
\bibliography{bib}{}
\bibliographystyle{IEEEtran}
\eject
\appendix
\section{Simulation Code}
\fontsize{12pt}{24pt}\selectfont
\justify
The following code samples show how network architectures were constructed, how GPU functions were compiled, how networks were trained, and how simulation results were collected and plotted.
\begin{center}
% \inputminted[linenos=true, fontsize=\footnotesize]{python}{../thesis/thesis/comparisons/autoencoder.py}
\includepdf[pages={1-},scale=0.72]{autoencoder.pdf}
\end{center}
\end{document}