diff --git a/year4/semester1/CT4101: Machine Learning/assignments/assignment1/latex/CT4101-Assignment-1.pdf b/year4/semester1/CT4101: Machine Learning/assignments/assignment1/latex/CT4101-Assignment-1.pdf new file mode 100644 index 00000000..dfae03eb Binary files /dev/null and b/year4/semester1/CT4101: Machine Learning/assignments/assignment1/latex/CT4101-Assignment-1.pdf differ diff --git a/year4/semester1/CT4101: Machine Learning/assignments/assignment1/latex/CT4101-Assignment-1.tex b/year4/semester1/CT4101: Machine Learning/assignments/assignment1/latex/CT4101-Assignment-1.tex new file mode 100644 index 00000000..85d70853 --- /dev/null +++ b/year4/semester1/CT4101: Machine Learning/assignments/assignment1/latex/CT4101-Assignment-1.tex @@ -0,0 +1,111 @@ +%! TeX program = lualatex +\documentclass[a4paper]{article} + +% packages +\usepackage{microtype} % Slightly tweak font spacing for aesthetics +\usepackage[english]{babel} % Language hyphenation and typographical rules +\usepackage[final, colorlinks = true, urlcolor = black, linkcolor = black]{hyperref} +\usepackage{changepage} % adjust margins on the fly + +\usepackage{fontspec} +\setmainfont{EB Garamond} +\setmonofont[Scale=MatchLowercase]{Deja Vu Sans Mono} + +\usepackage{minted} +\usemintedstyle{algol_nu} +\usepackage{xcolor} + +\usepackage{pgfplots} +\pgfplotsset{width=\textwidth,compat=1.9} + +\usepackage{caption} +\newenvironment{code}{\captionsetup{type=listing}}{} +\captionsetup[listing]{skip=0pt} +\setlength{\abovecaptionskip}{5pt} +\setlength{\belowcaptionskip}{5pt} + +\usepackage[yyyymmdd]{datetime} +\renewcommand{\dateseparator}{--} + +\usepackage{titlesec} +% \titleformat{\section}{\LARGE\bfseries}{}{}{}[\titlerule] +% \titleformat{\subsection}{\Large\bfseries}{}{0em}{} +% \titlespacing{\subsection}{0em}{-0.7em}{0em} +% +% \titleformat{\subsubsection}{\large\bfseries}{}{0em}{$\bullet$ } +% \titlespacing{\subsubsection}{1em}{-0.7em}{0em} + +% margins +\addtolength{\hoffset}{-2.25cm} +\addtolength{\textwidth}{4.5cm} +\addtolength{\voffset}{-3.25cm} +\addtolength{\textheight}{5cm} +\setlength{\parskip}{0pt} +\setlength{\parindent}{0in} +% \setcounter{secnumdepth}{0} + +\begin{document} +\hrule \medskip +\begin{minipage}{0.295\textwidth} + \raggedright + \footnotesize + Name: Andrew Hayes \\ + % E-mail: \href{mailto://a.hayes18@universityofgalway.ie}{\texttt{a.hayes18@universityofgalway.ie}} \hfill\\ + Student ID: 21321503 \hfill \\ + Programme: 4BCT \hfill +\end{minipage} +\begin{minipage}{0.4\textwidth} + \centering + \vspace{0.4em} + \Large + \textbf{CT4101} \\ +\end{minipage} +\begin{minipage}{0.295\textwidth} + \raggedleft + \today +\end{minipage} +\medskip\hrule +\begin{center} + \normalsize + Assignment 01: Classification Using Scikit-Learn +\end{center} +\hrule + +\section{Algorithm 1: } + +\subsection{Detailed Description of Algorithm 1} +\subsection{Why I Chose this Algorithm} + +Graphic illustration of how the algorithm works + +\subsection{Hyperparameter Details for Tuning} + +\subsection{Model Training \& Evaluation} +\subsubsection{Data Preprocessing \& Visualisation} +\subsubsection{Training \& Evaluation Details} +\subsubsection{Discussion of Results} + +\section{Algorithm 2: } + +\subsection{Detailed Description of Algorithm 2} +Graphic illustration of how the algorithm works + +\subsection{Why I Chose this Algorithm} + +\subsection{Hyperparameter Details for Tuning} + +\subsection{Model Training \& Evaluation} +\subsubsection{Data Preprocessing \& Visualisation} +\subsubsection{Training \& Evaluation Details} +\subsubsection{Discussion of Results} + +\section{Conclusions} +\subsection{Key Findings} +\subsection{Comparative Analysis of Algorithm Performances} +\subsection{Recommended Hyperparameter Values Based on Results} +\subsection{Concluding Remarks} + +\bibliographystyle{plain} +\bibliography{references} + +\end{document} diff --git a/year4/semester1/CT4101: Machine Learning/assignments/assignment1/latex/references.bib b/year4/semester1/CT4101: Machine Learning/assignments/assignment1/latex/references.bib new file mode 100644 index 00000000..ef0c196e --- /dev/null +++ b/year4/semester1/CT4101: Machine Learning/assignments/assignment1/latex/references.bib @@ -0,0 +1,10 @@ +Copy code +@article{author2020title, + author = {Author, A.}, + title = {Title of the article}, + journal = {Journal Name}, + year = {2020}, + volume = {12}, + number = {3}, + pages = {45--67} +}