bhanusAI commited on
Commit
ff40675
·
verified ·
1 Parent(s): b2c5661

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -86,10 +86,10 @@ def sepia(img,plant_type):
86
  if y_pred[0][disease]>y_pred[0][max_prob_indx]:
87
  max_prob_indx = disease
88
  print(label_disease[indx],y_pred[0][indx],label_disease[max_prob_indx],y_pred[0][max_prob_indx])
89
- return label_disease[indx],y_pred[0][indx],label_disease[max_prob_indx],y_pred[0][max_prob_indx]
90
 
91
  demo = gr.Interface(sepia,
92
  [gr.Image(),gr.Radio(["Apple","Blueberry","Cherry","Corn","Grape","Orange","Peach","Pepper","Potato","Raspberry","Soybean","Squash","Strawberry","Tomato"])],
93
- ["text","number","text","number"],
94
  )
95
  demo.launch(share=True)
 
86
  if y_pred[0][disease]>y_pred[0][max_prob_indx]:
87
  max_prob_indx = disease
88
  print(label_disease[indx],y_pred[0][indx],label_disease[max_prob_indx],y_pred[0][max_prob_indx])
89
+ return indx,max_prob_indx,label_disease[indx],y_pred[0][indx],label_disease[max_prob_indx],y_pred[0][max_prob_indx]
90
 
91
  demo = gr.Interface(sepia,
92
  [gr.Image(),gr.Radio(["Apple","Blueberry","Cherry","Corn","Grape","Orange","Peach","Pepper","Potato","Raspberry","Soybean","Squash","Strawberry","Tomato"])],
93
+ ["number","number","text","number","text","number"],
94
  )
95
  demo.launch(share=True)