Nipponjo Deepfillv2 Pytorch Save

A PyTorch reimplementation of the paper Free-Form Image Inpainting with Gated Convolution (DeepFill v2) (https://arxiv.org/abs/1806.03589)

Project README

deepfillv2-pytorch

A PyTorch reimplementation of the paper Free-Form Image Inpainting with Gated Convolution (DeepFillv2) (https://arxiv.org/abs/1806.03589) based on the original TensorFlow implementation.

Example images (raw | masked | inpainted):

Pretrained models

The models in networks_tf.py can be used with the weights from the official repository, which I have converted to PyTorch state dicts.

Download converted weights: Places2 | CelebA-HQ (for networks_tf.py)

The networks in networks_tf.py use TensorFlow-compatibility functions (padding, down-sampling), while the networks in networks.py do not. In order to adjust the weights to the different settings, the model was trained on Places2/CelebA-HQ for some time using the pretrained weights as initialization.

Download fine-tuned weights: Places2 | CelebA-HQ (for networks.py)

Test the model

Before running the following commands make sure to put the downloaded weights file into the pretrained folder.

python test.py --image examples/inpaint/case1.png --mask examples/inpaint/case1_mask.png --out examples/inpaint/case1_out_test.png --checkpoint pretrained/states_tf_places2.pth

The Jupyter notebook test.ipynb shows how the model can be used.

Train the model

Train with options from a config file:

python train.py --config configs/train.yaml

Run tensorboard --logdir <your_log_dir> to see the TensorBoard logging.

Demo web app

The web app uses a JS/React frontend and a FastAPI backend. To run it you need the following packages:

  • fastapi, python-multipart: for the backend api
  • uvicorn: for serving the app

Install with: pip install fastapi python-multipart "uvicorn[standard]"

Run with: python app.py

New models can be added in app/models.yaml

Requirements

  • python3
  • pytorch
  • torchvision
  • numpy
  • Pillow
  • tensorboard
  • pyyaml
Open Source Agenda is not affiliated with "Nipponjo Deepfillv2 Pytorch" Project. README Source: nipponjo/deepfillv2-pytorch
Stars
106
Open Issues
12
Last Commit
10 months ago

Open Source Agenda Badge

Open Source Agenda Rating