NimurAI's picture
Upload 40ea6e0a-a7c3-41a3-86c9-4c059fcbcd30/README.md with huggingface_hub
99e94ca verified
# Plant Disease Detection Model - 40ea6e0a-a7c3-41a3-86c9-4c059fcbcd30
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: 40ea6e0a-a7c3-41a3-86c9-4c059fcbcd30
- Format: TensorFlow Lite
- Optimized: Yes