├── .gitignore ├── Checking the dataset.ipynb ├── Dockerfile ├── README.md ├── bad_images.txt ├── download_celebA.py ├── download_celebA_HQ.py ├── image_list.txt └── make_HQ_images.py /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | -------------------------------------------------------------------------------- /Checking the dataset.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nperraud/download-celebA-HQ/HEAD/Checking the dataset.ipynb -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nperraud/download-celebA-HQ/HEAD/Dockerfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nperraud/download-celebA-HQ/HEAD/README.md -------------------------------------------------------------------------------- /bad_images.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nperraud/download-celebA-HQ/HEAD/bad_images.txt -------------------------------------------------------------------------------- /download_celebA.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nperraud/download-celebA-HQ/HEAD/download_celebA.py -------------------------------------------------------------------------------- /download_celebA_HQ.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nperraud/download-celebA-HQ/HEAD/download_celebA_HQ.py -------------------------------------------------------------------------------- /image_list.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nperraud/download-celebA-HQ/HEAD/image_list.txt -------------------------------------------------------------------------------- /make_HQ_images.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nperraud/download-celebA-HQ/HEAD/make_HQ_images.py --------------------------------------------------------------------------------