├── .dev ├── gather_models.py └── upload_modelzoo.py ├── .github ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md └── ISSUE_TEMPLATE │ ├── config.yml │ ├── error-report.md │ ├── feature_request.md │ └── general_questions.md ├── .gitignore ├── .pre-commit-config.yaml ├── .readthedocs.yml ├── LICENSE ├── README.md ├── README_mmsegmentation.md ├── configs ├── _base_ │ ├── datasets │ │ ├── ade20k.py │ │ ├── cityscapes.py │ │ ├── cityscapes_769x769.py │ │ ├── ddr.py │ │ ├── idrid.py │ │ ├── pascal_context.py │ │ ├── pascal_voc12.py │ │ └── pascal_voc12_aug.py │ ├── default_runtime.py │ ├── models │ │ ├── ann_r50-d8.py │ │ ├── ccnet_r50-d8.py │ │ ├── cgnet.py │ │ ├── danet_r50-d8.py │ │ ├── deeplabv3_r50-d8.py │ │ ├── deeplabv3plus_r50-d8.py │ │ ├── dnl_r50-d8.py │ │ ├── emanet_r50-d8.py │ │ ├── encnet_r50-d8.py │ │ ├── fast_scnn.py │ │ ├── fcn_hr18.py │ │ ├── fcn_hr48.py │ │ ├── fcn_r50-d8.py │ │ ├── fpn_r50.py │ │ ├── gcnet_r50-d8.py │ │ ├── nonlocal_r50-d8.py │ │ ├── ocrnet_hr18.py │ │ ├── ocrnet_r50-d8.py │ │ ├── pointrend_r50.py │ │ ├── psanet_r50-d8.py │ │ ├── pspnet_r50-d8.py │ │ └── upernet_r50.py │ └── schedules │ │ ├── schedule_160k.py │ │ ├── schedule_20k.py │ │ ├── schedule_40k.py │ │ ├── schedule_40k_idrid.py │ │ ├── schedule_60k_ddr.py │ │ └── schedule_80k.py ├── ann │ ├── README.md │ ├── ann_r101-d8_512x1024_40k_cityscapes.py │ ├── ann_r101-d8_512x1024_80k_cityscapes.py │ ├── ann_r101-d8_512x512_160k_ade20k.py │ ├── ann_r101-d8_512x512_20k_voc12aug.py │ ├── ann_r101-d8_512x512_40k_voc12aug.py │ ├── ann_r101-d8_512x512_80k_ade20k.py │ ├── ann_r101-d8_769x769_40k_cityscapes.py │ ├── ann_r101-d8_769x769_80k_cityscapes.py │ ├── ann_r50-d8_512x1024_40k_cityscapes.py │ ├── ann_r50-d8_512x1024_80k_cityscapes.py │ ├── ann_r50-d8_512x512_160k_ade20k.py │ ├── ann_r50-d8_512x512_20k_voc12aug.py │ ├── ann_r50-d8_512x512_40k_voc12aug.py │ ├── ann_r50-d8_512x512_80k_ade20k.py │ ├── ann_r50-d8_769x769_40k_cityscapes.py │ └── ann_r50-d8_769x769_80k_cityscapes.py ├── ccnet │ ├── README.md │ ├── ccnet_r101-d8_512x1024_40k_cityscapes.py │ ├── ccnet_r101-d8_512x1024_80k_cityscapes.py │ ├── ccnet_r101-d8_512x512_160k_ade20k.py │ ├── ccnet_r101-d8_512x512_20k_voc12aug.py │ ├── ccnet_r101-d8_512x512_40k_voc12aug.py │ ├── ccnet_r101-d8_512x512_80k_ade20k.py │ ├── ccnet_r101-d8_769x769_40k_cityscapes.py │ ├── ccnet_r101-d8_769x769_80k_cityscapes.py │ ├── ccnet_r50-d8_512x1024_40k_cityscapes.py │ ├── ccnet_r50-d8_512x1024_80k_cityscapes.py │ ├── ccnet_r50-d8_512x512_160k_ade20k.py │ ├── ccnet_r50-d8_512x512_20k_voc12aug.py │ ├── ccnet_r50-d8_512x512_40k_voc12aug.py │ ├── ccnet_r50-d8_512x512_80k_ade20k.py │ ├── ccnet_r50-d8_769x769_40k_cityscapes.py │ └── ccnet_r50-d8_769x769_80k_cityscapes.py ├── cgnet │ ├── README.md │ ├── cgnet_512x1024_60k_cityscapes.py │ └── cgnet_680x680_60k_cityscapes.py ├── danet │ ├── README.md │ ├── danet_r101-d8_512x1024_40k_cityscapes.py │ ├── danet_r101-d8_512x1024_80k_cityscapes.py │ ├── danet_r101-d8_512x512_160k_ade20k.py │ ├── danet_r101-d8_512x512_20k_voc12aug.py │ ├── danet_r101-d8_512x512_40k_voc12aug.py │ ├── danet_r101-d8_512x512_80k_ade20k.py │ ├── danet_r101-d8_769x769_40k_cityscapes.py │ ├── danet_r101-d8_769x769_80k_cityscapes.py │ ├── danet_r50-d8_512x1024_40k_cityscapes.py │ ├── danet_r50-d8_512x1024_80k_cityscapes.py │ ├── danet_r50-d8_512x512_160k_ade20k.py │ ├── danet_r50-d8_512x512_20k_voc12aug.py │ ├── danet_r50-d8_512x512_40k_voc12aug.py │ ├── danet_r50-d8_512x512_80k_ade20k.py │ ├── danet_r50-d8_769x769_40k_cityscapes.py │ └── danet_r50-d8_769x769_80k_cityscapes.py ├── deeplabv3 │ ├── README.md │ ├── deeplabv3_r101-d16-mg124_512x1024_40k_cityscapes.py │ ├── deeplabv3_r101-d16-mg124_512x1024_80k_cityscapes.py │ ├── deeplabv3_r101-d8_480x480_40k_pascal_context.py │ ├── deeplabv3_r101-d8_480x480_80k_pascal_context.py │ ├── deeplabv3_r101-d8_512x1024_40k_cityscapes.py │ ├── deeplabv3_r101-d8_512x1024_80k_cityscapes.py │ ├── deeplabv3_r101-d8_512x512_160k_ade20k.py │ ├── deeplabv3_r101-d8_512x512_20k_voc12aug.py │ ├── deeplabv3_r101-d8_512x512_40k_voc12aug.py │ ├── deeplabv3_r101-d8_512x512_80k_ade20k.py │ ├── deeplabv3_r101-d8_769x769_40k_cityscapes.py │ ├── deeplabv3_r101-d8_769x769_80k_cityscapes.py │ ├── deeplabv3_r50-d8_480x480_40k_pascal_context.py │ ├── deeplabv3_r50-d8_480x480_80k_pascal_context.py │ ├── deeplabv3_r50-d8_512x1024_40k_cityscapes.py │ ├── deeplabv3_r50-d8_512x1024_80k_cityscapes.py │ ├── deeplabv3_r50-d8_512x512_160k_ade20k.py │ ├── deeplabv3_r50-d8_512x512_20k_voc12aug.py │ ├── deeplabv3_r50-d8_512x512_40k_voc12aug.py │ ├── deeplabv3_r50-d8_512x512_80k_ade20k.py │ ├── deeplabv3_r50-d8_769x769_40k_cityscapes.py │ └── deeplabv3_r50-d8_769x769_80k_cityscapes.py ├── deeplabv3plus │ ├── README.md │ ├── deeplabv3plus_r101-d16-mg124_512x1024_40k_cityscapes.py │ ├── deeplabv3plus_r101-d16-mg124_512x1024_80k_cityscapes.py │ ├── deeplabv3plus_r101-d8_480x480_40k_pascal_context.py │ ├── deeplabv3plus_r101-d8_480x480_80k_pascal_context.py │ ├── deeplabv3plus_r101-d8_512x1024_40k_cityscapes.py │ ├── deeplabv3plus_r101-d8_512x1024_80k_cityscapes.py │ ├── deeplabv3plus_r101-d8_512x512_160k_ade20k.py │ ├── deeplabv3plus_r101-d8_512x512_20k_voc12aug.py │ ├── deeplabv3plus_r101-d8_512x512_40k_voc12aug.py │ ├── deeplabv3plus_r101-d8_512x512_80k_ade20k.py │ ├── deeplabv3plus_r101-d8_769x769_40k_cityscapes.py │ ├── deeplabv3plus_r101-d8_769x769_80k_cityscapes.py │ ├── deeplabv3plus_r50-d8_480x480_40k_pascal_context.py │ ├── deeplabv3plus_r50-d8_480x480_80k_pascal_context.py │ ├── deeplabv3plus_r50-d8_512x1024_40k_cityscapes.py │ ├── deeplabv3plus_r50-d8_512x1024_80k_cityscapes.py │ ├── deeplabv3plus_r50-d8_512x512_160k_ade20k.py │ ├── deeplabv3plus_r50-d8_512x512_20k_voc12aug.py │ ├── deeplabv3plus_r50-d8_512x512_40k_voc12aug.py │ ├── deeplabv3plus_r50-d8_512x512_80k_ade20k.py │ ├── deeplabv3plus_r50-d8_769x769_40k_cityscapes.py │ └── deeplabv3plus_r50-d8_769x769_80k_cityscapes.py ├── dnlnet │ ├── README.md │ ├── dnl_r101-d8_512x1024_40k_cityscapes.py │ ├── dnl_r101-d8_512x1024_80k_cityscapes.py │ ├── dnl_r101-d8_512x512_160k_ade20k.py │ ├── dnl_r101-d8_512x512_80k_ade20k.py │ ├── dnl_r101-d8_769x769_40k_cityscapes.py │ ├── dnl_r101-d8_769x769_80k_cityscapes.py │ ├── dnl_r50-d8_512x1024_40k_cityscapes.py │ ├── dnl_r50-d8_512x1024_80k_cityscapes.py │ ├── dnl_r50-d8_512x512_160k_ade20k.py │ ├── dnl_r50-d8_512x512_80k_ade20k.py │ ├── dnl_r50-d8_769x769_40k_cityscapes.py │ └── dnl_r50-d8_769x769_80k_cityscapes.py ├── emanet │ ├── README.md │ ├── emanet_r101-d8_512x1024_80k_cityscapes.py │ ├── emanet_r101-d8_769x769_80k_cityscapes.py │ ├── emanet_r50-d8_512x1024_80k_cityscapes.py │ └── emanet_r50-d8_769x769_80k_cityscapes.py ├── encnet │ ├── README.md │ ├── encnet_r101-d8_512x1024_40k_cityscapes.py │ ├── encnet_r101-d8_512x1024_80k_cityscapes.py │ ├── encnet_r101-d8_512x512_160k_ade20k.py │ ├── encnet_r101-d8_512x512_20k_voc12aug.py │ ├── encnet_r101-d8_512x512_40k_voc12aug.py │ ├── encnet_r101-d8_512x512_80k_ade20k.py │ ├── encnet_r101-d8_769x769_40k_cityscapes.py │ ├── encnet_r101-d8_769x769_80k_cityscapes.py │ ├── encnet_r50-d8_512x1024_40k_cityscapes.py │ ├── encnet_r50-d8_512x1024_80k_cityscapes.py │ ├── encnet_r50-d8_512x512_160k_ade20k.py │ ├── encnet_r50-d8_512x512_20k_voc12aug.py │ ├── encnet_r50-d8_512x512_40k_voc12aug.py │ ├── encnet_r50-d8_512x512_80k_ade20k.py │ ├── encnet_r50-d8_769x769_40k_cityscapes.py │ ├── encnet_r50-d8_769x769_80k_cityscapes.py │ └── encnet_r50s-d8_512x512_80k_ade20k.py ├── fastscnn │ ├── README.md │ └── fast_scnn_4x8_80k_lr0.12_cityscapes.py ├── fcn │ ├── README.md │ ├── fcn_r101-d8_480x480_40k_pascal_context.py │ ├── fcn_r101-d8_480x480_80k_pascal_context.py │ ├── fcn_r101-d8_512x1024_40k_cityscapes.py │ ├── fcn_r101-d8_512x1024_80k_cityscapes.py │ ├── fcn_r101-d8_512x512_160k_ade20k.py │ ├── fcn_r101-d8_512x512_20k_voc12aug.py │ ├── fcn_r101-d8_512x512_40k_voc12aug.py │ ├── fcn_r101-d8_512x512_80k_ade20k.py │ ├── fcn_r101-d8_769x769_40k_cityscapes.py │ ├── fcn_r101-d8_769x769_80k_cityscapes.py │ ├── fcn_r50-d8_480x480_40k_pascal_context.py │ ├── fcn_r50-d8_480x480_80k_pascal_context.py │ ├── fcn_r50-d8_512x1024_40k_cityscapes.py │ ├── fcn_r50-d8_512x1024_80k_cityscapes.py │ ├── fcn_r50-d8_512x512_160k_ade20k.py │ ├── fcn_r50-d8_512x512_20k_voc12aug.py │ ├── fcn_r50-d8_512x512_40k_voc12aug.py │ ├── fcn_r50-d8_512x512_80k_ade20k.py │ ├── fcn_r50-d8_769x769_40k_cityscapes.py │ └── fcn_r50-d8_769x769_80k_cityscapes.py ├── fp16 │ ├── README.md │ ├── deeplabv3_r101-d8_512x1024_80k_fp16_cityscapes.py │ ├── deeplabv3plus_r101-d8_512x1024_80k_fp16_cityscapes.py │ ├── fcn_r101-d8_512x1024_80k_fp16_cityscapes.py │ └── pspnet_r101-d8_512x1024_80k_fp16_cityscapes.py ├── gcnet │ ├── README.md │ ├── gcnet_r101-d8_512x1024_40k_cityscapes.py │ ├── gcnet_r101-d8_512x1024_80k_cityscapes.py │ ├── gcnet_r101-d8_512x512_160k_ade20k.py │ ├── gcnet_r101-d8_512x512_20k_voc12aug.py │ ├── gcnet_r101-d8_512x512_40k_voc12aug.py │ ├── gcnet_r101-d8_512x512_80k_ade20k.py │ ├── gcnet_r101-d8_769x769_40k_cityscapes.py │ ├── gcnet_r101-d8_769x769_80k_cityscapes.py │ ├── gcnet_r50-d8_512x1024_40k_cityscapes.py │ ├── gcnet_r50-d8_512x1024_80k_cityscapes.py │ ├── gcnet_r50-d8_512x512_160k_ade20k.py │ ├── gcnet_r50-d8_512x512_20k_voc12aug.py │ ├── gcnet_r50-d8_512x512_40k_voc12aug.py │ ├── gcnet_r50-d8_512x512_80k_ade20k.py │ ├── gcnet_r50-d8_769x769_40k_cityscapes.py │ └── gcnet_r50-d8_769x769_80k_cityscapes.py ├── hrnet │ ├── README.md │ ├── fcn_hr18_480x480_40k_pascal_context.py │ ├── fcn_hr18_480x480_80k_pascal_context.py │ ├── fcn_hr18_512x1024_160k_cityscapes.py │ ├── fcn_hr18_512x1024_40k_cityscapes.py │ ├── fcn_hr18_512x1024_80k_cityscapes.py │ ├── fcn_hr18_512x512_160k_ade20k.py │ ├── fcn_hr18_512x512_20k_voc12aug.py │ ├── fcn_hr18_512x512_40k_voc12aug.py │ ├── fcn_hr18_512x512_80k_ade20k.py │ ├── fcn_hr18s_480x480_40k_pascal_context.py │ ├── fcn_hr18s_480x480_80k_pascal_context.py │ ├── fcn_hr18s_512x1024_160k_cityscapes.py │ ├── fcn_hr18s_512x1024_40k_cityscapes.py │ ├── fcn_hr18s_512x1024_80k_cityscapes.py │ ├── fcn_hr18s_512x512_160k_ade20k.py │ ├── fcn_hr18s_512x512_20k_voc12aug.py │ ├── fcn_hr18s_512x512_40k_voc12aug.py │ ├── fcn_hr18s_512x512_80k_ade20k.py │ ├── fcn_hr48_480x480_40k_pascal_context.py │ ├── fcn_hr48_480x480_80k_pascal_context.py │ ├── fcn_hr48_512x1024_160k_cityscapes.py │ ├── fcn_hr48_512x1024_40k_cityscapes.py │ ├── fcn_hr48_512x1024_80k_cityscapes.py │ ├── fcn_hr48_512x512_160k_ade20k.py │ ├── fcn_hr48_512x512_20k_voc12aug.py │ ├── fcn_hr48_512x512_40k_voc12aug.py │ └── fcn_hr48_512x512_80k_ade20k.py ├── m2mrf │ ├── fcn_hr48-M2MRF-A_40k_idrid_bdice.py │ ├── fcn_hr48-M2MRF-A_60k_ddr_bdice.py │ ├── fcn_hr48-M2MRF-B_40k_idrid_bdice.py │ ├── fcn_hr48-M2MRF-B_60k_ddr_bdice.py │ ├── fcn_hr48-M2MRF-C_40k_idrid_bdice.py │ ├── fcn_hr48-M2MRF-C_60k_ddr_bdice.py │ ├── fcn_hr48-M2MRF-D_40k_idrid_bdice.py │ └── fcn_hr48-M2MRF-D_60k_ddr_bdice.py ├── mobilenet_v2 │ ├── README.md │ ├── deeplabv3_m-v2-d8_512x1024_80k_cityscapes.py │ ├── deeplabv3_m-v2-d8_512x512_160k_ade20k.py │ ├── deeplabv3plus_m-v2-d8_512x1024_80k_cityscapes.py │ ├── deeplabv3plus_m-v2-d8_512x512_160k_ade20k.py │ ├── fcn_m-v2-d8_512x1024_80k_cityscapes.py │ ├── fcn_m-v2-d8_512x512_160k_ade20k.py │ ├── pspnet_m-v2-d8_512x1024_80k_cityscapes.py │ └── pspnet_m-v2-d8_512x512_160k_ade20k.py ├── nonlocal_net │ ├── README.md │ ├── nonlocal_r101-d8_512x1024_40k_cityscapes.py │ ├── nonlocal_r101-d8_512x1024_80k_cityscapes.py │ ├── nonlocal_r101-d8_512x512_160k_ade20k.py │ ├── nonlocal_r101-d8_512x512_20k_voc12aug.py │ ├── nonlocal_r101-d8_512x512_40k_voc12aug.py │ ├── nonlocal_r101-d8_512x512_80k_ade20k.py │ ├── nonlocal_r101-d8_769x769_40k_cityscapes.py │ ├── nonlocal_r101-d8_769x769_80k_cityscapes.py │ ├── nonlocal_r50-d8_512x1024_40k_cityscapes.py │ ├── nonlocal_r50-d8_512x1024_80k_cityscapes.py │ ├── nonlocal_r50-d8_512x512_160k_ade20k.py │ ├── nonlocal_r50-d8_512x512_20k_voc12aug.py │ ├── nonlocal_r50-d8_512x512_40k_voc12aug.py │ ├── nonlocal_r50-d8_512x512_80k_ade20k.py │ ├── nonlocal_r50-d8_769x769_40k_cityscapes.py │ └── nonlocal_r50-d8_769x769_80k_cityscapes.py ├── ocrnet │ ├── README.md │ ├── ocrnet_hr18_512x1024_160k_cityscapes.py │ ├── ocrnet_hr18_512x1024_40k_cityscapes.py │ ├── ocrnet_hr18_512x1024_80k_cityscapes.py │ ├── ocrnet_hr18_512x512_160k_ade20k.py │ ├── ocrnet_hr18_512x512_20k_voc12aug.py │ ├── ocrnet_hr18_512x512_40k_voc12aug.py │ ├── ocrnet_hr18_512x512_80k_ade20k.py │ ├── ocrnet_hr18s_512x1024_160k_cityscapes.py │ ├── ocrnet_hr18s_512x1024_40k_cityscapes.py │ ├── ocrnet_hr18s_512x1024_80k_cityscapes.py │ ├── ocrnet_hr18s_512x512_160k_ade20k.py │ ├── ocrnet_hr18s_512x512_20k_voc12aug.py │ ├── ocrnet_hr18s_512x512_40k_voc12aug.py │ ├── ocrnet_hr18s_512x512_80k_ade20k.py │ ├── ocrnet_hr48_512x1024_160k_cityscapes.py │ ├── ocrnet_hr48_512x1024_40k_cityscapes.py │ ├── ocrnet_hr48_512x1024_80k_cityscapes.py │ ├── ocrnet_hr48_512x512_160k_ade20k.py │ ├── ocrnet_hr48_512x512_20k_voc12aug.py │ ├── ocrnet_hr48_512x512_40k_voc12aug.py │ ├── ocrnet_hr48_512x512_80k_ade20k.py │ ├── ocrnet_r101-d8_512x1024_40k_b16_cityscapes.py │ ├── ocrnet_r101-d8_512x1024_40k_b8_cityscapes.py │ └── ocrnet_r101-d8_512x1024_80k_b16_cityscapes.py ├── point_rend │ ├── README.md │ ├── pointrend_r101_512x1024_80k_cityscapes.py │ ├── pointrend_r101_512x512_160k_ade20k.py │ ├── pointrend_r50_512x1024_80k_cityscapes.py │ └── pointrend_r50_512x512_160k_ade20k.py ├── psanet │ ├── README.md │ ├── psanet_r101-d8_512x1024_40k_cityscapes.py │ ├── psanet_r101-d8_512x1024_80k_cityscapes.py │ ├── psanet_r101-d8_512x512_160k_ade20k.py │ ├── psanet_r101-d8_512x512_20k_voc12aug.py │ ├── psanet_r101-d8_512x512_40k_voc12aug.py │ ├── psanet_r101-d8_512x512_80k_ade20k.py │ ├── psanet_r101-d8_769x769_40k_cityscapes.py │ ├── psanet_r101-d8_769x769_80k_cityscapes.py │ ├── psanet_r50-d8_512x1024_40k_cityscapes.py │ ├── psanet_r50-d8_512x1024_80k_cityscapes.py │ ├── psanet_r50-d8_512x512_160k_ade20k.py │ ├── psanet_r50-d8_512x512_20k_voc12aug.py │ ├── psanet_r50-d8_512x512_40k_voc12aug.py │ ├── psanet_r50-d8_512x512_80k_ade20k.py │ ├── psanet_r50-d8_769x769_40k_cityscapes.py │ └── psanet_r50-d8_769x769_80k_cityscapes.py ├── pspnet │ ├── README.md │ ├── pspnet_r101-d8_480x480_40k_pascal_context.py │ ├── pspnet_r101-d8_480x480_80k_pascal_context.py │ ├── pspnet_r101-d8_512x1024_40k_cityscapes.py │ ├── pspnet_r101-d8_512x1024_80k_cityscapes.py │ ├── pspnet_r101-d8_512x512_160k_ade20k.py │ ├── pspnet_r101-d8_512x512_20k_voc12aug.py │ ├── pspnet_r101-d8_512x512_40k_voc12aug.py │ ├── pspnet_r101-d8_512x512_80k_ade20k.py │ ├── pspnet_r101-d8_769x769_40k_cityscapes.py │ ├── pspnet_r101-d8_769x769_80k_cityscapes.py │ ├── pspnet_r50-d8_480x480_40k_pascal_context.py │ ├── pspnet_r50-d8_480x480_80k_pascal_context.py │ ├── pspnet_r50-d8_512x1024_40k_cityscapes.py │ ├── pspnet_r50-d8_512x1024_80k_cityscapes.py │ ├── pspnet_r50-d8_512x512_160k_ade20k.py │ ├── pspnet_r50-d8_512x512_20k_voc12aug.py │ ├── pspnet_r50-d8_512x512_40k_voc12aug.py │ ├── pspnet_r50-d8_512x512_80k_ade20k.py │ ├── pspnet_r50-d8_769x769_40k_cityscapes.py │ └── pspnet_r50-d8_769x769_80k_cityscapes.py ├── resnest │ ├── README.md │ ├── deeplabv3_s101-d8_512x1024_80k_cityscapes.py │ ├── deeplabv3_s101-d8_512x512_160k_ade20k.py │ ├── deeplabv3plus_s101-d8_512x1024_80k_cityscapes.py │ ├── deeplabv3plus_s101-d8_512x512_160k_ade20k.py │ ├── fcn_s101-d8_512x1024_80k_cityscapes.py │ ├── fcn_s101-d8_512x512_160k_ade20k.py │ ├── pspnet_s101-d8_512x1024_80k_cityscapes.py │ └── pspnet_s101-d8_512x512_160k_ade20k.py ├── sem_fpn │ ├── README.md │ ├── fpn_r101_512x1024_80k_cityscapes.py │ ├── fpn_r101_512x512_160k_ade20k.py │ ├── fpn_r50_512x1024_80k_cityscapes.py │ └── fpn_r50_512x512_160k_ade20k.py └── upernet │ ├── README.md │ ├── upernet_r101_512x1024_40k_cityscapes.py │ ├── upernet_r101_512x1024_80k_cityscapes.py │ ├── upernet_r101_512x512_160k_ade20k.py │ ├── upernet_r101_512x512_20k_voc12aug.py │ ├── upernet_r101_512x512_40k_voc12aug.py │ ├── upernet_r101_512x512_80k_ade20k.py │ ├── upernet_r101_769x769_40k_cityscapes.py │ ├── upernet_r101_769x769_80k_cityscapes.py │ ├── upernet_r50_512x1024_40k_cityscapes.py │ ├── upernet_r50_512x1024_80k_cityscapes.py │ ├── upernet_r50_512x512_160k_ade20k.py │ ├── upernet_r50_512x512_20k_voc12aug.py │ ├── upernet_r50_512x512_40k_voc12aug.py │ ├── upernet_r50_512x512_80k_ade20k.py │ ├── upernet_r50_769x769_40k_cityscapes.py │ └── upernet_r50_769x769_80k_cityscapes.py ├── demo ├── MMSegmentation_Tutorial.ipynb ├── demo.png ├── image_demo.py ├── inference_demo.ipynb ├── lesion_visual.py └── lesion_visual_classes.py ├── docker └── Dockerfile ├── docs ├── Makefile ├── api.rst ├── changelog.md ├── conf.py ├── config.md ├── getting_started.md ├── index.rst ├── install.md ├── make.bat ├── model_zoo.md └── tutorials │ ├── data_pipeline.md │ ├── index.rst │ ├── new_dataset.md │ ├── new_modules.md │ └── training_tricks.md ├── mmseg ├── __init__.py ├── apis │ ├── __init__.py │ ├── inference.py │ ├── test.py │ └── train.py ├── core │ ├── __init__.py │ ├── evaluation │ │ ├── __init__.py │ │ ├── class_names.py │ │ ├── eval_hooks.py │ │ ├── mean_iou.py │ │ └── my_metrics.py │ ├── optimizer │ │ ├── __init__.py │ │ └── my_optimizer.py │ ├── seg │ │ ├── __init__.py │ │ ├── builder.py │ │ └── sampler │ │ │ ├── __init__.py │ │ │ ├── base_pixel_sampler.py │ │ │ └── ohem_pixel_sampler.py │ └── utils │ │ ├── __init__.py │ │ └── misc.py ├── datasets │ ├── __init__.py │ ├── ade.py │ ├── builder.py │ ├── chase_db1.py │ ├── cityscapes.py │ ├── custom.py │ ├── dataset_wrappers.py │ ├── drive.py │ ├── hrf.py │ ├── my_custom.py │ ├── pascal_context.py │ ├── pipelines │ │ ├── __init__.py │ │ ├── compose.py │ │ ├── formating.py │ │ ├── loading.py │ │ ├── my_transforms.py │ │ ├── test_time_aug.py │ │ └── transforms.py │ ├── stare.py │ └── voc.py ├── models │ ├── __init__.py │ ├── backbones │ │ ├── __init__.py │ │ ├── cgnet.py │ │ ├── fast_scnn.py │ │ ├── hrnet.py │ │ ├── hrnet_m2mrf.py │ │ ├── mobilenet_v2.py │ │ ├── resnest.py │ │ ├── resnet.py │ │ ├── resnext.py │ │ └── unet.py │ ├── builder.py │ ├── decode_heads │ │ ├── __init__.py │ │ ├── ann_head.py │ │ ├── aspp_head.py │ │ ├── cascade_decode_head.py │ │ ├── cc_head.py │ │ ├── da_head.py │ │ ├── decode_head.py │ │ ├── dnl_head.py │ │ ├── ema_head.py │ │ ├── enc_head.py │ │ ├── fcn_head.py │ │ ├── fpn_head.py │ │ ├── gc_head.py │ │ ├── nl_head.py │ │ ├── ocr_head.py │ │ ├── point_head.py │ │ ├── psa_head.py │ │ ├── psp_head.py │ │ ├── sep_aspp_head.py │ │ ├── sep_fcn_head.py │ │ └── uper_head.py │ ├── losses │ │ ├── __init__.py │ │ ├── accuracy.py │ │ ├── binary_loss.py │ │ ├── cross_entropy_loss.py │ │ ├── dice_loss.py │ │ └── utils.py │ ├── necks │ │ ├── __init__.py │ │ └── fpn.py │ ├── segmentors │ │ ├── __init__.py │ │ ├── base.py │ │ ├── cascade_encoder_decoder.py │ │ └── encoder_decoder.py │ └── utils │ │ ├── __init__.py │ │ ├── inverted_residual.py │ │ ├── m2mrf.py │ │ ├── make_divisible.py │ │ ├── res_layer.py │ │ ├── self_attention_block.py │ │ └── up_conv_block.py ├── ops │ ├── __init__.py │ ├── encoding.py │ └── wrappers.py ├── utils │ ├── __init__.py │ ├── collect_env.py │ └── logger.py └── version.py ├── myapi ├── __init__.py ├── config.py └── test_hook.py ├── pytest.ini ├── requirements.txt ├── requirements ├── docs.txt ├── optional.txt ├── readthedocs.txt ├── runtime.txt └── tests.txt ├── resources ├── mmseg-logo.png └── seg_demo.gif ├── setup.cfg ├── setup.py ├── tests ├── test_config.py ├── test_data │ ├── test_dataset.py │ ├── test_dataset_builder.py │ ├── test_loading.py │ └── test_transform.py ├── test_eval_hook.py ├── test_mean_iou.py ├── test_models │ ├── test_backbone.py │ ├── test_forward.py │ ├── test_heads.py │ ├── test_losses.py │ ├── test_necks.py │ ├── test_segmentor.py │ └── test_unet.py ├── test_sampler.py └── test_utils │ └── test_inverted_residual_module.py └── tools ├── augment.py ├── benchmark.py ├── convert_datasets ├── chase_db1.py ├── cityscapes.py ├── drive.py ├── hrf.py ├── pascal_context.py ├── stare.py └── voc_aug.py ├── dist_test.sh ├── dist_train.sh ├── get_flops.py ├── get_fps.py ├── get_profile.py ├── prepare_labels.py ├── print_config.py ├── publish_model.py ├── pytorch2onnx.py ├── slurm_test.sh ├── slurm_train.sh ├── test.py └── train.py /.dev/gather_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/.dev/gather_models.py -------------------------------------------------------------------------------- /.dev/upload_modelzoo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/.dev/upload_modelzoo.py -------------------------------------------------------------------------------- /.github/CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/.github/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /.github/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/.github/CONTRIBUTING.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/error-report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/.github/ISSUE_TEMPLATE/error-report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/general_questions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/.github/ISSUE_TEMPLATE/general_questions.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /.readthedocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/.readthedocs.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/README.md -------------------------------------------------------------------------------- /README_mmsegmentation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/README_mmsegmentation.md -------------------------------------------------------------------------------- /configs/_base_/datasets/ade20k.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/configs/_base_/datasets/ade20k.py -------------------------------------------------------------------------------- /configs/_base_/datasets/cityscapes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/configs/_base_/datasets/cityscapes.py -------------------------------------------------------------------------------- /configs/_base_/datasets/cityscapes_769x769.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/configs/_base_/datasets/cityscapes_769x769.py -------------------------------------------------------------------------------- /configs/_base_/datasets/ddr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/configs/_base_/datasets/ddr.py -------------------------------------------------------------------------------- /configs/_base_/datasets/idrid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/configs/_base_/datasets/idrid.py -------------------------------------------------------------------------------- /configs/_base_/datasets/pascal_context.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/configs/_base_/datasets/pascal_context.py -------------------------------------------------------------------------------- /configs/_base_/datasets/pascal_voc12.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/configs/_base_/datasets/pascal_voc12.py -------------------------------------------------------------------------------- /configs/_base_/datasets/pascal_voc12_aug.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/configs/_base_/datasets/pascal_voc12_aug.py -------------------------------------------------------------------------------- /configs/_base_/default_runtime.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/configs/_base_/default_runtime.py -------------------------------------------------------------------------------- /configs/_base_/models/ann_r50-d8.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/configs/_base_/models/ann_r50-d8.py -------------------------------------------------------------------------------- /configs/_base_/models/ccnet_r50-d8.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/configs/_base_/models/ccnet_r50-d8.py -------------------------------------------------------------------------------- /configs/_base_/models/cgnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/configs/_base_/models/cgnet.py -------------------------------------------------------------------------------- /configs/_base_/models/danet_r50-d8.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/configs/_base_/models/danet_r50-d8.py -------------------------------------------------------------------------------- /configs/_base_/models/deeplabv3_r50-d8.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/configs/_base_/models/deeplabv3_r50-d8.py -------------------------------------------------------------------------------- /configs/_base_/models/deeplabv3plus_r50-d8.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/configs/_base_/models/deeplabv3plus_r50-d8.py -------------------------------------------------------------------------------- /configs/_base_/models/dnl_r50-d8.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/configs/_base_/models/dnl_r50-d8.py -------------------------------------------------------------------------------- /configs/_base_/models/emanet_r50-d8.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/configs/_base_/models/emanet_r50-d8.py -------------------------------------------------------------------------------- /configs/_base_/models/encnet_r50-d8.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/configs/_base_/models/encnet_r50-d8.py -------------------------------------------------------------------------------- /configs/_base_/models/fast_scnn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/configs/_base_/models/fast_scnn.py -------------------------------------------------------------------------------- /configs/_base_/models/fcn_hr18.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/configs/_base_/models/fcn_hr18.py -------------------------------------------------------------------------------- /configs/_base_/models/fcn_hr48.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/configs/_base_/models/fcn_hr48.py -------------------------------------------------------------------------------- /configs/_base_/models/fcn_r50-d8.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/configs/_base_/models/fcn_r50-d8.py -------------------------------------------------------------------------------- /configs/_base_/models/fpn_r50.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/configs/_base_/models/fpn_r50.py -------------------------------------------------------------------------------- /configs/_base_/models/gcnet_r50-d8.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/configs/_base_/models/gcnet_r50-d8.py -------------------------------------------------------------------------------- /configs/_base_/models/nonlocal_r50-d8.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/configs/_base_/models/nonlocal_r50-d8.py -------------------------------------------------------------------------------- /configs/_base_/models/ocrnet_hr18.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/configs/_base_/models/ocrnet_hr18.py -------------------------------------------------------------------------------- /configs/_base_/models/ocrnet_r50-d8.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/configs/_base_/models/ocrnet_r50-d8.py -------------------------------------------------------------------------------- /configs/_base_/models/pointrend_r50.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/configs/_base_/models/pointrend_r50.py -------------------------------------------------------------------------------- /configs/_base_/models/psanet_r50-d8.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/configs/_base_/models/psanet_r50-d8.py -------------------------------------------------------------------------------- /configs/_base_/models/pspnet_r50-d8.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/configs/_base_/models/pspnet_r50-d8.py -------------------------------------------------------------------------------- /configs/_base_/models/upernet_r50.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/configs/_base_/models/upernet_r50.py -------------------------------------------------------------------------------- /configs/_base_/schedules/schedule_160k.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/configs/_base_/schedules/schedule_160k.py -------------------------------------------------------------------------------- /configs/_base_/schedules/schedule_20k.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/configs/_base_/schedules/schedule_20k.py -------------------------------------------------------------------------------- /configs/_base_/schedules/schedule_40k.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/configs/_base_/schedules/schedule_40k.py -------------------------------------------------------------------------------- /configs/_base_/schedules/schedule_40k_idrid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/configs/_base_/schedules/schedule_40k_idrid.py -------------------------------------------------------------------------------- /configs/_base_/schedules/schedule_60k_ddr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/configs/_base_/schedules/schedule_60k_ddr.py -------------------------------------------------------------------------------- /configs/_base_/schedules/schedule_80k.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/configs/_base_/schedules/schedule_80k.py -------------------------------------------------------------------------------- /configs/ann/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/configs/ann/README.md -------------------------------------------------------------------------------- /configs/ann/ann_r101-d8_512x1024_40k_cityscapes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/configs/ann/ann_r101-d8_512x1024_40k_cityscapes.py -------------------------------------------------------------------------------- /configs/ann/ann_r101-d8_512x1024_80k_cityscapes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/configs/ann/ann_r101-d8_512x1024_80k_cityscapes.py -------------------------------------------------------------------------------- /configs/ann/ann_r101-d8_512x512_160k_ade20k.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/configs/ann/ann_r101-d8_512x512_160k_ade20k.py -------------------------------------------------------------------------------- /configs/ann/ann_r101-d8_512x512_20k_voc12aug.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/configs/ann/ann_r101-d8_512x512_20k_voc12aug.py -------------------------------------------------------------------------------- /configs/ann/ann_r101-d8_512x512_40k_voc12aug.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/configs/ann/ann_r101-d8_512x512_40k_voc12aug.py -------------------------------------------------------------------------------- /configs/ann/ann_r101-d8_512x512_80k_ade20k.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/configs/ann/ann_r101-d8_512x512_80k_ade20k.py -------------------------------------------------------------------------------- /configs/ann/ann_r101-d8_769x769_40k_cityscapes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/configs/ann/ann_r101-d8_769x769_40k_cityscapes.py -------------------------------------------------------------------------------- /configs/ann/ann_r101-d8_769x769_80k_cityscapes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/configs/ann/ann_r101-d8_769x769_80k_cityscapes.py -------------------------------------------------------------------------------- /configs/ann/ann_r50-d8_512x1024_40k_cityscapes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/configs/ann/ann_r50-d8_512x1024_40k_cityscapes.py -------------------------------------------------------------------------------- /configs/ann/ann_r50-d8_512x1024_80k_cityscapes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/configs/ann/ann_r50-d8_512x1024_80k_cityscapes.py -------------------------------------------------------------------------------- /configs/ann/ann_r50-d8_512x512_160k_ade20k.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/configs/ann/ann_r50-d8_512x512_160k_ade20k.py -------------------------------------------------------------------------------- /configs/ann/ann_r50-d8_512x512_20k_voc12aug.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/configs/ann/ann_r50-d8_512x512_20k_voc12aug.py -------------------------------------------------------------------------------- /configs/ann/ann_r50-d8_512x512_40k_voc12aug.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/configs/ann/ann_r50-d8_512x512_40k_voc12aug.py -------------------------------------------------------------------------------- /configs/ann/ann_r50-d8_512x512_80k_ade20k.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/configs/ann/ann_r50-d8_512x512_80k_ade20k.py -------------------------------------------------------------------------------- /configs/ann/ann_r50-d8_769x769_40k_cityscapes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/configs/ann/ann_r50-d8_769x769_40k_cityscapes.py -------------------------------------------------------------------------------- /configs/ann/ann_r50-d8_769x769_80k_cityscapes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/configs/ann/ann_r50-d8_769x769_80k_cityscapes.py -------------------------------------------------------------------------------- /configs/ccnet/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/configs/ccnet/README.md -------------------------------------------------------------------------------- /configs/ccnet/ccnet_r101-d8_512x1024_40k_cityscapes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/configs/ccnet/ccnet_r101-d8_512x1024_40k_cityscapes.py -------------------------------------------------------------------------------- /configs/ccnet/ccnet_r101-d8_512x1024_80k_cityscapes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/configs/ccnet/ccnet_r101-d8_512x1024_80k_cityscapes.py -------------------------------------------------------------------------------- /configs/ccnet/ccnet_r101-d8_512x512_160k_ade20k.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/configs/ccnet/ccnet_r101-d8_512x512_160k_ade20k.py -------------------------------------------------------------------------------- /configs/ccnet/ccnet_r101-d8_512x512_20k_voc12aug.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/configs/ccnet/ccnet_r101-d8_512x512_20k_voc12aug.py -------------------------------------------------------------------------------- /configs/ccnet/ccnet_r101-d8_512x512_40k_voc12aug.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/configs/ccnet/ccnet_r101-d8_512x512_40k_voc12aug.py -------------------------------------------------------------------------------- /configs/ccnet/ccnet_r101-d8_512x512_80k_ade20k.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/configs/ccnet/ccnet_r101-d8_512x512_80k_ade20k.py -------------------------------------------------------------------------------- /configs/ccnet/ccnet_r101-d8_769x769_40k_cityscapes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/configs/ccnet/ccnet_r101-d8_769x769_40k_cityscapes.py -------------------------------------------------------------------------------- /configs/ccnet/ccnet_r101-d8_769x769_80k_cityscapes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/configs/ccnet/ccnet_r101-d8_769x769_80k_cityscapes.py -------------------------------------------------------------------------------- /configs/ccnet/ccnet_r50-d8_512x1024_40k_cityscapes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/configs/ccnet/ccnet_r50-d8_512x1024_40k_cityscapes.py -------------------------------------------------------------------------------- /configs/ccnet/ccnet_r50-d8_512x1024_80k_cityscapes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/configs/ccnet/ccnet_r50-d8_512x1024_80k_cityscapes.py -------------------------------------------------------------------------------- /configs/ccnet/ccnet_r50-d8_512x512_160k_ade20k.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/configs/ccnet/ccnet_r50-d8_512x512_160k_ade20k.py -------------------------------------------------------------------------------- /configs/ccnet/ccnet_r50-d8_512x512_20k_voc12aug.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/configs/ccnet/ccnet_r50-d8_512x512_20k_voc12aug.py -------------------------------------------------------------------------------- /configs/ccnet/ccnet_r50-d8_512x512_40k_voc12aug.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/configs/ccnet/ccnet_r50-d8_512x512_40k_voc12aug.py -------------------------------------------------------------------------------- /configs/ccnet/ccnet_r50-d8_512x512_80k_ade20k.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/configs/ccnet/ccnet_r50-d8_512x512_80k_ade20k.py -------------------------------------------------------------------------------- /configs/ccnet/ccnet_r50-d8_769x769_40k_cityscapes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/configs/ccnet/ccnet_r50-d8_769x769_40k_cityscapes.py -------------------------------------------------------------------------------- /configs/ccnet/ccnet_r50-d8_769x769_80k_cityscapes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/configs/ccnet/ccnet_r50-d8_769x769_80k_cityscapes.py -------------------------------------------------------------------------------- /configs/cgnet/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/configs/cgnet/README.md -------------------------------------------------------------------------------- /configs/cgnet/cgnet_512x1024_60k_cityscapes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/configs/cgnet/cgnet_512x1024_60k_cityscapes.py -------------------------------------------------------------------------------- /configs/cgnet/cgnet_680x680_60k_cityscapes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/configs/cgnet/cgnet_680x680_60k_cityscapes.py -------------------------------------------------------------------------------- /configs/danet/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/configs/danet/README.md -------------------------------------------------------------------------------- /configs/danet/danet_r101-d8_512x1024_40k_cityscapes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/configs/danet/danet_r101-d8_512x1024_40k_cityscapes.py -------------------------------------------------------------------------------- /configs/danet/danet_r101-d8_512x1024_80k_cityscapes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/configs/danet/danet_r101-d8_512x1024_80k_cityscapes.py -------------------------------------------------------------------------------- /configs/danet/danet_r101-d8_512x512_160k_ade20k.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/configs/danet/danet_r101-d8_512x512_160k_ade20k.py -------------------------------------------------------------------------------- /configs/danet/danet_r101-d8_512x512_20k_voc12aug.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/configs/danet/danet_r101-d8_512x512_20k_voc12aug.py -------------------------------------------------------------------------------- /configs/danet/danet_r101-d8_512x512_40k_voc12aug.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/configs/danet/danet_r101-d8_512x512_40k_voc12aug.py -------------------------------------------------------------------------------- /configs/danet/danet_r101-d8_512x512_80k_ade20k.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/configs/danet/danet_r101-d8_512x512_80k_ade20k.py -------------------------------------------------------------------------------- /configs/danet/danet_r101-d8_769x769_40k_cityscapes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/configs/danet/danet_r101-d8_769x769_40k_cityscapes.py -------------------------------------------------------------------------------- /configs/danet/danet_r101-d8_769x769_80k_cityscapes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/configs/danet/danet_r101-d8_769x769_80k_cityscapes.py -------------------------------------------------------------------------------- /configs/danet/danet_r50-d8_512x1024_40k_cityscapes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/configs/danet/danet_r50-d8_512x1024_40k_cityscapes.py -------------------------------------------------------------------------------- /configs/danet/danet_r50-d8_512x1024_80k_cityscapes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/configs/danet/danet_r50-d8_512x1024_80k_cityscapes.py -------------------------------------------------------------------------------- /configs/danet/danet_r50-d8_512x512_160k_ade20k.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/configs/danet/danet_r50-d8_512x512_160k_ade20k.py -------------------------------------------------------------------------------- /configs/danet/danet_r50-d8_512x512_20k_voc12aug.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/configs/danet/danet_r50-d8_512x512_20k_voc12aug.py -------------------------------------------------------------------------------- /configs/danet/danet_r50-d8_512x512_40k_voc12aug.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/configs/danet/danet_r50-d8_512x512_40k_voc12aug.py -------------------------------------------------------------------------------- /configs/danet/danet_r50-d8_512x512_80k_ade20k.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/configs/danet/danet_r50-d8_512x512_80k_ade20k.py -------------------------------------------------------------------------------- /configs/danet/danet_r50-d8_769x769_40k_cityscapes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/configs/danet/danet_r50-d8_769x769_40k_cityscapes.py -------------------------------------------------------------------------------- /configs/danet/danet_r50-d8_769x769_80k_cityscapes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/configs/danet/danet_r50-d8_769x769_80k_cityscapes.py -------------------------------------------------------------------------------- /configs/deeplabv3/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/configs/deeplabv3/README.md -------------------------------------------------------------------------------- /configs/deeplabv3/deeplabv3_r101-d16-mg124_512x1024_40k_cityscapes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/configs/deeplabv3/deeplabv3_r101-d16-mg124_512x1024_40k_cityscapes.py -------------------------------------------------------------------------------- /configs/deeplabv3/deeplabv3_r101-d16-mg124_512x1024_80k_cityscapes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/configs/deeplabv3/deeplabv3_r101-d16-mg124_512x1024_80k_cityscapes.py -------------------------------------------------------------------------------- /configs/deeplabv3/deeplabv3_r101-d8_480x480_40k_pascal_context.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/configs/deeplabv3/deeplabv3_r101-d8_480x480_40k_pascal_context.py -------------------------------------------------------------------------------- /configs/deeplabv3/deeplabv3_r101-d8_480x480_80k_pascal_context.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/configs/deeplabv3/deeplabv3_r101-d8_480x480_80k_pascal_context.py -------------------------------------------------------------------------------- /configs/deeplabv3/deeplabv3_r101-d8_512x1024_40k_cityscapes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/configs/deeplabv3/deeplabv3_r101-d8_512x1024_40k_cityscapes.py -------------------------------------------------------------------------------- /configs/deeplabv3/deeplabv3_r101-d8_512x1024_80k_cityscapes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/configs/deeplabv3/deeplabv3_r101-d8_512x1024_80k_cityscapes.py -------------------------------------------------------------------------------- /configs/deeplabv3/deeplabv3_r101-d8_512x512_160k_ade20k.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/configs/deeplabv3/deeplabv3_r101-d8_512x512_160k_ade20k.py -------------------------------------------------------------------------------- /configs/deeplabv3/deeplabv3_r101-d8_512x512_20k_voc12aug.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/configs/deeplabv3/deeplabv3_r101-d8_512x512_20k_voc12aug.py -------------------------------------------------------------------------------- /configs/deeplabv3/deeplabv3_r101-d8_512x512_40k_voc12aug.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/configs/deeplabv3/deeplabv3_r101-d8_512x512_40k_voc12aug.py -------------------------------------------------------------------------------- /configs/deeplabv3/deeplabv3_r101-d8_512x512_80k_ade20k.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/configs/deeplabv3/deeplabv3_r101-d8_512x512_80k_ade20k.py -------------------------------------------------------------------------------- /configs/deeplabv3/deeplabv3_r101-d8_769x769_40k_cityscapes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/configs/deeplabv3/deeplabv3_r101-d8_769x769_40k_cityscapes.py -------------------------------------------------------------------------------- /configs/deeplabv3/deeplabv3_r101-d8_769x769_80k_cityscapes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/configs/deeplabv3/deeplabv3_r101-d8_769x769_80k_cityscapes.py -------------------------------------------------------------------------------- /configs/deeplabv3/deeplabv3_r50-d8_480x480_40k_pascal_context.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/configs/deeplabv3/deeplabv3_r50-d8_480x480_40k_pascal_context.py -------------------------------------------------------------------------------- /configs/deeplabv3/deeplabv3_r50-d8_480x480_80k_pascal_context.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/configs/deeplabv3/deeplabv3_r50-d8_480x480_80k_pascal_context.py -------------------------------------------------------------------------------- /configs/deeplabv3/deeplabv3_r50-d8_512x1024_40k_cityscapes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/configs/deeplabv3/deeplabv3_r50-d8_512x1024_40k_cityscapes.py -------------------------------------------------------------------------------- /configs/deeplabv3/deeplabv3_r50-d8_512x1024_80k_cityscapes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/configs/deeplabv3/deeplabv3_r50-d8_512x1024_80k_cityscapes.py -------------------------------------------------------------------------------- /configs/deeplabv3/deeplabv3_r50-d8_512x512_160k_ade20k.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/configs/deeplabv3/deeplabv3_r50-d8_512x512_160k_ade20k.py -------------------------------------------------------------------------------- /configs/deeplabv3/deeplabv3_r50-d8_512x512_20k_voc12aug.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/configs/deeplabv3/deeplabv3_r50-d8_512x512_20k_voc12aug.py -------------------------------------------------------------------------------- /configs/deeplabv3/deeplabv3_r50-d8_512x512_40k_voc12aug.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/configs/deeplabv3/deeplabv3_r50-d8_512x512_40k_voc12aug.py -------------------------------------------------------------------------------- /configs/deeplabv3/deeplabv3_r50-d8_512x512_80k_ade20k.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/configs/deeplabv3/deeplabv3_r50-d8_512x512_80k_ade20k.py -------------------------------------------------------------------------------- /configs/deeplabv3/deeplabv3_r50-d8_769x769_40k_cityscapes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/configs/deeplabv3/deeplabv3_r50-d8_769x769_40k_cityscapes.py -------------------------------------------------------------------------------- /configs/deeplabv3/deeplabv3_r50-d8_769x769_80k_cityscapes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/configs/deeplabv3/deeplabv3_r50-d8_769x769_80k_cityscapes.py -------------------------------------------------------------------------------- /configs/deeplabv3plus/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/configs/deeplabv3plus/README.md -------------------------------------------------------------------------------- /configs/deeplabv3plus/deeplabv3plus_r101-d16-mg124_512x1024_40k_cityscapes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/configs/deeplabv3plus/deeplabv3plus_r101-d16-mg124_512x1024_40k_cityscapes.py -------------------------------------------------------------------------------- /configs/deeplabv3plus/deeplabv3plus_r101-d16-mg124_512x1024_80k_cityscapes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/configs/deeplabv3plus/deeplabv3plus_r101-d16-mg124_512x1024_80k_cityscapes.py -------------------------------------------------------------------------------- /configs/deeplabv3plus/deeplabv3plus_r101-d8_480x480_40k_pascal_context.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/configs/deeplabv3plus/deeplabv3plus_r101-d8_480x480_40k_pascal_context.py -------------------------------------------------------------------------------- /configs/deeplabv3plus/deeplabv3plus_r101-d8_480x480_80k_pascal_context.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/configs/deeplabv3plus/deeplabv3plus_r101-d8_480x480_80k_pascal_context.py -------------------------------------------------------------------------------- /configs/deeplabv3plus/deeplabv3plus_r101-d8_512x1024_40k_cityscapes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/configs/deeplabv3plus/deeplabv3plus_r101-d8_512x1024_40k_cityscapes.py -------------------------------------------------------------------------------- /configs/deeplabv3plus/deeplabv3plus_r101-d8_512x1024_80k_cityscapes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/configs/deeplabv3plus/deeplabv3plus_r101-d8_512x1024_80k_cityscapes.py -------------------------------------------------------------------------------- /configs/deeplabv3plus/deeplabv3plus_r101-d8_512x512_160k_ade20k.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/configs/deeplabv3plus/deeplabv3plus_r101-d8_512x512_160k_ade20k.py -------------------------------------------------------------------------------- /configs/deeplabv3plus/deeplabv3plus_r101-d8_512x512_20k_voc12aug.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/configs/deeplabv3plus/deeplabv3plus_r101-d8_512x512_20k_voc12aug.py -------------------------------------------------------------------------------- /configs/deeplabv3plus/deeplabv3plus_r101-d8_512x512_40k_voc12aug.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/configs/deeplabv3plus/deeplabv3plus_r101-d8_512x512_40k_voc12aug.py -------------------------------------------------------------------------------- /configs/deeplabv3plus/deeplabv3plus_r101-d8_512x512_80k_ade20k.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/configs/deeplabv3plus/deeplabv3plus_r101-d8_512x512_80k_ade20k.py -------------------------------------------------------------------------------- /configs/deeplabv3plus/deeplabv3plus_r101-d8_769x769_40k_cityscapes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/configs/deeplabv3plus/deeplabv3plus_r101-d8_769x769_40k_cityscapes.py -------------------------------------------------------------------------------- /configs/deeplabv3plus/deeplabv3plus_r101-d8_769x769_80k_cityscapes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/configs/deeplabv3plus/deeplabv3plus_r101-d8_769x769_80k_cityscapes.py -------------------------------------------------------------------------------- /configs/deeplabv3plus/deeplabv3plus_r50-d8_480x480_40k_pascal_context.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/configs/deeplabv3plus/deeplabv3plus_r50-d8_480x480_40k_pascal_context.py -------------------------------------------------------------------------------- /configs/deeplabv3plus/deeplabv3plus_r50-d8_480x480_80k_pascal_context.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/configs/deeplabv3plus/deeplabv3plus_r50-d8_480x480_80k_pascal_context.py -------------------------------------------------------------------------------- /configs/deeplabv3plus/deeplabv3plus_r50-d8_512x1024_40k_cityscapes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/configs/deeplabv3plus/deeplabv3plus_r50-d8_512x1024_40k_cityscapes.py -------------------------------------------------------------------------------- /configs/deeplabv3plus/deeplabv3plus_r50-d8_512x1024_80k_cityscapes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/configs/deeplabv3plus/deeplabv3plus_r50-d8_512x1024_80k_cityscapes.py -------------------------------------------------------------------------------- /configs/deeplabv3plus/deeplabv3plus_r50-d8_512x512_160k_ade20k.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/configs/deeplabv3plus/deeplabv3plus_r50-d8_512x512_160k_ade20k.py -------------------------------------------------------------------------------- /configs/deeplabv3plus/deeplabv3plus_r50-d8_512x512_20k_voc12aug.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/configs/deeplabv3plus/deeplabv3plus_r50-d8_512x512_20k_voc12aug.py -------------------------------------------------------------------------------- /configs/deeplabv3plus/deeplabv3plus_r50-d8_512x512_40k_voc12aug.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/configs/deeplabv3plus/deeplabv3plus_r50-d8_512x512_40k_voc12aug.py -------------------------------------------------------------------------------- /configs/deeplabv3plus/deeplabv3plus_r50-d8_512x512_80k_ade20k.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/configs/deeplabv3plus/deeplabv3plus_r50-d8_512x512_80k_ade20k.py -------------------------------------------------------------------------------- /configs/deeplabv3plus/deeplabv3plus_r50-d8_769x769_40k_cityscapes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/configs/deeplabv3plus/deeplabv3plus_r50-d8_769x769_40k_cityscapes.py -------------------------------------------------------------------------------- /configs/deeplabv3plus/deeplabv3plus_r50-d8_769x769_80k_cityscapes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/configs/deeplabv3plus/deeplabv3plus_r50-d8_769x769_80k_cityscapes.py -------------------------------------------------------------------------------- /configs/dnlnet/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/configs/dnlnet/README.md -------------------------------------------------------------------------------- /configs/dnlnet/dnl_r101-d8_512x1024_40k_cityscapes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/configs/dnlnet/dnl_r101-d8_512x1024_40k_cityscapes.py -------------------------------------------------------------------------------- /configs/dnlnet/dnl_r101-d8_512x1024_80k_cityscapes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/configs/dnlnet/dnl_r101-d8_512x1024_80k_cityscapes.py -------------------------------------------------------------------------------- /configs/dnlnet/dnl_r101-d8_512x512_160k_ade20k.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/configs/dnlnet/dnl_r101-d8_512x512_160k_ade20k.py -------------------------------------------------------------------------------- /configs/dnlnet/dnl_r101-d8_512x512_80k_ade20k.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/configs/dnlnet/dnl_r101-d8_512x512_80k_ade20k.py -------------------------------------------------------------------------------- /configs/dnlnet/dnl_r101-d8_769x769_40k_cityscapes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/configs/dnlnet/dnl_r101-d8_769x769_40k_cityscapes.py -------------------------------------------------------------------------------- /configs/dnlnet/dnl_r101-d8_769x769_80k_cityscapes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/configs/dnlnet/dnl_r101-d8_769x769_80k_cityscapes.py -------------------------------------------------------------------------------- /configs/dnlnet/dnl_r50-d8_512x1024_40k_cityscapes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/configs/dnlnet/dnl_r50-d8_512x1024_40k_cityscapes.py -------------------------------------------------------------------------------- /configs/dnlnet/dnl_r50-d8_512x1024_80k_cityscapes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/configs/dnlnet/dnl_r50-d8_512x1024_80k_cityscapes.py -------------------------------------------------------------------------------- /configs/dnlnet/dnl_r50-d8_512x512_160k_ade20k.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/configs/dnlnet/dnl_r50-d8_512x512_160k_ade20k.py -------------------------------------------------------------------------------- /configs/dnlnet/dnl_r50-d8_512x512_80k_ade20k.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/configs/dnlnet/dnl_r50-d8_512x512_80k_ade20k.py -------------------------------------------------------------------------------- /configs/dnlnet/dnl_r50-d8_769x769_40k_cityscapes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/configs/dnlnet/dnl_r50-d8_769x769_40k_cityscapes.py -------------------------------------------------------------------------------- /configs/dnlnet/dnl_r50-d8_769x769_80k_cityscapes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/configs/dnlnet/dnl_r50-d8_769x769_80k_cityscapes.py -------------------------------------------------------------------------------- /configs/emanet/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/configs/emanet/README.md -------------------------------------------------------------------------------- /configs/emanet/emanet_r101-d8_512x1024_80k_cityscapes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/configs/emanet/emanet_r101-d8_512x1024_80k_cityscapes.py -------------------------------------------------------------------------------- /configs/emanet/emanet_r101-d8_769x769_80k_cityscapes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/configs/emanet/emanet_r101-d8_769x769_80k_cityscapes.py -------------------------------------------------------------------------------- /configs/emanet/emanet_r50-d8_512x1024_80k_cityscapes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/configs/emanet/emanet_r50-d8_512x1024_80k_cityscapes.py -------------------------------------------------------------------------------- /configs/emanet/emanet_r50-d8_769x769_80k_cityscapes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/configs/emanet/emanet_r50-d8_769x769_80k_cityscapes.py -------------------------------------------------------------------------------- /configs/encnet/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/configs/encnet/README.md -------------------------------------------------------------------------------- /configs/encnet/encnet_r101-d8_512x1024_40k_cityscapes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/configs/encnet/encnet_r101-d8_512x1024_40k_cityscapes.py -------------------------------------------------------------------------------- /configs/encnet/encnet_r101-d8_512x1024_80k_cityscapes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/configs/encnet/encnet_r101-d8_512x1024_80k_cityscapes.py -------------------------------------------------------------------------------- /configs/encnet/encnet_r101-d8_512x512_160k_ade20k.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/configs/encnet/encnet_r101-d8_512x512_160k_ade20k.py -------------------------------------------------------------------------------- /configs/encnet/encnet_r101-d8_512x512_20k_voc12aug.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/configs/encnet/encnet_r101-d8_512x512_20k_voc12aug.py -------------------------------------------------------------------------------- /configs/encnet/encnet_r101-d8_512x512_40k_voc12aug.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/configs/encnet/encnet_r101-d8_512x512_40k_voc12aug.py -------------------------------------------------------------------------------- /configs/encnet/encnet_r101-d8_512x512_80k_ade20k.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/configs/encnet/encnet_r101-d8_512x512_80k_ade20k.py -------------------------------------------------------------------------------- /configs/encnet/encnet_r101-d8_769x769_40k_cityscapes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/configs/encnet/encnet_r101-d8_769x769_40k_cityscapes.py -------------------------------------------------------------------------------- /configs/encnet/encnet_r101-d8_769x769_80k_cityscapes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/configs/encnet/encnet_r101-d8_769x769_80k_cityscapes.py -------------------------------------------------------------------------------- /configs/encnet/encnet_r50-d8_512x1024_40k_cityscapes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/configs/encnet/encnet_r50-d8_512x1024_40k_cityscapes.py -------------------------------------------------------------------------------- /configs/encnet/encnet_r50-d8_512x1024_80k_cityscapes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/configs/encnet/encnet_r50-d8_512x1024_80k_cityscapes.py -------------------------------------------------------------------------------- /configs/encnet/encnet_r50-d8_512x512_160k_ade20k.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/configs/encnet/encnet_r50-d8_512x512_160k_ade20k.py -------------------------------------------------------------------------------- /configs/encnet/encnet_r50-d8_512x512_20k_voc12aug.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/configs/encnet/encnet_r50-d8_512x512_20k_voc12aug.py -------------------------------------------------------------------------------- /configs/encnet/encnet_r50-d8_512x512_40k_voc12aug.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/configs/encnet/encnet_r50-d8_512x512_40k_voc12aug.py -------------------------------------------------------------------------------- /configs/encnet/encnet_r50-d8_512x512_80k_ade20k.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/configs/encnet/encnet_r50-d8_512x512_80k_ade20k.py -------------------------------------------------------------------------------- /configs/encnet/encnet_r50-d8_769x769_40k_cityscapes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/configs/encnet/encnet_r50-d8_769x769_40k_cityscapes.py -------------------------------------------------------------------------------- /configs/encnet/encnet_r50-d8_769x769_80k_cityscapes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/configs/encnet/encnet_r50-d8_769x769_80k_cityscapes.py -------------------------------------------------------------------------------- /configs/encnet/encnet_r50s-d8_512x512_80k_ade20k.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/configs/encnet/encnet_r50s-d8_512x512_80k_ade20k.py -------------------------------------------------------------------------------- /configs/fastscnn/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/configs/fastscnn/README.md -------------------------------------------------------------------------------- /configs/fastscnn/fast_scnn_4x8_80k_lr0.12_cityscapes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/configs/fastscnn/fast_scnn_4x8_80k_lr0.12_cityscapes.py -------------------------------------------------------------------------------- /configs/fcn/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/configs/fcn/README.md -------------------------------------------------------------------------------- /configs/fcn/fcn_r101-d8_480x480_40k_pascal_context.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/configs/fcn/fcn_r101-d8_480x480_40k_pascal_context.py -------------------------------------------------------------------------------- /configs/fcn/fcn_r101-d8_480x480_80k_pascal_context.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/configs/fcn/fcn_r101-d8_480x480_80k_pascal_context.py -------------------------------------------------------------------------------- /configs/fcn/fcn_r101-d8_512x1024_40k_cityscapes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/configs/fcn/fcn_r101-d8_512x1024_40k_cityscapes.py -------------------------------------------------------------------------------- /configs/fcn/fcn_r101-d8_512x1024_80k_cityscapes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/configs/fcn/fcn_r101-d8_512x1024_80k_cityscapes.py -------------------------------------------------------------------------------- /configs/fcn/fcn_r101-d8_512x512_160k_ade20k.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/configs/fcn/fcn_r101-d8_512x512_160k_ade20k.py -------------------------------------------------------------------------------- /configs/fcn/fcn_r101-d8_512x512_20k_voc12aug.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/configs/fcn/fcn_r101-d8_512x512_20k_voc12aug.py -------------------------------------------------------------------------------- /configs/fcn/fcn_r101-d8_512x512_40k_voc12aug.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/configs/fcn/fcn_r101-d8_512x512_40k_voc12aug.py -------------------------------------------------------------------------------- /configs/fcn/fcn_r101-d8_512x512_80k_ade20k.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/configs/fcn/fcn_r101-d8_512x512_80k_ade20k.py -------------------------------------------------------------------------------- /configs/fcn/fcn_r101-d8_769x769_40k_cityscapes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/configs/fcn/fcn_r101-d8_769x769_40k_cityscapes.py -------------------------------------------------------------------------------- /configs/fcn/fcn_r101-d8_769x769_80k_cityscapes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/configs/fcn/fcn_r101-d8_769x769_80k_cityscapes.py -------------------------------------------------------------------------------- /configs/fcn/fcn_r50-d8_480x480_40k_pascal_context.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/configs/fcn/fcn_r50-d8_480x480_40k_pascal_context.py -------------------------------------------------------------------------------- /configs/fcn/fcn_r50-d8_480x480_80k_pascal_context.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/configs/fcn/fcn_r50-d8_480x480_80k_pascal_context.py -------------------------------------------------------------------------------- /configs/fcn/fcn_r50-d8_512x1024_40k_cityscapes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/configs/fcn/fcn_r50-d8_512x1024_40k_cityscapes.py -------------------------------------------------------------------------------- /configs/fcn/fcn_r50-d8_512x1024_80k_cityscapes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/configs/fcn/fcn_r50-d8_512x1024_80k_cityscapes.py -------------------------------------------------------------------------------- /configs/fcn/fcn_r50-d8_512x512_160k_ade20k.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/configs/fcn/fcn_r50-d8_512x512_160k_ade20k.py -------------------------------------------------------------------------------- /configs/fcn/fcn_r50-d8_512x512_20k_voc12aug.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/configs/fcn/fcn_r50-d8_512x512_20k_voc12aug.py -------------------------------------------------------------------------------- /configs/fcn/fcn_r50-d8_512x512_40k_voc12aug.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/configs/fcn/fcn_r50-d8_512x512_40k_voc12aug.py -------------------------------------------------------------------------------- /configs/fcn/fcn_r50-d8_512x512_80k_ade20k.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/configs/fcn/fcn_r50-d8_512x512_80k_ade20k.py -------------------------------------------------------------------------------- /configs/fcn/fcn_r50-d8_769x769_40k_cityscapes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/configs/fcn/fcn_r50-d8_769x769_40k_cityscapes.py -------------------------------------------------------------------------------- /configs/fcn/fcn_r50-d8_769x769_80k_cityscapes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/configs/fcn/fcn_r50-d8_769x769_80k_cityscapes.py -------------------------------------------------------------------------------- /configs/fp16/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/configs/fp16/README.md -------------------------------------------------------------------------------- /configs/fp16/deeplabv3_r101-d8_512x1024_80k_fp16_cityscapes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/configs/fp16/deeplabv3_r101-d8_512x1024_80k_fp16_cityscapes.py -------------------------------------------------------------------------------- /configs/fp16/deeplabv3plus_r101-d8_512x1024_80k_fp16_cityscapes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/configs/fp16/deeplabv3plus_r101-d8_512x1024_80k_fp16_cityscapes.py -------------------------------------------------------------------------------- /configs/fp16/fcn_r101-d8_512x1024_80k_fp16_cityscapes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/configs/fp16/fcn_r101-d8_512x1024_80k_fp16_cityscapes.py -------------------------------------------------------------------------------- /configs/fp16/pspnet_r101-d8_512x1024_80k_fp16_cityscapes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/configs/fp16/pspnet_r101-d8_512x1024_80k_fp16_cityscapes.py -------------------------------------------------------------------------------- /configs/gcnet/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/configs/gcnet/README.md -------------------------------------------------------------------------------- /configs/gcnet/gcnet_r101-d8_512x1024_40k_cityscapes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/configs/gcnet/gcnet_r101-d8_512x1024_40k_cityscapes.py -------------------------------------------------------------------------------- /configs/gcnet/gcnet_r101-d8_512x1024_80k_cityscapes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/configs/gcnet/gcnet_r101-d8_512x1024_80k_cityscapes.py -------------------------------------------------------------------------------- /configs/gcnet/gcnet_r101-d8_512x512_160k_ade20k.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/configs/gcnet/gcnet_r101-d8_512x512_160k_ade20k.py -------------------------------------------------------------------------------- /configs/gcnet/gcnet_r101-d8_512x512_20k_voc12aug.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/configs/gcnet/gcnet_r101-d8_512x512_20k_voc12aug.py -------------------------------------------------------------------------------- /configs/gcnet/gcnet_r101-d8_512x512_40k_voc12aug.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/configs/gcnet/gcnet_r101-d8_512x512_40k_voc12aug.py -------------------------------------------------------------------------------- /configs/gcnet/gcnet_r101-d8_512x512_80k_ade20k.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/configs/gcnet/gcnet_r101-d8_512x512_80k_ade20k.py -------------------------------------------------------------------------------- /configs/gcnet/gcnet_r101-d8_769x769_40k_cityscapes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/configs/gcnet/gcnet_r101-d8_769x769_40k_cityscapes.py -------------------------------------------------------------------------------- /configs/gcnet/gcnet_r101-d8_769x769_80k_cityscapes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/configs/gcnet/gcnet_r101-d8_769x769_80k_cityscapes.py -------------------------------------------------------------------------------- /configs/gcnet/gcnet_r50-d8_512x1024_40k_cityscapes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/configs/gcnet/gcnet_r50-d8_512x1024_40k_cityscapes.py -------------------------------------------------------------------------------- /configs/gcnet/gcnet_r50-d8_512x1024_80k_cityscapes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/configs/gcnet/gcnet_r50-d8_512x1024_80k_cityscapes.py -------------------------------------------------------------------------------- /configs/gcnet/gcnet_r50-d8_512x512_160k_ade20k.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/configs/gcnet/gcnet_r50-d8_512x512_160k_ade20k.py -------------------------------------------------------------------------------- /configs/gcnet/gcnet_r50-d8_512x512_20k_voc12aug.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/configs/gcnet/gcnet_r50-d8_512x512_20k_voc12aug.py -------------------------------------------------------------------------------- /configs/gcnet/gcnet_r50-d8_512x512_40k_voc12aug.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/configs/gcnet/gcnet_r50-d8_512x512_40k_voc12aug.py -------------------------------------------------------------------------------- /configs/gcnet/gcnet_r50-d8_512x512_80k_ade20k.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/configs/gcnet/gcnet_r50-d8_512x512_80k_ade20k.py -------------------------------------------------------------------------------- /configs/gcnet/gcnet_r50-d8_769x769_40k_cityscapes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/configs/gcnet/gcnet_r50-d8_769x769_40k_cityscapes.py -------------------------------------------------------------------------------- /configs/gcnet/gcnet_r50-d8_769x769_80k_cityscapes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/configs/gcnet/gcnet_r50-d8_769x769_80k_cityscapes.py -------------------------------------------------------------------------------- /configs/hrnet/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/configs/hrnet/README.md -------------------------------------------------------------------------------- /configs/hrnet/fcn_hr18_480x480_40k_pascal_context.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/configs/hrnet/fcn_hr18_480x480_40k_pascal_context.py -------------------------------------------------------------------------------- /configs/hrnet/fcn_hr18_480x480_80k_pascal_context.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/configs/hrnet/fcn_hr18_480x480_80k_pascal_context.py -------------------------------------------------------------------------------- /configs/hrnet/fcn_hr18_512x1024_160k_cityscapes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/configs/hrnet/fcn_hr18_512x1024_160k_cityscapes.py -------------------------------------------------------------------------------- /configs/hrnet/fcn_hr18_512x1024_40k_cityscapes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/configs/hrnet/fcn_hr18_512x1024_40k_cityscapes.py -------------------------------------------------------------------------------- /configs/hrnet/fcn_hr18_512x1024_80k_cityscapes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/configs/hrnet/fcn_hr18_512x1024_80k_cityscapes.py -------------------------------------------------------------------------------- /configs/hrnet/fcn_hr18_512x512_160k_ade20k.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/configs/hrnet/fcn_hr18_512x512_160k_ade20k.py -------------------------------------------------------------------------------- /configs/hrnet/fcn_hr18_512x512_20k_voc12aug.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/configs/hrnet/fcn_hr18_512x512_20k_voc12aug.py -------------------------------------------------------------------------------- /configs/hrnet/fcn_hr18_512x512_40k_voc12aug.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/configs/hrnet/fcn_hr18_512x512_40k_voc12aug.py -------------------------------------------------------------------------------- /configs/hrnet/fcn_hr18_512x512_80k_ade20k.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/configs/hrnet/fcn_hr18_512x512_80k_ade20k.py -------------------------------------------------------------------------------- /configs/hrnet/fcn_hr18s_480x480_40k_pascal_context.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/configs/hrnet/fcn_hr18s_480x480_40k_pascal_context.py -------------------------------------------------------------------------------- /configs/hrnet/fcn_hr18s_480x480_80k_pascal_context.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/configs/hrnet/fcn_hr18s_480x480_80k_pascal_context.py -------------------------------------------------------------------------------- /configs/hrnet/fcn_hr18s_512x1024_160k_cityscapes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/configs/hrnet/fcn_hr18s_512x1024_160k_cityscapes.py -------------------------------------------------------------------------------- /configs/hrnet/fcn_hr18s_512x1024_40k_cityscapes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/configs/hrnet/fcn_hr18s_512x1024_40k_cityscapes.py -------------------------------------------------------------------------------- /configs/hrnet/fcn_hr18s_512x1024_80k_cityscapes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/configs/hrnet/fcn_hr18s_512x1024_80k_cityscapes.py -------------------------------------------------------------------------------- /configs/hrnet/fcn_hr18s_512x512_160k_ade20k.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/configs/hrnet/fcn_hr18s_512x512_160k_ade20k.py -------------------------------------------------------------------------------- /configs/hrnet/fcn_hr18s_512x512_20k_voc12aug.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/configs/hrnet/fcn_hr18s_512x512_20k_voc12aug.py -------------------------------------------------------------------------------- /configs/hrnet/fcn_hr18s_512x512_40k_voc12aug.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/configs/hrnet/fcn_hr18s_512x512_40k_voc12aug.py -------------------------------------------------------------------------------- /configs/hrnet/fcn_hr18s_512x512_80k_ade20k.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/configs/hrnet/fcn_hr18s_512x512_80k_ade20k.py -------------------------------------------------------------------------------- /configs/hrnet/fcn_hr48_480x480_40k_pascal_context.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/configs/hrnet/fcn_hr48_480x480_40k_pascal_context.py -------------------------------------------------------------------------------- /configs/hrnet/fcn_hr48_480x480_80k_pascal_context.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/configs/hrnet/fcn_hr48_480x480_80k_pascal_context.py -------------------------------------------------------------------------------- /configs/hrnet/fcn_hr48_512x1024_160k_cityscapes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/configs/hrnet/fcn_hr48_512x1024_160k_cityscapes.py -------------------------------------------------------------------------------- /configs/hrnet/fcn_hr48_512x1024_40k_cityscapes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/configs/hrnet/fcn_hr48_512x1024_40k_cityscapes.py -------------------------------------------------------------------------------- /configs/hrnet/fcn_hr48_512x1024_80k_cityscapes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/configs/hrnet/fcn_hr48_512x1024_80k_cityscapes.py -------------------------------------------------------------------------------- /configs/hrnet/fcn_hr48_512x512_160k_ade20k.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/configs/hrnet/fcn_hr48_512x512_160k_ade20k.py -------------------------------------------------------------------------------- /configs/hrnet/fcn_hr48_512x512_20k_voc12aug.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/configs/hrnet/fcn_hr48_512x512_20k_voc12aug.py -------------------------------------------------------------------------------- /configs/hrnet/fcn_hr48_512x512_40k_voc12aug.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/configs/hrnet/fcn_hr48_512x512_40k_voc12aug.py -------------------------------------------------------------------------------- /configs/hrnet/fcn_hr48_512x512_80k_ade20k.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/configs/hrnet/fcn_hr48_512x512_80k_ade20k.py -------------------------------------------------------------------------------- /configs/m2mrf/fcn_hr48-M2MRF-A_40k_idrid_bdice.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/configs/m2mrf/fcn_hr48-M2MRF-A_40k_idrid_bdice.py -------------------------------------------------------------------------------- /configs/m2mrf/fcn_hr48-M2MRF-A_60k_ddr_bdice.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/configs/m2mrf/fcn_hr48-M2MRF-A_60k_ddr_bdice.py -------------------------------------------------------------------------------- /configs/m2mrf/fcn_hr48-M2MRF-B_40k_idrid_bdice.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/configs/m2mrf/fcn_hr48-M2MRF-B_40k_idrid_bdice.py -------------------------------------------------------------------------------- /configs/m2mrf/fcn_hr48-M2MRF-B_60k_ddr_bdice.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/configs/m2mrf/fcn_hr48-M2MRF-B_60k_ddr_bdice.py -------------------------------------------------------------------------------- /configs/m2mrf/fcn_hr48-M2MRF-C_40k_idrid_bdice.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/configs/m2mrf/fcn_hr48-M2MRF-C_40k_idrid_bdice.py -------------------------------------------------------------------------------- /configs/m2mrf/fcn_hr48-M2MRF-C_60k_ddr_bdice.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/configs/m2mrf/fcn_hr48-M2MRF-C_60k_ddr_bdice.py -------------------------------------------------------------------------------- /configs/m2mrf/fcn_hr48-M2MRF-D_40k_idrid_bdice.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/configs/m2mrf/fcn_hr48-M2MRF-D_40k_idrid_bdice.py -------------------------------------------------------------------------------- /configs/m2mrf/fcn_hr48-M2MRF-D_60k_ddr_bdice.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/configs/m2mrf/fcn_hr48-M2MRF-D_60k_ddr_bdice.py -------------------------------------------------------------------------------- /configs/mobilenet_v2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/configs/mobilenet_v2/README.md -------------------------------------------------------------------------------- /configs/mobilenet_v2/deeplabv3_m-v2-d8_512x1024_80k_cityscapes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/configs/mobilenet_v2/deeplabv3_m-v2-d8_512x1024_80k_cityscapes.py -------------------------------------------------------------------------------- /configs/mobilenet_v2/deeplabv3_m-v2-d8_512x512_160k_ade20k.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/configs/mobilenet_v2/deeplabv3_m-v2-d8_512x512_160k_ade20k.py -------------------------------------------------------------------------------- /configs/mobilenet_v2/deeplabv3plus_m-v2-d8_512x1024_80k_cityscapes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/configs/mobilenet_v2/deeplabv3plus_m-v2-d8_512x1024_80k_cityscapes.py -------------------------------------------------------------------------------- /configs/mobilenet_v2/deeplabv3plus_m-v2-d8_512x512_160k_ade20k.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/configs/mobilenet_v2/deeplabv3plus_m-v2-d8_512x512_160k_ade20k.py -------------------------------------------------------------------------------- /configs/mobilenet_v2/fcn_m-v2-d8_512x1024_80k_cityscapes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/configs/mobilenet_v2/fcn_m-v2-d8_512x1024_80k_cityscapes.py -------------------------------------------------------------------------------- /configs/mobilenet_v2/fcn_m-v2-d8_512x512_160k_ade20k.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/configs/mobilenet_v2/fcn_m-v2-d8_512x512_160k_ade20k.py -------------------------------------------------------------------------------- /configs/mobilenet_v2/pspnet_m-v2-d8_512x1024_80k_cityscapes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/configs/mobilenet_v2/pspnet_m-v2-d8_512x1024_80k_cityscapes.py -------------------------------------------------------------------------------- /configs/mobilenet_v2/pspnet_m-v2-d8_512x512_160k_ade20k.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/configs/mobilenet_v2/pspnet_m-v2-d8_512x512_160k_ade20k.py -------------------------------------------------------------------------------- /configs/nonlocal_net/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/configs/nonlocal_net/README.md -------------------------------------------------------------------------------- /configs/nonlocal_net/nonlocal_r101-d8_512x1024_40k_cityscapes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/configs/nonlocal_net/nonlocal_r101-d8_512x1024_40k_cityscapes.py -------------------------------------------------------------------------------- /configs/nonlocal_net/nonlocal_r101-d8_512x1024_80k_cityscapes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/configs/nonlocal_net/nonlocal_r101-d8_512x1024_80k_cityscapes.py -------------------------------------------------------------------------------- /configs/nonlocal_net/nonlocal_r101-d8_512x512_160k_ade20k.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/configs/nonlocal_net/nonlocal_r101-d8_512x512_160k_ade20k.py -------------------------------------------------------------------------------- /configs/nonlocal_net/nonlocal_r101-d8_512x512_20k_voc12aug.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/configs/nonlocal_net/nonlocal_r101-d8_512x512_20k_voc12aug.py -------------------------------------------------------------------------------- /configs/nonlocal_net/nonlocal_r101-d8_512x512_40k_voc12aug.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/configs/nonlocal_net/nonlocal_r101-d8_512x512_40k_voc12aug.py -------------------------------------------------------------------------------- /configs/nonlocal_net/nonlocal_r101-d8_512x512_80k_ade20k.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/configs/nonlocal_net/nonlocal_r101-d8_512x512_80k_ade20k.py -------------------------------------------------------------------------------- /configs/nonlocal_net/nonlocal_r101-d8_769x769_40k_cityscapes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/configs/nonlocal_net/nonlocal_r101-d8_769x769_40k_cityscapes.py -------------------------------------------------------------------------------- /configs/nonlocal_net/nonlocal_r101-d8_769x769_80k_cityscapes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/configs/nonlocal_net/nonlocal_r101-d8_769x769_80k_cityscapes.py -------------------------------------------------------------------------------- /configs/nonlocal_net/nonlocal_r50-d8_512x1024_40k_cityscapes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/configs/nonlocal_net/nonlocal_r50-d8_512x1024_40k_cityscapes.py -------------------------------------------------------------------------------- /configs/nonlocal_net/nonlocal_r50-d8_512x1024_80k_cityscapes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/configs/nonlocal_net/nonlocal_r50-d8_512x1024_80k_cityscapes.py -------------------------------------------------------------------------------- /configs/nonlocal_net/nonlocal_r50-d8_512x512_160k_ade20k.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/configs/nonlocal_net/nonlocal_r50-d8_512x512_160k_ade20k.py -------------------------------------------------------------------------------- /configs/nonlocal_net/nonlocal_r50-d8_512x512_20k_voc12aug.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/configs/nonlocal_net/nonlocal_r50-d8_512x512_20k_voc12aug.py -------------------------------------------------------------------------------- /configs/nonlocal_net/nonlocal_r50-d8_512x512_40k_voc12aug.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/configs/nonlocal_net/nonlocal_r50-d8_512x512_40k_voc12aug.py -------------------------------------------------------------------------------- /configs/nonlocal_net/nonlocal_r50-d8_512x512_80k_ade20k.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/configs/nonlocal_net/nonlocal_r50-d8_512x512_80k_ade20k.py -------------------------------------------------------------------------------- /configs/nonlocal_net/nonlocal_r50-d8_769x769_40k_cityscapes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/configs/nonlocal_net/nonlocal_r50-d8_769x769_40k_cityscapes.py -------------------------------------------------------------------------------- /configs/nonlocal_net/nonlocal_r50-d8_769x769_80k_cityscapes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/configs/nonlocal_net/nonlocal_r50-d8_769x769_80k_cityscapes.py -------------------------------------------------------------------------------- /configs/ocrnet/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/configs/ocrnet/README.md -------------------------------------------------------------------------------- /configs/ocrnet/ocrnet_hr18_512x1024_160k_cityscapes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/configs/ocrnet/ocrnet_hr18_512x1024_160k_cityscapes.py -------------------------------------------------------------------------------- /configs/ocrnet/ocrnet_hr18_512x1024_40k_cityscapes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/configs/ocrnet/ocrnet_hr18_512x1024_40k_cityscapes.py -------------------------------------------------------------------------------- /configs/ocrnet/ocrnet_hr18_512x1024_80k_cityscapes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/configs/ocrnet/ocrnet_hr18_512x1024_80k_cityscapes.py -------------------------------------------------------------------------------- /configs/ocrnet/ocrnet_hr18_512x512_160k_ade20k.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/configs/ocrnet/ocrnet_hr18_512x512_160k_ade20k.py -------------------------------------------------------------------------------- /configs/ocrnet/ocrnet_hr18_512x512_20k_voc12aug.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/configs/ocrnet/ocrnet_hr18_512x512_20k_voc12aug.py -------------------------------------------------------------------------------- /configs/ocrnet/ocrnet_hr18_512x512_40k_voc12aug.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/configs/ocrnet/ocrnet_hr18_512x512_40k_voc12aug.py -------------------------------------------------------------------------------- /configs/ocrnet/ocrnet_hr18_512x512_80k_ade20k.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/configs/ocrnet/ocrnet_hr18_512x512_80k_ade20k.py -------------------------------------------------------------------------------- /configs/ocrnet/ocrnet_hr18s_512x1024_160k_cityscapes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/configs/ocrnet/ocrnet_hr18s_512x1024_160k_cityscapes.py -------------------------------------------------------------------------------- /configs/ocrnet/ocrnet_hr18s_512x1024_40k_cityscapes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/configs/ocrnet/ocrnet_hr18s_512x1024_40k_cityscapes.py -------------------------------------------------------------------------------- /configs/ocrnet/ocrnet_hr18s_512x1024_80k_cityscapes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/configs/ocrnet/ocrnet_hr18s_512x1024_80k_cityscapes.py -------------------------------------------------------------------------------- /configs/ocrnet/ocrnet_hr18s_512x512_160k_ade20k.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/configs/ocrnet/ocrnet_hr18s_512x512_160k_ade20k.py -------------------------------------------------------------------------------- /configs/ocrnet/ocrnet_hr18s_512x512_20k_voc12aug.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/configs/ocrnet/ocrnet_hr18s_512x512_20k_voc12aug.py -------------------------------------------------------------------------------- /configs/ocrnet/ocrnet_hr18s_512x512_40k_voc12aug.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/configs/ocrnet/ocrnet_hr18s_512x512_40k_voc12aug.py -------------------------------------------------------------------------------- /configs/ocrnet/ocrnet_hr18s_512x512_80k_ade20k.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/configs/ocrnet/ocrnet_hr18s_512x512_80k_ade20k.py -------------------------------------------------------------------------------- /configs/ocrnet/ocrnet_hr48_512x1024_160k_cityscapes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/configs/ocrnet/ocrnet_hr48_512x1024_160k_cityscapes.py -------------------------------------------------------------------------------- /configs/ocrnet/ocrnet_hr48_512x1024_40k_cityscapes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/configs/ocrnet/ocrnet_hr48_512x1024_40k_cityscapes.py -------------------------------------------------------------------------------- /configs/ocrnet/ocrnet_hr48_512x1024_80k_cityscapes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/configs/ocrnet/ocrnet_hr48_512x1024_80k_cityscapes.py -------------------------------------------------------------------------------- /configs/ocrnet/ocrnet_hr48_512x512_160k_ade20k.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/configs/ocrnet/ocrnet_hr48_512x512_160k_ade20k.py -------------------------------------------------------------------------------- /configs/ocrnet/ocrnet_hr48_512x512_20k_voc12aug.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/configs/ocrnet/ocrnet_hr48_512x512_20k_voc12aug.py -------------------------------------------------------------------------------- /configs/ocrnet/ocrnet_hr48_512x512_40k_voc12aug.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/configs/ocrnet/ocrnet_hr48_512x512_40k_voc12aug.py -------------------------------------------------------------------------------- /configs/ocrnet/ocrnet_hr48_512x512_80k_ade20k.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/configs/ocrnet/ocrnet_hr48_512x512_80k_ade20k.py -------------------------------------------------------------------------------- /configs/ocrnet/ocrnet_r101-d8_512x1024_40k_b16_cityscapes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/configs/ocrnet/ocrnet_r101-d8_512x1024_40k_b16_cityscapes.py -------------------------------------------------------------------------------- /configs/ocrnet/ocrnet_r101-d8_512x1024_40k_b8_cityscapes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/configs/ocrnet/ocrnet_r101-d8_512x1024_40k_b8_cityscapes.py -------------------------------------------------------------------------------- /configs/ocrnet/ocrnet_r101-d8_512x1024_80k_b16_cityscapes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/configs/ocrnet/ocrnet_r101-d8_512x1024_80k_b16_cityscapes.py -------------------------------------------------------------------------------- /configs/point_rend/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/configs/point_rend/README.md -------------------------------------------------------------------------------- /configs/point_rend/pointrend_r101_512x1024_80k_cityscapes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/configs/point_rend/pointrend_r101_512x1024_80k_cityscapes.py -------------------------------------------------------------------------------- /configs/point_rend/pointrend_r101_512x512_160k_ade20k.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/configs/point_rend/pointrend_r101_512x512_160k_ade20k.py -------------------------------------------------------------------------------- /configs/point_rend/pointrend_r50_512x1024_80k_cityscapes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/configs/point_rend/pointrend_r50_512x1024_80k_cityscapes.py -------------------------------------------------------------------------------- /configs/point_rend/pointrend_r50_512x512_160k_ade20k.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/configs/point_rend/pointrend_r50_512x512_160k_ade20k.py -------------------------------------------------------------------------------- /configs/psanet/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/configs/psanet/README.md -------------------------------------------------------------------------------- /configs/psanet/psanet_r101-d8_512x1024_40k_cityscapes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/configs/psanet/psanet_r101-d8_512x1024_40k_cityscapes.py -------------------------------------------------------------------------------- /configs/psanet/psanet_r101-d8_512x1024_80k_cityscapes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/configs/psanet/psanet_r101-d8_512x1024_80k_cityscapes.py -------------------------------------------------------------------------------- /configs/psanet/psanet_r101-d8_512x512_160k_ade20k.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/configs/psanet/psanet_r101-d8_512x512_160k_ade20k.py -------------------------------------------------------------------------------- /configs/psanet/psanet_r101-d8_512x512_20k_voc12aug.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/configs/psanet/psanet_r101-d8_512x512_20k_voc12aug.py -------------------------------------------------------------------------------- /configs/psanet/psanet_r101-d8_512x512_40k_voc12aug.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/configs/psanet/psanet_r101-d8_512x512_40k_voc12aug.py -------------------------------------------------------------------------------- /configs/psanet/psanet_r101-d8_512x512_80k_ade20k.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/configs/psanet/psanet_r101-d8_512x512_80k_ade20k.py -------------------------------------------------------------------------------- /configs/psanet/psanet_r101-d8_769x769_40k_cityscapes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/configs/psanet/psanet_r101-d8_769x769_40k_cityscapes.py -------------------------------------------------------------------------------- /configs/psanet/psanet_r101-d8_769x769_80k_cityscapes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/configs/psanet/psanet_r101-d8_769x769_80k_cityscapes.py -------------------------------------------------------------------------------- /configs/psanet/psanet_r50-d8_512x1024_40k_cityscapes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/configs/psanet/psanet_r50-d8_512x1024_40k_cityscapes.py -------------------------------------------------------------------------------- /configs/psanet/psanet_r50-d8_512x1024_80k_cityscapes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/configs/psanet/psanet_r50-d8_512x1024_80k_cityscapes.py -------------------------------------------------------------------------------- /configs/psanet/psanet_r50-d8_512x512_160k_ade20k.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/configs/psanet/psanet_r50-d8_512x512_160k_ade20k.py -------------------------------------------------------------------------------- /configs/psanet/psanet_r50-d8_512x512_20k_voc12aug.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/configs/psanet/psanet_r50-d8_512x512_20k_voc12aug.py -------------------------------------------------------------------------------- /configs/psanet/psanet_r50-d8_512x512_40k_voc12aug.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/configs/psanet/psanet_r50-d8_512x512_40k_voc12aug.py -------------------------------------------------------------------------------- /configs/psanet/psanet_r50-d8_512x512_80k_ade20k.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/configs/psanet/psanet_r50-d8_512x512_80k_ade20k.py -------------------------------------------------------------------------------- /configs/psanet/psanet_r50-d8_769x769_40k_cityscapes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/configs/psanet/psanet_r50-d8_769x769_40k_cityscapes.py -------------------------------------------------------------------------------- /configs/psanet/psanet_r50-d8_769x769_80k_cityscapes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/configs/psanet/psanet_r50-d8_769x769_80k_cityscapes.py -------------------------------------------------------------------------------- /configs/pspnet/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/configs/pspnet/README.md -------------------------------------------------------------------------------- /configs/pspnet/pspnet_r101-d8_480x480_40k_pascal_context.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/configs/pspnet/pspnet_r101-d8_480x480_40k_pascal_context.py -------------------------------------------------------------------------------- /configs/pspnet/pspnet_r101-d8_480x480_80k_pascal_context.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/configs/pspnet/pspnet_r101-d8_480x480_80k_pascal_context.py -------------------------------------------------------------------------------- /configs/pspnet/pspnet_r101-d8_512x1024_40k_cityscapes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/configs/pspnet/pspnet_r101-d8_512x1024_40k_cityscapes.py -------------------------------------------------------------------------------- /configs/pspnet/pspnet_r101-d8_512x1024_80k_cityscapes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/configs/pspnet/pspnet_r101-d8_512x1024_80k_cityscapes.py -------------------------------------------------------------------------------- /configs/pspnet/pspnet_r101-d8_512x512_160k_ade20k.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/configs/pspnet/pspnet_r101-d8_512x512_160k_ade20k.py -------------------------------------------------------------------------------- /configs/pspnet/pspnet_r101-d8_512x512_20k_voc12aug.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/configs/pspnet/pspnet_r101-d8_512x512_20k_voc12aug.py -------------------------------------------------------------------------------- /configs/pspnet/pspnet_r101-d8_512x512_40k_voc12aug.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/configs/pspnet/pspnet_r101-d8_512x512_40k_voc12aug.py -------------------------------------------------------------------------------- /configs/pspnet/pspnet_r101-d8_512x512_80k_ade20k.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/configs/pspnet/pspnet_r101-d8_512x512_80k_ade20k.py -------------------------------------------------------------------------------- /configs/pspnet/pspnet_r101-d8_769x769_40k_cityscapes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/configs/pspnet/pspnet_r101-d8_769x769_40k_cityscapes.py -------------------------------------------------------------------------------- /configs/pspnet/pspnet_r101-d8_769x769_80k_cityscapes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/configs/pspnet/pspnet_r101-d8_769x769_80k_cityscapes.py -------------------------------------------------------------------------------- /configs/pspnet/pspnet_r50-d8_480x480_40k_pascal_context.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/configs/pspnet/pspnet_r50-d8_480x480_40k_pascal_context.py -------------------------------------------------------------------------------- /configs/pspnet/pspnet_r50-d8_480x480_80k_pascal_context.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/configs/pspnet/pspnet_r50-d8_480x480_80k_pascal_context.py -------------------------------------------------------------------------------- /configs/pspnet/pspnet_r50-d8_512x1024_40k_cityscapes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/configs/pspnet/pspnet_r50-d8_512x1024_40k_cityscapes.py -------------------------------------------------------------------------------- /configs/pspnet/pspnet_r50-d8_512x1024_80k_cityscapes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/configs/pspnet/pspnet_r50-d8_512x1024_80k_cityscapes.py -------------------------------------------------------------------------------- /configs/pspnet/pspnet_r50-d8_512x512_160k_ade20k.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/configs/pspnet/pspnet_r50-d8_512x512_160k_ade20k.py -------------------------------------------------------------------------------- /configs/pspnet/pspnet_r50-d8_512x512_20k_voc12aug.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/configs/pspnet/pspnet_r50-d8_512x512_20k_voc12aug.py -------------------------------------------------------------------------------- /configs/pspnet/pspnet_r50-d8_512x512_40k_voc12aug.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/configs/pspnet/pspnet_r50-d8_512x512_40k_voc12aug.py -------------------------------------------------------------------------------- /configs/pspnet/pspnet_r50-d8_512x512_80k_ade20k.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/configs/pspnet/pspnet_r50-d8_512x512_80k_ade20k.py -------------------------------------------------------------------------------- /configs/pspnet/pspnet_r50-d8_769x769_40k_cityscapes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/configs/pspnet/pspnet_r50-d8_769x769_40k_cityscapes.py -------------------------------------------------------------------------------- /configs/pspnet/pspnet_r50-d8_769x769_80k_cityscapes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/configs/pspnet/pspnet_r50-d8_769x769_80k_cityscapes.py -------------------------------------------------------------------------------- /configs/resnest/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/configs/resnest/README.md -------------------------------------------------------------------------------- /configs/resnest/deeplabv3_s101-d8_512x1024_80k_cityscapes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/configs/resnest/deeplabv3_s101-d8_512x1024_80k_cityscapes.py -------------------------------------------------------------------------------- /configs/resnest/deeplabv3_s101-d8_512x512_160k_ade20k.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/configs/resnest/deeplabv3_s101-d8_512x512_160k_ade20k.py -------------------------------------------------------------------------------- /configs/resnest/deeplabv3plus_s101-d8_512x1024_80k_cityscapes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/configs/resnest/deeplabv3plus_s101-d8_512x1024_80k_cityscapes.py -------------------------------------------------------------------------------- /configs/resnest/deeplabv3plus_s101-d8_512x512_160k_ade20k.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/configs/resnest/deeplabv3plus_s101-d8_512x512_160k_ade20k.py -------------------------------------------------------------------------------- /configs/resnest/fcn_s101-d8_512x1024_80k_cityscapes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/configs/resnest/fcn_s101-d8_512x1024_80k_cityscapes.py -------------------------------------------------------------------------------- /configs/resnest/fcn_s101-d8_512x512_160k_ade20k.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/configs/resnest/fcn_s101-d8_512x512_160k_ade20k.py -------------------------------------------------------------------------------- /configs/resnest/pspnet_s101-d8_512x1024_80k_cityscapes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/configs/resnest/pspnet_s101-d8_512x1024_80k_cityscapes.py -------------------------------------------------------------------------------- /configs/resnest/pspnet_s101-d8_512x512_160k_ade20k.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/configs/resnest/pspnet_s101-d8_512x512_160k_ade20k.py -------------------------------------------------------------------------------- /configs/sem_fpn/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/configs/sem_fpn/README.md -------------------------------------------------------------------------------- /configs/sem_fpn/fpn_r101_512x1024_80k_cityscapes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/configs/sem_fpn/fpn_r101_512x1024_80k_cityscapes.py -------------------------------------------------------------------------------- /configs/sem_fpn/fpn_r101_512x512_160k_ade20k.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/configs/sem_fpn/fpn_r101_512x512_160k_ade20k.py -------------------------------------------------------------------------------- /configs/sem_fpn/fpn_r50_512x1024_80k_cityscapes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/configs/sem_fpn/fpn_r50_512x1024_80k_cityscapes.py -------------------------------------------------------------------------------- /configs/sem_fpn/fpn_r50_512x512_160k_ade20k.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/configs/sem_fpn/fpn_r50_512x512_160k_ade20k.py -------------------------------------------------------------------------------- /configs/upernet/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/configs/upernet/README.md -------------------------------------------------------------------------------- /configs/upernet/upernet_r101_512x1024_40k_cityscapes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/configs/upernet/upernet_r101_512x1024_40k_cityscapes.py -------------------------------------------------------------------------------- /configs/upernet/upernet_r101_512x1024_80k_cityscapes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/configs/upernet/upernet_r101_512x1024_80k_cityscapes.py -------------------------------------------------------------------------------- /configs/upernet/upernet_r101_512x512_160k_ade20k.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/configs/upernet/upernet_r101_512x512_160k_ade20k.py -------------------------------------------------------------------------------- /configs/upernet/upernet_r101_512x512_20k_voc12aug.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/configs/upernet/upernet_r101_512x512_20k_voc12aug.py -------------------------------------------------------------------------------- /configs/upernet/upernet_r101_512x512_40k_voc12aug.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/configs/upernet/upernet_r101_512x512_40k_voc12aug.py -------------------------------------------------------------------------------- /configs/upernet/upernet_r101_512x512_80k_ade20k.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/configs/upernet/upernet_r101_512x512_80k_ade20k.py -------------------------------------------------------------------------------- /configs/upernet/upernet_r101_769x769_40k_cityscapes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/configs/upernet/upernet_r101_769x769_40k_cityscapes.py -------------------------------------------------------------------------------- /configs/upernet/upernet_r101_769x769_80k_cityscapes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/configs/upernet/upernet_r101_769x769_80k_cityscapes.py -------------------------------------------------------------------------------- /configs/upernet/upernet_r50_512x1024_40k_cityscapes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/configs/upernet/upernet_r50_512x1024_40k_cityscapes.py -------------------------------------------------------------------------------- /configs/upernet/upernet_r50_512x1024_80k_cityscapes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/configs/upernet/upernet_r50_512x1024_80k_cityscapes.py -------------------------------------------------------------------------------- /configs/upernet/upernet_r50_512x512_160k_ade20k.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/configs/upernet/upernet_r50_512x512_160k_ade20k.py -------------------------------------------------------------------------------- /configs/upernet/upernet_r50_512x512_20k_voc12aug.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/configs/upernet/upernet_r50_512x512_20k_voc12aug.py -------------------------------------------------------------------------------- /configs/upernet/upernet_r50_512x512_40k_voc12aug.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/configs/upernet/upernet_r50_512x512_40k_voc12aug.py -------------------------------------------------------------------------------- /configs/upernet/upernet_r50_512x512_80k_ade20k.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/configs/upernet/upernet_r50_512x512_80k_ade20k.py -------------------------------------------------------------------------------- /configs/upernet/upernet_r50_769x769_40k_cityscapes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/configs/upernet/upernet_r50_769x769_40k_cityscapes.py -------------------------------------------------------------------------------- /configs/upernet/upernet_r50_769x769_80k_cityscapes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/configs/upernet/upernet_r50_769x769_80k_cityscapes.py -------------------------------------------------------------------------------- /demo/MMSegmentation_Tutorial.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/demo/MMSegmentation_Tutorial.ipynb -------------------------------------------------------------------------------- /demo/demo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/demo/demo.png -------------------------------------------------------------------------------- /demo/image_demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/demo/image_demo.py -------------------------------------------------------------------------------- /demo/inference_demo.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/demo/inference_demo.ipynb -------------------------------------------------------------------------------- /demo/lesion_visual.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/demo/lesion_visual.py -------------------------------------------------------------------------------- /demo/lesion_visual_classes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/demo/lesion_visual_classes.py -------------------------------------------------------------------------------- /docker/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/docker/Dockerfile -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/api.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/docs/api.rst -------------------------------------------------------------------------------- /docs/changelog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/docs/changelog.md -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/config.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/docs/config.md -------------------------------------------------------------------------------- /docs/getting_started.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/docs/getting_started.md -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/install.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/docs/install.md -------------------------------------------------------------------------------- /docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/docs/make.bat -------------------------------------------------------------------------------- /docs/model_zoo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/docs/model_zoo.md -------------------------------------------------------------------------------- /docs/tutorials/data_pipeline.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/docs/tutorials/data_pipeline.md -------------------------------------------------------------------------------- /docs/tutorials/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/docs/tutorials/index.rst -------------------------------------------------------------------------------- /docs/tutorials/new_dataset.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/docs/tutorials/new_dataset.md -------------------------------------------------------------------------------- /docs/tutorials/new_modules.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/docs/tutorials/new_modules.md -------------------------------------------------------------------------------- /docs/tutorials/training_tricks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/docs/tutorials/training_tricks.md -------------------------------------------------------------------------------- /mmseg/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/mmseg/__init__.py -------------------------------------------------------------------------------- /mmseg/apis/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/mmseg/apis/__init__.py -------------------------------------------------------------------------------- /mmseg/apis/inference.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/mmseg/apis/inference.py -------------------------------------------------------------------------------- /mmseg/apis/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/mmseg/apis/test.py -------------------------------------------------------------------------------- /mmseg/apis/train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/mmseg/apis/train.py -------------------------------------------------------------------------------- /mmseg/core/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/mmseg/core/__init__.py -------------------------------------------------------------------------------- /mmseg/core/evaluation/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/mmseg/core/evaluation/__init__.py -------------------------------------------------------------------------------- /mmseg/core/evaluation/class_names.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/mmseg/core/evaluation/class_names.py -------------------------------------------------------------------------------- /mmseg/core/evaluation/eval_hooks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/mmseg/core/evaluation/eval_hooks.py -------------------------------------------------------------------------------- /mmseg/core/evaluation/mean_iou.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/mmseg/core/evaluation/mean_iou.py -------------------------------------------------------------------------------- /mmseg/core/evaluation/my_metrics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/mmseg/core/evaluation/my_metrics.py -------------------------------------------------------------------------------- /mmseg/core/optimizer/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/mmseg/core/optimizer/__init__.py -------------------------------------------------------------------------------- /mmseg/core/optimizer/my_optimizer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/mmseg/core/optimizer/my_optimizer.py -------------------------------------------------------------------------------- /mmseg/core/seg/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/mmseg/core/seg/__init__.py -------------------------------------------------------------------------------- /mmseg/core/seg/builder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/mmseg/core/seg/builder.py -------------------------------------------------------------------------------- /mmseg/core/seg/sampler/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/mmseg/core/seg/sampler/__init__.py -------------------------------------------------------------------------------- /mmseg/core/seg/sampler/base_pixel_sampler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/mmseg/core/seg/sampler/base_pixel_sampler.py -------------------------------------------------------------------------------- /mmseg/core/seg/sampler/ohem_pixel_sampler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/mmseg/core/seg/sampler/ohem_pixel_sampler.py -------------------------------------------------------------------------------- /mmseg/core/utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/mmseg/core/utils/__init__.py -------------------------------------------------------------------------------- /mmseg/core/utils/misc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/mmseg/core/utils/misc.py -------------------------------------------------------------------------------- /mmseg/datasets/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/mmseg/datasets/__init__.py -------------------------------------------------------------------------------- /mmseg/datasets/ade.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/mmseg/datasets/ade.py -------------------------------------------------------------------------------- /mmseg/datasets/builder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/mmseg/datasets/builder.py -------------------------------------------------------------------------------- /mmseg/datasets/chase_db1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/mmseg/datasets/chase_db1.py -------------------------------------------------------------------------------- /mmseg/datasets/cityscapes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/mmseg/datasets/cityscapes.py -------------------------------------------------------------------------------- /mmseg/datasets/custom.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/mmseg/datasets/custom.py -------------------------------------------------------------------------------- /mmseg/datasets/dataset_wrappers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/mmseg/datasets/dataset_wrappers.py -------------------------------------------------------------------------------- /mmseg/datasets/drive.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/mmseg/datasets/drive.py -------------------------------------------------------------------------------- /mmseg/datasets/hrf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/mmseg/datasets/hrf.py -------------------------------------------------------------------------------- /mmseg/datasets/my_custom.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/mmseg/datasets/my_custom.py -------------------------------------------------------------------------------- /mmseg/datasets/pascal_context.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/mmseg/datasets/pascal_context.py -------------------------------------------------------------------------------- /mmseg/datasets/pipelines/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/mmseg/datasets/pipelines/__init__.py -------------------------------------------------------------------------------- /mmseg/datasets/pipelines/compose.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/mmseg/datasets/pipelines/compose.py -------------------------------------------------------------------------------- /mmseg/datasets/pipelines/formating.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/mmseg/datasets/pipelines/formating.py -------------------------------------------------------------------------------- /mmseg/datasets/pipelines/loading.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/mmseg/datasets/pipelines/loading.py -------------------------------------------------------------------------------- /mmseg/datasets/pipelines/my_transforms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/mmseg/datasets/pipelines/my_transforms.py -------------------------------------------------------------------------------- /mmseg/datasets/pipelines/test_time_aug.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/mmseg/datasets/pipelines/test_time_aug.py -------------------------------------------------------------------------------- /mmseg/datasets/pipelines/transforms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/mmseg/datasets/pipelines/transforms.py -------------------------------------------------------------------------------- /mmseg/datasets/stare.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/mmseg/datasets/stare.py -------------------------------------------------------------------------------- /mmseg/datasets/voc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/mmseg/datasets/voc.py -------------------------------------------------------------------------------- /mmseg/models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/mmseg/models/__init__.py -------------------------------------------------------------------------------- /mmseg/models/backbones/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/mmseg/models/backbones/__init__.py -------------------------------------------------------------------------------- /mmseg/models/backbones/cgnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/mmseg/models/backbones/cgnet.py -------------------------------------------------------------------------------- /mmseg/models/backbones/fast_scnn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/mmseg/models/backbones/fast_scnn.py -------------------------------------------------------------------------------- /mmseg/models/backbones/hrnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/mmseg/models/backbones/hrnet.py -------------------------------------------------------------------------------- /mmseg/models/backbones/hrnet_m2mrf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/mmseg/models/backbones/hrnet_m2mrf.py -------------------------------------------------------------------------------- /mmseg/models/backbones/mobilenet_v2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/mmseg/models/backbones/mobilenet_v2.py -------------------------------------------------------------------------------- /mmseg/models/backbones/resnest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/mmseg/models/backbones/resnest.py -------------------------------------------------------------------------------- /mmseg/models/backbones/resnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/mmseg/models/backbones/resnet.py -------------------------------------------------------------------------------- /mmseg/models/backbones/resnext.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/mmseg/models/backbones/resnext.py -------------------------------------------------------------------------------- /mmseg/models/backbones/unet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/mmseg/models/backbones/unet.py -------------------------------------------------------------------------------- /mmseg/models/builder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/mmseg/models/builder.py -------------------------------------------------------------------------------- /mmseg/models/decode_heads/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/mmseg/models/decode_heads/__init__.py -------------------------------------------------------------------------------- /mmseg/models/decode_heads/ann_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/mmseg/models/decode_heads/ann_head.py -------------------------------------------------------------------------------- /mmseg/models/decode_heads/aspp_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/mmseg/models/decode_heads/aspp_head.py -------------------------------------------------------------------------------- /mmseg/models/decode_heads/cascade_decode_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/mmseg/models/decode_heads/cascade_decode_head.py -------------------------------------------------------------------------------- /mmseg/models/decode_heads/cc_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/mmseg/models/decode_heads/cc_head.py -------------------------------------------------------------------------------- /mmseg/models/decode_heads/da_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/mmseg/models/decode_heads/da_head.py -------------------------------------------------------------------------------- /mmseg/models/decode_heads/decode_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/mmseg/models/decode_heads/decode_head.py -------------------------------------------------------------------------------- /mmseg/models/decode_heads/dnl_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/mmseg/models/decode_heads/dnl_head.py -------------------------------------------------------------------------------- /mmseg/models/decode_heads/ema_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/mmseg/models/decode_heads/ema_head.py -------------------------------------------------------------------------------- /mmseg/models/decode_heads/enc_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/mmseg/models/decode_heads/enc_head.py -------------------------------------------------------------------------------- /mmseg/models/decode_heads/fcn_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/mmseg/models/decode_heads/fcn_head.py -------------------------------------------------------------------------------- /mmseg/models/decode_heads/fpn_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/mmseg/models/decode_heads/fpn_head.py -------------------------------------------------------------------------------- /mmseg/models/decode_heads/gc_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/mmseg/models/decode_heads/gc_head.py -------------------------------------------------------------------------------- /mmseg/models/decode_heads/nl_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/mmseg/models/decode_heads/nl_head.py -------------------------------------------------------------------------------- /mmseg/models/decode_heads/ocr_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/mmseg/models/decode_heads/ocr_head.py -------------------------------------------------------------------------------- /mmseg/models/decode_heads/point_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/mmseg/models/decode_heads/point_head.py -------------------------------------------------------------------------------- /mmseg/models/decode_heads/psa_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/mmseg/models/decode_heads/psa_head.py -------------------------------------------------------------------------------- /mmseg/models/decode_heads/psp_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/mmseg/models/decode_heads/psp_head.py -------------------------------------------------------------------------------- /mmseg/models/decode_heads/sep_aspp_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/mmseg/models/decode_heads/sep_aspp_head.py -------------------------------------------------------------------------------- /mmseg/models/decode_heads/sep_fcn_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/mmseg/models/decode_heads/sep_fcn_head.py -------------------------------------------------------------------------------- /mmseg/models/decode_heads/uper_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/mmseg/models/decode_heads/uper_head.py -------------------------------------------------------------------------------- /mmseg/models/losses/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/mmseg/models/losses/__init__.py -------------------------------------------------------------------------------- /mmseg/models/losses/accuracy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/mmseg/models/losses/accuracy.py -------------------------------------------------------------------------------- /mmseg/models/losses/binary_loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/mmseg/models/losses/binary_loss.py -------------------------------------------------------------------------------- /mmseg/models/losses/cross_entropy_loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/mmseg/models/losses/cross_entropy_loss.py -------------------------------------------------------------------------------- /mmseg/models/losses/dice_loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/mmseg/models/losses/dice_loss.py -------------------------------------------------------------------------------- /mmseg/models/losses/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/mmseg/models/losses/utils.py -------------------------------------------------------------------------------- /mmseg/models/necks/__init__.py: -------------------------------------------------------------------------------- 1 | from .fpn import FPN 2 | 3 | __all__ = ['FPN'] 4 | -------------------------------------------------------------------------------- /mmseg/models/necks/fpn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/mmseg/models/necks/fpn.py -------------------------------------------------------------------------------- /mmseg/models/segmentors/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/mmseg/models/segmentors/__init__.py -------------------------------------------------------------------------------- /mmseg/models/segmentors/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/mmseg/models/segmentors/base.py -------------------------------------------------------------------------------- /mmseg/models/segmentors/cascade_encoder_decoder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/mmseg/models/segmentors/cascade_encoder_decoder.py -------------------------------------------------------------------------------- /mmseg/models/segmentors/encoder_decoder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/mmseg/models/segmentors/encoder_decoder.py -------------------------------------------------------------------------------- /mmseg/models/utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/mmseg/models/utils/__init__.py -------------------------------------------------------------------------------- /mmseg/models/utils/inverted_residual.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/mmseg/models/utils/inverted_residual.py -------------------------------------------------------------------------------- /mmseg/models/utils/m2mrf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/mmseg/models/utils/m2mrf.py -------------------------------------------------------------------------------- /mmseg/models/utils/make_divisible.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/mmseg/models/utils/make_divisible.py -------------------------------------------------------------------------------- /mmseg/models/utils/res_layer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/mmseg/models/utils/res_layer.py -------------------------------------------------------------------------------- /mmseg/models/utils/self_attention_block.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/mmseg/models/utils/self_attention_block.py -------------------------------------------------------------------------------- /mmseg/models/utils/up_conv_block.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/mmseg/models/utils/up_conv_block.py -------------------------------------------------------------------------------- /mmseg/ops/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/mmseg/ops/__init__.py -------------------------------------------------------------------------------- /mmseg/ops/encoding.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/mmseg/ops/encoding.py -------------------------------------------------------------------------------- /mmseg/ops/wrappers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/mmseg/ops/wrappers.py -------------------------------------------------------------------------------- /mmseg/utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/mmseg/utils/__init__.py -------------------------------------------------------------------------------- /mmseg/utils/collect_env.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/mmseg/utils/collect_env.py -------------------------------------------------------------------------------- /mmseg/utils/logger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/mmseg/utils/logger.py -------------------------------------------------------------------------------- /mmseg/version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/mmseg/version.py -------------------------------------------------------------------------------- /myapi/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/myapi/__init__.py -------------------------------------------------------------------------------- /myapi/config.py: -------------------------------------------------------------------------------- 1 | plot_heatmap = True 2 | -------------------------------------------------------------------------------- /myapi/test_hook.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/myapi/test_hook.py -------------------------------------------------------------------------------- /pytest.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/pytest.ini -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/requirements.txt -------------------------------------------------------------------------------- /requirements/docs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/requirements/docs.txt -------------------------------------------------------------------------------- /requirements/optional.txt: -------------------------------------------------------------------------------- 1 | cityscapesscripts 2 | -------------------------------------------------------------------------------- /requirements/readthedocs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/requirements/readthedocs.txt -------------------------------------------------------------------------------- /requirements/runtime.txt: -------------------------------------------------------------------------------- 1 | matplotlib 2 | numpy 3 | -------------------------------------------------------------------------------- /requirements/tests.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/requirements/tests.txt -------------------------------------------------------------------------------- /resources/mmseg-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/resources/mmseg-logo.png -------------------------------------------------------------------------------- /resources/seg_demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/resources/seg_demo.gif -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/setup.py -------------------------------------------------------------------------------- /tests/test_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/tests/test_config.py -------------------------------------------------------------------------------- /tests/test_data/test_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/tests/test_data/test_dataset.py -------------------------------------------------------------------------------- /tests/test_data/test_dataset_builder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/tests/test_data/test_dataset_builder.py -------------------------------------------------------------------------------- /tests/test_data/test_loading.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/tests/test_data/test_loading.py -------------------------------------------------------------------------------- /tests/test_data/test_transform.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/tests/test_data/test_transform.py -------------------------------------------------------------------------------- /tests/test_eval_hook.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/tests/test_eval_hook.py -------------------------------------------------------------------------------- /tests/test_mean_iou.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/tests/test_mean_iou.py -------------------------------------------------------------------------------- /tests/test_models/test_backbone.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/tests/test_models/test_backbone.py -------------------------------------------------------------------------------- /tests/test_models/test_forward.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/tests/test_models/test_forward.py -------------------------------------------------------------------------------- /tests/test_models/test_heads.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/tests/test_models/test_heads.py -------------------------------------------------------------------------------- /tests/test_models/test_losses.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/tests/test_models/test_losses.py -------------------------------------------------------------------------------- /tests/test_models/test_necks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/tests/test_models/test_necks.py -------------------------------------------------------------------------------- /tests/test_models/test_segmentor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/tests/test_models/test_segmentor.py -------------------------------------------------------------------------------- /tests/test_models/test_unet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/tests/test_models/test_unet.py -------------------------------------------------------------------------------- /tests/test_sampler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/tests/test_sampler.py -------------------------------------------------------------------------------- /tests/test_utils/test_inverted_residual_module.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/tests/test_utils/test_inverted_residual_module.py -------------------------------------------------------------------------------- /tools/augment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/tools/augment.py -------------------------------------------------------------------------------- /tools/benchmark.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/tools/benchmark.py -------------------------------------------------------------------------------- /tools/convert_datasets/chase_db1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/tools/convert_datasets/chase_db1.py -------------------------------------------------------------------------------- /tools/convert_datasets/cityscapes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/tools/convert_datasets/cityscapes.py -------------------------------------------------------------------------------- /tools/convert_datasets/drive.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/tools/convert_datasets/drive.py -------------------------------------------------------------------------------- /tools/convert_datasets/hrf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/tools/convert_datasets/hrf.py -------------------------------------------------------------------------------- /tools/convert_datasets/pascal_context.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/tools/convert_datasets/pascal_context.py -------------------------------------------------------------------------------- /tools/convert_datasets/stare.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/tools/convert_datasets/stare.py -------------------------------------------------------------------------------- /tools/convert_datasets/voc_aug.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/tools/convert_datasets/voc_aug.py -------------------------------------------------------------------------------- /tools/dist_test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/tools/dist_test.sh -------------------------------------------------------------------------------- /tools/dist_train.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/tools/dist_train.sh -------------------------------------------------------------------------------- /tools/get_flops.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/tools/get_flops.py -------------------------------------------------------------------------------- /tools/get_fps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/tools/get_fps.py -------------------------------------------------------------------------------- /tools/get_profile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/tools/get_profile.py -------------------------------------------------------------------------------- /tools/prepare_labels.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/tools/prepare_labels.py -------------------------------------------------------------------------------- /tools/print_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/tools/print_config.py -------------------------------------------------------------------------------- /tools/publish_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/tools/publish_model.py -------------------------------------------------------------------------------- /tools/pytorch2onnx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/tools/pytorch2onnx.py -------------------------------------------------------------------------------- /tools/slurm_test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/tools/slurm_test.sh -------------------------------------------------------------------------------- /tools/slurm_train.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/tools/slurm_train.sh -------------------------------------------------------------------------------- /tools/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/tools/test.py -------------------------------------------------------------------------------- /tools/train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CVIU-CSU/M2MRF-Lesion-Segmentation/HEAD/tools/train.py --------------------------------------------------------------------------------