├── .gitignore ├── README.md ├── amt ├── __init__.py ├── admin.py ├── apps.py ├── constants.py ├── consumers.py ├── migrations │ ├── 0001_initial.py │ ├── 0002_auto_20170501_1309.py │ ├── 0003_feedback.py │ ├── 0004_auto_20170502_0422.py │ ├── 0005_imageranking_score.py │ ├── 0006_auto_20170502_1849.py │ ├── 0007_auto_20170502_1933.py │ ├── 0008_auto_20170707_1013.py │ └── __init__.py ├── models.py ├── routing.py ├── sender.py ├── static │ ├── css │ │ ├── scrollbar.css │ │ └── style.css │ ├── images │ │ ├── Preloader_2.gif │ │ ├── abot.png │ │ ├── bot.jpg │ │ └── new_bot.png │ ├── js │ │ ├── mixitup.min.js │ │ └── queryparam_helper.js │ └── slack_sound.mp3 ├── templates │ └── amt │ │ ├── base.html │ │ ├── feedback.html │ │ ├── index.html │ │ ├── intro.html │ │ ├── loader.html │ │ ├── modal.html │ │ ├── mturk.html │ │ └── plot.html ├── templatetags │ ├── __init__.py │ └── range.py ├── urls.py ├── utils.py └── views.py ├── chatbot ├── __init__.py ├── dataloader.lua ├── im-hist-enc-dec-answerer │ ├── lstm.lua │ └── specificModel.lua ├── modelAnswerer.lua ├── optim_updates.lua ├── opts.lua ├── prepro_ques.py ├── rl_evaluate.lua ├── rl_worker.py ├── sl_evaluate.lua ├── sl_worker.py ├── testAnswerer.lua └── utils.lua ├── data └── pools.json ├── demo ├── __init__.py ├── asgi.py ├── settings.py ├── urls.py └── wsgi.py ├── download_models.sh ├── manage.py ├── ques_feat.json ├── requirements.txt └── static └── img └── guesswhich.png /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GT-Vision-Lab/GuessWhich/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GT-Vision-Lab/GuessWhich/HEAD/README.md -------------------------------------------------------------------------------- /amt/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /amt/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GT-Vision-Lab/GuessWhich/HEAD/amt/admin.py -------------------------------------------------------------------------------- /amt/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GT-Vision-Lab/GuessWhich/HEAD/amt/apps.py -------------------------------------------------------------------------------- /amt/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GT-Vision-Lab/GuessWhich/HEAD/amt/constants.py -------------------------------------------------------------------------------- /amt/consumers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GT-Vision-Lab/GuessWhich/HEAD/amt/consumers.py -------------------------------------------------------------------------------- /amt/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GT-Vision-Lab/GuessWhich/HEAD/amt/migrations/0001_initial.py -------------------------------------------------------------------------------- /amt/migrations/0002_auto_20170501_1309.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GT-Vision-Lab/GuessWhich/HEAD/amt/migrations/0002_auto_20170501_1309.py -------------------------------------------------------------------------------- /amt/migrations/0003_feedback.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GT-Vision-Lab/GuessWhich/HEAD/amt/migrations/0003_feedback.py -------------------------------------------------------------------------------- /amt/migrations/0004_auto_20170502_0422.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GT-Vision-Lab/GuessWhich/HEAD/amt/migrations/0004_auto_20170502_0422.py -------------------------------------------------------------------------------- /amt/migrations/0005_imageranking_score.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GT-Vision-Lab/GuessWhich/HEAD/amt/migrations/0005_imageranking_score.py -------------------------------------------------------------------------------- /amt/migrations/0006_auto_20170502_1849.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GT-Vision-Lab/GuessWhich/HEAD/amt/migrations/0006_auto_20170502_1849.py -------------------------------------------------------------------------------- /amt/migrations/0007_auto_20170502_1933.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GT-Vision-Lab/GuessWhich/HEAD/amt/migrations/0007_auto_20170502_1933.py -------------------------------------------------------------------------------- /amt/migrations/0008_auto_20170707_1013.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GT-Vision-Lab/GuessWhich/HEAD/amt/migrations/0008_auto_20170707_1013.py -------------------------------------------------------------------------------- /amt/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /amt/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GT-Vision-Lab/GuessWhich/HEAD/amt/models.py -------------------------------------------------------------------------------- /amt/routing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GT-Vision-Lab/GuessWhich/HEAD/amt/routing.py -------------------------------------------------------------------------------- /amt/sender.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GT-Vision-Lab/GuessWhich/HEAD/amt/sender.py -------------------------------------------------------------------------------- /amt/static/css/scrollbar.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GT-Vision-Lab/GuessWhich/HEAD/amt/static/css/scrollbar.css -------------------------------------------------------------------------------- /amt/static/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GT-Vision-Lab/GuessWhich/HEAD/amt/static/css/style.css -------------------------------------------------------------------------------- /amt/static/images/Preloader_2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GT-Vision-Lab/GuessWhich/HEAD/amt/static/images/Preloader_2.gif -------------------------------------------------------------------------------- /amt/static/images/abot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GT-Vision-Lab/GuessWhich/HEAD/amt/static/images/abot.png -------------------------------------------------------------------------------- /amt/static/images/bot.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GT-Vision-Lab/GuessWhich/HEAD/amt/static/images/bot.jpg -------------------------------------------------------------------------------- /amt/static/images/new_bot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GT-Vision-Lab/GuessWhich/HEAD/amt/static/images/new_bot.png -------------------------------------------------------------------------------- /amt/static/js/mixitup.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GT-Vision-Lab/GuessWhich/HEAD/amt/static/js/mixitup.min.js -------------------------------------------------------------------------------- /amt/static/js/queryparam_helper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GT-Vision-Lab/GuessWhich/HEAD/amt/static/js/queryparam_helper.js -------------------------------------------------------------------------------- /amt/static/slack_sound.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GT-Vision-Lab/GuessWhich/HEAD/amt/static/slack_sound.mp3 -------------------------------------------------------------------------------- /amt/templates/amt/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GT-Vision-Lab/GuessWhich/HEAD/amt/templates/amt/base.html -------------------------------------------------------------------------------- /amt/templates/amt/feedback.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GT-Vision-Lab/GuessWhich/HEAD/amt/templates/amt/feedback.html -------------------------------------------------------------------------------- /amt/templates/amt/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GT-Vision-Lab/GuessWhich/HEAD/amt/templates/amt/index.html -------------------------------------------------------------------------------- /amt/templates/amt/intro.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GT-Vision-Lab/GuessWhich/HEAD/amt/templates/amt/intro.html -------------------------------------------------------------------------------- /amt/templates/amt/loader.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GT-Vision-Lab/GuessWhich/HEAD/amt/templates/amt/loader.html -------------------------------------------------------------------------------- /amt/templates/amt/modal.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GT-Vision-Lab/GuessWhich/HEAD/amt/templates/amt/modal.html -------------------------------------------------------------------------------- /amt/templates/amt/mturk.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GT-Vision-Lab/GuessWhich/HEAD/amt/templates/amt/mturk.html -------------------------------------------------------------------------------- /amt/templates/amt/plot.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GT-Vision-Lab/GuessWhich/HEAD/amt/templates/amt/plot.html -------------------------------------------------------------------------------- /amt/templatetags/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /amt/templatetags/range.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GT-Vision-Lab/GuessWhich/HEAD/amt/templatetags/range.py -------------------------------------------------------------------------------- /amt/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GT-Vision-Lab/GuessWhich/HEAD/amt/urls.py -------------------------------------------------------------------------------- /amt/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GT-Vision-Lab/GuessWhich/HEAD/amt/utils.py -------------------------------------------------------------------------------- /amt/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GT-Vision-Lab/GuessWhich/HEAD/amt/views.py -------------------------------------------------------------------------------- /chatbot/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /chatbot/dataloader.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GT-Vision-Lab/GuessWhich/HEAD/chatbot/dataloader.lua -------------------------------------------------------------------------------- /chatbot/im-hist-enc-dec-answerer/lstm.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GT-Vision-Lab/GuessWhich/HEAD/chatbot/im-hist-enc-dec-answerer/lstm.lua -------------------------------------------------------------------------------- /chatbot/im-hist-enc-dec-answerer/specificModel.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GT-Vision-Lab/GuessWhich/HEAD/chatbot/im-hist-enc-dec-answerer/specificModel.lua -------------------------------------------------------------------------------- /chatbot/modelAnswerer.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GT-Vision-Lab/GuessWhich/HEAD/chatbot/modelAnswerer.lua -------------------------------------------------------------------------------- /chatbot/optim_updates.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GT-Vision-Lab/GuessWhich/HEAD/chatbot/optim_updates.lua -------------------------------------------------------------------------------- /chatbot/opts.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GT-Vision-Lab/GuessWhich/HEAD/chatbot/opts.lua -------------------------------------------------------------------------------- /chatbot/prepro_ques.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GT-Vision-Lab/GuessWhich/HEAD/chatbot/prepro_ques.py -------------------------------------------------------------------------------- /chatbot/rl_evaluate.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GT-Vision-Lab/GuessWhich/HEAD/chatbot/rl_evaluate.lua -------------------------------------------------------------------------------- /chatbot/rl_worker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GT-Vision-Lab/GuessWhich/HEAD/chatbot/rl_worker.py -------------------------------------------------------------------------------- /chatbot/sl_evaluate.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GT-Vision-Lab/GuessWhich/HEAD/chatbot/sl_evaluate.lua -------------------------------------------------------------------------------- /chatbot/sl_worker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GT-Vision-Lab/GuessWhich/HEAD/chatbot/sl_worker.py -------------------------------------------------------------------------------- /chatbot/testAnswerer.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GT-Vision-Lab/GuessWhich/HEAD/chatbot/testAnswerer.lua -------------------------------------------------------------------------------- /chatbot/utils.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GT-Vision-Lab/GuessWhich/HEAD/chatbot/utils.lua -------------------------------------------------------------------------------- /data/pools.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GT-Vision-Lab/GuessWhich/HEAD/data/pools.json -------------------------------------------------------------------------------- /demo/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /demo/asgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GT-Vision-Lab/GuessWhich/HEAD/demo/asgi.py -------------------------------------------------------------------------------- /demo/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GT-Vision-Lab/GuessWhich/HEAD/demo/settings.py -------------------------------------------------------------------------------- /demo/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GT-Vision-Lab/GuessWhich/HEAD/demo/urls.py -------------------------------------------------------------------------------- /demo/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GT-Vision-Lab/GuessWhich/HEAD/demo/wsgi.py -------------------------------------------------------------------------------- /download_models.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GT-Vision-Lab/GuessWhich/HEAD/download_models.sh -------------------------------------------------------------------------------- /manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GT-Vision-Lab/GuessWhich/HEAD/manage.py -------------------------------------------------------------------------------- /ques_feat.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GT-Vision-Lab/GuessWhich/HEAD/ques_feat.json -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GT-Vision-Lab/GuessWhich/HEAD/requirements.txt -------------------------------------------------------------------------------- /static/img/guesswhich.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GT-Vision-Lab/GuessWhich/HEAD/static/img/guesswhich.png --------------------------------------------------------------------------------