67 lines
1.6 KiB
TeX
67 lines
1.6 KiB
TeX
%! Author = alex
|
||
%! Date = 3/6/25
|
||
|
||
% Preamble
|
||
\documentclass[a4paper, 12pt]{article}
|
||
|
||
% Packages
|
||
\usepackage{amsmath}
|
||
\usepackage[a4paper, margin=1in]{geometry}
|
||
|
||
\usepackage{graphicx}
|
||
\graphicspath{{resources/figures/}}
|
||
|
||
\usepackage[style=ieee, backend=biber]{biblatex}
|
||
\usepackage{blindtext}
|
||
\addbibresource{../main.bib}
|
||
|
||
% Document
|
||
\begin{document}
|
||
\begin{titlepage}
|
||
\centering
|
||
{\large \textbf{Leipzig University}}\\[1.5cm]
|
||
{\large Faculty of Mathematics and Computer Science}\\[2cm]
|
||
|
||
\includegraphics[width=7cm]{leipzig_university_logo}\\[1cm] % Adjust size as needed
|
||
|
||
{\huge \textbf{Finding Predictors for Human Ovulation with Attention Mechanisms}}\\[1.5cm]
|
||
|
||
\textbf{Master’s Thesis}\\[1cm]
|
||
|
||
\textbf{Author:}\\
|
||
Alexander Blank\\[0.5cm]
|
||
|
||
\textbf{Supervisor(s):}\\
|
||
Prof. XYZ, Dr. ABC\\[1.5cm]
|
||
|
||
\textbf{Date:} 2025\\[2cm]
|
||
|
||
\textbf{Department of XYZ}\\
|
||
\textbf{Leipzig University}
|
||
\end{titlepage}
|
||
|
||
\pagebreak
|
||
\begin{abstract}
|
||
This paper investigates the use of attention mechanisms to predict human ovulation. The results show that the attention mechanism is able to predict human ovulation with an accuracy of 95\%.
|
||
\end{abstract}
|
||
\pagebreak
|
||
|
||
\tableofcontents
|
||
|
||
\include{sections/introduction}
|
||
|
||
\include{sections/background}
|
||
|
||
\include{sections/related_work}
|
||
|
||
\include{sections/methodology}
|
||
|
||
\include{sections/results}
|
||
|
||
\include{sections/discussion}
|
||
|
||
\include{sections/conclusion}
|
||
|
||
\printbibliography
|
||
|
||
\end{document} |