From 31336ec2533729f5b00fc98a5db5d0418203aeed Mon Sep 17 00:00:00 2001 From: Vasil Zlatanov Date: Tue, 20 Nov 2018 15:38:00 +0000 Subject: Add code to makefile --- report/makefile | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) (limited to 'report') diff --git a/report/makefile b/report/makefile index 6359a42..03a10e1 100644 --- a/report/makefile +++ b/report/makefile @@ -10,8 +10,16 @@ FLAGS = --bibliography=bibliography.bib \ FLAGS_PDF = --template=template.latex -all: pdf +all: pdf code +code: + echo '\small' > build/code.aux + echo '~~~~ {.python .numberLinese}' >> build/code.aux + cat ../train.py >> build/code.aux + echo -n '~~~~' >> build/code.aux + pandoc -V geometry:margin=3em \ + -o build/code.pdf build/code.aux + pdfjoin build/paper.pdf build/code.pdf -o build/paper+code.pdf pdf: pandoc -o $(OUTPUT)/paper.pdf $(FLAGS) $(FLAGS_PDF) $(FILES) -- cgit v1.2.3-54-g00ecf From 112f266ee461706fca11724225fb6a154865f216 Mon Sep 17 00:00:00 2001 From: Vasil Zlatanov Date: Tue, 20 Nov 2018 15:42:50 +0000 Subject: Fix more grammer in metadata --- report/metadata.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'report') diff --git a/report/metadata.yaml b/report/metadata.yaml index b60aa7e..b404339 100755 --- a/report/metadata.yaml +++ b/report/metadata.yaml @@ -9,10 +9,10 @@ numbersections: yes lang: en babel-lang: english abstract: | - In this coursework we will analyze the benefits of different face recognition methods. - We analyze dimensionality reduction with PCA, obtaining a generative subspace which is very reliable for face reconstruction. Furthermore, we evaluate LDA, which is able to perform reliable classification, generating a discriminative subspace, where separation of classes is easier to identify. + In this coursework we analyze the benefits of different face recognition methods. + We look at dimensionality reduction with PCA, obtaining a generative subspace which is very reliable for face reconstruction. Furthermore, we evaluate LDA, which is able to perform reliable classification, generating a discriminative subspace, where separation of classes is easier to identify. - In the final part we analyze the benefits of using a combined version of the two methods using Fisherfaces and evaluate the benefits of ensemble learning with regards to data and feature space ranodmisation. We find that combined PCA-LDA obtains lower classification error PCA or LDA individually, while also maintaining a low computational costs, allowing us to take advantage of ensemble learning. + In the final part we analyze the benefits of using a combined version of the two methods using Fisherfaces and evaluate the benefits of ensemble learning with regards to data and feature space ranodmisation. We find that combined PCA-LDA obtains lower classification error than PCA or LDA individually, while also maintaining low computational costs, allowing us to take advantage of ensemble learning. The dataset used includes 52 classes with 10 samples each. The number of features is 2576 (46x56). ... -- cgit v1.2.3-54-g00ecf From 43e283bcc556c2581b99f7f3cc9c62c4ca0cef8d Mon Sep 17 00:00:00 2001 From: Vasil Zlatanov Date: Tue, 20 Nov 2018 15:43:43 +0000 Subject: Add code section --- report/paper.md | 2 ++ 1 file changed, 2 insertions(+) (limited to 'report') diff --git a/report/paper.md b/report/paper.md index f5b1934..fc784b7 100755 --- a/report/paper.md +++ b/report/paper.md @@ -514,4 +514,6 @@ We know that $S\boldsymbol{u\textsubscript{i}} = \lambda \textsubscript{i}\bolds From here it follows that AA\textsuperscript{T} and A\textsuperscript{T}A have the same eigenvalues and their eigenvectors follow the relationship $\boldsymbol{u\textsubscript{i}} = A\boldsymbol{v\textsubscript{i}}$ +# Code +All code and \LaTeX sources are available at [https://git.skozl.com/e4-pattern/](https://git.skozl.com/e4-pattern/). -- cgit v1.2.3-54-g00ecf From daa03cd78886729e2c54c50a04addefc3e60eb8b Mon Sep 17 00:00:00 2001 From: Vasil Zlatanov Date: Tue, 20 Nov 2018 15:50:08 +0000 Subject: Increase code margin --- report/makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'report') diff --git a/report/makefile b/report/makefile index 03a10e1..afbac8d 100644 --- a/report/makefile +++ b/report/makefile @@ -17,7 +17,7 @@ code: echo '~~~~ {.python .numberLinese}' >> build/code.aux cat ../train.py >> build/code.aux echo -n '~~~~' >> build/code.aux - pandoc -V geometry:margin=3em \ + pandoc -V geometry:margin=5em \ -o build/code.pdf build/code.aux pdfjoin build/paper.pdf build/code.pdf -o build/paper+code.pdf pdf: -- cgit v1.2.3-54-g00ecf