Spaces:
Runtime error
Runtime error
Commit
Β·
41b1504
1
Parent(s):
56444f5
Update app.py
Browse files
app.py
CHANGED
|
@@ -15,6 +15,7 @@ def infer(original_image):
|
|
| 15 |
image = image.astype("float32") / 255.0
|
| 16 |
image = np.expand_dims(image, axis=0)
|
| 17 |
output_image = model.predict(image)
|
|
|
|
| 18 |
print(output_image.shape())
|
| 19 |
|
| 20 |
|
|
|
|
| 15 |
image = image.astype("float32") / 255.0
|
| 16 |
image = np.expand_dims(image, axis=0)
|
| 17 |
output_image = model.predict(image)
|
| 18 |
+
print(output_image)
|
| 19 |
print(output_image.shape())
|
| 20 |
|
| 21 |
|