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

https://github.com/adeel-intizar/keras-retinanet

TensorFlow/Keras Implementation of RetinaNet from Scratch
https://github.com/adeel-intizar/keras-retinanet

keras-retinanet object-detection retinanet tensorflow-object-detection

Last synced: 2 months ago
JSON representation

TensorFlow/Keras Implementation of RetinaNet from Scratch

Awesome Lists containing this project

README

        

# Keras-RetinaNet

This Repository conatains Implementation of RetinaNet from Scratch Using TensorFlow/Keras. The Backbone Used is ResNet50 which is built-in
in TensorFlow/Keras.
You can train the Model on Your Custom Dataset as well as you can train it on official COCO dataset.

In 'dataset.py' file set data_dir=None to train on full COCO dataset, or leave it as it is to train on smaller dataset (500 images) and you can
prepare you custom dataset as well.

Then use 'train.py' file to train the model.

After Training you can use 'load_model.py' file to Load the checkpoint weights, or you can download previously trained weights and use it and
Visualize the Detected Objects in the images.