This demo uses TensorFlow.js with MobileNet and KNN Classification to verify package deliveries are being made to the correct address by comparing the delivery location's front door with known examples.
- The system is trained with:
- 5 examples of random front doors (negative examples)
- 2 examples of the correct delivery address's front door (positive examples)
- When testing a delivery, the system will classify the door as either:
- ✅ Correct Delivery Address
- ❌ Wrong Address - Please Double Check
- HINT: Try swapping back and forth between the correct and incorrect test images to see how the model performs.
- Clone this repository
- Run
npm install
- Run
npm run dev
- Open the app in your browser at
http://localhost:5173