Skip to content

Commit

Permalink
Fix typo in proposal report
Browse files Browse the repository at this point in the history
  • Loading branch information
nitish-kulkarni committed Nov 12, 2017
1 parent 7725766 commit c493d78
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion data_processing/pos_tag.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
nlp = spacy.load('en')

def postags(question):
return [(token.text, token.pos_) for token in nlp(question.decode('utf-8'))]
return [(str(token.text), str(token.pos_)) for token in nlp(question.decode('utf-8'))]

def main():
for line in sys.stdin:
Expand Down
4 changes: 2 additions & 2 deletions proposal/vqa-proposal.tex
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
\usepackage{nicefrac} % compact symbols for 1/2, etc.
\usepackage{microtype} % microtypography

\title{Semantic Textual Similarity}
\title{Visual Question Answering}
\author{
Prakruthi Prabhakar\\
Computer Science Department\\
Expand Down Expand Up @@ -69,4 +69,4 @@ \section*{References}

[7] Wu, Q., Teney, D., Wang, P., Shen, C., Dick, A., \& van den Hengel, A. (2017). Visual question answering: A survey of methods and datasets. Computer Vision and Image Understanding.\\

\end{document}
\end{document}

0 comments on commit c493d78

Please sign in to comment.