Update app.py
Browse files
app.py
CHANGED
@@ -13,10 +13,8 @@ def predict(input_dict):
|
|
13 |
|
14 |
image = input_dict["composite"]
|
15 |
|
16 |
-
MAX_INTENSITY_SUM =
|
17 |
-
|
18 |
|
19 |
-
|
20 |
# Remove alpha channel (RGBA → RGB)
|
21 |
image = image[:, :, :3]
|
22 |
|
|
|
13 |
|
14 |
image = input_dict["composite"]
|
15 |
|
16 |
+
MAX_INTENSITY_SUM = 343
|
|
|
17 |
|
|
|
18 |
# Remove alpha channel (RGBA → RGB)
|
19 |
image = image[:, :, :3]
|
20 |
|