Skip to content

Commit

Permalink
Get abstract functionality back up and working
Browse files Browse the repository at this point in the history
  • Loading branch information
yanii committed Sep 28, 2017
1 parent f03477f commit f8469eb
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 23 deletions.
2 changes: 2 additions & 0 deletions Classes/PhDThesisPSnPDF.cls
Original file line number Diff line number Diff line change
Expand Up @@ -1119,6 +1119,8 @@ wish to left align your text}
\renewcommand{\listoftables}{}
\renewcommand{\printnomencl}{}
\renewcommand{\printnomencl}[1][2]{}
\renewcommand{\printnoidxglossaries}[1][]{}
\renewcommand{\printnoidxglossary}[1][]{}
\renewcommand{\printthesisindex}{}
\renewcommand{\bibname}{}
\renewcommand{\bibliography}[1]{\thispagestyle{empty}}
Expand Down
7 changes: 1 addition & 6 deletions abstract.tex
Original file line number Diff line number Diff line change
@@ -1,7 +1,4 @@
% !TEX root = thesis.tex
\documentclass[thesis]{subfiles}

\begin{document}
% ************************** Thesis Abstract *****************************
% Use `abstract' as an option in the document class to print only the titlepage and the abstract.
\begin{abstract}
Expand All @@ -12,6 +9,4 @@
We present two such structural priors for convolutional neural networks, and evaluate them in state-of-the-art image classification architectures. Both methods are found to improve the generalization of these architectures while also decreasing the size and increasing the efficiency of their training and test-time computation.

Finally, we begin to explore automatically finding structural priors in deep networks by presenting our work on adding conditional computation to deep networks. Although results show this is not optimal, the method shows promise in producing a better compute-generalization trade-off than naive approaches to reducing computation in deep networks, hopefully leading towards a better approach to automatically learning structural priors in deep networks.
\end{abstract}

\end{document}
\end{abstract}
8 changes: 1 addition & 7 deletions declaration.tex
Original file line number Diff line number Diff line change
@@ -1,8 +1,4 @@
% !TEX root = thesis.tex
\documentclass[thesis]{subfiles}

\begin{document}

% ******************************* Thesis Declaration ***************************

\begin{declaration}
Expand All @@ -18,6 +14,4 @@

% Author and date will be inserted automatically from thesis.tex \author \degreedate

\end{declaration}

\end{document}
\end{declaration}
7 changes: 1 addition & 6 deletions dedication.tex
Original file line number Diff line number Diff line change
@@ -1,7 +1,4 @@
% !TEX root = thesis.tex
\documentclass[thesis]{subfiles}

\begin{document}
% ******************************* Thesis Dedidcation ********************************

\begin{dedication}
Expand Down Expand Up @@ -37,6 +34,4 @@
Jackson Wo,
Jenny Yang,
and others.
\end{dedication}

\end{document}
\end{dedication}
9 changes: 5 additions & 4 deletions thesis.tex
Original file line number Diff line number Diff line change
Expand Up @@ -96,6 +96,7 @@
\ifdefineAbstract
\pagestyle{empty}
\includeonly{declaration, abstract}
\renewcommand{\subfile}[1]{}
\fi

% ***************************** Chapter Mode ***********************************
Expand Down Expand Up @@ -124,10 +125,10 @@

\maketitle

\subfile{dedication}
\subfile{declaration}
\subfile{acknowledgement}
\subfile{abstract}
\include{dedication}
\include{declaration}
\include{acknowledgement}
\include{abstract}

% *********************** Adding TOC and List of Figures ***********************

Expand Down

0 comments on commit f8469eb

Please sign in to comment.