NKASG commited on
Commit
6e8f934
·
verified ·
1 Parent(s): 5b55bc2

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +6 -5
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
- img_4d=img.reshape(-1,256,256,3)
22
- prediction=model.predict(img_4d)[0]
 
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()