Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Object detection #194

Open
arthurdouillard opened this issue Oct 3, 2021 · 4 comments
Open

Object detection #194

arthurdouillard opened this issue Oct 3, 2021 · 4 comments

Comments

@arthurdouillard
Copy link
Collaborator

We currently only support bbox when used for cropping the image, but we don't support bbox for targets, especially when there are several bbox per image.

Should they been passed through y or via attributes of the dataset?

@arthurdouillard arthurdouillard mentioned this issue Oct 3, 2021
18 tasks
@angelomenezes
Copy link

Hello Arthur!

Thanks for this incredibly useful library. I'd like to know if you and @TLESORT have plans to incorporate some benchmarks of the incremental object detection field in your lib. If so, have you guys already decided on how to pass all bboxes and class information to conform with the scenario structure ? I'm implementing some CL strategies for such task and might be able to help you! =)

@arthurdouillard
Copy link
Collaborator Author

Hey!

I think we would need a new kind of taskset, and a new scenario. I'm not super familiar with continual object detection, but I assume it's similar to continual segmentation, where we could see an image containing both past, present, and future classes right?

If yes, we can draw inspiration from this class https://github.com/Continvvm/continuum/blob/master/continuum/scenarios/segmentation.py#L17

@zhaoedf
Copy link

zhaoedf commented Feb 13, 2022

Hey!

I think we would need a new kind of taskset, and a new scenario. I'm not super familiar with continual object detection, but I assume it's similar to continual segmentation, where we could see an image containing both past, present, and future classes right?

If yes, we can draw inspiration from this class https://github.com/Continvvm/continuum/blob/master/continuum/scenarios/segmentation.py#L17

if i wanted to implement object detection scenarios in continuum style(i.e. achieving sth like your incremental semantic segmentation scenarios ), is there anything i might be able to exploit in continuum?

@arthurdouillard
Copy link
Collaborator Author

Hum... I'm not very well aware of the scenarios in Continual Object Detection, but if we assume they are like the scenarios in segmentation (namely sequential, disjoint, and overlap):

So I think it's rather straightforward. You could leave the support of bounding_boxes in the TaskSet and base dataset (

def bounding_boxes(self) -> List:
) if you want to be able to crop the image, but I don't think it's your intention.

I can help you in that goal if you need help :)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

3 participants