Skip to content

Commit

Permalink
Do not require a --seeds argument with --projected_w (#5)
Browse files Browse the repository at this point in the history
  • Loading branch information
jannehellsten committed Feb 2, 2021
1 parent 7bd6159 commit 7a7a294
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion generate.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ def num_range(s: str) -> List[int]:
@click.command()
@click.pass_context
@click.option('--network', 'network_pkl', help='Network pickle filename', required=True)
@click.option('--seeds', type=num_range, help='List of random seeds', required=True)
@click.option('--seeds', type=num_range, help='List of random seeds')
@click.option('--trunc', 'truncation_psi', type=float, help='Truncation psi', default=1, show_default=True)
@click.option('--class', 'class_idx', type=int, help='Class label (unconditional if not specified)')
@click.option('--noise-mode', help='Noise mode', type=click.Choice(['const', 'random', 'none']), default='const', show_default=True)
Expand Down

0 comments on commit 7a7a294

Please sign in to comment.