Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
140 changes: 140 additions & 0 deletions docs/development/model-coverage.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,140 @@
# Model Coverage

This page is generated by comparing git-tracked model modules under `visdet/models/` against the upstream reference snapshot in `archive/mmdet/models/`.

It is intended as a quick overview of what we have ported vs what remains from upstream.

## Summary

- The lists below are based on module filenames (not config availability).
- `archive/mmdet/` is treated as read-only upstream reference.

## Detectors

- Implemented: **9**
- Missing (in archive, not in visdet): **47**
- visdet-only: **3**

<details>
<summary>Implemented</summary>

`atss`, `cascade_rcnn`, `fast_rcnn`, `faster_rcnn`, `fcos`, `gfl`, `mask_rcnn`, `retinanet`, `rtmdet`

</details>

<details>
<summary>Missing</summary>

`autoassign`, `base_detr`, `boxinst`, `centernet`, `condinst`, `conditional_detr`, `cornernet`, `crowddet`, `d2_wrapper`, `dab_detr`, `ddod`, `ddq_detr`, `deformable_detr`, `detr`, `dino`, `fovea`, `fsaf`, `glip`, `grid_rcnn`, `grounding_dino`, `htc`, `kd_one_stage`, `lad`, `mask2former`, `mask_scoring_rcnn`, `maskformer`, `nasfcos`, `paa`, `panoptic_fpn`, `panoptic_two_stage_segmentor`, `point_rend`, `queryinst`, `reppoints_detector`, `rpn`, `scnet`, `semi_base`, `soft_teacher`, `solo`, `solov2`, `sparse_rcnn`, `tood`, `trident_faster_rcnn`, `vfnet`, `yolact`, `yolo`, `yolof`, `yolox`

</details>

<details>
<summary>visdet-only</summary>

`anchor_free_detectors`, `ssd`, `yolo_detectors`

</details>

## Backbones

- Implemented: **8**
- Missing (in archive, not in visdet): **10**

<details>
<summary>Implemented</summary>

`cspnext`, `hrnet`, `regnet`, `res2net`, `resnest`, `resnet`, `resnext`, `swin`

</details>

<details>
<summary>Missing</summary>

`csp_darknet`, `darknet`, `detectors_resnet`, `detectors_resnext`, `efficientnet`, `hourglass`, `mobilenet_v2`, `pvt`, `ssd_vgg`, `trident_resnet`

</details>

## Necks

- Implemented: **3**
- Missing (in archive, not in visdet): **16**

<details>
<summary>Implemented</summary>

`bfp`, `cspnext_pafpn`, `fpn`

</details>

<details>
<summary>Missing</summary>

`channel_mapper`, `ct_resnet_neck`, `dilated_encoder`, `dyhead`, `fpg`, `fpn_carafe`, `fpn_dropblock`, `hrfpn`, `nas_fpn`, `nasfcos_fpn`, `pafpn`, `rfp`, `ssd_neck`, `ssh`, `yolo_neck`, `yolox_pafpn`

</details>

## Dense Heads

- Implemented: **13**
- Missing (in archive, not in visdet): **38**

<details>
<summary>Implemented</summary>

`atss_head`, `centernet_head`, `fcos_head`, `fovea_head`, `fsaf_head`, `gfl_head`, `retina_head`, `rpn_head`, `rtmdet_head`, `rtmdet_ins_head`, `ssd_head`, `yolo_head`, `yolox_head`

</details>

<details>
<summary>Missing</summary>

`atss_vlfusion_head`, `autoassign_head`, `boxinst_head`, `cascade_rpn_head`, `centernet_update_head`, `centripetal_head`, `condinst_head`, `conditional_detr_head`, `corner_head`, `dab_detr_head`, `ddod_head`, `ddq_detr_head`, `deformable_detr_head`, `detr_head`, `dino_head`, `embedding_rpn_head`, `free_anchor_retina_head`, `ga_retina_head`, `ga_rpn_head`, `grounding_dino_head`, `guided_anchor_head`, `lad_head`, `ld_head`, `mask2former_head`, `maskformer_head`, `nasfcos_head`, `paa_head`, `pisa_retinanet_head`, `pisa_ssd_head`, `reppoints_head`, `retina_sepbn_head`, `sabl_retina_head`, `solo_head`, `solov2_head`, `tood_head`, `vfnet_head`, `yolact_head`, `yolof_head`

</details>

## RoI Heads

- Implemented: **12**
- Missing (in archive, not in visdet): **26**
- visdet-only: **1**

<details>
<summary>Implemented</summary>

`base_roi_extractor`, `base_roi_head`, `bbox_head`, `cascade_roi_head`, `convfc_bbox_head`, `double_bbox_head`, `double_roi_head`, `dynamic_roi_head`, `fcn_mask_head`, `mask_scoring_roi_head`, `single_level_roi_extractor`, `standard_roi_head`

</details>

<details>
<summary>Missing</summary>

`coarse_mask_head`, `dii_head`, `dynamic_mask_head`, `feature_relay_head`, `fused_semantic_head`, `generic_roi_extractor`, `global_context_head`, `grid_head`, `grid_roi_head`, `htc_mask_head`, `htc_roi_head`, `mask_point_head`, `maskiou_head`, `multi_instance_bbox_head`, `multi_instance_roi_head`, `pisa_roi_head`, `point_rend_roi_head`, `res_layer`, `sabl_head`, `scnet_bbox_head`, `scnet_mask_head`, `scnet_roi_head`, `scnet_semantic_head`, `sparse_roi_head`, `test_mixins`, `trident_roi_head`

</details>

<details>
<summary>visdet-only</summary>

`mask_iou_head`

</details>

## Losses

- Implemented: **9**
- Missing (in archive, not in visdet): **12**

<details>
<summary>Implemented</summary>

`balanced_l1_loss`, `cross_entropy_loss`, `dice_loss`, `focal_loss`, `gaussian_focal_loss`, `gfocal_loss`, `iou_loss`, `mse_loss`, `smooth_l1_loss`

</details>

<details>
<summary>Missing</summary>

`ae_loss`, `ddq_detr_aux_loss`, `eqlv2_loss`, `ghm_loss`, `kd_loss`, `l2_loss`, `margin_loss`, `multipos_cross_entropy_loss`, `pisa_loss`, `seesaw_loss`, `triplet_loss`, `varifocal_loss`

</details>
1 change: 1 addition & 0 deletions mkdocs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -115,6 +115,7 @@ nav:
- Development:
- Contributing: development/contributing.md
- Architecture: development/architecture.md
- Model Coverage: development/model-coverage.md
- About:
- Changelog: about/changelog.md
- License: about/license.md
Expand Down
Loading