text-to-image icon indicating copy to clipboard operation
text-to-image copied to clipboard

I have some problem for running

Open Narak7 opened this issue 5 years ago • 1 comments

I have error in run.py

error is "[Errno 2] No such file or directory: './data/flowers/test/76images.pickle'"

so i went the directory and i found 600images.picke

How can i solve this problem?

Narak7 avatar Mar 26 '19 07:03 Narak7

@Narak7 change the following line in run.py:

dataset = TextDataset(datadir, 64)

to

dataset = TextDataset(datadir, 512)

You can see the mapping in preprocess/dataset.py. While passing the data through run.py make sure that your image size is same as the one that you used in preprocess_flowers.py

PragyanSubedi avatar Apr 27 '19 03:04 PragyanSubedi