Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update to Python 3 and other nice things #8

Open
wants to merge 7 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,2 +1,5 @@
*.pyc
*.swp*

**/*.json
**/*.zip
13 changes: 13 additions & 0 deletions Annotations/download.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
URL=https://s3.amazonaws.com/cvmlp/vqa/mscoco/vqa
TRAIN=v2_Annotations_Train_mscoco.zip
VAL=v2_Annotations_Val_mscoco.zip

if [ ! -f $TRAIN ]; then
wget $URL/$TRAIN
fi
if [ ! -f $VAL ]; then
wget $URL/$VAL
fi

unzip $TRAIN
unzip $VAL
18 changes: 18 additions & 0 deletions Images/download.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
URL=http://images.cocodataset.org/zips
TRAIN=train2014.zip
VAL=val2014.zip
TEST=test2015.zip

if [ ! -f $TRAIN ]; then
wget $URL/$TRAIN
fi
if [ ! -f $VAL ]; then
wget $URL/$VAL
fi
if [ ! -f $TEST ]; then
wget $URL/$TEST
fi

unzip $TRAIN
unzip $VAL
unzip $TEST
89 changes: 0 additions & 89 deletions PythonEvaluationTools/vqaEvalDemo.py

This file was deleted.

1 change: 0 additions & 1 deletion PythonEvaluationTools/vqaEvaluation/__init__.py

This file was deleted.

185 changes: 0 additions & 185 deletions PythonEvaluationTools/vqaEvaluation/vqaEval.py

This file was deleted.

73 changes: 0 additions & 73 deletions PythonHelperTools/vqaDemo.py

This file was deleted.

1 change: 0 additions & 1 deletion PythonHelperTools/vqaTools/__init__.py

This file was deleted.

Loading