Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -18,11 +18,12 @@ model = AutoModelForImageClassification.from_pretrained(model_name)
|
|
18 |
|
19 |
# Define function for image preprocessing and prediction
|
20 |
def process_image(image):
|
21 |
-
|
22 |
-
|
|
|
23 |
# return {class_names[i]: float(prediction[i]) for i in range(3)}
|
24 |
|
25 |
-
image = gr.inputs.Image(shape=(256,256))
|
26 |
-
label = gr.outputs.Label(num_top_classes=1)
|
27 |
|
28 |
-
gr.Interface(fn=predict_image, inputs=image, outputs=label,interpretation='default').launch()
|
|
|
18 |
|
19 |
# Define function for image preprocessing and prediction
|
20 |
def process_image(image):
|
21 |
+
|
22 |
+
img_4d=img.reshape(-1,256,256,3)
|
23 |
+
prediction=model.predict(img_4d)[0]
|
24 |
# return {class_names[i]: float(prediction[i]) for i in range(3)}
|
25 |
|
26 |
+
image = gr.inputs.Image(shape=(256,256))
|
27 |
+
label = gr.outputs.Label(num_top_classes=1)
|
28 |
|
29 |
+
gr.Interface(fn=predict_image, inputs=image, outputs=label,interpretation='default').launch()
|