├── Demo_retrieval.ipynb ├── README.md ├── data ├── download_edgebox_proposals.sh ├── metadata │ └── .keep ├── split │ ├── referit_all_imlist.txt │ ├── referit_test_imlist.txt │ ├── referit_train_imlist.txt │ ├── referit_trainval_imlist.txt │ └── referit_val_imlist.txt ├── training │ └── train_imcrop_list.txt └── vocabulary.txt ├── datasets └── ReferIt │ ├── ImageCLEF │ └── download_data.sh │ └── ReferitData │ └── download_ReferitData.sh ├── exp-referit ├── cache_edgebox_feature.py ├── cache_referit_context_features.py ├── cache_referit_local_features.py ├── cache_referit_training_batches.py ├── preprocess_dataset.py └── util │ ├── __init__.py │ ├── __init__.pyc │ ├── io.py │ └── io.pyc ├── external └── download_caffe.sh ├── img ├── illustration.png ├── loss.png ├── natural-language-object-retrieval-model.png ├── w_pretrained.png └── wo_pretrained.png ├── initialize.py ├── models └── download_trained_models.sh ├── prototxt ├── VGG_ILSVRC_16_layers_deploy.prototxt ├── coco_pretrained.prototxt ├── scrc_full_vgg_buffer_50.prototxt ├── scrc_full_vgg_solver.prototxt ├── scrc_kitchen_buffer_50.prototxt ├── scrc_kitchen_solver.prototxt ├── scrc_no_context_vgg_buffer_50.prototxt ├── scrc_no_context_vgg_solver.prototxt ├── scrc_word_to_preds_full.prototxt ├── scrc_word_to_preds_no_context.prototxt └── scrc_word_to_preds_no_spatial_no_context.prototxt ├── retriever.py ├── test.py ├── train.py └── util ├── __init__.py ├── __init__.pyc ├── io.py └── io.pyc /Demo_retrieval.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewliao11/Natural-Language-Object-Retrieval-tensorflow/HEAD/Demo_retrieval.ipynb -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewliao11/Natural-Language-Object-Retrieval-tensorflow/HEAD/README.md -------------------------------------------------------------------------------- /data/download_edgebox_proposals.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewliao11/Natural-Language-Object-Retrieval-tensorflow/HEAD/data/download_edgebox_proposals.sh -------------------------------------------------------------------------------- /data/metadata/.keep: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /data/split/referit_all_imlist.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewliao11/Natural-Language-Object-Retrieval-tensorflow/HEAD/data/split/referit_all_imlist.txt -------------------------------------------------------------------------------- /data/split/referit_test_imlist.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewliao11/Natural-Language-Object-Retrieval-tensorflow/HEAD/data/split/referit_test_imlist.txt -------------------------------------------------------------------------------- /data/split/referit_train_imlist.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewliao11/Natural-Language-Object-Retrieval-tensorflow/HEAD/data/split/referit_train_imlist.txt -------------------------------------------------------------------------------- /data/split/referit_trainval_imlist.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewliao11/Natural-Language-Object-Retrieval-tensorflow/HEAD/data/split/referit_trainval_imlist.txt -------------------------------------------------------------------------------- /data/split/referit_val_imlist.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewliao11/Natural-Language-Object-Retrieval-tensorflow/HEAD/data/split/referit_val_imlist.txt -------------------------------------------------------------------------------- /data/training/train_imcrop_list.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewliao11/Natural-Language-Object-Retrieval-tensorflow/HEAD/data/training/train_imcrop_list.txt -------------------------------------------------------------------------------- /data/vocabulary.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewliao11/Natural-Language-Object-Retrieval-tensorflow/HEAD/data/vocabulary.txt -------------------------------------------------------------------------------- /datasets/ReferIt/ImageCLEF/download_data.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewliao11/Natural-Language-Object-Retrieval-tensorflow/HEAD/datasets/ReferIt/ImageCLEF/download_data.sh -------------------------------------------------------------------------------- /datasets/ReferIt/ReferitData/download_ReferitData.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewliao11/Natural-Language-Object-Retrieval-tensorflow/HEAD/datasets/ReferIt/ReferitData/download_ReferitData.sh -------------------------------------------------------------------------------- /exp-referit/cache_edgebox_feature.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewliao11/Natural-Language-Object-Retrieval-tensorflow/HEAD/exp-referit/cache_edgebox_feature.py -------------------------------------------------------------------------------- /exp-referit/cache_referit_context_features.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewliao11/Natural-Language-Object-Retrieval-tensorflow/HEAD/exp-referit/cache_referit_context_features.py -------------------------------------------------------------------------------- /exp-referit/cache_referit_local_features.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewliao11/Natural-Language-Object-Retrieval-tensorflow/HEAD/exp-referit/cache_referit_local_features.py -------------------------------------------------------------------------------- /exp-referit/cache_referit_training_batches.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewliao11/Natural-Language-Object-Retrieval-tensorflow/HEAD/exp-referit/cache_referit_training_batches.py -------------------------------------------------------------------------------- /exp-referit/preprocess_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewliao11/Natural-Language-Object-Retrieval-tensorflow/HEAD/exp-referit/preprocess_dataset.py -------------------------------------------------------------------------------- /exp-referit/util/__init__.py: -------------------------------------------------------------------------------- 1 | from . import io 2 | -------------------------------------------------------------------------------- /exp-referit/util/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewliao11/Natural-Language-Object-Retrieval-tensorflow/HEAD/exp-referit/util/__init__.pyc -------------------------------------------------------------------------------- /exp-referit/util/io.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewliao11/Natural-Language-Object-Retrieval-tensorflow/HEAD/exp-referit/util/io.py -------------------------------------------------------------------------------- /exp-referit/util/io.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewliao11/Natural-Language-Object-Retrieval-tensorflow/HEAD/exp-referit/util/io.pyc -------------------------------------------------------------------------------- /external/download_caffe.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewliao11/Natural-Language-Object-Retrieval-tensorflow/HEAD/external/download_caffe.sh -------------------------------------------------------------------------------- /img/illustration.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewliao11/Natural-Language-Object-Retrieval-tensorflow/HEAD/img/illustration.png -------------------------------------------------------------------------------- /img/loss.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewliao11/Natural-Language-Object-Retrieval-tensorflow/HEAD/img/loss.png -------------------------------------------------------------------------------- /img/natural-language-object-retrieval-model.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewliao11/Natural-Language-Object-Retrieval-tensorflow/HEAD/img/natural-language-object-retrieval-model.png -------------------------------------------------------------------------------- /img/w_pretrained.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewliao11/Natural-Language-Object-Retrieval-tensorflow/HEAD/img/w_pretrained.png -------------------------------------------------------------------------------- /img/wo_pretrained.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewliao11/Natural-Language-Object-Retrieval-tensorflow/HEAD/img/wo_pretrained.png -------------------------------------------------------------------------------- /initialize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewliao11/Natural-Language-Object-Retrieval-tensorflow/HEAD/initialize.py -------------------------------------------------------------------------------- /models/download_trained_models.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewliao11/Natural-Language-Object-Retrieval-tensorflow/HEAD/models/download_trained_models.sh -------------------------------------------------------------------------------- /prototxt/VGG_ILSVRC_16_layers_deploy.prototxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewliao11/Natural-Language-Object-Retrieval-tensorflow/HEAD/prototxt/VGG_ILSVRC_16_layers_deploy.prototxt -------------------------------------------------------------------------------- /prototxt/coco_pretrained.prototxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewliao11/Natural-Language-Object-Retrieval-tensorflow/HEAD/prototxt/coco_pretrained.prototxt -------------------------------------------------------------------------------- /prototxt/scrc_full_vgg_buffer_50.prototxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewliao11/Natural-Language-Object-Retrieval-tensorflow/HEAD/prototxt/scrc_full_vgg_buffer_50.prototxt -------------------------------------------------------------------------------- /prototxt/scrc_full_vgg_solver.prototxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewliao11/Natural-Language-Object-Retrieval-tensorflow/HEAD/prototxt/scrc_full_vgg_solver.prototxt -------------------------------------------------------------------------------- /prototxt/scrc_kitchen_buffer_50.prototxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewliao11/Natural-Language-Object-Retrieval-tensorflow/HEAD/prototxt/scrc_kitchen_buffer_50.prototxt -------------------------------------------------------------------------------- /prototxt/scrc_kitchen_solver.prototxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewliao11/Natural-Language-Object-Retrieval-tensorflow/HEAD/prototxt/scrc_kitchen_solver.prototxt -------------------------------------------------------------------------------- /prototxt/scrc_no_context_vgg_buffer_50.prototxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewliao11/Natural-Language-Object-Retrieval-tensorflow/HEAD/prototxt/scrc_no_context_vgg_buffer_50.prototxt -------------------------------------------------------------------------------- /prototxt/scrc_no_context_vgg_solver.prototxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewliao11/Natural-Language-Object-Retrieval-tensorflow/HEAD/prototxt/scrc_no_context_vgg_solver.prototxt -------------------------------------------------------------------------------- /prototxt/scrc_word_to_preds_full.prototxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewliao11/Natural-Language-Object-Retrieval-tensorflow/HEAD/prototxt/scrc_word_to_preds_full.prototxt -------------------------------------------------------------------------------- /prototxt/scrc_word_to_preds_no_context.prototxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewliao11/Natural-Language-Object-Retrieval-tensorflow/HEAD/prototxt/scrc_word_to_preds_no_context.prototxt -------------------------------------------------------------------------------- /prototxt/scrc_word_to_preds_no_spatial_no_context.prototxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewliao11/Natural-Language-Object-Retrieval-tensorflow/HEAD/prototxt/scrc_word_to_preds_no_spatial_no_context.prototxt -------------------------------------------------------------------------------- /retriever.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewliao11/Natural-Language-Object-Retrieval-tensorflow/HEAD/retriever.py -------------------------------------------------------------------------------- /test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewliao11/Natural-Language-Object-Retrieval-tensorflow/HEAD/test.py -------------------------------------------------------------------------------- /train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewliao11/Natural-Language-Object-Retrieval-tensorflow/HEAD/train.py -------------------------------------------------------------------------------- /util/__init__.py: -------------------------------------------------------------------------------- 1 | from . import io 2 | -------------------------------------------------------------------------------- /util/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewliao11/Natural-Language-Object-Retrieval-tensorflow/HEAD/util/__init__.pyc -------------------------------------------------------------------------------- /util/io.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewliao11/Natural-Language-Object-Retrieval-tensorflow/HEAD/util/io.py -------------------------------------------------------------------------------- /util/io.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewliao11/Natural-Language-Object-Retrieval-tensorflow/HEAD/util/io.pyc --------------------------------------------------------------------------------