Code to train and test models to predict importance (saliency) on graphic designs and data visualizations. We also provide links to our models and our train/test data.
For our paper, supplemental material, video, and interactive demo, please visit: http://visimportance.csail.mit.edu/
If you use this code, please consider citing: Zoya Bylinskii, Nam Wook Kim, Peter O'Donovan, Sami Alsheikh, Spandan Madan, Hanspeter Pfister, Fredo Durand, Bryan Russell, and Aaron Hertzmann. "Learning Visual Importance for Graphic Designs and Data Visualizations" (UIST'17)
@inproceedings{predimportance,
author = {Zoya Bylinskii and Nam Wook Kim and Peter O'Donovan and Sami Alsheikh and Spandan Madan
and Hanspeter Pfister and Fredo Durand and Bryan Russell and Aaron Hertzmann},
title = {Learning Visual Importance for Graphic Designs and Data Visualizations},
booktitle = {Proceedings of the 30th Annual ACM Symposium on User Interface Software \& Technology},
year = {2017}
}
This code is written in Python 2.7 using the Caffe library, and is based on code for semantic segmentation.
- We provide pre-trained models for both graphic design and data visualization importance prediction. These models were separately trained on the GDI and Massvis datasets, respectively.
- To make importance predictions on graphic designs, download gdi_fcn16.caffemodel and run get_predictions.py on a desired directory of images.
- To make importance predictions on data visualizations, download massvis_fcn32.caffemodel and run get_predictions.py on a desired directory of images.
- We initialized our models using the pre-trained VOC-FCN32s and fine-tuned the final importance prediction layers and additional skip connections (if applicable).
-
Choose whether to train an importance model for graphic designs or data visualizations. The models have slightly different architectures, and the training data is different.
-
Download the corresponding data. We provide links to all the image files and ground truth importance maps. Once you clone this repo, if you download directly into the
data
directory, then the file paths indicated in the prototxt files should point to the right places. -
Download the pre-trained VOC-FCN32s. Download
surgery.py
from https://github.com/shelhamer/fcn.berkeleyvision.org. -
Check for correct paths to model and data files. Look for the
#CHANGETHIS
comment throughout the files. -
Start training:
python solve.py N
(where N is replaced by the desired GPU ID). -
We provide some starter code for plotting the training curves (loss over iterations).
- We wrote custom data loaders for both models in imp_layers.py and imp_layers_massvis.py which get invoked by the data layers (see top of
train.prototxt
andval.prototxt
files). - We also provide an example of how to load data using a pre-constructed LMDB database, without relying on these custom data loaders (see gdi/fcn16_lmdb). In this case, all the data processing occurs during database construction (see create_lmdb_data.py).
Download problems? If for some reason, any of the data/model download links are not working, please check for them here.