Open A7F opened 3 years ago
I have met the same problem and solved it. I extracted the files in 'img_align_celeba.zip' to the current folder. Hope you will solve it too.
I'm having a similar issue, where I would like to train on a completely different dataset located in my drive. Is this possible or do we have to use the celeba dataset?
I'm having a similar issue, where I would like to train on a completely different dataset located in my drive. Is this possible or do we have to use the celeba dataset?
Were you ever able to train on a different dataset?
This seems to work in Colab
!git clone https://github.com/peacej/PyTorch-VAE # I cloned it to change the requirements.txt to make it work
%cd PyTorch-VAE
!mkdir -p Data
!mkdir -p logs
!pip install -r requirements.txt
!unzip ./Data/celeba.zip -d ./Data/
!unzip ./Data/celeba/img_align_celeba.zip -d ./Data/celeba/ # celeba folder structure defined by https://pytorch.org/vision/main/_modules/torchvision/datasets/celeba.html#CelebA
I cannot open the webpage link. If convenient, could you send these two compressed files? thank you
I'm having a similar issue, where I would like to train on a completely different dataset located in my drive. Is this possible or do we have to use the celeba dataset?
Were you able to work with it on a different dataset? I am guessing the dataset structure needs to be similar is all.
Hi, I'm new to pytorch and VAEs in general. I attempted to run your VanillaVAE but I can't figure out how to reference the dataset inside the config file. Specifically, this is my folder structure:
and my config looks like this:
but still the error remains the same:
RuntimeError: Dataset not found or corrupted. You can use download=True to download it
Apart from the fact that using download=True doesn't work (looks like it attempts to download an invalid dataset), is there anything to take into account like unzipping the archive img_align_celeba.zip or stuff like that?