You can not select more than 25 topics Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.

modeling.rst 1.6 kB

3 years ago
1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. detectron2.modeling package
  2. ===========================
  3. .. automodule:: detectron2.modeling
  4. :members:
  5. :undoc-members:
  6. :show-inheritance:
  7. detectron2.modeilng.poolers module
  8. ---------------------------------------
  9. .. automodule:: detectron2.modeling.poolers
  10. :members:
  11. :undoc-members:
  12. :show-inheritance:
  13. detectron2.modeilng.sampling module
  14. ------------------------------------
  15. .. automodule:: detectron2.modeling.sampling
  16. :members:
  17. :undoc-members:
  18. :show-inheritance:
  19. detectron2.modeilng.box_regression module
  20. ------------------------------------------
  21. .. automodule:: detectron2.modeling.box_regression
  22. :members:
  23. :undoc-members:
  24. :show-inheritance:
  25. Model Registries
  26. -----------------
  27. These are different registries provided in modeling.
  28. Each registry provide you the ability to replace it with your customized component,
  29. without having to modify detectron2's code.
  30. Note that it is impossible to allow users to customize any line of code directly.
  31. Even just to add one line at some place,
  32. you'll likely need to find out the smallest registry which contains that line,
  33. and register your component to that registry.
  34. .. autodata:: detectron2.modeling.META_ARCH_REGISTRY
  35. .. autodata:: detectron2.modeling.BACKBONE_REGISTRY
  36. .. autodata:: detectron2.modeling.PROPOSAL_GENERATOR_REGISTRY
  37. .. autodata:: detectron2.modeling.ROI_HEADS_REGISTRY
  38. .. autodata:: detectron2.modeling.ROI_BOX_HEAD_REGISTRY
  39. .. autodata:: detectron2.modeling.ROI_MASK_HEAD_REGISTRY
  40. .. autodata:: detectron2.modeling.ROI_KEYPOINT_HEAD_REGISTRY

No Description