├── chapters ├── conclusion.tex ├── results.tex ├── literature_review.tex ├── introduction.tex └── methodology.tex ├── puc_logo.png ├── Figures └── poster.jpg ├── abstract.tex ├── dedication.tex ├── references.bib ├── title_page.tex ├── author_declaration.tex ├── signature.tex ├── main.tex └── thesis.sty /chapters/conclusion.tex: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /puc_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ascuet/puc-report-template/HEAD/puc_logo.png -------------------------------------------------------------------------------- /Figures/poster.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ascuet/puc-report-template/HEAD/Figures/poster.jpg -------------------------------------------------------------------------------- /abstract.tex: -------------------------------------------------------------------------------- 1 | \thispagestyle{plain} 2 | \begin{center} 3 | \textbf{\LARGE{Abstract}} 4 | \end{center} 5 | \lipsum[1] 6 | 7 | \textbf{Keywords:} deep learning, transfer learning, convolutional neural network (CNN), gated recurrent unit (GRU) -------------------------------------------------------------------------------- /dedication.tex: -------------------------------------------------------------------------------- 1 | \begin{center} 2 | 3 | \vspace*{\fill} 4 | \itshape {\large{It is my genuine gratefulness and warmest regard that \\I dedicate this work to my beloved} \\ 5 | 6 | \Large{ \bfseries{Father and Mother}}} 7 | \vspace*{\fill} 8 | \end{center} 9 | \clearpage 10 | -------------------------------------------------------------------------------- /chapters/results.tex: -------------------------------------------------------------------------------- 1 | \section{Introduction} 2 | \lipsum[9-10] 3 | 4 | \section{Hardware Study} 5 | \lipsum[1-1] 6 | 7 | \subsection{Results of Approach 01} 8 | \lipsum[4-6] 9 | 10 | \subsection{Results of Approach 012} 11 | 12 | \lipsum[1-5] 13 | 14 | \section{Results of Approach 03} 15 | \lipsum[1-8] 16 | 17 | \section{Summary} 18 | \lipsum[2-3] -------------------------------------------------------------------------------- /chapters/literature_review.tex: -------------------------------------------------------------------------------- 1 | \section{Introduction} 2 | \lipsum[9-10] 3 | 4 | \section{Background Study} 5 | \lipsum[1-1] 6 | Vision transformer based captioning is proposed in ~\cite{showattend}. 7 | 8 | \subsection{Convolutional Neural Network} 9 | \lipsum[4-6] 10 | 11 | \subsection{Software Design Pattern} 12 | Zhu et al.~\cite{zhu2015composability} proposed a model for designing software approach. ~\cite{designPatterns} describes a process about software design pattern. 13 | \lipsum[1-5] 14 | 15 | \section{Related Review for Sports Video Classification System} 16 | \lipsum[1-8] 17 | ~\cite{cric_popularity} shows an statistics about the popularity of cricket videos. 18 | 19 | \section{Summary} 20 | \lipsum[2-3] -------------------------------------------------------------------------------- /chapters/introduction.tex: -------------------------------------------------------------------------------- 1 | \section{Introduction} 2 | \lipsum[7-8] 3 | 4 | \section{Motivation} 5 | \lipsum[4-5] 6 | 7 | \section{Application} 8 | \lipsum[4-5] 9 | 10 | \section{Poster Presentation} 11 | \lipsum[1-1] 12 | An overview of poster presentation is shown in Fig.~\ref{fig:poster_presentation}. 13 | 14 | \begin{figure}[H] 15 | \centering 16 | \includegraphics[width=\linewidth]{Figures/poster.jpg} 17 | \caption{Example of poster presentation.} 18 | \label{fig:poster_presentation} 19 | \end{figure} 20 | 21 | \subsection{Subsection of Test} 22 | \lipsum[1-2] 23 | \subsection{Subsection 2 of Test} 24 | \lipsum[1-2] 25 | 26 | \section{Summary} 27 | % \lipsum[1-1] 28 | In this chapter, we have discussed some terms about the software engineering. 29 | -------------------------------------------------------------------------------- /chapters/methodology.tex: -------------------------------------------------------------------------------- 1 | \section{Introduction} 2 | \lipsum[9-10] 3 | 4 | \section{Proposed Methodology} 5 | \lipsum[1-1] 6 | 7 | 8 | 9 | \subsection{Table} 10 | A table caption is shown in \ref{tab:sample-table}. 11 | \begin{table}[H] 12 | \centering 13 | \caption{Sample table.} 14 | \label{tab:sample-table} 15 | \begin{tabular}{lll} 16 | \toprule 17 | \multicolumn{1}{c}{\textbf{Heading 1}} & \multicolumn{1}{c}{\textbf{Heading 2}} & \multicolumn{1}{c}{\textbf{Heading 3}} \\ \midrule 18 | x & y & z \\ 19 | a & b & c \\ \bottomrule 20 | \end{tabular} 21 | \end{table} 22 | 23 | \subsection{Step 02} 24 | 25 | \lipsum[1-5] 26 | 27 | \section{Step 03} 28 | \lipsum[1-8] 29 | 30 | \section{Summary} 31 | \lipsum[2-3] -------------------------------------------------------------------------------- /references.bib: -------------------------------------------------------------------------------- 1 | @inproceedings{designPatterns, 2 | title={Design patterns in software development}, 3 | author={Mu, Huaxin and Jiang, Shuai}, 4 | booktitle={2011 IEEE 2nd International Conference on Software Engineering and Service Science}, 5 | pages={322--325}, 6 | year={2011}, 7 | organization={IEEE} 8 | } 9 | 10 | @article{zhu2015composability, 11 | title={On the composability of design patterns}, 12 | author={Zhu, Hong and Bayley, Ian}, 13 | journal={IEEE Transactions on Software Engineering}, 14 | volume={41}, 15 | number={11}, 16 | pages={1138--1152}, 17 | year={2015}, 18 | publisher={IEEE} 19 | } 20 | 21 | @misc{cric_popularity, 22 | title = {2019 Men's Cricket World Cup most watched ever. }, 23 | howpublished = {Available online: \url{https://www.icc-cricket.com/media-releases/1346930} (accessed on: 26 January 2022).} 24 | } 25 | 26 | @inproceedings{showattend, 27 | title={Show, attend and tell: Neural image caption generation with visual attention}, 28 | author={Xu, Kelvin and Ba, Jimmy and Kiros, Ryan and Cho, Kyunghyun and Courville, Aaron and Salakhudinov, Ruslan and Zemel, Rich and Bengio, Yoshua}, 29 | booktitle={International conference on machine learning}, 30 | pages={2048--2057}, 31 | year={2015}, 32 | organization={PMLR} 33 | } -------------------------------------------------------------------------------- /title_page.tex: -------------------------------------------------------------------------------- 1 | \begin{titlepage} 2 | \vspace*{-30mm} 3 | \begin{center} 4 | % \line(1,0){350}\\ 5 | % [0.5 cm] 6 | \Large{PREMIER UNIVERSITY, CHATTOGRAM}\\ 7 | \large{Department of Computer Science \& Engineering} 8 | \end{center} 9 | \vspace*{-5mm} 10 | \begin{figure}[H] 11 | \centering 12 | \includegraphics[width=3.5cm]{puc_logo.png} 13 | \end{figure} 14 | \vspace*{-15mm} 15 | \begin{center} 16 | Final Year Project/Thesis Report \\ On \\ 17 | \Large{\textbf{Lorem Ipsum is simply dummy text of the printing and typesetting industry Lorem Ipsum is simply dummy text}}\\ 18 | \vspace{15px} 19 | 20 | \uppercase{\textbf{SUBMITTED BY}} \\ 21 | \vspace{5px} 22 | \textbf{Name:} \firstAuthorName\\ 23 | \textbf{ID:} \firstAuthorId \\ 24 | \vspace{5px} 25 | \textbf{Name:} \secondAuthorName\\ 26 | \textbf{ID:} \secondAuthorId \\ 27 | \vspace{5px} 28 | \textbf{Name:} \thirdAuthorName\\ 29 | \textbf{ID:} \thirdAuthorId \\ 30 | \vspace{5px} 31 | In partial fulfillment for the degree of \\ 32 | Bachelor of Science in Computer Science \& Engineering under the Supervision of 33 | 34 | \vspace{10px} 35 | \supervisorName \\ 36 | \supervisorDesignation \\ 37 | Department of Computer Science \& Engineering \\ 38 | Premier University, Chattogram \\ 39 | \vspace{5mm} 40 | January, 2022 41 | 42 | \vspace{20px} 43 | 44 | 45 | 46 | \end{center} 47 | 48 | 49 | \end{titlepage} -------------------------------------------------------------------------------- /author_declaration.tex: -------------------------------------------------------------------------------- 1 | %\hfill \\ 2 | \begin{center} 3 | \textbf{\LARGE{Author's Declaration of Originality}} 4 | \end{center} 5 | 6 | We hereby declare that the thesis work entitled \textbf{“\projectTitle”} submitted to the Premier University, is a record of an original work done by us under the guidance of Mr. Anik Sen, Lecturer, Department of Computer Science \& Engineering, Premier University, Chattogram and this work is submitted for fulfillment of the degree of Bachelor Science in Computer Science \& Engineering. We can assure that the result of this thesis has not been submitted to any other 7 | university. 8 | 9 | \vskip1in 10 | \begin{flushleft} 11 | 12 | \begin{table}[H] 13 | \begin{tabular}{l} 14 | \_\_\_\_\_\_\_\_\_\_\_\_\_\_\_\_\_\_\_\_\_\_\_\_\_\_\_\_\_\_ \\ 15 | \firstAuthorName \\ 16 | ID: \firstAuthorId \\ \\ \\ \\ 17 | \\ 18 | \_\_\_\_\_\_\_\_\_\_\_\_\_\_\_\_\_\_\_\_\_\_\_\_\_\_\_\_\_\_ \\ 19 | \secondAuthorName \\ 20 | ID: \secondAuthorId \\ \\ \\ \\ 21 | \\ 22 | \_\_\_\_\_\_\_\_\_\_\_\_\_\_\_\_\_\_\_\_\_\_\_\_\_\_\_\_\_\_ \\ 23 | \thirdAuthorName \\ 24 | ID: \thirdAuthorId 25 | \end{tabular} 26 | \end{table} 27 | 28 | \end{flushleft} -------------------------------------------------------------------------------- /signature.tex: -------------------------------------------------------------------------------- 1 | \begin{center} 2 | \textbf{\LARGE{CERTIFICATION}} 3 | \end{center} 4 | 5 | 6 | The thesis entitled \textbf{“\projectTitle”} submitted by, \firstAuthorName, ID: \firstAuthorId, \secondAuthorName, ID: \secondAuthorId, \thirdAuthorName, ID: \thirdAuthorId{} has been accepted as satisfactory in partial fulfillment of the degree of Bachelor Science in Computer Science \& Engineering (CSE) to be awarded by Premier University, Chattogram.\\ 7 | 8 | \begin{table}[H] 9 | \begin{tabular}{ll} 10 | & \\ 11 | \_\_\_\_\_\_\_\_\_\_\_\_\_\_\_\_\_\_\_\_\_\_\_\_\_\_\_\_\_\_\_\_\_\_\_\_\_\_\_\_\_\_\_\_\_\_\_\_ & \\ 12 | \begin{tabular}[c]{@{}l@{}}\chairmanName\\ \chairmanDesignation\\ \department\\ \university\end{tabular} \\ \\ \\ 13 | & \\ 14 | \_\_\_\_\_\_\_\_\_\_\_\_\_\_\_\_\_\_\_\_\_\_\_\_\_\_\_\_\_\_\_\_\_\_\_\_\_\_\_\_\_\_\_\_\_\_\_\_ & \\ 15 | \begin{tabular}[c]{@{}l@{}}\supervisorName\\ \supervisorDesignation\\ \department\\ \university\end{tabular} \\ 16 | 17 | \end{tabular} 18 | \end{table} -------------------------------------------------------------------------------- /main.tex: -------------------------------------------------------------------------------- 1 | \documentclass[12pt, a4paper]{report} 2 | \usepackage{graphicx} 3 | \usepackage{float} 4 | \usepackage{titling} 5 | \usepackage{thesis} 6 | \usepackage{comment} 7 | \usepackage{subfig} 8 | \usepackage{lipsum} 9 | \usepackage[tableposition=top]{caption} 10 | \usepackage[Glenn]{fncychap} % Available options: Sonny, Lenny, Glenn, Conny, Rejne, Bjarne, Bjornstr 11 | % \pagestyle{empty} 12 | %\renewcommand{\headrulewidth}{0pt} % remove header line 13 | \usepackage{lipsum} 14 | \usepackage[colorlinks=True, linktocpage=true]{hyperref} 15 | \hypersetup{ 16 | citecolor= blue, 17 | urlcolor= blue, 18 | } 19 | 20 | 21 | \newcommand{\department}{Department of Computer Science \& Engineering} 22 | \newcommand{\university}{Premier University, Chattogram} 23 | 24 | \newcommand{\chairmanName}{Prof. Dr. Taufique Sayeed} 25 | \newcommand{\chairmanDesignation}{Chairman} 26 | 27 | \newcommand{\supervisorName}{Anik Sen} 28 | \newcommand{\supervisorDesignation}{Lecturer} 29 | 30 | \newcommand{\firstAuthorName}{Faiham Sharif Fahim} 31 | \newcommand{\firstAuthorId}{1502910201022} 32 | \newcommand{\secondAuthorName}{Mohammad Naimul Alam} 33 | \newcommand{\secondAuthorId}{1502910201033} 34 | \newcommand{\thirdAuthorName}{Belal uddin touhin} 35 | \newcommand{\thirdAuthorId}{1502910201052} 36 | 37 | \newcommand{\projectTitle}{Soccer Event Classification Using Convolutional Neural Network \& Gated Recurrent Unit} 38 | 39 | \begin{document} 40 | 41 | \pagenumbering{roman} 42 | \include{title_page} 43 | \pagebreak 44 | 45 | 46 | \include{author_declaration} 47 | \pagebreak 48 | 49 | \include{signature} 50 | \pagebreak 51 | 52 | 53 | \input{dedication} 54 | \pagebreak 55 | 56 | \renewcommand{\contentsname}{Table of Contents} 57 | \tableofcontents 58 | 59 | \clearpage 60 | \setcounter{figure}{0} 61 | \addcontentsline{toc}{chapter}{List of Figures} 62 | \listoffigures 63 | 64 | \clearpage 65 | \addcontentsline{toc}{chapter}{List of Tables} 66 | \listoftables 67 | 68 | 69 | \clearpage 70 | \input{abstract} 71 | 72 | %\phantomsection 73 | 74 | 75 | % Introduction 76 | \chapter{Introduction}\label{chapter:chapter1} 77 | \setcounter{page}{0} 78 | \pagenumbering{arabic} 79 | \input{chapters/introduction} 80 | 81 | % Literature Review 82 | \chapter{Literature Review} 83 | \input{chapters/literature_review} 84 | 85 | % Proposed Methodology 86 | \chapter{Methodology/Proposed Method/Workflow} 87 | \input{chapters/methodology} 88 | 89 | % Results and Discussion 90 | \chapter{Experimental Results and Discussion} 91 | \input{chapters/results} 92 | 93 | 94 | % Bibliography 95 | \pagebreak 96 | \phantomsection 97 | \addcontentsline{toc}{chapter}{Bibliography} 98 | \nocite{*} 99 | \printbibliography 100 | \pagebreak 101 | \phantomsection 102 | 103 | \end{document} 104 | -------------------------------------------------------------------------------- /thesis.sty: -------------------------------------------------------------------------------- 1 | \ProvidesPackage{thesis} 2 | 3 | 4 | \usepackage[subfigure]{tocloft} 5 | 6 | \usepackage{scrextend} % 7 | \usepackage{graphicx} % 8 | \usepackage{wrapfig} % Wrap images properly around text 9 | 10 | \usepackage[dvipsnames]{xcolor} % 11 | \usepackage[a4paper, top=25mm, bottom=25mm, left=30mm, right=30mm]{geometry} 12 | \usepackage[estonian,greek,english]{babel} % Add Estonian / English language support & Greek for Euro Symbol 13 | \usepackage{longtable} % 14 | \usepackage{multirow} % 15 | \usepackage{todonotes} % 16 | 17 | 18 | \usepackage{xcolor} 19 | \definecolor{astral}{RGB}{46,116,181} 20 | \usepackage{enumitem} 21 | \usepackage{pifont} 22 | 23 | \let\cftsubsecpagefont\cftsecpagefont 24 | 25 | %\usepackage{subfig} 26 | \usepackage{float} % 27 | \usepackage{blindtext} % 28 | \usepackage{chngcntr}\counterwithin{table}{chapter}% 29 | %\counterwithout{figure}{chapter} % 30 | \counterwithin{figure}{chapter} 31 | \usepackage[T2A,T1]{fontenc} % 32 | \usepackage[utf8]{inputenc} % 33 | \usepackage{amssymb} % For square itemized lists 34 | \renewcommand{\labelitemi}{\tiny$\blacksquare$} % For square itemized lists 35 | \usepackage[format=hang,singlelinecheck=0,font={sf,small},labelfont=bf]{subfig} 36 | \usepackage{caption} % 37 | \captionsetup{labelsep=period} 38 | %\renewcommand*\thesubfloatfigure{\themainfigure(\alph{subfloatfigure})} 39 | %\captionsetup[subfigure]{subrefformat=simple,labelformat=simple,listofformat=subsimple} 40 | %\renewcommand\thesubfigure{(\alph{subfigure})} 41 | %\captionsetup[subfloat]{farskip=1pt,captionskip=1pt, justification=centering} 42 | \usepackage{verbatimbox} % To put program code in the center using Verbatim 43 | \usepackage{amsmath} % For mathematical facilities 44 | 45 | \usepackage[english]{babel} 46 | 47 | \usepackage[ 48 | backend=biber, 49 | style=ieee, 50 | ]{biblatex} % For references 51 | \usepackage{csquotes} % For references 52 | \addbibresource{references.bib} % Adds references file 53 | \emergencystretch=1em % To prevent overfull hbox in \printbibliography 54 | \usepackage[final]{microtype} % To prevent overfull hbox in \printbibliography - option 2 55 | 56 | \usepackage{times} % 57 | \setlength{\parindent}{0cm} % 58 | \usepackage{setspace} % 59 | \onehalfspacing % 60 | \setlength{\parskip}{\baselineskip} % 61 | \newcounter{ltrow} % 62 | \usepackage{listings} % 63 | \usepackage{needspace} % To keep text together when needed use, %\needspace{6em} 64 | 65 | \usepackage{titlesec} % \usepackage[Lenny]{sty/fncychapleo} % Title formatting 66 | %\titleformat{\chapter}{\normalfont\LARGE\bfseries}{\thechapter.}{1em}{} % 67 | \usepackage{tabularx} 68 | 69 | % \titleformat{\chapter}[display] 70 | % {\bfseries\Large} 71 | % {\begin{tabularx}{\linewidth}{@{}Xl@{}} 72 | % \raisebox{3ex}{\rule[-1.8ex]{\linewidth}{5pt}} 73 | % & \textsuperscript{\fontsize{30}{60}\selectfont{Chapter}} 74 | % {\fontsize{70}{60}\selectfont\thechapter}\end{tabularx}} 75 | % {10 pt} 76 | % {\bfseries\fontsize{25}{20}\selectfont} 77 | % \titlespacing*{\chapter}{0pt}{3.5ex plus 1ex minus .2ex}{2.3ex plus .2ex} 78 | 79 | \titlespacing*{\section}{0pt}{0pt}{0pt} 80 | \titlespacing*{\subsection}{0pt}{0pt}{0pt} 81 | % \titlespacing*{\subsubsection}{0pt}{0pt}{-10pt} 82 | % \titleformat{\section}[hang]{\normalfont\large\bf}{\thesection}{1em}{}[] 83 | % \titleformat{\subsection}[hang]{\normalfont\large\bf}{\thesubsection}{1em}{}[] 84 | % \titleformat{\subsubsection}[hang]{\normalfont\normalsize\bf}{\thesubsubsection}{1em}{}[] 85 | 86 | \usepackage{enumitem} \usepackage[noend]{algpseudocode} % Sets list spacing 87 | \setlist[itemize]{noitemsep, topsep=0pt} % 88 | \setlist[enumerate]{noitemsep, topsep=0pt} % 89 | \usepackage{tocloft} % Adds control over Table of Content style % 90 | \renewcommand{\cfttoctitlefont}{\LARGE\bfseries} % 91 | \renewcommand{\cftloftitlefont}{\LARGE\bfseries} % 92 | \renewcommand{\cftlottitlefont}{\LARGE\bfseries} % 93 | \renewcommand{\cftaftertoctitle}{\hfill\hfill} % 94 | \renewcommand{\cftafterloftitle}{\hfill} % 95 | \renewcommand{\cftafterlottitle}{\hfill} % 96 | \setlength{\cftbeforetoctitleskip}{0em} % 97 | \setlength{\cftbeforeloftitleskip}{0em} % 98 | \setlength{\cftbeforelottitleskip}{0em} % % 99 | \usepackage{booktabs} 100 | % \usepackage{subcaption} comment by anik 101 | %\usepackage{tocbibind} 102 | \usepackage[linesnumbered,ruled,vlined]{algorithm2e} 103 | \DontPrintSemicolon 104 | \SetKwInput{KwInput}{Input} % Set the Input 105 | \SetKwInput{KwOutput}{Output} 106 | \SetKwData{KwData}{Data} 107 | 108 | \usepackage{fancyhdr} 109 | \pagestyle{fancy} 110 | \fancyhf{} 111 | \fancyhead[L]{} 112 | \fancyhead[R]{\nouppercase\rightmark} 113 | \renewcommand{\headrulewidth}{0.4pt} 114 | \cfoot{\thepage} 115 | \setcounter{secnumdepth}{4} 116 | \usepackage[utf8]{inputenc} 117 | \DeclareUnicodeCharacter{0301}{} 118 | 119 | \usepackage{rotating} 120 | \usepackage[toc,title, titletoc]{appendix} 121 | 122 | \usepackage{gensymb} 123 | \newcommand\tab[1][1cm]{\hspace*{#1}} 124 | \makeatletter 125 | \def\BState{\State\hskip-\ALG@thistlm} 126 | \makeatother 127 | \usepackage{algpseudocode} 128 | \usepackage{tikz} 129 | \usepackage{gensymb} 130 | \usetikzlibrary{shapes.geometric,arrows} 131 | \usetikzlibrary{positioning} 132 | %%%%%%%%%%% 133 | --------------------------------------------------------------------------------