dielz commited on
Commit
279f8b2
·
verified ·
1 Parent(s): 38160c6

add disclaimer

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -30,8 +30,8 @@ interface = gr.Interface(
30
  fn=predict_image,
31
  inputs=gr.Image(type="pil"),
32
  outputs=[gr.Image(type="pil"), "text"],
33
- title="Animal Classifier",
34
- description="Upload an image of an animal, and the model will predict it."
35
  )
36
 
37
  interface.launch(share=True)
 
30
  fn=predict_image,
31
  inputs=gr.Image(type="pil"),
32
  outputs=[gr.Image(type="pil"), "text"],
33
+ title="Animals Classifier",
34
+ description="Upload an image of an animal, and the model will predict it.\n\n**Disclaimer:** This model is trained only on specific animal classes (butterfly, cats, cow, dogs, elephant, horse, monkey, sheep, spider, squirrel) and may not accurately predict animals outside these classes."
35
  )
36
 
37
  interface.launch(share=True)