wokaikaixinxin

Results 7 comments of wokaikaixinxin

(1) ``` vim projects/RR360/configs360/_base_/datasets/dota.py ``` (2) 将第50和67行的img_shape=(1024,1024)注释掉 (3) 保存

实际上,后续还有类似的BUG,一并修改了吧。 (1) ``` vim projects/RR360/configs360/rotated_rtmdet_x3_r/_base_/dota_rr.py ``` 将第68和85行的img_shape=(1024,1024)注释掉,保存。 (2) ``` vim projects/RR360/configs360/rotated_rtmdet_x3/_base_/dota_rr.py ``` 将第68和85行的img_shape=(1024,1024)注释掉,保存。

add `dict(type='mmdet.FilterAnnotations', min_gt_bbox_wh=(1e-2, 1e-2)),` in `train_pipeline` ``` train_pipeline = [ dict(type='mmdet.LoadImageFromFile', backend_args=backend_args), dict(type='mmdet.LoadAnnotations', with_bbox=True, box_type='qbox'), dict(type='ConvertBoxType', box_type_mapping=dict(gt_bboxes='rbox')), dict(type='mmdet.Resize', scale=(800, 800), keep_ratio=True), dict(type='mmdet.FilterAnnotations', min_gt_bbox_wh=(1e-2, 1e-2)), # add this dict( type='mmdet.RandomFlip', prob=0.75,...

> 你好,请问mmrotate 1x如何设置GPU的数量和id?train.py文件里面没有设置项。 Excuse me, how do I set the number and id of Gpus in mmrotate 1x? There are no Settings in the train.py file. 在`tools/`路径下,有`dist_train.sh`和`slurm_train.sh`,能设置GPU的数量。 我们的项目[ai4rs](https://github.com/wokaikaixinxin/ai4rs)集成了最近的遥感的工作。

> ### Branch > master branch https://mmrotate.readthedocs.io/en/latest/ > > ### 📚 The doc issue > I trained and tested the DOTA dataset using RTMDet method, but I found that there...