- Notifications
You must be signed in to change notification settings - Fork31
Code release for Hu et al. Segmentation from Natural Language Expressions. in ECCV, 2016
License
NotificationsYou must be signed in to change notification settings
ronghanghu/text_objseg
Folders and files
Name | Name | Last commit message | Last commit date | |
---|---|---|---|---|
Repository files navigation
This repository contains the code for the following paper:
- R. Hu, M. Rohrbach, T. Darrell,Segmentation from Natural Language Expressions. in ECCV, 2016. (PDF)
@article{hu2016segmentation, title={Segmentation from Natural Language Expressions}, author={Hu, Ronghang and Rohrbach, Marcus and Darrell, Trevor}, journal={Proceedings of the European Conference on Computer Vision (ECCV)}, year={2016}}
Project Page:http://ronghanghu.com/text_objseg
- Install Google TensorFlow (v1.0.0 or higher) following the instructionshere.
- Download this repository or clone with Git, and then
cd
into the root directory of the repository.
- Download the trained models:
exp-referit/tfmodel/download_trained_models.sh
. - Run the language-based segmentation model demo in
./demo/text_objseg_demo.ipynb
withJupyter Notebook (IPython Notebook).
- Download ReferIt dataset:
exp-referit/referit-dataset/download_referit_dataset.sh
. - Download VGG-16 network parameters trained on ImageNET 1000 classes:
models/convert_caffemodel/params/download_vgg_params.sh
.
- You may need to add the repository root directory to Python's module path:
export PYTHONPATH=.:$PYTHONPATH
. - Build training batches for bounding boxes:
python exp-referit/build_training_batches_det.py
. - Build training batches for segmentation:
python exp-referit/build_training_batches_seg.py
. - Select the GPU you want to use during training:
export GPU_ID=<gpu id>
. Use 0 for<gpu id>
if you only have one GPU on your machine. - Train the language-based bounding box localization model:
python exp-referit/exp_train_referit_det.py $GPU_ID
. - Train the low resolution language-based segmentation model (from the previous bounding box localization model):
python exp-referit/init_referit_seg_lowres_from_det.py && python exp-referit/exp_train_referit_seg_lowres.py $GPU_ID
. - Train the high resolution language-based segmentation model (from the previous low resolution segmentation model):
python exp-referit/init_referit_seg_highres_from_lowres.py && python exp-referit/exp_train_referit_seg_highres.py $GPU_ID
.
Alternatively, you may skip the training procedure and download the trained models directly:exp-referit/tfmodel/download_trained_models.sh
.
- Select the GPU you want to use during testing:
export GPU_ID=<gpu id>
. Use 0 for<gpu id>
if you only have one GPU on your machine. Also, you may need to add the repository root directory to Python's module path:export PYTHONPATH=.:$PYTHONPATH
. - Run evaluation for the high resolution language-based segmentation model:
python exp-referit/exp_test_referit_seg.py $GPU_ID
This should reproduce the results in the paper. - You may also evaluate the language-based bounding box localization model:
python exp-referit/exp_test_referit_det.py $GPU_ID
The results can be compared tothis paper.
About
Code release for Hu et al. Segmentation from Natural Language Expressions. in ECCV, 2016
Resources
License
Uh oh!
There was an error while loading.Please reload this page.
Stars
Watchers
Forks
Releases
No releases published
Packages0
No packages published