diff options
| author | Jules Laplace <julescarbon@gmail.com> | 2020-01-07 22:21:12 +0100 |
|---|---|---|
| committer | Jules Laplace <julescarbon@gmail.com> | 2020-01-07 22:21:12 +0100 |
| commit | c7312ec2f5b3d0f8e92716de64bb7e8809599b50 (patch) | |
| tree | a1dae8e896865e399030e45def295d1affd16126 | |
| parent | 281fccf27145f5375c48de897cab533df94c3ddd (diff) | |
getting latent search updates working...
| -rw-r--r-- | cli/app/commands/biggan/search_class.py | 2 |
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') |
