Spaces:
Runtime error
Runtime error
Commit
Β·
cef63f3
1
Parent(s):
87da6f1
Update app.py
Browse files
app.py
CHANGED
@@ -15,7 +15,7 @@ def infer(original_image):
|
|
15 |
image = image.astype("float32") / 255.0
|
16 |
image = np.expand_dims(image, axis=0)
|
17 |
output = model.predict(image)
|
18 |
-
print(
|
19 |
'''output_image = output[0] * 255.0
|
20 |
output_image = output_image.clip(0, 255)
|
21 |
output_image = output_image.reshape(
|
|
|
15 |
image = image.astype("float32") / 255.0
|
16 |
image = np.expand_dims(image, axis=0)
|
17 |
output = model.predict(image)
|
18 |
+
print(len(output))
|
19 |
'''output_image = output[0] * 255.0
|
20 |
output_image = output_image.clip(0, 255)
|
21 |
output_image = output_image.reshape(
|