# Plant Disease Detection Model - af606ff3-e32f-4d0a-b46e-1af9e310a9ab | |
This folder contains the trained YOLO model for plant disease detection. | |
## Files: | |
- `model.tflite`: TensorFlow Lite model for inference | |
- `classes.txt`: Class labels for the model | |
## Usage: | |
```python | |
import tensorflow as tf | |
# Load the model | |
interpreter = tf.lite.Interpreter(model_path="model.tflite") | |
interpreter.allocate_tensors() | |
# Load classes | |
with open("classes.txt", "r") as f: | |
classes = [line.strip() for line in f.readlines()] | |
``` | |
## Model Information: | |
- Plant ID: af606ff3-e32f-4d0a-b46e-1af9e310a9ab | |
- Format: TensorFlow Lite | |
- Optimized: Yes | |