summaryrefslogtreecommitdiff
path: root/cli/app
diff options
context:
space:
mode:
authorJules Laplace <julescarbon@gmail.com>2020-01-07 22:21:12 +0100
committerJules Laplace <julescarbon@gmail.com>2020-01-07 22:21:12 +0100
commitc7312ec2f5b3d0f8e92716de64bb7e8809599b50 (patch)
treea1dae8e896865e399030e45def295d1affd16126 /cli/app
parent281fccf27145f5375c48de897cab533df94c3ddd (diff)
getting latent search updates working...
Diffstat (limited to 'cli/app')
-rw-r--r--cli/app/commands/biggan/search_class.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/cli/app/commands/biggan/search_class.py b/cli/app/commands/biggan/search_class.py
index 60b3542..1f12080 100644
--- a/cli/app/commands/biggan/search_class.py
+++ b/cli/app/commands/biggan/search_class.py
@@ -19,7 +19,7 @@ from app.search.search_class import find_nearest_vector_for_images
help='Dimensions of BigGAN network (128, 256, 512)')
@click.option('-t', '--tag', 'opt_tag', default='inverse_' + str(int(time.time() * 1000)),
help='Tag this dataset')
-@click.option('-sc', '--stochastic_clipping', 'opt_stochastic_clipping', default=0
+@click.option('-sc', '--stochastic_clipping', 'opt_stochastic_clipping', default=0,
help='Compute feature loss')
@click.option('-lc', '--label_clipping', 'opt_label_clipping', default=0,
help='Normalize labels every N steps')