Skip to content

Latest commit

 

History

History

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Exploring and Visualizing Referring Expression Comprehension

Feel free to use this code for your own thesis & slides. Just clone the repository,

git clone https://gitlab.com/david-alvarez-rosa/bachelor-thesis.git

and enjoy :).

Thesis

A PDF version can be found at Referring Expression Comprehension - David Álvarez Rosa.pdf.

To compile this document the first time, all the images must be downloaded (since they are not in version control). To do this, download them manually from https://recomprehension.com/Thesis/Figures/Images/ or execute the following command (from the Thesis directory),

# cd bachelor-thesis/Thesis/  # only if needed
wget --recursive \
     --no-parent \
     --no-directories \
     --directory-prefix=Figures/Images/ \
     https://recomprehension.com/Thesis/Figures/Images/

Then compile with,

pdflatex -shell-escape Thesis.tex
biber Thesis
makeglossaries Thesis
pdflatex -shell-escape Thesis.tex
pdflatex -shell-escape Thesis.tex

Note It will take a long time to compile for the first time (as you will be externalizing figures). From then on compile time will be drastically reduced (you can always use \includeonly{} when editing).

Slides

A PDF version can be found at Referring Expression Comprehension (Slides) - David Álvarez Rosa.pdf.

To compile this document the first time, all the images must be downloaded (since they are not in version control). To do this, download them manually from https://recomprehension.com/Thesis/Figures/Images/ or execute the following command (from the Thesis directory),

wget --recursive \
     --no-parent \
     --no-directories \
     --directory-prefix=Figures/Images/ \
     https://recomprehension.com/Thesis/Figures/Images/

Then compile with,

pdflatex -shell-escape Slides.tex
biber Slides
makeglossaries Slides
pdflatex -shell-escape Slides.tex
pdflatex -shell-escape Slides.tex

Note It will take a long time to compile for the first time (as you will be externalizing figures). From then on compile time will be drastically reduced (you can always use \includeonly{} when editing).