Spaces:
Running
on
Zero
Running
on
Zero
Update app.py
Browse files
app.py
CHANGED
@@ -100,7 +100,7 @@ def contextual_forward(self, blur_sigma = 0.0):
|
|
100 |
|
101 |
# based of empirical findings
|
102 |
# 8x8 and 16x16
|
103 |
-
allowed_res = [
|
104 |
|
105 |
if (dimension_squared == allowed_res[0] * allowed_res[0] or dimension_squared == allowed_res[1] * allowed_res[1]):
|
106 |
|
|
|
100 |
|
101 |
# based of empirical findings
|
102 |
# 8x8 and 16x16
|
103 |
+
allowed_res = [16, 8]
|
104 |
|
105 |
if (dimension_squared == allowed_res[0] * allowed_res[0] or dimension_squared == allowed_res[1] * allowed_res[1]):
|
106 |
|