All Projects → evilsocket → Ergo Planes Detector

evilsocket / Ergo Planes Detector

Licence: gpl-3.0
🧠✈️ An ergo based project that relies on a convolutional neural network to detect airplanes from satellite imagery.

Programming Languages

python
139335 projects - #7 most used programming language

planes-detector is an ergo based project that relies on a convolutional neural network to detect airplanes from satellite imagery.

Training

Download the PlanesNet dataset (the zip file with pictures) and extract it somewhere, then:

ergo train /path/to/planes-detector --dataset /path/to/planesnet/pictures

This will make ergo preprocess the pictures, import them as a csv dataset and start the training algorithm (see how to train on GPU) that can be monitored with tensorboard (logs folder).

After training is completed, you can view the model structure and how the accuracy and loss metrics changed during training with:

ergo view /path/to/planes-detector
Training ROC/AUC
Training Validation Testing

Evaluation

Once the training is completed, you can clean the project from temporary datasets and start a REST API server to test the model:

cd /path/to/planes-detector
ergo clean .
ergo serve .

You can test the predictions with curl:

curl http://127.0.0.1:8080/?x=/path/to/filename.jpg

Alternatively you can use the file model.h5 (created inside the project folder after training) by loadeding it as you would normally do with Keras API for evaluation.

License

planes-detector was made with ♥ by Simone Margaritelli and it is released under the GPL 3 license.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].