= Accurate Word Extraction from Documents with Complex Layouts = '''Type''': An interesting and practical bachelor thesis. You should have a basic understanding of Machine Learning and optionally, Deep Learning. Programming language Python is preferred. '''Background info''': Many text documents are layout-based and contain text that can consist of different fonts and can be arranged in multiple columns. Think of books, newspapers or scientific research papers. There are so called ''Manhattan'' layouts and ''non-Manhattan'' layouts. In Manhattan layouts, all columns are rectangular and aligned parallel to the page borders. In non-Manhattan layouts, the columns are of no fixed shape and can be aligned arbitrarily. Here are two examples: {{attachment:manhattan-layout.jpg||height=400,align=bottom}} and {{attachment:non-manhattan-layout.jpg||height=400,align=bottom}} The left document shows a Manhattan-layout, the right document a non-Manhattan-layout. In the non-Manhattan layout, note in particular the two text blocks between in the middle of the page. The decision that both text blocks are not part of the two columns (but are two distinct text blocks) might be easy for human readers, but quite challenging for computers.<
><
> '''Goal''': Extracting words column-wise from both, Manhattan layouts and non-Manhattan layouts, using machine learning techniques; without mixing words from different columns. ''Challenge 1'': Layout-based documents (in particular: PDF documents) often provide the text only character-wise (but not word-wise). There are further typically no whitespaces. Thus, the boundaries of words must be derived from e.g., analyzing the spacings between the characters. But the spacings can vary from line to line and even within a line there is no fixed rule to determine the extent of a word from the spacings alone. Here is an example: {{attachment:word-boundaries.jpg||width=200}} The blue boxes are the bounding boxes of the characters. Note the small spacings between most of the characters and in particular, the direct adjacency of the two f's (between which there is actually a word boundary). Based on the spacings alone, the characters might be extracted as the following six words: ''"s e r iffo n t"''. However, they should be extracted as the two words ''"serif font"''. ''Challenge 2'': Internally, layout-based documents can store the characters in an order interleaving between the columns. If the characters are processed in that order, extracting the words correctly is obviously impossible. '''Subgoal 1''': Design, implement and train a (supervised) machine learning model for a fast ( ! ) identification of columns. This implies to create large and diverse training data. '''Subgoal 2''': Design, implement and train a language model in order to identify the words contained in each column, based on the characters themselves and further features like the spacings between characters or their fonts. This implies again to create large and diverse training data. '''Subgoal 3''': A thorough evaluation of both approaches.