Update README.md
Browse files
README.md
CHANGED
|
@@ -1,3 +1,24 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
# 🌱 Plant Seedlings Classification — AI for Smarter Agriculture
|
| 2 |
|
| 3 |
## 🧩 Overview
|
|
@@ -42,4 +63,4 @@ x = image.img_to_array(img)
|
|
| 42 |
x = np.expand_dims(x, axis=0) / 255.0
|
| 43 |
|
| 44 |
pred = np.argmax(model.predict(x), axis=1)
|
| 45 |
-
print("Predicted plant category:", pred)
|
|
|
|
| 1 |
+
---
|
| 2 |
+
language:
|
| 3 |
+
- en
|
| 4 |
+
pipeline_tag: image-classification
|
| 5 |
+
---
|
| 6 |
+
language: en
|
| 7 |
+
license: mit
|
| 8 |
+
tags:
|
| 9 |
+
- image-classification
|
| 10 |
+
- agriculture
|
| 11 |
+
- deep-learning
|
| 12 |
+
- tensorflow
|
| 13 |
+
- keras
|
| 14 |
+
datasets:
|
| 15 |
+
- Plant Seedlings Dataset
|
| 16 |
+
model-index:
|
| 17 |
+
- name: Plant_Seedlings_Classification
|
| 18 |
+
results: []
|
| 19 |
+
---
|
| 20 |
+
|
| 21 |
+
---
|
| 22 |
# 🌱 Plant Seedlings Classification — AI for Smarter Agriculture
|
| 23 |
|
| 24 |
## 🧩 Overview
|
|
|
|
| 63 |
x = np.expand_dims(x, axis=0) / 255.0
|
| 64 |
|
| 65 |
pred = np.argmax(model.predict(x), axis=1)
|
| 66 |
+
print("Predicted plant category:", pred)
|