### Branch master branch https://mmrotate.readthedocs.io/en/latest/ ### 📚 The doc issue https://github.com/open-mmlab/mmrotate/blob/b030f38909fc431be7ecb90772ac30da9da29bcb/mmrotate/models/roi_heads/oriented_standard_roi_head.py#L126 In the `simple_test_bboxes` func,[docstring of Returns](https://github.com/open-mmlab/mmrotate/blob/b030f38909fc431be7ecb90772ac30da9da29bcb/mmrotate/models/roi_heads/oriented_standard_roi_head.py#L142) is written with ``` ... each \ tensor has the shape (num_boxes, 5) and last dimension \ 5 represent (cx, cy, w, h, a, score). ... ``` It should be fixed to ``` ... each \ tensor has the shape (num_boxes, 6) and last dimension \ 6 represent (cx, cy, w, h, a, score). ... ``` ### Suggest a potential alternative/fix _No response_