├── .gitignore ├── HRNet-Semantic-Segmentation-HRNet-OCR ├── .gitignore ├── LICENSE ├── README.md ├── experiments │ ├── ade20k │ │ ├── seg_hrnet_ocr_w48_520x520_ohem_sgd_lr2e-2_wd1e-4_bs_16_epoch120.yaml │ │ ├── seg_hrnet_ocr_w48_520x520_ohem_sgd_lr2e-2_wd1e-4_bs_16_epoch120_paddle.yaml │ │ ├── seg_hrnet_w48_520x520_ohem_sgd_lr2e-2_wd1e-4_bs_16_epoch120.yaml │ │ ├── seg_hrnet_w48_520x520_ohem_sgd_lr2e-2_wd1e-4_bs_16_epoch120_paddle.yaml │ │ └── seg_hrnet_w48_520x520_sgd_lr2e-2_wd1e-4_bs_16_epoch120.yaml │ ├── cityscapes │ │ ├── seg_hrnet_ocr_w48_train_512x1024_sgd_lr1e-2_wd5e-4_bs_12_epoch484.yaml │ │ ├── seg_hrnet_ocr_w48_train_512x1024_sgd_lr1e-2_wd5e-4_bs_16_epoch484_paddle.yaml │ │ ├── seg_hrnet_ocr_w48_trainval_512x1024_sgd_lr1e-2_wd5e-4_bs_12_epoch484.yaml │ │ ├── seg_hrnet_w48_train_512x1024_sgd_lr1e-2_wd5e-4_bs_12_epoch484.yaml │ │ ├── seg_hrnet_w48_train_512x1024_sgd_lr1e-2_wd5e-4_bs_12_epoch484_paddle.yaml │ │ ├── seg_hrnet_w48_train_512x1024_sgd_lr1e-2_wd5e-4_bs_16_epoch484_paddle.yaml │ │ ├── seg_hrnet_w48_train_ohem_512x1024_sgd_lr1e-2_wd5e-4_bs_12_epoch484.yaml │ │ ├── seg_hrnet_w48_trainval_512x1024_sgd_lr1e-2_wd5e-4_bs_12_epoch484x2.yaml │ │ └── seg_hrnet_w48_trainval_ohem_512x1024_sgd_lr1e-2_wd5e-4_bs_12_epoch484x2.yaml │ ├── cocostuff │ │ ├── seg_hrnet_ocr_w48_520x520_ohem_sgd_lr1e-3_wd1e-4_bs_16_epoch110.yaml │ │ ├── seg_hrnet_ocr_w48_520x520_ohem_sgd_lr1e-3_wd1e-4_bs_16_epoch110_paddle.yaml │ │ ├── seg_hrnet_w48_520x520_ohem_sgd_lr1e-3_wd1e-4_bs_16_epoch110.yaml │ │ ├── seg_hrnet_w48_520x520_ohem_sgd_lr1e-3_wd1e-4_bs_16_epoch110_paddle.yaml │ │ └── seg_hrnet_w48_520x520_sgd_lr1e-3_wd1e-4_bs_16_epoch110.yaml │ ├── lip │ │ ├── seg_hrnet_ocr_w48_473x473_sgd_lr7e-3_wd5e-4_bs_40_epoch150.yaml │ │ ├── seg_hrnet_w48_473x473_sgd_lr7e-3_wd5e-4_bs_40_epoch150.yaml │ │ └── seg_hrnet_w48_473x473_sgd_lr7e-3_wd5e-4_bs_40_epoch150_paddle.yaml │ └── pascal_ctx │ │ ├── seg_hrnet_ocr_w48_cls59_520x520_sgd_lr1e-3_wd1e-4_bs_16_epoch200.yaml │ │ ├── seg_hrnet_ocr_w48_cls60_520x520_sgd_lr1e-3_wd1e-4_bs_16_epoch200.yaml │ │ ├── seg_hrnet_w48_cls59_520x520_sgd_lr1e-3_wd1e-4_bs_16_epoch200.yaml │ │ └── seg_hrnet_w48_cls59_520x520_sgd_lr1e-3_wd1e-4_bs_16_epoch200_paddle.yaml ├── figures │ ├── OCR.PNG │ ├── SegmentationTransformerOCR.png │ ├── SegmentationTransformerOCR1.png │ ├── SegmentationTransformerOCR2.png │ └── seg-hrnet.png ├── hubconf.py ├── le50_test.txt ├── lib │ ├── config │ │ ├── __init__.py │ │ ├── default.py │ │ ├── hrnet_config.py │ │ └── models.py │ ├── core │ │ ├── criterion.py │ │ └── function.py │ ├── datasets │ │ ├── __init__.py │ │ ├── ade20k.py │ │ ├── base_dataset.py │ │ ├── cityscapes.py │ │ ├── cocostuff.py │ │ ├── lip.py │ │ └── pascal_ctx.py │ ├── models │ │ ├── __init__.py │ │ ├── bn_helper.py │ │ ├── hrnet.py │ │ ├── seg_hrnet.py │ │ ├── seg_hrnet_ocr.py │ │ └── sync_bn │ │ │ ├── LICENSE │ │ │ ├── __init__.py │ │ │ └── inplace_abn │ │ │ ├── __init__.py │ │ │ ├── bn.py │ │ │ ├── functions.py │ │ │ └── src │ │ │ ├── common.h │ │ │ ├── inplace_abn.cpp │ │ │ ├── inplace_abn.h │ │ │ ├── inplace_abn_cpu.cpp │ │ │ └── inplace_abn_cuda.cu │ └── utils │ │ ├── __init__.py │ │ ├── distributed.py │ │ ├── modelsummary.py │ │ └── utils.py ├── local_log.txt ├── requirements.txt ├── run_dist.sh ├── run_local.sh └── tools │ ├── _init_paths.py │ ├── inference.py │ ├── test.py │ └── train.py ├── README.md ├── assets └── pipeline.png ├── data.py ├── environment.yml ├── evaluation ├── __init__.py └── metrics.py ├── model ├── austnet.py ├── austnet_s.py └── encoder_decoder.py ├── options.py ├── pytorch_iou └── __init__.py ├── pytorch_ssim └── __init__.py ├── test_austnet.py ├── test_austnet_s.py ├── train_austnet.py └── train_austnet_s.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcmi/AustNet-Inharmonious-Region-Localization/HEAD/.gitignore -------------------------------------------------------------------------------- /HRNet-Semantic-Segmentation-HRNet-OCR/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcmi/AustNet-Inharmonious-Region-Localization/HEAD/HRNet-Semantic-Segmentation-HRNet-OCR/.gitignore -------------------------------------------------------------------------------- /HRNet-Semantic-Segmentation-HRNet-OCR/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcmi/AustNet-Inharmonious-Region-Localization/HEAD/HRNet-Semantic-Segmentation-HRNet-OCR/LICENSE -------------------------------------------------------------------------------- /HRNet-Semantic-Segmentation-HRNet-OCR/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcmi/AustNet-Inharmonious-Region-Localization/HEAD/HRNet-Semantic-Segmentation-HRNet-OCR/README.md -------------------------------------------------------------------------------- /HRNet-Semantic-Segmentation-HRNet-OCR/experiments/ade20k/seg_hrnet_ocr_w48_520x520_ohem_sgd_lr2e-2_wd1e-4_bs_16_epoch120.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcmi/AustNet-Inharmonious-Region-Localization/HEAD/HRNet-Semantic-Segmentation-HRNet-OCR/experiments/ade20k/seg_hrnet_ocr_w48_520x520_ohem_sgd_lr2e-2_wd1e-4_bs_16_epoch120.yaml -------------------------------------------------------------------------------- /HRNet-Semantic-Segmentation-HRNet-OCR/experiments/ade20k/seg_hrnet_ocr_w48_520x520_ohem_sgd_lr2e-2_wd1e-4_bs_16_epoch120_paddle.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcmi/AustNet-Inharmonious-Region-Localization/HEAD/HRNet-Semantic-Segmentation-HRNet-OCR/experiments/ade20k/seg_hrnet_ocr_w48_520x520_ohem_sgd_lr2e-2_wd1e-4_bs_16_epoch120_paddle.yaml -------------------------------------------------------------------------------- /HRNet-Semantic-Segmentation-HRNet-OCR/experiments/ade20k/seg_hrnet_w48_520x520_ohem_sgd_lr2e-2_wd1e-4_bs_16_epoch120.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcmi/AustNet-Inharmonious-Region-Localization/HEAD/HRNet-Semantic-Segmentation-HRNet-OCR/experiments/ade20k/seg_hrnet_w48_520x520_ohem_sgd_lr2e-2_wd1e-4_bs_16_epoch120.yaml -------------------------------------------------------------------------------- /HRNet-Semantic-Segmentation-HRNet-OCR/experiments/ade20k/seg_hrnet_w48_520x520_ohem_sgd_lr2e-2_wd1e-4_bs_16_epoch120_paddle.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcmi/AustNet-Inharmonious-Region-Localization/HEAD/HRNet-Semantic-Segmentation-HRNet-OCR/experiments/ade20k/seg_hrnet_w48_520x520_ohem_sgd_lr2e-2_wd1e-4_bs_16_epoch120_paddle.yaml -------------------------------------------------------------------------------- /HRNet-Semantic-Segmentation-HRNet-OCR/experiments/ade20k/seg_hrnet_w48_520x520_sgd_lr2e-2_wd1e-4_bs_16_epoch120.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcmi/AustNet-Inharmonious-Region-Localization/HEAD/HRNet-Semantic-Segmentation-HRNet-OCR/experiments/ade20k/seg_hrnet_w48_520x520_sgd_lr2e-2_wd1e-4_bs_16_epoch120.yaml -------------------------------------------------------------------------------- /HRNet-Semantic-Segmentation-HRNet-OCR/experiments/cityscapes/seg_hrnet_ocr_w48_train_512x1024_sgd_lr1e-2_wd5e-4_bs_12_epoch484.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcmi/AustNet-Inharmonious-Region-Localization/HEAD/HRNet-Semantic-Segmentation-HRNet-OCR/experiments/cityscapes/seg_hrnet_ocr_w48_train_512x1024_sgd_lr1e-2_wd5e-4_bs_12_epoch484.yaml -------------------------------------------------------------------------------- /HRNet-Semantic-Segmentation-HRNet-OCR/experiments/cityscapes/seg_hrnet_ocr_w48_train_512x1024_sgd_lr1e-2_wd5e-4_bs_16_epoch484_paddle.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcmi/AustNet-Inharmonious-Region-Localization/HEAD/HRNet-Semantic-Segmentation-HRNet-OCR/experiments/cityscapes/seg_hrnet_ocr_w48_train_512x1024_sgd_lr1e-2_wd5e-4_bs_16_epoch484_paddle.yaml -------------------------------------------------------------------------------- /HRNet-Semantic-Segmentation-HRNet-OCR/experiments/cityscapes/seg_hrnet_ocr_w48_trainval_512x1024_sgd_lr1e-2_wd5e-4_bs_12_epoch484.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcmi/AustNet-Inharmonious-Region-Localization/HEAD/HRNet-Semantic-Segmentation-HRNet-OCR/experiments/cityscapes/seg_hrnet_ocr_w48_trainval_512x1024_sgd_lr1e-2_wd5e-4_bs_12_epoch484.yaml -------------------------------------------------------------------------------- /HRNet-Semantic-Segmentation-HRNet-OCR/experiments/cityscapes/seg_hrnet_w48_train_512x1024_sgd_lr1e-2_wd5e-4_bs_12_epoch484.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcmi/AustNet-Inharmonious-Region-Localization/HEAD/HRNet-Semantic-Segmentation-HRNet-OCR/experiments/cityscapes/seg_hrnet_w48_train_512x1024_sgd_lr1e-2_wd5e-4_bs_12_epoch484.yaml -------------------------------------------------------------------------------- /HRNet-Semantic-Segmentation-HRNet-OCR/experiments/cityscapes/seg_hrnet_w48_train_512x1024_sgd_lr1e-2_wd5e-4_bs_12_epoch484_paddle.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcmi/AustNet-Inharmonious-Region-Localization/HEAD/HRNet-Semantic-Segmentation-HRNet-OCR/experiments/cityscapes/seg_hrnet_w48_train_512x1024_sgd_lr1e-2_wd5e-4_bs_12_epoch484_paddle.yaml -------------------------------------------------------------------------------- /HRNet-Semantic-Segmentation-HRNet-OCR/experiments/cityscapes/seg_hrnet_w48_train_512x1024_sgd_lr1e-2_wd5e-4_bs_16_epoch484_paddle.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcmi/AustNet-Inharmonious-Region-Localization/HEAD/HRNet-Semantic-Segmentation-HRNet-OCR/experiments/cityscapes/seg_hrnet_w48_train_512x1024_sgd_lr1e-2_wd5e-4_bs_16_epoch484_paddle.yaml -------------------------------------------------------------------------------- /HRNet-Semantic-Segmentation-HRNet-OCR/experiments/cityscapes/seg_hrnet_w48_train_ohem_512x1024_sgd_lr1e-2_wd5e-4_bs_12_epoch484.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcmi/AustNet-Inharmonious-Region-Localization/HEAD/HRNet-Semantic-Segmentation-HRNet-OCR/experiments/cityscapes/seg_hrnet_w48_train_ohem_512x1024_sgd_lr1e-2_wd5e-4_bs_12_epoch484.yaml -------------------------------------------------------------------------------- /HRNet-Semantic-Segmentation-HRNet-OCR/experiments/cityscapes/seg_hrnet_w48_trainval_512x1024_sgd_lr1e-2_wd5e-4_bs_12_epoch484x2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcmi/AustNet-Inharmonious-Region-Localization/HEAD/HRNet-Semantic-Segmentation-HRNet-OCR/experiments/cityscapes/seg_hrnet_w48_trainval_512x1024_sgd_lr1e-2_wd5e-4_bs_12_epoch484x2.yaml -------------------------------------------------------------------------------- /HRNet-Semantic-Segmentation-HRNet-OCR/experiments/cityscapes/seg_hrnet_w48_trainval_ohem_512x1024_sgd_lr1e-2_wd5e-4_bs_12_epoch484x2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcmi/AustNet-Inharmonious-Region-Localization/HEAD/HRNet-Semantic-Segmentation-HRNet-OCR/experiments/cityscapes/seg_hrnet_w48_trainval_ohem_512x1024_sgd_lr1e-2_wd5e-4_bs_12_epoch484x2.yaml -------------------------------------------------------------------------------- /HRNet-Semantic-Segmentation-HRNet-OCR/experiments/cocostuff/seg_hrnet_ocr_w48_520x520_ohem_sgd_lr1e-3_wd1e-4_bs_16_epoch110.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcmi/AustNet-Inharmonious-Region-Localization/HEAD/HRNet-Semantic-Segmentation-HRNet-OCR/experiments/cocostuff/seg_hrnet_ocr_w48_520x520_ohem_sgd_lr1e-3_wd1e-4_bs_16_epoch110.yaml -------------------------------------------------------------------------------- /HRNet-Semantic-Segmentation-HRNet-OCR/experiments/cocostuff/seg_hrnet_ocr_w48_520x520_ohem_sgd_lr1e-3_wd1e-4_bs_16_epoch110_paddle.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcmi/AustNet-Inharmonious-Region-Localization/HEAD/HRNet-Semantic-Segmentation-HRNet-OCR/experiments/cocostuff/seg_hrnet_ocr_w48_520x520_ohem_sgd_lr1e-3_wd1e-4_bs_16_epoch110_paddle.yaml -------------------------------------------------------------------------------- /HRNet-Semantic-Segmentation-HRNet-OCR/experiments/cocostuff/seg_hrnet_w48_520x520_ohem_sgd_lr1e-3_wd1e-4_bs_16_epoch110.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcmi/AustNet-Inharmonious-Region-Localization/HEAD/HRNet-Semantic-Segmentation-HRNet-OCR/experiments/cocostuff/seg_hrnet_w48_520x520_ohem_sgd_lr1e-3_wd1e-4_bs_16_epoch110.yaml -------------------------------------------------------------------------------- /HRNet-Semantic-Segmentation-HRNet-OCR/experiments/cocostuff/seg_hrnet_w48_520x520_ohem_sgd_lr1e-3_wd1e-4_bs_16_epoch110_paddle.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcmi/AustNet-Inharmonious-Region-Localization/HEAD/HRNet-Semantic-Segmentation-HRNet-OCR/experiments/cocostuff/seg_hrnet_w48_520x520_ohem_sgd_lr1e-3_wd1e-4_bs_16_epoch110_paddle.yaml -------------------------------------------------------------------------------- /HRNet-Semantic-Segmentation-HRNet-OCR/experiments/cocostuff/seg_hrnet_w48_520x520_sgd_lr1e-3_wd1e-4_bs_16_epoch110.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcmi/AustNet-Inharmonious-Region-Localization/HEAD/HRNet-Semantic-Segmentation-HRNet-OCR/experiments/cocostuff/seg_hrnet_w48_520x520_sgd_lr1e-3_wd1e-4_bs_16_epoch110.yaml -------------------------------------------------------------------------------- /HRNet-Semantic-Segmentation-HRNet-OCR/experiments/lip/seg_hrnet_ocr_w48_473x473_sgd_lr7e-3_wd5e-4_bs_40_epoch150.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcmi/AustNet-Inharmonious-Region-Localization/HEAD/HRNet-Semantic-Segmentation-HRNet-OCR/experiments/lip/seg_hrnet_ocr_w48_473x473_sgd_lr7e-3_wd5e-4_bs_40_epoch150.yaml -------------------------------------------------------------------------------- /HRNet-Semantic-Segmentation-HRNet-OCR/experiments/lip/seg_hrnet_w48_473x473_sgd_lr7e-3_wd5e-4_bs_40_epoch150.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcmi/AustNet-Inharmonious-Region-Localization/HEAD/HRNet-Semantic-Segmentation-HRNet-OCR/experiments/lip/seg_hrnet_w48_473x473_sgd_lr7e-3_wd5e-4_bs_40_epoch150.yaml -------------------------------------------------------------------------------- /HRNet-Semantic-Segmentation-HRNet-OCR/experiments/lip/seg_hrnet_w48_473x473_sgd_lr7e-3_wd5e-4_bs_40_epoch150_paddle.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcmi/AustNet-Inharmonious-Region-Localization/HEAD/HRNet-Semantic-Segmentation-HRNet-OCR/experiments/lip/seg_hrnet_w48_473x473_sgd_lr7e-3_wd5e-4_bs_40_epoch150_paddle.yaml -------------------------------------------------------------------------------- /HRNet-Semantic-Segmentation-HRNet-OCR/experiments/pascal_ctx/seg_hrnet_ocr_w48_cls59_520x520_sgd_lr1e-3_wd1e-4_bs_16_epoch200.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcmi/AustNet-Inharmonious-Region-Localization/HEAD/HRNet-Semantic-Segmentation-HRNet-OCR/experiments/pascal_ctx/seg_hrnet_ocr_w48_cls59_520x520_sgd_lr1e-3_wd1e-4_bs_16_epoch200.yaml -------------------------------------------------------------------------------- /HRNet-Semantic-Segmentation-HRNet-OCR/experiments/pascal_ctx/seg_hrnet_ocr_w48_cls60_520x520_sgd_lr1e-3_wd1e-4_bs_16_epoch200.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcmi/AustNet-Inharmonious-Region-Localization/HEAD/HRNet-Semantic-Segmentation-HRNet-OCR/experiments/pascal_ctx/seg_hrnet_ocr_w48_cls60_520x520_sgd_lr1e-3_wd1e-4_bs_16_epoch200.yaml -------------------------------------------------------------------------------- /HRNet-Semantic-Segmentation-HRNet-OCR/experiments/pascal_ctx/seg_hrnet_w48_cls59_520x520_sgd_lr1e-3_wd1e-4_bs_16_epoch200.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcmi/AustNet-Inharmonious-Region-Localization/HEAD/HRNet-Semantic-Segmentation-HRNet-OCR/experiments/pascal_ctx/seg_hrnet_w48_cls59_520x520_sgd_lr1e-3_wd1e-4_bs_16_epoch200.yaml -------------------------------------------------------------------------------- /HRNet-Semantic-Segmentation-HRNet-OCR/experiments/pascal_ctx/seg_hrnet_w48_cls59_520x520_sgd_lr1e-3_wd1e-4_bs_16_epoch200_paddle.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcmi/AustNet-Inharmonious-Region-Localization/HEAD/HRNet-Semantic-Segmentation-HRNet-OCR/experiments/pascal_ctx/seg_hrnet_w48_cls59_520x520_sgd_lr1e-3_wd1e-4_bs_16_epoch200_paddle.yaml -------------------------------------------------------------------------------- /HRNet-Semantic-Segmentation-HRNet-OCR/figures/OCR.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcmi/AustNet-Inharmonious-Region-Localization/HEAD/HRNet-Semantic-Segmentation-HRNet-OCR/figures/OCR.PNG -------------------------------------------------------------------------------- /HRNet-Semantic-Segmentation-HRNet-OCR/figures/SegmentationTransformerOCR.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcmi/AustNet-Inharmonious-Region-Localization/HEAD/HRNet-Semantic-Segmentation-HRNet-OCR/figures/SegmentationTransformerOCR.png -------------------------------------------------------------------------------- /HRNet-Semantic-Segmentation-HRNet-OCR/figures/SegmentationTransformerOCR1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcmi/AustNet-Inharmonious-Region-Localization/HEAD/HRNet-Semantic-Segmentation-HRNet-OCR/figures/SegmentationTransformerOCR1.png -------------------------------------------------------------------------------- /HRNet-Semantic-Segmentation-HRNet-OCR/figures/SegmentationTransformerOCR2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcmi/AustNet-Inharmonious-Region-Localization/HEAD/HRNet-Semantic-Segmentation-HRNet-OCR/figures/SegmentationTransformerOCR2.png -------------------------------------------------------------------------------- /HRNet-Semantic-Segmentation-HRNet-OCR/figures/seg-hrnet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcmi/AustNet-Inharmonious-Region-Localization/HEAD/HRNet-Semantic-Segmentation-HRNet-OCR/figures/seg-hrnet.png -------------------------------------------------------------------------------- /HRNet-Semantic-Segmentation-HRNet-OCR/hubconf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcmi/AustNet-Inharmonious-Region-Localization/HEAD/HRNet-Semantic-Segmentation-HRNet-OCR/hubconf.py -------------------------------------------------------------------------------- /HRNet-Semantic-Segmentation-HRNet-OCR/le50_test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcmi/AustNet-Inharmonious-Region-Localization/HEAD/HRNet-Semantic-Segmentation-HRNet-OCR/le50_test.txt -------------------------------------------------------------------------------- /HRNet-Semantic-Segmentation-HRNet-OCR/lib/config/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcmi/AustNet-Inharmonious-Region-Localization/HEAD/HRNet-Semantic-Segmentation-HRNet-OCR/lib/config/__init__.py -------------------------------------------------------------------------------- /HRNet-Semantic-Segmentation-HRNet-OCR/lib/config/default.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcmi/AustNet-Inharmonious-Region-Localization/HEAD/HRNet-Semantic-Segmentation-HRNet-OCR/lib/config/default.py -------------------------------------------------------------------------------- /HRNet-Semantic-Segmentation-HRNet-OCR/lib/config/hrnet_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcmi/AustNet-Inharmonious-Region-Localization/HEAD/HRNet-Semantic-Segmentation-HRNet-OCR/lib/config/hrnet_config.py -------------------------------------------------------------------------------- /HRNet-Semantic-Segmentation-HRNet-OCR/lib/config/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcmi/AustNet-Inharmonious-Region-Localization/HEAD/HRNet-Semantic-Segmentation-HRNet-OCR/lib/config/models.py -------------------------------------------------------------------------------- /HRNet-Semantic-Segmentation-HRNet-OCR/lib/core/criterion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcmi/AustNet-Inharmonious-Region-Localization/HEAD/HRNet-Semantic-Segmentation-HRNet-OCR/lib/core/criterion.py -------------------------------------------------------------------------------- /HRNet-Semantic-Segmentation-HRNet-OCR/lib/core/function.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcmi/AustNet-Inharmonious-Region-Localization/HEAD/HRNet-Semantic-Segmentation-HRNet-OCR/lib/core/function.py -------------------------------------------------------------------------------- /HRNet-Semantic-Segmentation-HRNet-OCR/lib/datasets/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcmi/AustNet-Inharmonious-Region-Localization/HEAD/HRNet-Semantic-Segmentation-HRNet-OCR/lib/datasets/__init__.py -------------------------------------------------------------------------------- /HRNet-Semantic-Segmentation-HRNet-OCR/lib/datasets/ade20k.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcmi/AustNet-Inharmonious-Region-Localization/HEAD/HRNet-Semantic-Segmentation-HRNet-OCR/lib/datasets/ade20k.py -------------------------------------------------------------------------------- /HRNet-Semantic-Segmentation-HRNet-OCR/lib/datasets/base_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcmi/AustNet-Inharmonious-Region-Localization/HEAD/HRNet-Semantic-Segmentation-HRNet-OCR/lib/datasets/base_dataset.py -------------------------------------------------------------------------------- /HRNet-Semantic-Segmentation-HRNet-OCR/lib/datasets/cityscapes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcmi/AustNet-Inharmonious-Region-Localization/HEAD/HRNet-Semantic-Segmentation-HRNet-OCR/lib/datasets/cityscapes.py -------------------------------------------------------------------------------- /HRNet-Semantic-Segmentation-HRNet-OCR/lib/datasets/cocostuff.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcmi/AustNet-Inharmonious-Region-Localization/HEAD/HRNet-Semantic-Segmentation-HRNet-OCR/lib/datasets/cocostuff.py -------------------------------------------------------------------------------- /HRNet-Semantic-Segmentation-HRNet-OCR/lib/datasets/lip.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcmi/AustNet-Inharmonious-Region-Localization/HEAD/HRNet-Semantic-Segmentation-HRNet-OCR/lib/datasets/lip.py -------------------------------------------------------------------------------- /HRNet-Semantic-Segmentation-HRNet-OCR/lib/datasets/pascal_ctx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcmi/AustNet-Inharmonious-Region-Localization/HEAD/HRNet-Semantic-Segmentation-HRNet-OCR/lib/datasets/pascal_ctx.py -------------------------------------------------------------------------------- /HRNet-Semantic-Segmentation-HRNet-OCR/lib/models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcmi/AustNet-Inharmonious-Region-Localization/HEAD/HRNet-Semantic-Segmentation-HRNet-OCR/lib/models/__init__.py -------------------------------------------------------------------------------- /HRNet-Semantic-Segmentation-HRNet-OCR/lib/models/bn_helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcmi/AustNet-Inharmonious-Region-Localization/HEAD/HRNet-Semantic-Segmentation-HRNet-OCR/lib/models/bn_helper.py -------------------------------------------------------------------------------- /HRNet-Semantic-Segmentation-HRNet-OCR/lib/models/hrnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcmi/AustNet-Inharmonious-Region-Localization/HEAD/HRNet-Semantic-Segmentation-HRNet-OCR/lib/models/hrnet.py -------------------------------------------------------------------------------- /HRNet-Semantic-Segmentation-HRNet-OCR/lib/models/seg_hrnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcmi/AustNet-Inharmonious-Region-Localization/HEAD/HRNet-Semantic-Segmentation-HRNet-OCR/lib/models/seg_hrnet.py -------------------------------------------------------------------------------- /HRNet-Semantic-Segmentation-HRNet-OCR/lib/models/seg_hrnet_ocr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcmi/AustNet-Inharmonious-Region-Localization/HEAD/HRNet-Semantic-Segmentation-HRNet-OCR/lib/models/seg_hrnet_ocr.py -------------------------------------------------------------------------------- /HRNet-Semantic-Segmentation-HRNet-OCR/lib/models/sync_bn/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcmi/AustNet-Inharmonious-Region-Localization/HEAD/HRNet-Semantic-Segmentation-HRNet-OCR/lib/models/sync_bn/LICENSE -------------------------------------------------------------------------------- /HRNet-Semantic-Segmentation-HRNet-OCR/lib/models/sync_bn/__init__.py: -------------------------------------------------------------------------------- 1 | from .inplace_abn import bn -------------------------------------------------------------------------------- /HRNet-Semantic-Segmentation-HRNet-OCR/lib/models/sync_bn/inplace_abn/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcmi/AustNet-Inharmonious-Region-Localization/HEAD/HRNet-Semantic-Segmentation-HRNet-OCR/lib/models/sync_bn/inplace_abn/__init__.py -------------------------------------------------------------------------------- /HRNet-Semantic-Segmentation-HRNet-OCR/lib/models/sync_bn/inplace_abn/bn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcmi/AustNet-Inharmonious-Region-Localization/HEAD/HRNet-Semantic-Segmentation-HRNet-OCR/lib/models/sync_bn/inplace_abn/bn.py -------------------------------------------------------------------------------- /HRNet-Semantic-Segmentation-HRNet-OCR/lib/models/sync_bn/inplace_abn/functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcmi/AustNet-Inharmonious-Region-Localization/HEAD/HRNet-Semantic-Segmentation-HRNet-OCR/lib/models/sync_bn/inplace_abn/functions.py -------------------------------------------------------------------------------- /HRNet-Semantic-Segmentation-HRNet-OCR/lib/models/sync_bn/inplace_abn/src/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcmi/AustNet-Inharmonious-Region-Localization/HEAD/HRNet-Semantic-Segmentation-HRNet-OCR/lib/models/sync_bn/inplace_abn/src/common.h -------------------------------------------------------------------------------- /HRNet-Semantic-Segmentation-HRNet-OCR/lib/models/sync_bn/inplace_abn/src/inplace_abn.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcmi/AustNet-Inharmonious-Region-Localization/HEAD/HRNet-Semantic-Segmentation-HRNet-OCR/lib/models/sync_bn/inplace_abn/src/inplace_abn.cpp -------------------------------------------------------------------------------- /HRNet-Semantic-Segmentation-HRNet-OCR/lib/models/sync_bn/inplace_abn/src/inplace_abn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcmi/AustNet-Inharmonious-Region-Localization/HEAD/HRNet-Semantic-Segmentation-HRNet-OCR/lib/models/sync_bn/inplace_abn/src/inplace_abn.h -------------------------------------------------------------------------------- /HRNet-Semantic-Segmentation-HRNet-OCR/lib/models/sync_bn/inplace_abn/src/inplace_abn_cpu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcmi/AustNet-Inharmonious-Region-Localization/HEAD/HRNet-Semantic-Segmentation-HRNet-OCR/lib/models/sync_bn/inplace_abn/src/inplace_abn_cpu.cpp -------------------------------------------------------------------------------- /HRNet-Semantic-Segmentation-HRNet-OCR/lib/models/sync_bn/inplace_abn/src/inplace_abn_cuda.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcmi/AustNet-Inharmonious-Region-Localization/HEAD/HRNet-Semantic-Segmentation-HRNet-OCR/lib/models/sync_bn/inplace_abn/src/inplace_abn_cuda.cu -------------------------------------------------------------------------------- /HRNet-Semantic-Segmentation-HRNet-OCR/lib/utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /HRNet-Semantic-Segmentation-HRNet-OCR/lib/utils/distributed.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcmi/AustNet-Inharmonious-Region-Localization/HEAD/HRNet-Semantic-Segmentation-HRNet-OCR/lib/utils/distributed.py -------------------------------------------------------------------------------- /HRNet-Semantic-Segmentation-HRNet-OCR/lib/utils/modelsummary.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcmi/AustNet-Inharmonious-Region-Localization/HEAD/HRNet-Semantic-Segmentation-HRNet-OCR/lib/utils/modelsummary.py -------------------------------------------------------------------------------- /HRNet-Semantic-Segmentation-HRNet-OCR/lib/utils/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcmi/AustNet-Inharmonious-Region-Localization/HEAD/HRNet-Semantic-Segmentation-HRNet-OCR/lib/utils/utils.py -------------------------------------------------------------------------------- /HRNet-Semantic-Segmentation-HRNet-OCR/local_log.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcmi/AustNet-Inharmonious-Region-Localization/HEAD/HRNet-Semantic-Segmentation-HRNet-OCR/local_log.txt -------------------------------------------------------------------------------- /HRNet-Semantic-Segmentation-HRNet-OCR/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcmi/AustNet-Inharmonious-Region-Localization/HEAD/HRNet-Semantic-Segmentation-HRNet-OCR/requirements.txt -------------------------------------------------------------------------------- /HRNet-Semantic-Segmentation-HRNet-OCR/run_dist.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcmi/AustNet-Inharmonious-Region-Localization/HEAD/HRNet-Semantic-Segmentation-HRNet-OCR/run_dist.sh -------------------------------------------------------------------------------- /HRNet-Semantic-Segmentation-HRNet-OCR/run_local.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcmi/AustNet-Inharmonious-Region-Localization/HEAD/HRNet-Semantic-Segmentation-HRNet-OCR/run_local.sh -------------------------------------------------------------------------------- /HRNet-Semantic-Segmentation-HRNet-OCR/tools/_init_paths.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcmi/AustNet-Inharmonious-Region-Localization/HEAD/HRNet-Semantic-Segmentation-HRNet-OCR/tools/_init_paths.py -------------------------------------------------------------------------------- /HRNet-Semantic-Segmentation-HRNet-OCR/tools/inference.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcmi/AustNet-Inharmonious-Region-Localization/HEAD/HRNet-Semantic-Segmentation-HRNet-OCR/tools/inference.py -------------------------------------------------------------------------------- /HRNet-Semantic-Segmentation-HRNet-OCR/tools/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcmi/AustNet-Inharmonious-Region-Localization/HEAD/HRNet-Semantic-Segmentation-HRNet-OCR/tools/test.py -------------------------------------------------------------------------------- /HRNet-Semantic-Segmentation-HRNet-OCR/tools/train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcmi/AustNet-Inharmonious-Region-Localization/HEAD/HRNet-Semantic-Segmentation-HRNet-OCR/tools/train.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcmi/AustNet-Inharmonious-Region-Localization/HEAD/README.md -------------------------------------------------------------------------------- /assets/pipeline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcmi/AustNet-Inharmonious-Region-Localization/HEAD/assets/pipeline.png -------------------------------------------------------------------------------- /data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcmi/AustNet-Inharmonious-Region-Localization/HEAD/data.py -------------------------------------------------------------------------------- /environment.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcmi/AustNet-Inharmonious-Region-Localization/HEAD/environment.yml -------------------------------------------------------------------------------- /evaluation/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /evaluation/metrics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcmi/AustNet-Inharmonious-Region-Localization/HEAD/evaluation/metrics.py -------------------------------------------------------------------------------- /model/austnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcmi/AustNet-Inharmonious-Region-Localization/HEAD/model/austnet.py -------------------------------------------------------------------------------- /model/austnet_s.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcmi/AustNet-Inharmonious-Region-Localization/HEAD/model/austnet_s.py -------------------------------------------------------------------------------- /model/encoder_decoder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcmi/AustNet-Inharmonious-Region-Localization/HEAD/model/encoder_decoder.py -------------------------------------------------------------------------------- /options.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcmi/AustNet-Inharmonious-Region-Localization/HEAD/options.py -------------------------------------------------------------------------------- /pytorch_iou/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcmi/AustNet-Inharmonious-Region-Localization/HEAD/pytorch_iou/__init__.py -------------------------------------------------------------------------------- /pytorch_ssim/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcmi/AustNet-Inharmonious-Region-Localization/HEAD/pytorch_ssim/__init__.py -------------------------------------------------------------------------------- /test_austnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcmi/AustNet-Inharmonious-Region-Localization/HEAD/test_austnet.py -------------------------------------------------------------------------------- /test_austnet_s.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcmi/AustNet-Inharmonious-Region-Localization/HEAD/test_austnet_s.py -------------------------------------------------------------------------------- /train_austnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcmi/AustNet-Inharmonious-Region-Localization/HEAD/train_austnet.py -------------------------------------------------------------------------------- /train_austnet_s.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcmi/AustNet-Inharmonious-Region-Localization/HEAD/train_austnet_s.py --------------------------------------------------------------------------------