A deep neural network application for classification of images as a cat or not cat.
- How our application works ?
- How our neural network model works ?
After downloading are project you can directly run main.py file.
1. Insert Image : You can browse your image or choose from images folder in this project.
2. Predict Image : Once you can see your selected image you can click on Predict button which will run our predict function on your image and output the result below your image.
1. Initialize parameters
2. Forward Propogation
3. Cost Calculation
4. Backward Propogation
5. Update Parameters
6. Predict function
All functions required for this are defined in dnn_app_utils_v3.py file.