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

Two-shot pipeline #179

Open
3 of 4 tasks
MinhxNguyen7 opened this issue Apr 18, 2024 · 0 comments · May be fixed by #184
Open
3 of 4 tasks

Two-shot pipeline #179

MinhxNguyen7 opened this issue Apr 18, 2024 · 0 comments · May be fixed by #184
Assignees

Comments

@MinhxNguyen7
Copy link
Contributor

MinhxNguyen7 commented Apr 18, 2024

Description

  • Implement two-shot pipeline, where the first shot detects bounding boxes, and the second shot provides all classifications.
  • The first model will be YOLOv8n with low threshold.
  • The second model will be a custom CNN model, possibly implementing something like U-NET.

Justification

  • Currently, shape classification performance is high, but detection is low. By reducing number of classes in the first model, we should be able to improve the performance. Also, we can lower the threshold of the first model to increase recall.
  • Since the classification tasks are relatively overlapping—the color classifier has to somewhat segment the image at some point—we can combine all the classifiers into the same model, which should improve efficiency while allowing us to use a bigger model.

TODOs

  • Refactor the pipeline accordingly.
  • Change the tests (if necessary).
  • Train the first model.
  • Develop the second model.

Related Issues

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

Successfully merging a pull request may close this issue.

1 participant