Skip to content
This repository has been archived by the owner on Jan 10, 2023. It is now read-only.

google/tim-gan

Text as Neural Operator: Image Manipulation by Text Instruction

This is the code for the paper:

Text as Neural Operator: Image Manipulation by Text Instruction
Tianhao Zhang, Hung-Yu Tseng, Lu Jiang, Weilong Yang, Honglak Lee, Irfan Essa

Please note that this is not an officially supported Google product. And this is the reproduced, not the original code.

If you find this code useful in your research then please cite

TODO: Citation

Introduction

In this paper, we study a new task that allows users to edit an input image using language instructions.

Problem Overview

The key idea is to treat language as neural operators to locally modify the image feature. To this end, our model decomposes the generation process into finding where (spatial region) and how (text operators) to apply modifications. We show that the proposed model performs favorably against recent baselines on three datasets.

Method

Installation

Clone this repo and go to the cloned directory.

Please create a environment using python 3.7 and install dependencies by

pip install -r requirements.txt

To reproduce the results reported in the paper, you would need an V100 GPU.

Download datasets and pretrained model

The original Clevr dataset we used is from this external website. The original Abstract Scene we used is from this external website.

Pretrained models (Clevr and Abstract Scene) can be downloaded from here. Extract the tar:

tar -xvf checkpointss.tar -C ../

Testing Using Pretrained Model

Once the dataset is preprocessed and the pretrained model is downloaded,

  1. Generate images using the pretrained model.

    bash run_test.sh

    Please switch parameters in the script for different datasets. Testing parameters for Clevr and Abstract Scene datasets are already configured in the script.

  2. The outputs are at ../output/.

Training

New models can be trained with the following commands.

  1. Prepare dataset. Please contact the author if you need the processed datasets. If you are to use a new dataset, please follow the structure of the provided datasets, which means you need paired data (input image, input text, output image)

  2. Train.

# Pretraining
bash run_pretrain.sh

# Training
bash run_train.sh

There are many options you can specify. Training parameters for Clevr and Abstract Scene datasets are already configured in the script.

Tensorboard logs are stored at [../checkpoints_local/TIMGAN/tfboard].

Testing

Testing is similar to testing pretrained models.

bash run_test.sh

Testing parameters for Clevr and Abstract Scene datasets are already configured in the script.

Evaluation

The FID score is computed using the pytorch implementation here. Image retrieval script will be released soon.

Pretrained Model Performance

FID RS@1 RS@5
Clevr 33.0 95.9±0.1 97.8±0.1
Abstract Scene 35.1 35.4±0.2 58.7±0.1

Code Structure

  • run_pretrain.sh, run_train.sh, run_test.sh: bash scripts for pretraining, training and testing.
  • train_recon.py, train.py, test.py: the entry point for pretraining, training and testing.
  • models/tim_gan.py: creates the networks, and compute the losses.
  • models/networks.py: defines the basic modules for the architecture.
  • options/: options.
  • dataset/: defines the class for loading the dataset.

Question

Please contact bryanzhang@google.com if you need the preprocessed data or the Cityscapes pretrained model.

About

No description, website, or topics provided.

Resources

License

Code of conduct

Security policy

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published