NimurAI commited on
Commit
37f2e10
·
verified ·
1 Parent(s): 64e10a6

Upload 5c621a08-cf71-45cd-a2c6-c621c54871a3/README.md with huggingface_hub

Browse files
5c621a08-cf71-45cd-a2c6-c621c54871a3/README.md ADDED
@@ -0,0 +1,25 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Plant Disease Detection Model - 5c621a08-cf71-45cd-a2c6-c621c54871a3
2
+
3
+ This folder contains the trained YOLO model for plant disease detection.
4
+
5
+ ## Files:
6
+ - `model.tflite`: TensorFlow Lite model for inference
7
+ - `classes.txt`: Class labels for the model
8
+
9
+ ## Usage:
10
+ ```python
11
+ import tensorflow as tf
12
+
13
+ # Load the model
14
+ interpreter = tf.lite.Interpreter(model_path="model.tflite")
15
+ interpreter.allocate_tensors()
16
+
17
+ # Load classes
18
+ with open("classes.txt", "r") as f:
19
+ classes = [line.strip() for line in f.readlines()]
20
+ ```
21
+
22
+ ## Model Information:
23
+ - Plant ID: 5c621a08-cf71-45cd-a2c6-c621c54871a3
24
+ - Format: TensorFlow Lite
25
+ - Optimized: Yes