Module of ModelsΒΆ

Normally a model of deep learning based computer vision algorithm is composed by many parts, backbone, neck, head and so on. So their implementations are stored in the directory with same name. The parent class of all model modules is BaseModelModule.

The separation of directory model also follows the name of modules:

model/
   - algorithms/
   - modules/
      - backbone
      - neck
      - head
      - ...
   - utils

Back to Homepage