All Projects → taey16 → pix2pix.pytorch

taey16 / pix2pix.pytorch

Licence: other
A pytorch implementation of "Image-to-Image Translation with Conditional Adversarial Networks"

Programming Languages

python
139335 projects - #7 most used programming language

Projects that are alternatives of or similar to pix2pix.pytorch

Chainer Pix2pix
chainer implementation of pix2pix
Stars: ✭ 130 (+282.35%)
Mutual labels:  pix2pix
Zi2zi
Learning Chinese Character style with conditional GAN
Stars: ✭ 1,988 (+5747.06%)
Mutual labels:  pix2pix
Munit
Multimodal Unsupervised Image-to-Image Translation
Stars: ✭ 2,404 (+6970.59%)
Mutual labels:  pix2pix
Starnet
StarNet
Stars: ✭ 141 (+314.71%)
Mutual labels:  pix2pix
Pix2pixbegan.pytorch
A pytorch implementation of pix2pix + BEGAN (Boundary Equilibrium Generative Adversarial Networks)
Stars: ✭ 148 (+335.29%)
Mutual labels:  pix2pix
Cyclegan Vc2
Voice Conversion by CycleGAN (语音克隆/语音转换): CycleGAN-VC2
Stars: ✭ 158 (+364.71%)
Mutual labels:  pix2pix
Sketch To Art
🖼 Create artwork from your casual sketch with GAN and style transfer
Stars: ✭ 115 (+238.24%)
Mutual labels:  pix2pix
Pytorch Cyclegan And Pix2pix
Image-to-Image Translation in PyTorch
Stars: ✭ 16,477 (+48361.76%)
Mutual labels:  pix2pix
Ai Art
PyTorch (and PyTorch Lightning) implementation of Neural Style Transfer, Pix2Pix, CycleGAN, and Deep Dream!
Stars: ✭ 153 (+350%)
Mutual labels:  pix2pix
Pose2pose
This is a pix2pix demo that learns from pose and translates this into a human. A webcam-enabled application is also provided that translates your pose to the trained pose. Everybody dance now !
Stars: ✭ 182 (+435.29%)
Mutual labels:  pix2pix
Unit
Unsupervised Image-to-Image Translation
Stars: ✭ 1,809 (+5220.59%)
Mutual labels:  pix2pix
P2pala
Page to PAGE Layout Analysis Tool
Stars: ✭ 147 (+332.35%)
Mutual labels:  pix2pix
Pix2pix Film
An implementation of Pix2Pix in Tensorflow for use with frames from films
Stars: ✭ 162 (+376.47%)
Mutual labels:  pix2pix
Focal Frequency Loss
Focal Frequency Loss for Generative Models
Stars: ✭ 141 (+314.71%)
Mutual labels:  pix2pix
Swapnet
Virtual Clothing Try-on with Deep Learning. PyTorch reproduction of SwapNet by Raj et al. 2018. Now with Docker support!
Stars: ✭ 202 (+494.12%)
Mutual labels:  pix2pix
Cyclegan
Software that can generate photos from paintings, turn horses into zebras, perform style transfer, and more.
Stars: ✭ 10,933 (+32055.88%)
Mutual labels:  pix2pix
Deblurgan
Image Deblurring using Generative Adversarial Networks
Stars: ✭ 2,033 (+5879.41%)
Mutual labels:  pix2pix
Everybody-dance-now
Implementation of paper everybody dance now for Deep learning course project
Stars: ✭ 22 (-35.29%)
Mutual labels:  pix2pix
Paddlegan
PaddlePaddle GAN library, including lots of interesting applications like First-Order motion transfer, wav2lip, picture repair, image editing, photo2cartoon, image style transfer, and so on.
Stars: ✭ 4,987 (+14567.65%)
Mutual labels:  pix2pix
Guided Pix2pix
[ICCV 2019] Guided Image-to-Image Translation with Bi-Directional Feature Transformation
Stars: ✭ 168 (+394.12%)
Mutual labels:  pix2pix

Image-to-Image Translation with Conditional Adversarial Networks

Install

Datasets

Train with facades dataset (mode: B2A)

  • CUDA_VISIBLE_DEVICES=x python main_pix2pixgan.py --dataset pix2pix --dataroot /path/to/facades/train --valDataroot /path/to/facades/val --mode B2A --exp ./facades --display 5 --evalIter 500
  • Resulting model is saved in ./facades directory named like net[D|G]_epoch_xx.pth

Train with edges2shoes dataset (mode: A2B)

  • CUDA_VISIBLE_DEVICES=x python main_pix2pixgan.py --dataset pix2pix --dataroot /path/to/edges2shoes/train --valDataroot /path/to/edges2shoes/val --mode A2B --exp ./edges2shoes --batchSize 4 --display 5

Results

  • Randomly selected input samples input
  • Corresponding real target samples target
  • Corresponding generated samples generated

Note

  • We modified pytorch.vision.folder and transform.py as to follow the format of train images in the datasets
  • Most of the parameters are the same as the paper.
  • You can easily reproduce results of the paper with other dataets
  • Try B2A or A2B translation as your need

Reference

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].