├── .gitignore ├── LICENSE ├── README.md ├── dall_e ├── __init__.py ├── decoder.py ├── encoder.py └── utils.py ├── model_card.md ├── notebooks └── usage.ipynb ├── requirements.txt └── setup.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/DALL-E/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/DALL-E/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/DALL-E/HEAD/README.md -------------------------------------------------------------------------------- /dall_e/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/DALL-E/HEAD/dall_e/__init__.py -------------------------------------------------------------------------------- /dall_e/decoder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/DALL-E/HEAD/dall_e/decoder.py -------------------------------------------------------------------------------- /dall_e/encoder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/DALL-E/HEAD/dall_e/encoder.py -------------------------------------------------------------------------------- /dall_e/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/DALL-E/HEAD/dall_e/utils.py -------------------------------------------------------------------------------- /model_card.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/DALL-E/HEAD/model_card.md -------------------------------------------------------------------------------- /notebooks/usage.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/DALL-E/HEAD/notebooks/usage.ipynb -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/DALL-E/HEAD/requirements.txt -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openai/DALL-E/HEAD/setup.py --------------------------------------------------------------------------------