├── .gitignore ├── LICENSE ├── README.md ├── _init_paths.py ├── cap_eval_utils.py ├── coco_voc.py ├── demo.ipynb ├── demo.jpg ├── output ├── README.md ├── v1 │ ├── mil_finetune.prototxt │ ├── mil_finetune.prototxt.deploy │ └── mil_finetune_solver.prototxt └── vgg │ ├── mil_finetune.prototxt │ ├── mil_finetune.prototxt.deploy │ └── mil_finetune_solver.prototxt ├── preprocess.py ├── pycoco ├── run_mil.py ├── scripts ├── script_1.py ├── script_all.py ├── script_cat_annotation_files.py ├── script_download_coco.py ├── script_download_coco.sh └── script_matlab.py ├── sg_utils.py ├── test_model.py └── vocabs ├── vocab_train.pkl └── vocab_words.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s-gupta/visual-concepts/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s-gupta/visual-concepts/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s-gupta/visual-concepts/HEAD/README.md -------------------------------------------------------------------------------- /_init_paths.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s-gupta/visual-concepts/HEAD/_init_paths.py -------------------------------------------------------------------------------- /cap_eval_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s-gupta/visual-concepts/HEAD/cap_eval_utils.py -------------------------------------------------------------------------------- /coco_voc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s-gupta/visual-concepts/HEAD/coco_voc.py -------------------------------------------------------------------------------- /demo.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s-gupta/visual-concepts/HEAD/demo.ipynb -------------------------------------------------------------------------------- /demo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s-gupta/visual-concepts/HEAD/demo.jpg -------------------------------------------------------------------------------- /output/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s-gupta/visual-concepts/HEAD/output/README.md -------------------------------------------------------------------------------- /output/v1/mil_finetune.prototxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s-gupta/visual-concepts/HEAD/output/v1/mil_finetune.prototxt -------------------------------------------------------------------------------- /output/v1/mil_finetune.prototxt.deploy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s-gupta/visual-concepts/HEAD/output/v1/mil_finetune.prototxt.deploy -------------------------------------------------------------------------------- /output/v1/mil_finetune_solver.prototxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s-gupta/visual-concepts/HEAD/output/v1/mil_finetune_solver.prototxt -------------------------------------------------------------------------------- /output/vgg/mil_finetune.prototxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s-gupta/visual-concepts/HEAD/output/vgg/mil_finetune.prototxt -------------------------------------------------------------------------------- /output/vgg/mil_finetune.prototxt.deploy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s-gupta/visual-concepts/HEAD/output/vgg/mil_finetune.prototxt.deploy -------------------------------------------------------------------------------- /output/vgg/mil_finetune_solver.prototxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s-gupta/visual-concepts/HEAD/output/vgg/mil_finetune_solver.prototxt -------------------------------------------------------------------------------- /preprocess.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s-gupta/visual-concepts/HEAD/preprocess.py -------------------------------------------------------------------------------- /pycoco: -------------------------------------------------------------------------------- 1 | coco/PythonAPI/pycocotools -------------------------------------------------------------------------------- /run_mil.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s-gupta/visual-concepts/HEAD/run_mil.py -------------------------------------------------------------------------------- /scripts/script_1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s-gupta/visual-concepts/HEAD/scripts/script_1.py -------------------------------------------------------------------------------- /scripts/script_all.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s-gupta/visual-concepts/HEAD/scripts/script_all.py -------------------------------------------------------------------------------- /scripts/script_cat_annotation_files.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s-gupta/visual-concepts/HEAD/scripts/script_cat_annotation_files.py -------------------------------------------------------------------------------- /scripts/script_download_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s-gupta/visual-concepts/HEAD/scripts/script_download_coco.py -------------------------------------------------------------------------------- /scripts/script_download_coco.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s-gupta/visual-concepts/HEAD/scripts/script_download_coco.sh -------------------------------------------------------------------------------- /scripts/script_matlab.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s-gupta/visual-concepts/HEAD/scripts/script_matlab.py -------------------------------------------------------------------------------- /sg_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s-gupta/visual-concepts/HEAD/sg_utils.py -------------------------------------------------------------------------------- /test_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s-gupta/visual-concepts/HEAD/test_model.py -------------------------------------------------------------------------------- /vocabs/vocab_train.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s-gupta/visual-concepts/HEAD/vocabs/vocab_train.pkl -------------------------------------------------------------------------------- /vocabs/vocab_words.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s-gupta/visual-concepts/HEAD/vocabs/vocab_words.txt --------------------------------------------------------------------------------