All Projects → taki0112 → Munit Tensorflow

taki0112 / Munit Tensorflow

Licence: mit
Simple Tensorflow implementation of "Multimodal Unsupervised Image-to-Image Translation" (ECCV 2018)

Programming Languages

python
139335 projects - #7 most used programming language

Projects that are alternatives of or similar to Munit Tensorflow

Dunit
(CVPR 2020) DUNIT: Detection-Based Unsupervised Image-to-Image Translation
Stars: ✭ 24 (-91.78%)
Mutual labels:  image-translation
ganslate
Simple and extensible GAN image-to-image translation framework. Supports natural and medical images.
Stars: ✭ 17 (-94.18%)
Mutual labels:  image-translation
CoMoGAN
CoMoGAN: continuous model-guided image-to-image translation. CVPR 2021 oral.
Stars: ✭ 139 (-52.4%)
Mutual labels:  image-translation
day2night
Image2Image Translation Research
Stars: ✭ 46 (-84.25%)
Mutual labels:  image-translation
pytorch-CycleGAN
Pytorch implementation of CycleGAN.
Stars: ✭ 39 (-86.64%)
Mutual labels:  image-translation
BicycleGAN-pytorch
Pytorch implementation of BicycleGAN with implementation details
Stars: ✭ 99 (-66.1%)
Mutual labels:  image-translation
chainer-pix2pix
Chainer implementation for Image-to-Image Translation Using Conditional Adversarial Networks
Stars: ✭ 40 (-86.3%)
Mutual labels:  image-translation
Pytorch-Image-Translation-GANs
Pytorch implementations of most popular image-translation GANs, including Pixel2Pixel, CycleGAN and StarGAN.
Stars: ✭ 106 (-63.7%)
Mutual labels:  image-translation
overlord
Official pytorch implementation of "Scaling-up Disentanglement for Image Translation", ICCV 2021.
Stars: ✭ 35 (-88.01%)
Mutual labels:  image-translation
IrwGAN
Official pytorch implementation of the IrwGAN for unaligned image-to-image translation
Stars: ✭ 33 (-88.7%)
Mutual labels:  image-translation
Guided-I2I-Translation-Papers
Guided Image-to-Image Translation Papers
Stars: ✭ 117 (-59.93%)
Mutual labels:  image-translation
multitask-CycleGAN
Pytorch implementation of multitask CycleGAN with auxiliary classification loss
Stars: ✭ 88 (-69.86%)
Mutual labels:  image-translation
pix2pix
PyTorch implementation of Image-to-Image Translation with Conditional Adversarial Nets (pix2pix)
Stars: ✭ 36 (-87.67%)
Mutual labels:  image-translation
UNITE
Unbalanced Feature Transport for Exemplar-based Image Translation [CVPR 2021] and Marginal Contrastive Correspondence for Guided Image Generation [CVPR 2022]
Stars: ✭ 183 (-37.33%)
Mutual labels:  image-translation
TriangleGAN
TriangleGAN, ACM MM 2019.
Stars: ✭ 28 (-90.41%)
Mutual labels:  image-translation
Pix2Pix
Image to Image Translation using Conditional GANs (Pix2Pix) implemented using Tensorflow 2.0
Stars: ✭ 29 (-90.07%)
Mutual labels:  image-translation
BicycleGAN
Tensorflow implementation of the NIPS paper "Toward Multimodal Image-to-Image Translation"
Stars: ✭ 30 (-89.73%)
Mutual labels:  image-translation
Shadesketch
Implementation of "Learning to Shadow Hand-drawn Sketches" CVPR 2020 (Oral)
Stars: ✭ 263 (-9.93%)
Mutual labels:  image-translation
Splice
Official Pytorch Implementation for "Splicing ViT Features for Semantic Appearance Transfer" presenting "Splice" (CVPR 2022)
Stars: ✭ 126 (-56.85%)
Mutual labels:  image-translation
pix2pix-tensorflow
A minimal tensorflow implementation of pix2pix (Image-to-Image Translation with Conditional Adversarial Nets - https://phillipi.github.io/pix2pix/).
Stars: ✭ 22 (-92.47%)
Mutual labels:  image-translation

MUNIT-Tensorflow

Simple Tensorflow implementation of "Multimodal Unsupervised Image-to-Image Translation"

Requirements

  • Tensorflow 1.4
  • Python 3.6

Issue

  • Author uses so many iterations (1M = 1,000,000)
  • Author uses LSGAN, but do not multiply each of G and D by 0.5

Usage

├── dataset
   └── YOUR_DATASET_NAME
       ├── trainA
           ├── xxx.jpg (name, format doesn't matter)
           ├── yyy.png
           └── ...
       ├── trainB
           ├── zzz.jpg
           ├── www.png
           └── ...
       ├── testA
           ├── aaa.jpg 
           ├── bbb.png
           └── ...
       └── testB
           ├── ccc.jpg 
           ├── ddd.png
           └── ...
           
├── guide.jpg (example for guided image translation task)

Train

  • python main.py --phase train --dataset summer2winter --batch_size 1

Test

  • python main.py --phase test --dataset summer2winter --batch_size 1 --num_style 3

Guided Image Translation

  • python main.py --phase guide --dataset summer2winter --batch_size 1 --direction a2b --guide_img guide.jpg

Summary

illustration

Architecture

architecture

Model Overview

model_overview

Results

Edges to Shoes/handbags Translation

edges2shoes_handbags

Animal Image Translation

animal

Street Scene Translation

street

Yosemite Summer to Winter Translation (HD)

summer2winter_yosemite

Example-guided Image Translation

guide

Related works

Reference

Author

Junho Kim

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