Skip to content

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

License

Notifications You must be signed in to change notification settings

taki0112/MUNIT-Tensorflow

Folders and files

NameName
Last commit message
Last commit date

Latest commit

b7d3b21 · Aug 13, 2019

History

47 Commits
Apr 17, 2018
Apr 17, 2018
Apr 16, 2018
Apr 16, 2018
Aug 13, 2019
Aug 29, 2018
May 11, 2018
Aug 13, 2019
Jul 10, 2019

Repository files navigation

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

About

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

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages