A simple convolutional neural network for car recognizer using keras
library that achieves over 95% accuracy
- Simply
pip install -r dependencies.txt
or - Install
sklearn
usingsudo pip install sklearn
- Install
keras
usingsudo pip install keras
- Install
skimage
usingsudo pip install scikit-image
- Conv layer
- ReLU activation
- Pool layer
- Conv layer
- ReLU activation
- Pool layer
- Fully connected layer
- Softmax layer
python predict.py
for prediction
- run the server
run_keras_server.py
- Submit a request via cURL
curl -X POST -F image=@imagename.jpg 'http://localhost:5000/predict'
- Submita a request via Python
python simple_request.py