A lightweight ML deployment system for compressed image classification.
- MobileNetV2 fine-tuned on CIFAR-10
- ONNX export for deployment
- INT8 quantization for size reduction
MLH_PROJECT/
├── training/ # Training and export scripts
├── models/ # ONNX models
├── app/ # API (coming soon)
└── tests/ # Tests (coming soon)
pip install -r requirements.txt
cd training
python train.py
python export_onnx.pyThis project demonstrates production ML deployment for the MLH Fellowship.