tordks / image_classification

Framework for training and tracking deep learning models built on pytorch-lightning and hydra. Soon to encompass both image classification, semantic segmentation and object detection.
2 stars 0 forks source link

Investigate what is needed for allowing to train object detection models #73

Open tordks opened 2 years ago

tordks commented 2 years ago

misc material:

papers:

timeline of object detection models

image

datasets

tordks commented 2 years ago

It seems that the following tasks need to be performed to be able to support one-step object detection:

label = {"cls": [<cls-1>, <cls-2>, ...], "bbox": [<bbox-1>, <bbox-2>, ...]}

At this point it might be beneficial to create a general wrapper to assign targets to their correct places that can be used for loss functions, transforms, visualization etc. etc.

tordks commented 2 years ago

Consider whether object detection within lightning-flash can be used within this framework

Consider whether we can reuse models from icevision

tordks commented 2 years ago

Detectron2: https://towardsdatascience.com/object-detection-in-6-steps-using-detectron2-705b92575578