Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -12,7 +12,7 @@ model = load_model('keras_model.h5')
|
|
12 |
def greet(name):
|
13 |
return "Hello " + name + "!!"
|
14 |
|
15 |
-
def predict(
|
16 |
|
17 |
# Create the array of the right shape to feed into the keras model
|
18 |
# The 'length' or number of images you can put into the array is
|
|
|
12 |
def greet(name):
|
13 |
return "Hello " + name + "!!"
|
14 |
|
15 |
+
def predict(image):
|
16 |
|
17 |
# Create the array of the right shape to feed into the keras model
|
18 |
# The 'length' or number of images you can put into the array is
|