From 222225d3b25b83fee2f7ca0cbb8ff309d86896bf Mon Sep 17 00:00:00 2001
From: rturnbull <robert.turnbull@unimelb.edu.au>
Date: Sun, 18 Sep 2022 00:12:58 +1000
Subject: [PATCH] :bug: fixing wrong type for growth_factor

---
 supercat/apps.py | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/supercat/apps.py b/supercat/apps.py
index 992a022..b6c3859 100644
--- a/supercat/apps.py
+++ b/supercat/apps.py
@@ -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."
         ),
     ):