Plant Disease Detection Model - 5c621a08-cf71-45cd-a2c6-c621c54871a3
This folder contains the trained YOLO model for plant disease detection.
Files:
model.tflite
: TensorFlow Lite model for inferenceclasses.txt
: Class labels for the model
Usage:
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: 5c621a08-cf71-45cd-a2c6-c621c54871a3
- Format: TensorFlow Lite
- Optimized: Yes