All Projects → pfnet-research → Chainer Pix2pix

pfnet-research / Chainer Pix2pix

chainer implementation of pix2pix

Programming Languages

python
139335 projects - #7 most used programming language

Projects that are alternatives of or similar to Chainer Pix2pix

Pytorch Cyclegan And Pix2pix
Image-to-Image Translation in PyTorch
Stars: ✭ 16,477 (+12574.62%)
Mutual labels:  generative-adversarial-network, pix2pix
tiny-pix2pix
Redesigning the Pix2Pix model for small datasets with fewer parameters and different PatchGAN architecture
Stars: ✭ 21 (-83.85%)
Mutual labels:  generative-adversarial-network, pix2pix
pytorch-gans
PyTorch implementation of GANs (Generative Adversarial Networks). DCGAN, Pix2Pix, CycleGAN, SRGAN
Stars: ✭ 21 (-83.85%)
Mutual labels:  generative-adversarial-network, pix2pix
chainer-pix2pix
Chainer implementation for Image-to-Image Translation Using Conditional Adversarial Networks
Stars: ✭ 40 (-69.23%)
Mutual labels:  chainer, pix2pix
Pix2pixhd
Synthesizing and manipulating 2048x1024 images with conditional GANs
Stars: ✭ 5,553 (+4171.54%)
Mutual labels:  generative-adversarial-network, pix2pix
P2pala
Page to PAGE Layout Analysis Tool
Stars: ✭ 147 (+13.08%)
Mutual labels:  generative-adversarial-network, pix2pix
coursera-gan-specialization
Programming assignments and quizzes from all courses within the GANs specialization offered by deeplearning.ai
Stars: ✭ 277 (+113.08%)
Mutual labels:  generative-adversarial-network, pix2pix
Focal Frequency Loss
Focal Frequency Loss for Generative Models
Stars: ✭ 141 (+8.46%)
Mutual labels:  generative-adversarial-network, pix2pix
Von
[NeurIPS 2018] Visual Object Networks: Image Generation with Disentangled 3D Representation.
Stars: ✭ 497 (+282.31%)
Mutual labels:  generative-adversarial-network, pix2pix
Igan
Interactive Image Generation via Generative Adversarial Networks
Stars: ✭ 3,845 (+2857.69%)
Mutual labels:  generative-adversarial-network, pix2pix
BicycleGAN
Tensorflow implementation of the NIPS paper "Toward Multimodal Image-to-Image Translation"
Stars: ✭ 30 (-76.92%)
Mutual labels:  generative-adversarial-network, pix2pix
Bicyclegan
Toward Multimodal Image-to-Image Translation
Stars: ✭ 1,215 (+834.62%)
Mutual labels:  generative-adversarial-network, pix2pix
Pix2pix
Image-to-image translation with conditional adversarial nets
Stars: ✭ 8,765 (+6642.31%)
Mutual labels:  generative-adversarial-network, pix2pix
Cyclegan
Software that can generate photos from paintings, turn horses into zebras, perform style transfer, and more.
Stars: ✭ 10,933 (+8310%)
Mutual labels:  generative-adversarial-network, pix2pix
3d Recgan
🔥3D-RecGAN in Tensorflow (ICCV Workshops 2017)
Stars: ✭ 116 (-10.77%)
Mutual labels:  generative-adversarial-network
Tensorflow Mnist Cgan Cdcgan
Tensorflow implementation of conditional Generative Adversarial Networks (cGAN) and conditional Deep Convolutional Adversarial Networks (cDCGAN) for MANIST dataset.
Stars: ✭ 122 (-6.15%)
Mutual labels:  generative-adversarial-network
A Nice Mc
Code for "A-NICE-MC: Adversarial Training for MCMC"
Stars: ✭ 115 (-11.54%)
Mutual labels:  generative-adversarial-network
Hccg Cyclegan
Handwritten Chinese Characters Generation
Stars: ✭ 115 (-11.54%)
Mutual labels:  generative-adversarial-network
Pytorch Studiogan
StudioGAN is a Pytorch library providing implementations of representative Generative Adversarial Networks (GANs) for conditional/unconditional image generation.
Stars: ✭ 2,325 (+1688.46%)
Mutual labels:  generative-adversarial-network
Rectorch
rectorch is a pytorch-based framework for state-of-the-art top-N recommendation
Stars: ✭ 121 (-6.92%)
Mutual labels:  generative-adversarial-network

chainer-pix2pix

chainer implementation of pix2pix https://phillipi.github.io/pix2pix/

The Japanese readme can be found here.

Example result on CMP facade dataset

From the left side: input, output, ground_truth

usage

  1. pip install -r requirements.txt
  2. Download the facade dataset (base set) http://cmp.felk.cvut.cz/~tylecr1/facade/
  3. python train_facade.py -g [GPU ID, e.g. 0] -i [dataset root directory] --out [output directory] --snapshot_interval 10000
  4. Wait a few hours...
  • --out stores snapshots of the model and example images at an interval defined by --snapshot_interval
  • If the model size is large, you can reduce --snapshot_interval to save resources.

Using other datasets

  • Gather image pairs (e.g. label + photo). Several hundred pairs are required for good results.
  • Create a copy of facade_dataset.py for your dataset. The function get_example should be written so that it returns the i-th image pair a tuple of numpy arrays i.e. (input, output).
  • It maybe necessary to update the loss function in updater.py.
  • Likewise, make a copy of facade_visualizer.py and modify to visualize the dataset.
  • In train_facade.py change in_ch and out_ch to the correct input and output channels for your data.
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].