diff options
author | Vasil Zlatanov <v@skozl.com> | 2018-12-14 12:03:54 +0000 |
---|---|---|
committer | Vasil Zlatanov <v@skozl.com> | 2018-12-14 12:03:54 +0000 |
commit | 97be31277abec082f2d2e6d15d9b5edc0268b15a (patch) | |
tree | 83dcd314fd732311b6bba24a9219546bbe476f96 /report | |
parent | 2a8fad756d1b8c43381fee68d92d29543f69d2f0 (diff) | |
parent | bc4aceea287176c4f6050ccd1c67339e774ea6aa (diff) | |
download | vz215_np1915-97be31277abec082f2d2e6d15d9b5edc0268b15a.tar.gz vz215_np1915-97be31277abec082f2d2e6d15d9b5edc0268b15a.tar.bz2 vz215_np1915-97be31277abec082f2d2e6d15d9b5edc0268b15a.zip |
Merge branch 'master' of skozl.com:e4-pattern
Diffstat (limited to 'report')
-rw-r--r-- | report/paper.md | 11 | ||||
-rw-r--r-- | report/template.latex | 1 |
2 files changed, 6 insertions, 6 deletions
diff --git a/report/paper.md b/report/paper.md index 7c57df9..6ebf32d 100644 --- a/report/paper.md +++ b/report/paper.md @@ -268,23 +268,22 @@ Figure \ref{fig:rerank} shows successful re-ranking as performed using the query # Conclusions +Overall the re-ranking method gives a significant improvement to both top $k$ accuracy and mean average precision. +The cost of this operation is an increase in computation time due to the change in complexity from +the baseline, summarized in the table. -\begin{table}[] +\begin{table}[H] \centering \begin{tabular}{ll} \hline \textbf{Process} & \textbf{Complexity} \\ \hline Euclidean Distance Calculatoin & \textit{O(N\textsuperscript{2})} \\ -Mahalanobis Distance Calculatoin & \textit{O(N\textsuperscript{3 (2.708)})} \\ +Mahalanobis Distance Calculatoin & \textit{O(N\textsuperscript{3 (opt:2.708)})} \\ Re-ranking with Jaccard & \textit{O(N\textsuperscript{2}logN)} \\ \hline \end{tabular} \label{tab:complexity} \end{table} -Overall the re-ranking method gives a significant improvement to both top $k$ accuracy and mean average precision. -The cost of this operation is an increase in computation time due to the change in complexity from -the baseline, summarized in the table. - # References diff --git a/report/template.latex b/report/template.latex index 9917236..d459163 100644 --- a/report/template.latex +++ b/report/template.latex @@ -7,6 +7,7 @@ $if(fontfamily)$ $else$ \usepackage{lmodern} $endif$ +\usepackage{float} $if(linestretch)$ \usepackage{setspace} \setstretch{$linestretch$} |