Giter Site home page Giter Site logo

supremap-imaginaire's Introduction

SupReMap-Imaginaire

This repository is based on https://github.com/NVlabs/imaginaire, and has been extended to synthesize high-resolution satellite images based on data generated with the SupReMap project, as described in https://github.com/gsaltintas/supremap-data.

Setup

Please follow the setup instructions provided below by the original Imaginaire authors.

Dataset

Download our datasets into /data/ before training:

cd dataset
wget https://algvrithm.com/files/supremap/supremap_imaginaire_swisstopo_dataset.zip
unzip supremap_imaginaire_swisstopo_dataset.zip

Training

This repository has been tested using a CUDA GPU with 24GB of VRAM available.

Train on Swisstopo data with style encoder (9 feature channels):

python -m torch.distributed.launch --nproc_per_node=1 --master_port=29501 train.py --config=configs/projects/pix2pixhd/supremap/supremap_swisstopo_256_with_style_enc_9_feat_ch.yaml

Train on Swisstopo data without style encoder:

python -m torch.distributed.launch --nproc_per_node=1 --master_port=29501 train.py --config=configs/projects/pix2pixhd/supremap/supremap_swisstopo_256_without_style_enc.yaml

Inference

Inference on Swisstopo data with style encoder (9 feature channels):

python inference.py --single_gpu --config=configs/projects/pix2pixhd/supremap/supremap_swisstopo_256_with_style_enc_9_feat_ch.yaml --output_dir=projects/pix2pixhd/output/supremap_imaginaire_swisstopo_with_style_encoder --checkpoint=<path_to_your_checkpoint>

Generated images will be saved into projects/pix2pixhd/output/supremap_imaginaire_swisstopo_with_style_encoder.

Inference on Swisstopo data without style encoder:

python inference.py --single_gpu --config=configs/projects/pix2pixhd/supremap/supremap_swisstopo_256_without_style_enc.yaml --output_dir=projects/pix2pixhd/output/supremap_imaginaire_swisstopo_without_style_encoder --checkpoint=<path_to_your_checkpoint>

Generated images will be saved into projects/pix2pixhd/output/supremap_imaginaire_swisstopo_without_style_encoder.

Pretrained Models

This repository will automatically download and use a Cityscapes-1K-pretrained checkpoint when training is started, courtesy to the original Imaginaire authors.

Model trained on Swisstopo data with style encoder (9 feature channels) for 16.5K iterations:

https://algvrithm.com/files/supremap/pix2pixhd_with_style_encoder_iter_16500.pt

Model trained on Swisstopo data without style encoder for 18.5K iterations:

https://algvrithm.com/files/supremap/pix2pixhd_without_style_encoder_iter_18500.pt

Known Issues

  • "Discriminator overflowed"/"Generator overflowed" may get printed throughout training: NVlabs/imaginaire#126
  • "Broken pipe" traceback messages may occasionally get printed throughout training.
  • On rare occasions, the model diverges during training. Monitor the visualizations and restart training from the last stable checkpoint if necessary.
  • cusolverDn.h not found during setup: search for and install matching version from http://developer.download.nvidia.com/compute/cuda/repos/ubuntu2204/x86_64/, then run export CPLUS_INCLUDE_PATH=<your_cuda_path>/targets/x86_64-linux/include/:$CPLUS_INCLUDE_PATH

Results

We provide the following Peak Signal-Noise Ratio (PSNR), Structural Similarity Index (SSIM) and Frechet Inception Distance (FID) results achieved on the SupReMap Swisstopo dataset for reference, calculated using scripts/calculate_metrics.py. Visualizations are available at https://algvrithm.com/supremap-vis-v1/.

With style encoder (9 feature channels):

    PSNRs (⬆️):           SSIMs (⬆️):            FIDs (⬇️):   

count  557.000000      count  557.000000      count  557.000000
mean    13.628011      mean     0.188923      mean     0.172918
std      1.226479      std      0.075893      std      0.037491
min      9.797507      min      0.069866      min      0.053354
25%     12.887375      25%      0.143539      25%      0.146219
50%     13.567724      50%      0.168461      50%      0.170689
75%     14.222213      75%      0.205571      75%      0.195337
max     19.902980      max      0.621150      max      0.300574

Without style encoder:

    PSNRs (⬆️):           SSIMs (⬆️):            FIDs (⬇️):   
                                                                                              
count  557.000000      count  557.000000      count  557.000000
mean    13.257297      mean     0.185602      mean     0.158049
std      1.191875      std      0.077652      std      0.039535
min      9.903153      min      0.076972      min      0.065973
25%     12.489568      25%      0.139178      25%      0.130352
50%     13.200566      50%      0.165121      50%      0.155623
75%     13.981369      75%      0.200457      75%      0.181643
max     17.848160      max      0.625442      max      0.334908

Pretrained Models

pix2pixHD with style encoder (9 feature channels):

https://algvrithm.com/files/supremap/pix2pixhd_with_style_encoder_iter_16500.pt

Use with configuration file

configs/projects/pix2pixhd/supremap/supremap_swisstopo_256_with_style_enc_9_feat_ch.yaml

pix2pixHD without style encoder:

https://algvrithm.com/files/supremap/pix2pixhd_without_style_encoder_iter_18500.pt

Use with configuration file

configs/projects/pix2pixhd/supremap/supremap_swisstopo_256_without_style_enc.yaml

Original Imaginaire README

imaginaire_logo.svg

Imaginaire

Imaginaire is a pytorch library that contains optimized implementation of several image and video synthesis methods developed at NVIDIA.

License

Imaginaire is released under NVIDIA Software license. For commercial use, please consult NVIDIA Research Inquiries.

What's inside?

IMAGE ALT TEXT

We have a tutorial for each model. Click on the model name, and your browser should take you to the tutorial page for the project.

Supervised Image-to-Image Translation

Algorithm Name Feature Publication
pix2pixHD Learn a mapping that converts a semantic image to a high-resolution photorealistic image. Wang et. al. CVPR 2018
SPADE Improve pix2pixHD on handling diverse input labels and delivering better output quality. Park et. al. CVPR 2019

Unsupervised Image-to-Image Translation

Algorithm Name Feature Publication
UNIT Learn a one-to-one mapping between two visual domains. Liu et. al. NeurIPS 2017
MUNIT Learn a many-to-many mapping between two visual domains. Huang et. al. ECCV 2018
FUNIT Learn a style-guided image translation model that can generate translations in unseen domains. Liu et. al. ICCV 2019
COCO-FUNIT Improve FUNIT with a content-conditioned style encoding scheme for style code computation. Saito et. al. ECCV 2020

Video-to-video Translation

Algorithm Name Feature Publication
vid2vid Learn a mapping that converts a semantic video to a photorealistic video. Wang et. al. NeurIPS 2018
fs-vid2vid Learn a subject-agnostic mapping that converts a semantic video and an example image to a photoreslitic video. Wang et. al. NeurIPS 2019

World-to-world Translation

Algorithm Name Feature Publication
wc-vid2vid Improve vid2vid on view consistency and long-term consistency. Mallya et. al. ECCV 2020
GANcraft Convert semantic block worlds to realistic-looking worlds. Hao et. al. ICCV 2021

supremap-imaginaire's People

Contributors

arunmallya avatar mingyuliutw avatar algvr avatar xunhuang1995 avatar tcwang0509 avatar gsaltintas avatar

Watchers

YellowTech avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.