Skip to content

Commit 27f8c10

Browse files
Update README with CI badge and model info
Added CI badge and model download instructions.
1 parent 12e42ef commit 27f8c10

1 file changed

Lines changed: 22 additions & 2 deletions

File tree

README.md

Lines changed: 22 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
A deep learning system for **plant disease detection and progression tracking** built on the PlantVillage dataset. Given a leaf image, the model identifies the disease, classifies its stage (healthy → early → mid → late), estimates days since infection, and computes a treatment urgency score.
44

55
[![Open in Colab](https://colab.research.google.com/assets/colab-badge.svg)](https://colab.research.google.com/github/sharr-catalyst/Sick-greens/blob/main/YourGreensAreSick_v2.ipynb)
6+
[![CI](https://github.com/sharr-catalyst/Sick-greens/actions/workflows/ci.yml/badge.svg?branch=main)](https://github.com/sharr-catalyst/Sick-greens/actions/workflows/ci.yml)
67
[![Python](https://img.shields.io/badge/Python-3.8%2B-3776AB?logo=python&logoColor=white)](https://www.python.org/)
78
[![TensorFlow](https://img.shields.io/badge/TensorFlow-2.12%2B-FF6F00?logo=tensorflow&logoColor=white)](https://www.tensorflow.org/)
89
[![Keras](https://img.shields.io/badge/Keras-2.12%2B-D00000?logo=keras&logoColor=white)](https://keras.io/)
@@ -11,7 +12,8 @@ A deep learning system for **plant disease detection and progression tracking**
1112
[![Classes](https://img.shields.io/badge/Classes-38-orange)](https://github.com/sharr-catalyst/Sick-greens)
1213
[![Stages](https://img.shields.io/badge/Stages-4-yellowgreen)](https://github.com/sharr-catalyst/Sick-greens)
1314
[![License](https://img.shields.io/badge/License-Apache%202.0-lightgrey)](LICENSE)
14-
[![CI](https://github.com/sharr-catalyst/Sick-greens/actions/workflows/blank.yml/badge.svg?branch=main)](https://github.com/sharr-catalyst/Sick-greens/actions/workflows/blank.yml)
15+
[![Hugging Face](https://img.shields.io/badge/🤗%20Model-Hugging%20Face-yellow)](https://huggingface.co/Sharmistha-catalyst/sick-greens-plant-disease)
16+
1517
---
1618

1719
## What It Does
@@ -121,6 +123,7 @@ See [`requirements.txt`](requirements.txt) for the full pinned list.
121123
---
122124

123125
## 📂 Project Structure
126+
124127
```
125128
Sick-greens/
126129
@@ -137,7 +140,24 @@ Sick-greens/
137140
│ └── progression_curve.png
138141
└── README.md
139142
```
140-
143+
144+
---
145+
146+
## Model
147+
148+
The trained model is hosted on Hugging Face:
149+
150+
[![Hugging Face](https://img.shields.io/badge/🤗%20Hugging%20Face-sick--greens--plant--disease-yellow)](https://huggingface.co/Sharmistha-catalyst/sick-greens-plant-disease)
151+
152+
To download programmatically:
153+
```python
154+
from huggingface_hub import hf_hub_download
155+
156+
model_path = hf_hub_download(
157+
repo_id="Sharmistha-catalyst/sick-greens-plant-disease",
158+
filename="final_progression_model.h5"
159+
)
160+
```
141161

142162
---
143163

0 commit comments

Comments
 (0)