diff options
| -rw-r--r-- | cli/app/commands/biggan/random.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cli/app/commands/biggan/random.py b/cli/app/commands/biggan/random.py index 42db0b8..ebfde4b 100644 --- a/cli/app/commands/biggan/random.py +++ b/cli/app/commands/biggan/random.py @@ -51,7 +51,7 @@ def cli(ctx): print(results) - for sample in results['default']: + for sample in results: sample = image_to_uint8(sample) img = Image.fromarray(sample, "RGB") fp_img_out = "{}.png".format(int(time.time() * 1000)) |
