# StarGAN-Tensorflow
**Repository Path**: chen_hanxi/StarGAN-Tensorflow
## Basic Information
- **Project Name**: StarGAN-Tensorflow
- **Description**: Simple Tensorflow implementation of StarGAN (CVPR 2018 Oral)
- **Primary Language**: Unknown
- **License**: MIT
- **Default Branch**: master
- **Homepage**: None
- **GVP Project**: No
## Statistics
- **Stars**: 0
- **Forks**: 0
- **Created**: 2019-11-21
- **Last Updated**: 2020-12-19
## Categories & Tags
**Categories**: Uncategorized
**Tags**: None
## README

--------------------------------------------------------------------------------
## Requirements
* Tensorflow 1.8
* Python 3.6
## Usage
### Downloading the dataset
```python
> python download.py celebA
```
```
├── dataset
└── celebA
├── train
├── 000001.jpg
├── 000002.jpg
└── ...
├── test (It is not celebA)
├── a.jpg (The test image that you wanted)
├── b.png
└── ...
├── list_attr_celeba.txt (For attribute information)
```
### Train
* python main.py --phase train
### Test
* python main.py --phase test
* The celebA test image and the image you wanted run simultaneously
### Pretrained model
* Download [checkpoint for 128x128](https://drive.google.com/open?id=1ezwtU1O_rxgNXgJaHcAynVX8KjMt0Ua-)
## Summary

## Results (128x128, wgan-gp)
### Women

### Men

## Related works
* [CycleGAN-Tensorflow](https://github.com/taki0112/CycleGAN-Tensorflow)
* [DiscoGAN-Tensorflow](https://github.com/taki0112/DiscoGAN-Tensorflow)
* [UNIT-Tensorflow](https://github.com/taki0112/UNIT-Tensorflow)
* [MUNIT-Tensorflow](https://github.com/taki0112/MUNIT-Tensorflow)
## Reference
* [StarGAN paper](https://arxiv.org/abs/1711.09020)
* [Author pytorch code](https://github.com/yunjey/StarGAN)
## Author
Junho Kim