amit-asl commited on
Commit
94885b9
1 Parent(s): 856a0f1

fix naming

Browse files
Files changed (1) hide show
  1. app.py +3 -3
app.py CHANGED
@@ -19,13 +19,13 @@ def create_interface():
19
  fn=predict_image,
20
  inputs=image_input,
21
  outputs=output,
22
- title="Cat or Dog Classifier",
23
- description="Upload an image to classify whether it's a cat or a dog."
24
  )
25
  return iface
26
 
27
  if __name__ == "__main__":
28
  iface = create_interface()
29
- iface.launch()
30
 
31
 
 
19
  fn=predict_image,
20
  inputs=image_input,
21
  outputs=output,
22
+ title="Animal Classifier",
23
+ description="Upload an image to identify the animal class."
24
  )
25
  return iface
26
 
27
  if __name__ == "__main__":
28
  iface = create_interface()
29
+ iface.launch(share=True)
30
 
31