summaryrefslogtreecommitdiff
path: root/cli/app
diff options
context:
space:
mode:
Diffstat (limited to 'cli/app')
-rw-r--r--cli/app/commands/biggan/search.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/cli/app/commands/biggan/search.py b/cli/app/commands/biggan/search.py
index 5844855..ee7167e 100644
--- a/cli/app/commands/biggan/search.py
+++ b/cli/app/commands/biggan/search.py
@@ -29,7 +29,7 @@ from app.search.vector import truncated_z_sample, truncated_z_single, create_lab
help='Dimensions of BigGAN network (128, 256, 512)')
@click.option('-v', '--video', 'opt_video', is_flag=True,
help='Export a video for each dataset')
-@click.option('-t', '--tag', 'opt_tag', default='inverse_' + int(time.time() * 1000),
+@click.option('-t', '--tag', 'opt_tag', default='inverse_' + str(int(time.time() * 1000)),
help='Tag this dataset')
# @click.option('-r', '--recursive', 'opt_recursive', is_flag=True)
@click.pass_context