taki0112 / FUNIT-Tensorflow

Simple Tensorflow implementation of "Few-Shot Unsupervised Image-to-Image Translation" (ICCV 2019)

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

FUNIT-Tensorflow

: Few-Shot Unsupervised Image-to-Image Translation (ICCV 2019)

Usage

├── dataset
   └── YOUR_DATASET_NAME
       ├── train
           ├── class1 (class folder)
               ├── xxx.jpg (class1 image)
               ├── yyy.png
               ├── ...
           ├── class2
               ├── aaa.jpg (class2 image)
               ├── bbb.png
               ├── ...
           ├── class3
           ├── ...
       ├── test
           ├── content (content folder)
               ├── zzz.jpg (any content image)
               ├── www.png
               ├── ...
           ├── class (class folder)
               ├── ccc.jpg (unseen target class image)
               ├── ddd.jpg
               ├── ...

Train

> python main.py --dataset flower

Test

> python main.py --dataset flower --phase test

Architecture

architecture

Our result

our_result

Paper result

paper_result

Author

Junho Kim

About

Simple Tensorflow implementation of "Few-Shot Unsupervised Image-to-Image Translation" (ICCV 2019)

License:MIT License


Languages

Language:Python 100.0%