Skip to content

Commit 38f13d7

Browse files
committed
remove large alpha values (10)
1 parent f989c17 commit 38f13d7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

generate.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ def num_range(s: str) -> List[int]:
4545
@click.option('--projected-w', help='Projection result file', type=str, metavar='FILE')
4646
@click.option('--outdir', help='Where to save the output images', type=str, required=True, metavar='DIR')
4747
@click.option('--weight-vector', help='Path to weight vector file (.npy)', type=str, metavar='FILE')
48-
@click.option('--alphas', type=num_range, help='Alpha values for weight modulation (e.g., "-10,0,10" or "-10-10")', default='-10,-5, -2, -1, 0, 1, 2, 5, 10', show_default=True)
48+
@click.option('--alphas', type=num_range, help='Alpha values for weight modulation (e.g., "-10,0,10" or "-10-10")', default='-5, -2, -1, 0, 1, 2, 5', show_default=True)
4949
@click.option('--style-range', type=(int, int), help='Range of style blocks to apply weight vector (start, end). Coarse: 0-8, Middle: 4-12, Fine: 12-17. Default: all (0, 17)', default=(0, 17), show_default=True)
5050
def generate_images(
5151
ctx: click.Context,

0 commit comments

Comments
 (0)