gwang-kim / DiffusionCLIP

[CVPR 2022] Official PyTorch Implementation for DiffusionCLIP: Text-guided Image Manipulation Using Diffusion Models
Other
785 stars 113 forks source link

What is LMDB_train? #14

Closed songyiren98 closed 2 years ago

songyiren98 commented 2 years ago

lmdb.Error: data/celeba_hq/LMDB_train: No such file or directory I want to train a new effect on CelebA_HQ_dataset, thank you.

gwang-kim commented 2 years ago

As you can find in the Dataset section in README.md,

You need to use the below commands to download CelebA-HQ dataset.

# CelebA-HQ 256x256
bash data_download.sh celeba_hq .

Then, you can find the data like the below structure in DiffusionCLIP/data.

data
└── celeba_hq
    ├── LMDB_test
    │   ├── data.mdb
    │   └── lock.mdb
    ├── LMDB_train
    │   ├── data.mdb
    │   └── lock.mdb
    └── LMDB_val
        ├── data.mdb
        └── lock.mdb
    └── raw_images
        ├── train
                 :
ZHOU1023 commented 4 months ago

How long does the data preparation process take? Now I can only see the "LMDB_train" without "LMDB_val" and "LMDB_test".