Advertisement
Guest User

dissertation

a guest
May 27th, 2018
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Latex 6.75 KB | None | 0 0
  1. % The document class supplies options to control rendering of some standard
  2. % features in the result.  The goal is for uniform style, so some attention
  3. % to detail is *vital* with all fields.  Each field (i.e., text inside the
  4. % curly braces below, so the MEng text inside {MEng} for instance) should
  5. % take into account the following:
  6. %
  7. % - author name       should be formatted as "FirstName LastName"
  8. %   (not "Initial LastName" for example),
  9. % - supervisor name   should be formatted as "Title FirstName LastName"
  10. %   (where Title is "Dr." or "Prof." for example),
  11. % - degree programme  should be "BSc", "MEng", "MSci", "MSc" or "PhD",
  12. % - dissertation title should be correctly capitalised (plus you can have
  13. %   an optional sub-title if appropriate, or leave this field blank),
  14. % - dissertation type should be formatted as one of the following:
  15. %   * for the MEng degree programme either "enterprise" or "research" to
  16. %     reflect the stream,
  17. %   * for the MSc  degree programme "$X/Y/Z$" for a project deemed to be
  18. %     X%, Y% and Z% of type I, II and III.
  19. % - year              should be formatted as a 4-digit year of submission
  20. %   (so 2014 rather than the accademic year, say 2013/14 say).
  21.  
  22. \documentclass[ % the name of the author
  23.                     author={Ivor Shanik Dassenaike},
  24.                 % the name of the supervisor
  25.                 supervisor={Prof. Bogdan Warinschi},
  26.                 % the degree programme
  27.                     degree={BSc},
  28.                 % the dissertation    title (which cannot be blank)
  29.                      title={Topological Data Analysis and its Application to Image Data},
  30.                 % the dissertation subtitle (which can    be blank)
  31.                   subtitle={},
  32.                 % the dissertation     type
  33.                 %  type={},
  34.                 % the year of submission
  35.                       year={2018} ]{dissertation}
  36.  
  37. \begin{document}
  38.  
  39. % =============================================================================
  40.  
  41. % This section simply introduces the structural guidelines.  It can clearly
  42. % be deleted (or commented out) if you use the file as a template for your
  43. % own dissertation: everything following it is in the correct order to use
  44. % as is.
  45.  
  46. \iffalse
  47. \section*{Prelude}
  48. \thispagestyle{empty}
  49.  
  50. A typical dissertation will be structured according to (somewhat) standard
  51. sections, described in what follows.  However, it is hard and perhaps even
  52. counter-productive to generalise: the goal is {\em not} to be prescriptive,
  53. but simply to act as a guideline.  In particular, each page count given is
  54. important but {\em not} absolute: their aim is simply to highlight that a
  55. clear, concise description is better than a rambling alternative that makes
  56. it hard to separate important content and facts from trivia.
  57.  
  58. You can use this document as a \LaTeX-based~\cite{latexbook1,latexbook2}
  59. template for your own dissertation by simply deleting extraneous sections
  60. and content; keep in mind that the associated {\tt Makefile} could be of
  61. use, in particular because it automatically executes \mbox{BibTeX} to
  62. deal with the associated bibliography.  
  63.  
  64. You can, on the other hand, opt {\em not} to use this template; this is a
  65. perfectly acceptable approach.  Note that a standard cover and declaration
  66. of authorship may still be produced online via
  67. \[
  68. \mbox{\url{http://www.cs.bris.ac.uk/Teaching/Resources/cover.html}}
  69. \]
  70.  
  71. \fi
  72. % =============================================================================
  73.  
  74. % This macro creates the standard UoB title page by using information drawn
  75. % from the document class (meaning it is vital you select the correct degree
  76. % title and so on).
  77.  
  78. \maketitle
  79.  
  80. % After the title page (which is a special case in that it is not numbered)
  81. % comes the front matter or preliminaries; this macro signals the start of
  82. % such content, meaning the pages are numbered with Roman numerals.
  83.  
  84. \frontmatter
  85.  
  86. % This macro creates the standard UoB declaration; on the printed hard-copy,
  87. % this must be physically signed by the author in the space indicated.
  88.  
  89. \makedecl
  90.  
  91. % LaTeX automatically generates a table of contents, plus associated lists
  92. % of figures, tables and algorithms.  The former is a compulsory part of the
  93. % dissertation, but if you do not require the latter they can be suppressed
  94. % by simply commenting out the associated macro.
  95. \newpage
  96. \section*{Acknowledgments}
  97. I want to thank Professor Bogdan Warinschi, not only for being my project supervisor and providing useful help in a timely manner, despite the field of research of this thesis still being in its infancy, but also for being my personal tutor throughout my time at this University and helping me in my university career whenever I needed it. I doubt I would have made it through so happily without him.
  98. \newpage
  99.  
  100. \section*{Abstract}
  101. Topological data analysis is an emergent field, and was recently invented as a tool to be used for data analysis. It provides a novel way of learning about or uncovering the structures underpinning data, by transforming the data into a topological shape to analyse it. Its key insight is that data fundamentally has shape, and that this shape matters. Topological data analysis can be used to find out information about the data that is obscured from other methods of analysis, for example hidden patterns. Moreover, a lot of data is very high-dimensional, and as such is very sparse; topological data analysis has an immediate advantage over more traditional analysis techniques in that it assumes its input data is already high-dimensional, so does not have to rely heavily on dimensionality reduction and chosen metrics in order to say anything useful about the data.
  102.  
  103. This thesis will investigate the idea that topological data analysis provides a new and useful way to consider and analyse image data and to learn from it, or about how different content changes the underlying structure of image data. We will use and extend work already done on topological data analysis by applying it to image data, and in doing so find out in a more concrete fashion whether topological data analysis can be used in such a context, and if so, how representing the data in different ways affects how topological data analysis sees the data, if it indeed affects it at all.
  104.  
  105. There are three major parts to do the above: reviewing the state of the art and understanding better exactly what topological data analysis is and how it works; implementing and applying topological data analysis to image data by combining and extending existing techniques to create a toolchain; and analysing the results we get to draw conclusions about how well topological data analysis works using the toolchain created.
  106.  
  107. % =============================================================================
  108.  
  109. \end{document}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement