diff --git a/thesis/main.tex b/thesis/main.tex index cce3cbd..75c66af 100644 --- a/thesis/main.tex +++ b/thesis/main.tex @@ -27,10 +27,10 @@ \usepackage{hyperref} \hypersetup{ - colorlinks = true, % Colours links instead of ugly boxes - urlcolor = blue, % Colour for external hyperlinks - linkcolor = blue, % Colour of internal links - citecolor = red % Colour of citations + colorlinks = true, + linkcolor = black, + citecolor = black, + urlcolor = black } % Document diff --git a/thesis/sections/background.tex b/thesis/sections/background.tex index c3a6429..fe3350d 100644 --- a/thesis/sections/background.tex +++ b/thesis/sections/background.tex @@ -582,7 +582,7 @@ such as ovulatory trends spanning multiple days or cycles. Convolutional neural networks (CNNs) can also be applied to time-series by using 1D convolutions across the temporal dimension. In this setting, each convolutional filter acts as a learnable temporal pattern detector (e.g. for local peaks, slopes, or motifs). Convolutions exploit the local correlation structure of time series: adjacent measurements are often highly related. -As~\cite{lecun_convolutional_1998} note, “time-series have a strong 1D structure – variables that are temporally nearby are highly correlated. +As~\citeauthor{lecun_convolutional_1998} note, “time-series have a strong 1D structure – variables that are temporally nearby are highly correlated. Local correlations are the reason for the well-known advantages of extracting and combining local features”~\cite{lecun_convolutional_1998}. Convolutional layers enforce locality by restricting each neuron’s receptive field to a contiguous segment of time. By adjusting the convolutional stride and using pooling, @@ -590,7 +590,7 @@ CNNs can downsample the sequence length (reducing resolution) while preserving s This reduces the input dimensionality for subsequent layers and can speed up training. In practice, convolutional architectures have achieved strong performance on sequential tasks. -For example,~\cite{lecun_convolutional_1998} show that a simple Temporal Convolutional Network often outperforms canonical +For example,~\citeauthor{lecun_convolutional_1998} showed that a simple Temporal Convolutional Network often outperforms canonical recurrent models (like LSTMs) across diverse sequence modeling benchmarks. Their experiments suggest that CNNs are “a natural starting point for sequence modeling,” especially when temporal features are local or multi-scale.