Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/lim-calculus/object-localization-with-tensorflow

Coursera Guided Project Network : Object Localization with Tensorflow
https://github.com/lim-calculus/object-localization-with-tensorflow

computer-vision convolutional-neural-networks deep-learning keras neural-network object-localization tensorflow tensorflow-tutorials

Last synced: 5 days ago
JSON representation

Coursera Guided Project Network : Object Localization with Tensorflow

Awesome Lists containing this project

README

        

# Object Localization with Tensorflow
Coursera Guided Project Network : [Object Localization with Tensorflow](https://www.coursera.org/projects/object-localization-tensorflow)
Instructor : Amit Yadav
![](https://github.com/Lim-Calculus/Object-Localization-With-Tensorflow/blob/main/Certificate/Object%20localization%20with%20tensorflow.png)
## Project Description
This guided project employs TensorFlow's Keras API to train a convolutional neural network to classify and locate emojis in images. The position of the emojis in the photographs is referred to as localization in this context. This means the network will have a single input and two outputs. Object localization is a more straightforward variant of object detection. We may have many items in the input photos for object detection, and an object detection model predicts the classes as well as the bounding boxes for all of those objects. In object localization, we assume that there is only one item in each given image and that our CNN model will classify and locate that object. The model is trained with 50 epochs with ADAM (adaptive moment estimation) optimizers with an intial learning rate of 1e-3. A learning rate scheduler is applied to reduce the learning rate by a factor of 0.2 every five epochs. The minimum learning rate is set at 3e-7. The final classification accuracy achieved is 100% with an IoU (Intersection of Union) of 0.7228.
## The framework and theory covered
1. TensorFlow
2. Keras
3. Machine Learning / Deep Learning
4. Computer Vision
5. IoU (Intersection of Union)

Source Code : [Object Localization with TensorFlow](https://github.com/Lim-Calculus/Object-Localization-With-Tensorflow/blob/main/Coursera_Guided_Project_Object_Localization_with_TensorFlow_Starter.ipynb)