Closed lmagoncalo closed 11 months ago
The part for the sampling has: while len(all_images) * args.batch_size < args.num_samples: However, all_images is net updated which makes the code run infinitely.
while len(all_images) * args.batch_size < args.num_samples:
The PR has been merged, thanks for your contribution.
The part for the sampling has:
while len(all_images) * args.batch_size < args.num_samples:
However, all_images is net updated which makes the code run infinitely.