Skip to content

Commit

Permalink
🐛 fixing wrong type for growth_factor
Browse files Browse the repository at this point in the history
  • Loading branch information
rbturnbull committed Sep 17, 2022
1 parent c26407c commit 222225d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions supercat/apps.py
Original file line number Diff line number Diff line change
Expand Up @@ -219,12 +219,12 @@ def model(
tune_max=256,
help="The number of features after the initial CNN layer."
),
growth_factor:int = ta.Param(
growth_factor:float = ta.Param(
2.0,
tune=True,
tune_min=1.0,
tune_max=4.0,
log=True,
#log=True,
help="The factor to grow the number of convolutional filters each time the model downscales."
),
):
Expand Down

0 comments on commit 222225d

Please sign in to comment.