Spaces:
Build error
Build error
Update app.py
Browse files
app.py
CHANGED
@@ -25,7 +25,12 @@ interface = gr.Interface(fn = classify,
|
|
25 |
title = "Plant Leaf Disease Classifier",
|
26 |
description = """Below is a simple app to detect Angular Leaf Spot and Bean Rust diseases on leaves.
|
27 |
Data was annotated by experts from the National Crops Resources Research Institute (NaCRRI)
|
28 |
-
in Uganda and collected by the Makerere AI research lab.
|
|
|
|
|
|
|
|
|
|
|
29 |
examples = example_imgs)
|
30 |
|
31 |
interface.launch(debug=True)
|
|
|
25 |
title = "Plant Leaf Disease Classifier",
|
26 |
description = """Below is a simple app to detect Angular Leaf Spot and Bean Rust diseases on leaves.
|
27 |
Data was annotated by experts from the National Crops Resources Research Institute (NaCRRI)
|
28 |
+
in Uganda and collected by the Makerere AI research lab.
|
29 |
+
|
30 |
+
The model being used is a fine-tuned Vision Transformer, specifically beginning with [google/vit-base-patch16-224
|
31 |
+
(https://huggingface.co/google/vit-base-patch16-224) and trained using the [beans](https://huggingface.co/datasets/beans) dataset.
|
32 |
+
This app was created in Abubakar Abid's 'Building End-to-End Vision Applications' course through CoRise.
|
33 |
+
""",
|
34 |
examples = example_imgs)
|
35 |
|
36 |
interface.launch(debug=True)
|