README.md 1.3 KB
Newer Older
L
LielinJiang 已提交
1
English | [简体中文](./README_cn.md)
2

L
LielinJiang 已提交
3 4
# PaddleGAN

L
LielinJiang 已提交
5
PaddleGAN is an development kit of Generative Adversarial Network based on PaddlePaddle.
L
LielinJiang 已提交
6

L
LielinJiang 已提交
7
![](./docs/imgs/color_sr_peking.gif)
8

L
LielinJiang 已提交
9
Features:
L
LielinJiang 已提交
10

L
LielinJiang 已提交
11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27
- Highly Flexible:

  Components are designed to be modular. Model architectures, as well as data
preprocess pipelines, can be easily customized with simple configuration
changes.

- Rich applications:

  PaddleGAN provides rich of applications, such as image generation, image restore, image colorization, video interpolate, makeup shifter.

## Install

### 1. install paddlepaddle

PaddleGAN work with:
* PaddlePaddle >= 2.0.0-rc
* Python >= 3.5+
L
LielinJiang 已提交
28 29

```
L
LielinJiang 已提交
30
pip install -U paddlepaddle-gpu
L
LielinJiang 已提交
31 32
```

L
LielinJiang 已提交
33
### 2. install ppgan
L
LielinJiang 已提交
34
```
L
LielinJiang 已提交
35 36 37 38
git clone https://github.com/PaddlePaddle/PaddleGAN
cd PaddleGAN

pip install -v -e .  # or "python setup.py develop"
L
LielinJiang 已提交
39
```
L
LielinJiang 已提交
40 41 42 43 44 45 46 47 48 49 50 51 52

## Data Prepare
Please refer to [data prepare](./docs/data_prepare.md) for dataset preparation.

## Get Start
Please refer [get stated](./docs/get_started.md) for the basic usage of PaddleGAN.

## License
PaddleGAN is released under the [Apache 2.0 license](LICENSE).

## Contributing

Contributions are highly welcomed and we would really appreciate your feedback!!
L
LielinJiang 已提交
53 54 55 56 57 58

## External Projects

External gan projects in the community that base on PaddlePaddle:

+ [PaddleGAN](https://github.com/PaddlePaddle/PaddleGAN)