Code
flowchart TD
A[Upload Image] --> B[React Frontend]
B --> C[FastAPI Backend]
C --> D[TensorFlow Model]
D --> E[Classification Result] E --> B
AI-Powered Plant Health Assessment
Tam Le
October 2, 2025
This is a simple machine learning project that demonstrates a potato disease detection system. The project includes:
See the complete application in action - from image upload to disease prediction results.
This project demonstrates my ability to: - Build end-to-end ML applications - Create REST APIs with FastAPI - Develop React frontends - Document projects professionally with Quarto - Work with TensorFlow/Keras
Backend: - FastAPI - TensorFlow - PIL (Pillow) - NumPy
Frontend: - React - Material-UI - Axios - Material-UI Dropzone
Model: - CNN trained on PlantVillage dataset - 3 classes: Early Blight, Late Blight, Healthy
/api
- FastAPI backend with model serving/frontend
- React application/models
- Trained TensorFlow model/training
- Jupyter notebook with training code