mindspore-lab / mindcv

A toolbox of vision models and algorithms based on MindSpore
https://mindspore-lab.github.io/mindcv/
Apache License 2.0
235 stars 143 forks source link

SSD examples based on MindCV #704

Closed DexterJZ closed 1 year ago

DexterJZ commented 1 year ago

Implement SSD object detector based on MindCV backbones (MobileNetV2, ResNet50, MobileNetV3)

Thank you for your contribution to the MindCV repo. Before submitting this PR, please make sure:

Motivation

(Write your motivation for proposed changes here.)

Test Plan

(How should this PR be tested? Do you require special setup to run the test or repro the fixed bug?)

Related Issues and PRs

Issue #4

(Is this PR part of a group of changes? Link the other relevant PRs and Issues here. Use https://help.github.com/en/articles/closing-issues-using-keywords for help on GitHub syntax)

geniuspatrick commented 1 year ago
  1. Callback可以复用仓里已有的吗?
  2. 数据集是和模型绑定的还是和数据集绑定的?如果之和coco相关,是不是可以抽象到包内,以便后续检测模型同样能够使用。
  3. 文件不必以ssd作为前缀
  4. 考虑讲一部分逻辑进行解耦,只将与模型强相关的,放到example里,其他的可以放在包里,以作后续复用
DexterJZ commented 1 year ago

Files renamed. Other tasks are suggested to be marked and left for the future.