A simple image classification system using MobileNet V2 on Raspberry Pi.
- Clone the repository:
git clone https://github.com/csanz/rasberrypi-ai-detect.git
cd rasberrypi-ai-detect- Create a models directory:
mkdir -p models- Download MobileNet V2:
- Visit MobileNet V2 on Kaggle
- Download the TFLite model
- Rename it to
mobilenet_v2.tfliteand place it in themodelsdirectory - Download the labels file and rename it to
mobilenet_v2.txt
Run inference on an image:
python3 run_inference.py path/to/your/image.jpgGPL-3.0 license

