Skip to content

Commit

Permalink
add package
Browse files Browse the repository at this point in the history
  • Loading branch information
jm12138 committed Mar 17, 2021
1 parent d2b227c commit fb3f62e
Show file tree
Hide file tree
Showing 3 changed files with 26 additions and 1 deletion.
8 changes: 7 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -132,4 +132,10 @@ dmypy.json
.test.py
test.py
.pretrained_models/
pretrained_models/
pretrained_models/
build/
.build/
dist/
.dist/
paddledalle.egg-info/
.paddledalle.egg-info/
8 changes: 8 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,11 +1,19 @@
# Paddle-DALL-E
![GitHub forks](https://img.shields.io/github/forks/AgentMaker/Paddle-DALL-E)
![GitHub Repo stars](https://img.shields.io/github/stars/AgentMaker/Paddle-DALL-E)
![GitHub release (latest by date including pre-releases)](https://img.shields.io/github/v/release/AgentMaker/Paddle-DALL-E?include_prereleases)
![GitHub](https://img.shields.io/github/license/AgentMaker/Paddle-DALL-E)
A PaddlePaddle version implementation of DALL-E of OpenAI. [【origin repo】](https://github.com/openai/DALL-E)

Now this implementation only include the dVAE part, can't generate images from text.

## Install Package
* Install by pip:
```shell
$ pip install paddledalle==1.0.0 -i https://pypi.python.org/pypi
```
* Install by wheel package:[【Releases Packages】](https://github.com/AgentMaker/Paddle-DALL-E/releases)

## Quick Start
```python
import paddle
Expand Down
11 changes: 11 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
from setuptools import setup
setup(
name='paddledalle',
version='1.0.0',
author='jm12138',
author_email='[email protected]',
packages=['dall_e'],
license='Apache-2.0 License',
description='Paddle DALL-E',
install_requires=['wget']
)

0 comments on commit fb3f62e

Please sign in to comment.