Skip to content

Latest commit

 

History

History
34 lines (24 loc) · 727 Bytes

index.rst

File metadata and controls

34 lines (24 loc) · 727 Bytes

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
  • Submodule of Model <submodule_model>
  • Algorithm <algorithm>
  • Utility <utils_model>

model.rst

Back to Homepage </index>