\documentclass[12pt,oneside,final]{vlsithesis}
\input{includes.tex}
\title{Your Thesis Title}
\author{Your Name}
\degree{Master of Science}
\doctype{Thesis}
\dept{School of Computer Science}
\numberofmembers{3}
\membera{Initial. Last Name }
\depta{Department of Mechanical, Automotive and Materials Engineering}
\memberb{Initial. Last Name }
\deptb{School of Computer Science}
\memberc{Initial. Last Name }
\deptc{School of Computer Science}
\defenseyear{2020}
\defensedate{June 11, 2020} %Change the date here!
\usepackage{makecell}
\makeatletter
\renewcommand*\l@figure{\@dottedtocline{1}{1em}{3.2em}}
\renewcommand*\l@table{\@dottedtocline{1}{1em}{3.2em}}
\makeatother
\renewcommand\theadfont{\bfseries\sffamily}
\usepackage{algorithm}
\usepackage{algorithmic}
\renewcommand{\algorithmicrequire}{\textbf{Input:}}
\renewcommand{\algorithmicensure}{\textbf{Output:}}
\usepackage{amsmath}
\usepackage{amssymb}
\usepackage{graphicx}
\usepackage{subfigure}
\usepackage{verbatim}
\usepackage{setspace}
\usepackage{multirow}
\usepackage{xcolor}
\usepackage{float}
\usepackage{caption}
\usepackage{url}
\usepackage{footnote}
\usepackage{listings}
\usepackage{dsfont}
\usepackage[algo2e, ruled, vlined]{algorithm2e}
%\usepackage{pgfplots}
%\usepackage{subfig}
%\usepackage{subfig}
%s\usepackage{unicode-math}
%\usepackage{nomencl}
\usepackage{rotating}
\usepackage{tabularx}
\newtheorem{Definition}{Definition}
\graphicspath{{Fig/}{figures/}}
\renewcommand{\figurename}{Fig.}
\renewcommand{\tablename}{Table}
\renewcommand\arraystretch{1.68}
\captionsetup[table]{skip=10pt}
\usepackage[numbers]{natbib}
\bibliographystyle{apalike}
\newtheorem{theorem}{Theorem}
\let\counterwithout\relax
\let\counterwithin\relax
\usepackage{chngcntr}
\counterwithin{table}{section}
\counterwithin{figure}{section}
\counterwithin{algorithm}{section}
\setcounter{tocdepth}{4}
\setcounter{secnumdepth}{4}
\usepackage{enumitem}
\def\UrlBreaks{\do\/\do-}
\begin{document}
\maketitle
\makeapproval
\pagenumbering{Roman}
\setcounter{page}{3}
\makedeclaration
\input{sections/Abstract.tex}
\dedication{I would like to dedicate this thesis to my mom for her incredible love and support. Because I believe that she is the real backbone of our family, this is to appreciate her selfless hard work and efforts towards the family.
Furthermore, I dedicate it to my dad to raise me like a son and give me wings to fly. To my grandfather, for always trusting me and supporting me in my hard times, without his encouragement, nothing would have been easy. And to my entire family for their unconditional affection towards me.}
\acknowledgements{ I would like to sincerely express my most profound gratitude towards my supervisor Dr.X, whose input helped me immensely. With his input, I was able
to look at my research with a different perspective and a more critical eye.
Secondly, I would like to express my gratitude to my thesis committee members for their beneficial advice and suggestions for my thesis.
I would also like to thank my friend X for always encouraging and supporting me.
I humbly extend my thanks to the School of Computer Science and all concerned people who helped me in this regard.
}
\tableofcontents
\listoftables
\listoffigures
\listofabbreviation
% \clearpage
\newlist{abbrv}{itemize}{1}
\setlist[abbrv,1]{label=,labelwidth=1in,align=parleft,itemsep=0.1\baselineskip,leftmargin=!}
% \chapter*{List of Abbreviations}
% \chaptermark{\normalsize List of Abbreviations}
\begin{abbrv}
\item[TP] True Positive
\item[FN] False Negative
\item[FP] False Positive
\item[TN] True Negative
\item[TPR] True Positive Rate
\item[FPR] False Positive Rate
\item[FNR] False Negative Rate
\item[TNR] True Negative Rate
\item[FRR] False Rejection Rate
\item[FNMR] False Non Match Rate
\item[FAR] False Rejection Rate
\item[FMR] False Match Rate
\item[EER] Equal Error Rate
\item[SVM] Support Vector Machine
\item[DT] Decision Tree
\item[KNN] K Nearest Neighbors
\item[NB] Naive Bayes
\item[LR] Logistic Regression
\item[RF] Random Forest
\item[MLP] Multi Layer Perceptron
\item[LGB] Light Gradient Boosting Machines
\item[NN] Neural Network
\item[GA-KNN] Genetic Algorithm -K Nearest Neighbors
\item[IForest] IsolationForest
\item[One-Class SVM] One Class Support Vector Machine
\end{abbrv}
\clearpage
\pagenumbering{arabic}
\input{sections/Introduction.tex}
\input{sections/Related-works.tex}
\input{sections/Access Control Systems.tex}
\input{sections/Machine Learning Techniques.tex}
\input{sections/Methodology.tex}
\input{sections/Experimental-results.tex}
\input{sections/Conclusion.tex}
% \input{sections/Future-works.tex}
\clearpage
\addcontentsline{toc}{chapter}{REFERENCES}
\nocite{*}
\bibliography{sections/References}
\clearpage
\addcontentsline{toc}{chapter}{VITA AUCTORIS}
{\thispagestyle{plain}
\begin{flushleft}
\LARGE\textbf{VITA AUCTORIS}
\end{flushleft}
\begin{table}[htbp]
\begin{tabular}{p{0.3\linewidth}p{0.65\linewidth}}
NAME: & First Name Last Name \\
PLACE OF BIRTH: &\\
YEAR OF BIRTH: & \\
EDUCATION: &
\vskip1em
University of Windsor, M.Sc in Computer Science, Windsor, Ontario, 2020 \\
\end{tabular}
\end{table}
}
\end{document}