├── .gitignore ├── README.md ├── cosine_similarity.py ├── descriptor_cache └── .gitignore ├── encode_qa_and_text.py ├── hasty_machine.py ├── logs └── .gitignore ├── memN2N_text.py ├── memory_network_text.py ├── models └── .gitignore ├── movieqa_importer.py ├── results └── .gitignore ├── sscb.py ├── sscb_cache └── .gitignore ├── tfidf.py ├── train_split.json ├── upload_these └── .gitignore └── utils.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makarandtapaswi/MovieQA_CVPR2016/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makarandtapaswi/MovieQA_CVPR2016/HEAD/README.md -------------------------------------------------------------------------------- /cosine_similarity.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makarandtapaswi/MovieQA_CVPR2016/HEAD/cosine_similarity.py -------------------------------------------------------------------------------- /descriptor_cache/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makarandtapaswi/MovieQA_CVPR2016/HEAD/descriptor_cache/.gitignore -------------------------------------------------------------------------------- /encode_qa_and_text.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makarandtapaswi/MovieQA_CVPR2016/HEAD/encode_qa_and_text.py -------------------------------------------------------------------------------- /hasty_machine.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makarandtapaswi/MovieQA_CVPR2016/HEAD/hasty_machine.py -------------------------------------------------------------------------------- /logs/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makarandtapaswi/MovieQA_CVPR2016/HEAD/logs/.gitignore -------------------------------------------------------------------------------- /memN2N_text.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makarandtapaswi/MovieQA_CVPR2016/HEAD/memN2N_text.py -------------------------------------------------------------------------------- /memory_network_text.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makarandtapaswi/MovieQA_CVPR2016/HEAD/memory_network_text.py -------------------------------------------------------------------------------- /models/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makarandtapaswi/MovieQA_CVPR2016/HEAD/models/.gitignore -------------------------------------------------------------------------------- /movieqa_importer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makarandtapaswi/MovieQA_CVPR2016/HEAD/movieqa_importer.py -------------------------------------------------------------------------------- /results/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makarandtapaswi/MovieQA_CVPR2016/HEAD/results/.gitignore -------------------------------------------------------------------------------- /sscb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makarandtapaswi/MovieQA_CVPR2016/HEAD/sscb.py -------------------------------------------------------------------------------- /sscb_cache/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makarandtapaswi/MovieQA_CVPR2016/HEAD/sscb_cache/.gitignore -------------------------------------------------------------------------------- /tfidf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makarandtapaswi/MovieQA_CVPR2016/HEAD/tfidf.py -------------------------------------------------------------------------------- /train_split.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makarandtapaswi/MovieQA_CVPR2016/HEAD/train_split.json -------------------------------------------------------------------------------- /upload_these/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makarandtapaswi/MovieQA_CVPR2016/HEAD/upload_these/.gitignore -------------------------------------------------------------------------------- /utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makarandtapaswi/MovieQA_CVPR2016/HEAD/utils.py --------------------------------------------------------------------------------