NVlabs / NVAE

The Official PyTorch Implementation of "NVAE: A Deep Hierarchical Variational Autoencoder" (NeurIPS 2020 spotlight paper)

Home Page:https://arxiv.org/abs/2007.03898

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Query: CelebA HQ 256

KomputerMaster64 opened this issue · comments

I am trying to implement the DDGAN paper. The authors ask the users to refer to this repository to for the dataset preparation.

The following command is suggested for downloading the dataset from openai's glow project:-
mkdir -p $DATA_DIR/celeba
cd $DATA_DIR/celeba

wget https://storage.googleapis.com/glow-demo/data/celeba-tfr.tar
tar -xvf celeba-tfr.tar
cd $CODE_DIR/scripts

python convert_tfrecord_to_lmdb.py --dataset=celeba --tfr_path=$DATA_DIR/celeba/celeba-tfr --lmdb_path=$DATA_DIR/celeba/celeba-lmdb --split=train

python convert_tfrecord_to_lmdb.py --dataset=celeba --tfr_path=$DATA_DIR/celeba/celeba-tfr --lmdb_path=$DATA_DIR/celeba/celeba-lmdb --split=validation

However when I implement the commands, I face the following errors:
`--2022-07-27 09:03:47-- https://storage.googleapis.com/glow-demo/data/celeba-tfr.tar
Resolving storage.googleapis.com (storage.googleapis.com)... 142.250.4.128, 172.217.194.128, 142.251.10.128, ...
Connecting to storage.googleapis.com (storage.googleapis.com)|142.250.4.128|:443... connected.
HTTP request sent, awaiting response... 404 Not Found
2022-07-27 09:03:48 ERROR 404: Not Found.

tar: celeba-tfr.tar: Cannot open: No such file or directory
tar: Error is not recoverable: exiting now
`

Prafulla Dhariwal has addressed the some related errors here openai/glow/issues/1 for reference.