Spaces:
Runtime error
Runtime error
Commit
Β·
183f249
1
Parent(s):
cef63f3
Update app.py
Browse files
app.py
CHANGED
@@ -16,6 +16,7 @@ def infer(original_image):
|
|
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(
|
|
|
16 |
image = np.expand_dims(image, axis=0)
|
17 |
output = model.predict(image)
|
18 |
print(len(output))
|
19 |
+
print([len(a) for a in output])
|
20 |
'''output_image = output[0] * 255.0
|
21 |
output_image = output_image.clip(0, 255)
|
22 |
output_image = output_image.reshape(
|