Obj-GAN
Obj-GAN - Official PyTorch Implementation
Pytorch implementation for reproducing Obj-GAN results in the paper Object-driven Text-to-Image Synthesis via Adversarial Training by Wenbo Li*, Pengchuan Zhang*, Lei Zhang, Qiuyuan Huang, Xiaodong He, Siwei Lyu, Jianfeng Gao. (This work was performed when Wenbo was an intern with Microsoft Research).
Picture: If you are asked to draw a picture of several people in their ski gear are in the snow, chances are you will start with an outline of four persons with positioned reasonably in the center of the canvas, then add a sketch of the skis under their feet. Although it is not mentioned in the description, you may decide to add one backpack to each of them to match our common sense. Finally, you carefully finish the details, like painting their clothes blue, their scarves pink and the background white, to make the persons more realistic and the background matches the description better. To make the scene more vivid, you might sketch some brown stones in the snow which indicates that they are in mountains.
Now, there’s a bot that can do that, too.
Dependencies
python 3.6
Pytorch 0.4.1
In addition, please add the project folder to PYTHONPATH and pip install
the following packages:
python-dateutil
easydict
pandas
torchfile
nltk
scikit-image
spacy
PyYAML
cffi
torchtext
dill
Cython
Data
- Download our preprocessed metadata for coco and merge them to
data/coco
- Download coco dataset, extract the images to
data/coco/images
, and extract the annotations todata/coco/insanns
Training
- Train box generator:
cd box_generation
python sample.py --is_training 1
- Train shape generator:
cd shape_generation
./make.sh
python main.py --gpu '0,1', --FLAG
- Train image generator:
cd image_generation
./make.sh
python main.py --gpu '0,1', --FLAG
Pretrained Model
Download and save them to data/coco/pretrained/
- DAMSM for coco
- Inception v3
- VGG19 BN
- Box generator
- Shape generator
- Image generator will be released soon.
Sampling
- Run box generator:
cd box_generation
python sample.py --is_training 0 --load_checkpoint [replace with your ckpt path]
- Run shape generator:
cd shape_generation
python main.py --gpu '0,1', --NET_G [replace with your ckpt path]
- Run image generator:
cd image_generation
python main.py --gpu '0,1', --NET_G [replace with your ckpt path]
Citing Obj-GAN
If you find Obj-GAN useful in your research, please consider citing:
@article{objgan19,
author = {Wenbo Li, Pengchuan Zhang, Lei Zhang, Qiuyuan Huang, Xiaodong He, Siwei Lyu, Jianfeng Gao},
title = {Object-driven Text-to-Image Synthesis via Adversarial Training},
Year = {2019},
booktitle = {{CVPR}}
}