├── Detection ├── YOLOv5 │ ├── CONTRIBUTING.md │ ├── LICENSE │ ├── __pycache__ │ │ ├── export.cpython-38.pyc │ │ └── val.cpython-38.pyc │ ├── benchmarks.py │ ├── classify │ │ ├── predict.py │ │ ├── train.py │ │ └── val.py │ ├── data │ │ ├── Argoverse.yaml │ │ ├── GlobalWheat2020.yaml │ │ ├── ImageNet.yaml │ │ ├── Objects365.yaml │ │ ├── SKU-110K.yaml │ │ ├── VOC.yaml │ │ ├── VisDrone.yaml │ │ ├── coco.yaml │ │ ├── coco128-seg.yaml │ │ ├── coco128.yaml │ │ ├── hyps │ │ │ ├── hyp.Objects365.yaml │ │ │ ├── hyp.VOC.yaml │ │ │ ├── hyp.scratch-high.yaml │ │ │ ├── hyp.scratch-low.yaml │ │ │ └── hyp.scratch-med.yaml │ │ ├── images │ │ │ ├── bus.jpg │ │ │ └── zidane.jpg │ │ ├── scripts │ │ │ ├── download_weights.sh │ │ │ ├── get_coco.sh │ │ │ ├── get_coco128.sh │ │ │ └── get_imagenet.sh │ │ └── xView.yaml │ ├── detect.py │ ├── export.py │ ├── hubconf.py │ ├── models │ │ ├── common.py │ │ ├── experimental.py │ │ ├── hub │ │ │ ├── anchors.yaml │ │ │ ├── yolov3-spp.yaml │ │ │ ├── yolov3-tiny.yaml │ │ │ ├── yolov3.yaml │ │ │ ├── yolov5-bifpn.yaml │ │ │ ├── yolov5-fpn.yaml │ │ │ ├── yolov5-p2.yaml │ │ │ ├── yolov5-p34.yaml │ │ │ ├── yolov5-p6.yaml │ │ │ ├── yolov5-p7.yaml │ │ │ ├── yolov5-panet.yaml │ │ │ ├── yolov5l6.yaml │ │ │ ├── yolov5m6.yaml │ │ │ ├── yolov5n6.yaml │ │ │ ├── yolov5s-LeakyReLU.yaml │ │ │ ├── yolov5s-ghost.yaml │ │ │ ├── yolov5s-transformer.yaml │ │ │ ├── yolov5s6.yaml │ │ │ └── yolov5x6.yaml │ │ ├── segment │ │ │ ├── yolov5l-seg.yaml │ │ │ ├── yolov5m-seg.yaml │ │ │ ├── yolov5n-seg.yaml │ │ │ ├── yolov5s-seg.yaml │ │ │ └── yolov5x-seg.yaml │ │ ├── tf.py │ │ └── yolov5n.yaml (NovelConv) │ ├── requirements.txt │ ├── setup.cfg │ ├── train.py │ ├── tutorial.ipynb │ ├── utils │ │ ├── activations.py │ │ ├── augmentations.py │ │ ├── autoanchor.py │ │ ├── autobatch.py │ │ ├── aws │ │ │ ├── __init__.py │ │ │ ├── mime.sh │ │ │ ├── resume.py │ │ │ └── userdata.sh │ │ ├── callbacks.py │ │ ├── dataloaders.py │ │ ├── docker │ │ │ ├── Dockerfile │ │ │ ├── Dockerfile-arm64 │ │ │ └── Dockerfile-cpu │ │ ├── downloads.py │ │ ├── flask_rest_api │ │ │ ├── README.md │ │ │ ├── example_request.py │ │ │ └── restapi.py │ │ ├── general.py │ │ ├── google_app_engine │ │ │ ├── Dockerfile │ │ │ ├── additional_requirements.txt │ │ │ └── app.yaml │ │ └── loggers │ │ │ └── clearml │ │ │ ├── README.md │ │ │ ├── __init__.py │ │ │ ├── clearml_utils.py │ │ │ └── hpo.py │ ├── val.py │ └── wandb │ │ └── run-20230307_215255-ynqj7ir8 │ │ ├── files │ │ ├── conda-environment.yaml │ │ ├── config.yaml │ │ ├── media │ │ │ └── images │ │ │ │ ├── Labels_0_a09086ac7fbb3b332fc5.jpg │ │ │ │ ├── Labels_0_ddb4b29c59b20d5c56a4.jpg │ │ │ │ ├── Mosaics_0_30d3bf9e21f9f1d09aa9.jpg │ │ │ │ ├── Mosaics_0_89e164201c08ac4003fe.jpg │ │ │ │ └── Mosaics_0_c2b39e1ae8e38500e36b.jpg │ │ ├── output.log │ │ ├── requirements.txt │ │ ├── wandb-metadata.json │ │ └── wandb-summary.json │ │ ├── logs │ │ ├── debug-internal.log │ │ └── debug.log │ │ └── run-ynqj7ir8.wandb ├── YOLOv7-tiny.yaml └── YOLOv8n.yaml ├── README.md ├── classification ├── CAMresnet.py ├── CAMtrain.py ├── CAResnet.py ├── CAtrain.py ├── CBAMresnet.py ├── CBAMtrain.py ├── RFAresnet.py ├── RFAtrain.py ├── RFCAresnet.py ├── RFCAtrain.py ├── RFCBAMresnet.py ├── RFCBAMtrain.py ├── config │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-38.pyc │ │ ├── __init__.cpython-39.pyc │ │ ├── config.cpython-38.pyc │ │ └── config.cpython-39.pyc │ └── config.py ├── log │ ├── CA │ │ ├── resnet18 │ │ │ ├── __main__.error.log │ │ │ └── __main__.info.log │ │ └── resnet34 │ │ │ ├── __main__.error.log │ │ │ └── __main__.info.log │ ├── CAM │ │ ├── resnet18 │ │ │ ├── __main__.error.log │ │ │ └── __main__.info.log │ │ └── resnet34 │ │ │ ├── __main__.error.log │ │ │ └── __main__.info.log │ ├── CBAM │ │ ├── resnet18 │ │ │ ├── __main__.error.log │ │ │ └── __main__.info.log │ │ └── resnet34 │ │ │ ├── __main__.error.log │ │ │ └── __main__.info.log │ ├── RFA │ │ ├── resnet18 │ │ │ ├── __main__.error.log │ │ │ └── __main__.info.log │ │ └── resnet34 │ │ │ ├── __main__.error.log │ │ │ └── __main__.info.log │ ├── RFCA │ │ └── resnet18 │ │ │ ├── __main__.error.log │ │ │ └── __main__.info.log │ ├── RFCBAM │ │ └── resnet18 │ │ │ ├── __main__.error.log │ │ │ └── __main__.info.log │ └── original │ │ ├── resnet18 │ │ ├── __main__.error.log │ │ └── __main__.info.log │ │ └── resnet34 │ │ ├── __main__.error.log │ │ └── __main__.info.log ├── resnet.py ├── train.py └── utils │ ├── __init__.py │ ├── __pycache__ │ ├── __init__.cpython-38.pyc │ ├── __init__.cpython-39.pyc │ ├── utils.cpython-38.pyc │ └── utils.cpython-39.pyc │ └── utils.py └── model.py /Detection/YOLOv5/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Liuchen1997/RFAConv/HEAD/Detection/YOLOv5/CONTRIBUTING.md -------------------------------------------------------------------------------- /Detection/YOLOv5/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Liuchen1997/RFAConv/HEAD/Detection/YOLOv5/LICENSE -------------------------------------------------------------------------------- /Detection/YOLOv5/__pycache__/export.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Liuchen1997/RFAConv/HEAD/Detection/YOLOv5/__pycache__/export.cpython-38.pyc -------------------------------------------------------------------------------- /Detection/YOLOv5/__pycache__/val.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Liuchen1997/RFAConv/HEAD/Detection/YOLOv5/__pycache__/val.cpython-38.pyc -------------------------------------------------------------------------------- /Detection/YOLOv5/benchmarks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Liuchen1997/RFAConv/HEAD/Detection/YOLOv5/benchmarks.py -------------------------------------------------------------------------------- /Detection/YOLOv5/classify/predict.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Liuchen1997/RFAConv/HEAD/Detection/YOLOv5/classify/predict.py -------------------------------------------------------------------------------- /Detection/YOLOv5/classify/train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Liuchen1997/RFAConv/HEAD/Detection/YOLOv5/classify/train.py -------------------------------------------------------------------------------- /Detection/YOLOv5/classify/val.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Liuchen1997/RFAConv/HEAD/Detection/YOLOv5/classify/val.py -------------------------------------------------------------------------------- /Detection/YOLOv5/data/Argoverse.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Liuchen1997/RFAConv/HEAD/Detection/YOLOv5/data/Argoverse.yaml -------------------------------------------------------------------------------- /Detection/YOLOv5/data/GlobalWheat2020.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Liuchen1997/RFAConv/HEAD/Detection/YOLOv5/data/GlobalWheat2020.yaml -------------------------------------------------------------------------------- /Detection/YOLOv5/data/ImageNet.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Liuchen1997/RFAConv/HEAD/Detection/YOLOv5/data/ImageNet.yaml -------------------------------------------------------------------------------- /Detection/YOLOv5/data/Objects365.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Liuchen1997/RFAConv/HEAD/Detection/YOLOv5/data/Objects365.yaml -------------------------------------------------------------------------------- /Detection/YOLOv5/data/SKU-110K.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Liuchen1997/RFAConv/HEAD/Detection/YOLOv5/data/SKU-110K.yaml -------------------------------------------------------------------------------- /Detection/YOLOv5/data/VOC.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Liuchen1997/RFAConv/HEAD/Detection/YOLOv5/data/VOC.yaml -------------------------------------------------------------------------------- /Detection/YOLOv5/data/VisDrone.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Liuchen1997/RFAConv/HEAD/Detection/YOLOv5/data/VisDrone.yaml -------------------------------------------------------------------------------- /Detection/YOLOv5/data/coco.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Liuchen1997/RFAConv/HEAD/Detection/YOLOv5/data/coco.yaml -------------------------------------------------------------------------------- /Detection/YOLOv5/data/coco128-seg.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Liuchen1997/RFAConv/HEAD/Detection/YOLOv5/data/coco128-seg.yaml -------------------------------------------------------------------------------- /Detection/YOLOv5/data/coco128.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Liuchen1997/RFAConv/HEAD/Detection/YOLOv5/data/coco128.yaml -------------------------------------------------------------------------------- /Detection/YOLOv5/data/hyps/hyp.Objects365.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Liuchen1997/RFAConv/HEAD/Detection/YOLOv5/data/hyps/hyp.Objects365.yaml -------------------------------------------------------------------------------- /Detection/YOLOv5/data/hyps/hyp.VOC.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Liuchen1997/RFAConv/HEAD/Detection/YOLOv5/data/hyps/hyp.VOC.yaml -------------------------------------------------------------------------------- /Detection/YOLOv5/data/hyps/hyp.scratch-high.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Liuchen1997/RFAConv/HEAD/Detection/YOLOv5/data/hyps/hyp.scratch-high.yaml -------------------------------------------------------------------------------- /Detection/YOLOv5/data/hyps/hyp.scratch-low.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Liuchen1997/RFAConv/HEAD/Detection/YOLOv5/data/hyps/hyp.scratch-low.yaml -------------------------------------------------------------------------------- /Detection/YOLOv5/data/hyps/hyp.scratch-med.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Liuchen1997/RFAConv/HEAD/Detection/YOLOv5/data/hyps/hyp.scratch-med.yaml -------------------------------------------------------------------------------- /Detection/YOLOv5/data/images/bus.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Liuchen1997/RFAConv/HEAD/Detection/YOLOv5/data/images/bus.jpg -------------------------------------------------------------------------------- /Detection/YOLOv5/data/images/zidane.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Liuchen1997/RFAConv/HEAD/Detection/YOLOv5/data/images/zidane.jpg -------------------------------------------------------------------------------- /Detection/YOLOv5/data/scripts/download_weights.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Liuchen1997/RFAConv/HEAD/Detection/YOLOv5/data/scripts/download_weights.sh -------------------------------------------------------------------------------- /Detection/YOLOv5/data/scripts/get_coco.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Liuchen1997/RFAConv/HEAD/Detection/YOLOv5/data/scripts/get_coco.sh -------------------------------------------------------------------------------- /Detection/YOLOv5/data/scripts/get_coco128.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Liuchen1997/RFAConv/HEAD/Detection/YOLOv5/data/scripts/get_coco128.sh -------------------------------------------------------------------------------- /Detection/YOLOv5/data/scripts/get_imagenet.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Liuchen1997/RFAConv/HEAD/Detection/YOLOv5/data/scripts/get_imagenet.sh -------------------------------------------------------------------------------- /Detection/YOLOv5/data/xView.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Liuchen1997/RFAConv/HEAD/Detection/YOLOv5/data/xView.yaml -------------------------------------------------------------------------------- /Detection/YOLOv5/detect.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Liuchen1997/RFAConv/HEAD/Detection/YOLOv5/detect.py -------------------------------------------------------------------------------- /Detection/YOLOv5/export.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Liuchen1997/RFAConv/HEAD/Detection/YOLOv5/export.py -------------------------------------------------------------------------------- /Detection/YOLOv5/hubconf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Liuchen1997/RFAConv/HEAD/Detection/YOLOv5/hubconf.py -------------------------------------------------------------------------------- /Detection/YOLOv5/models/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Liuchen1997/RFAConv/HEAD/Detection/YOLOv5/models/common.py -------------------------------------------------------------------------------- /Detection/YOLOv5/models/experimental.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Liuchen1997/RFAConv/HEAD/Detection/YOLOv5/models/experimental.py -------------------------------------------------------------------------------- /Detection/YOLOv5/models/hub/anchors.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Liuchen1997/RFAConv/HEAD/Detection/YOLOv5/models/hub/anchors.yaml -------------------------------------------------------------------------------- /Detection/YOLOv5/models/hub/yolov3-spp.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Liuchen1997/RFAConv/HEAD/Detection/YOLOv5/models/hub/yolov3-spp.yaml -------------------------------------------------------------------------------- /Detection/YOLOv5/models/hub/yolov3-tiny.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Liuchen1997/RFAConv/HEAD/Detection/YOLOv5/models/hub/yolov3-tiny.yaml -------------------------------------------------------------------------------- /Detection/YOLOv5/models/hub/yolov3.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Liuchen1997/RFAConv/HEAD/Detection/YOLOv5/models/hub/yolov3.yaml -------------------------------------------------------------------------------- /Detection/YOLOv5/models/hub/yolov5-bifpn.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Liuchen1997/RFAConv/HEAD/Detection/YOLOv5/models/hub/yolov5-bifpn.yaml -------------------------------------------------------------------------------- /Detection/YOLOv5/models/hub/yolov5-fpn.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Liuchen1997/RFAConv/HEAD/Detection/YOLOv5/models/hub/yolov5-fpn.yaml -------------------------------------------------------------------------------- /Detection/YOLOv5/models/hub/yolov5-p2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Liuchen1997/RFAConv/HEAD/Detection/YOLOv5/models/hub/yolov5-p2.yaml -------------------------------------------------------------------------------- /Detection/YOLOv5/models/hub/yolov5-p34.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Liuchen1997/RFAConv/HEAD/Detection/YOLOv5/models/hub/yolov5-p34.yaml -------------------------------------------------------------------------------- /Detection/YOLOv5/models/hub/yolov5-p6.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Liuchen1997/RFAConv/HEAD/Detection/YOLOv5/models/hub/yolov5-p6.yaml -------------------------------------------------------------------------------- /Detection/YOLOv5/models/hub/yolov5-p7.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Liuchen1997/RFAConv/HEAD/Detection/YOLOv5/models/hub/yolov5-p7.yaml -------------------------------------------------------------------------------- /Detection/YOLOv5/models/hub/yolov5-panet.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Liuchen1997/RFAConv/HEAD/Detection/YOLOv5/models/hub/yolov5-panet.yaml -------------------------------------------------------------------------------- /Detection/YOLOv5/models/hub/yolov5l6.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Liuchen1997/RFAConv/HEAD/Detection/YOLOv5/models/hub/yolov5l6.yaml -------------------------------------------------------------------------------- /Detection/YOLOv5/models/hub/yolov5m6.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Liuchen1997/RFAConv/HEAD/Detection/YOLOv5/models/hub/yolov5m6.yaml -------------------------------------------------------------------------------- /Detection/YOLOv5/models/hub/yolov5n6.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Liuchen1997/RFAConv/HEAD/Detection/YOLOv5/models/hub/yolov5n6.yaml -------------------------------------------------------------------------------- /Detection/YOLOv5/models/hub/yolov5s-LeakyReLU.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Liuchen1997/RFAConv/HEAD/Detection/YOLOv5/models/hub/yolov5s-LeakyReLU.yaml -------------------------------------------------------------------------------- /Detection/YOLOv5/models/hub/yolov5s-ghost.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Liuchen1997/RFAConv/HEAD/Detection/YOLOv5/models/hub/yolov5s-ghost.yaml -------------------------------------------------------------------------------- /Detection/YOLOv5/models/hub/yolov5s-transformer.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Liuchen1997/RFAConv/HEAD/Detection/YOLOv5/models/hub/yolov5s-transformer.yaml -------------------------------------------------------------------------------- /Detection/YOLOv5/models/hub/yolov5s6.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Liuchen1997/RFAConv/HEAD/Detection/YOLOv5/models/hub/yolov5s6.yaml -------------------------------------------------------------------------------- /Detection/YOLOv5/models/hub/yolov5x6.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Liuchen1997/RFAConv/HEAD/Detection/YOLOv5/models/hub/yolov5x6.yaml -------------------------------------------------------------------------------- /Detection/YOLOv5/models/segment/yolov5l-seg.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Liuchen1997/RFAConv/HEAD/Detection/YOLOv5/models/segment/yolov5l-seg.yaml -------------------------------------------------------------------------------- /Detection/YOLOv5/models/segment/yolov5m-seg.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Liuchen1997/RFAConv/HEAD/Detection/YOLOv5/models/segment/yolov5m-seg.yaml -------------------------------------------------------------------------------- /Detection/YOLOv5/models/segment/yolov5n-seg.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Liuchen1997/RFAConv/HEAD/Detection/YOLOv5/models/segment/yolov5n-seg.yaml -------------------------------------------------------------------------------- /Detection/YOLOv5/models/segment/yolov5s-seg.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Liuchen1997/RFAConv/HEAD/Detection/YOLOv5/models/segment/yolov5s-seg.yaml -------------------------------------------------------------------------------- /Detection/YOLOv5/models/segment/yolov5x-seg.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Liuchen1997/RFAConv/HEAD/Detection/YOLOv5/models/segment/yolov5x-seg.yaml -------------------------------------------------------------------------------- /Detection/YOLOv5/models/tf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Liuchen1997/RFAConv/HEAD/Detection/YOLOv5/models/tf.py -------------------------------------------------------------------------------- /Detection/YOLOv5/models/yolov5n.yaml (NovelConv): -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Liuchen1997/RFAConv/HEAD/Detection/YOLOv5/models/yolov5n.yaml (NovelConv) -------------------------------------------------------------------------------- /Detection/YOLOv5/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Liuchen1997/RFAConv/HEAD/Detection/YOLOv5/requirements.txt -------------------------------------------------------------------------------- /Detection/YOLOv5/setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Liuchen1997/RFAConv/HEAD/Detection/YOLOv5/setup.cfg -------------------------------------------------------------------------------- /Detection/YOLOv5/train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Liuchen1997/RFAConv/HEAD/Detection/YOLOv5/train.py -------------------------------------------------------------------------------- /Detection/YOLOv5/tutorial.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Liuchen1997/RFAConv/HEAD/Detection/YOLOv5/tutorial.ipynb -------------------------------------------------------------------------------- /Detection/YOLOv5/utils/activations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Liuchen1997/RFAConv/HEAD/Detection/YOLOv5/utils/activations.py -------------------------------------------------------------------------------- /Detection/YOLOv5/utils/augmentations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Liuchen1997/RFAConv/HEAD/Detection/YOLOv5/utils/augmentations.py -------------------------------------------------------------------------------- /Detection/YOLOv5/utils/autoanchor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Liuchen1997/RFAConv/HEAD/Detection/YOLOv5/utils/autoanchor.py -------------------------------------------------------------------------------- /Detection/YOLOv5/utils/autobatch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Liuchen1997/RFAConv/HEAD/Detection/YOLOv5/utils/autobatch.py -------------------------------------------------------------------------------- /Detection/YOLOv5/utils/aws/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Detection/YOLOv5/utils/aws/mime.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Liuchen1997/RFAConv/HEAD/Detection/YOLOv5/utils/aws/mime.sh -------------------------------------------------------------------------------- /Detection/YOLOv5/utils/aws/resume.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Liuchen1997/RFAConv/HEAD/Detection/YOLOv5/utils/aws/resume.py -------------------------------------------------------------------------------- /Detection/YOLOv5/utils/aws/userdata.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Liuchen1997/RFAConv/HEAD/Detection/YOLOv5/utils/aws/userdata.sh -------------------------------------------------------------------------------- /Detection/YOLOv5/utils/callbacks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Liuchen1997/RFAConv/HEAD/Detection/YOLOv5/utils/callbacks.py -------------------------------------------------------------------------------- /Detection/YOLOv5/utils/dataloaders.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Liuchen1997/RFAConv/HEAD/Detection/YOLOv5/utils/dataloaders.py -------------------------------------------------------------------------------- /Detection/YOLOv5/utils/docker/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Liuchen1997/RFAConv/HEAD/Detection/YOLOv5/utils/docker/Dockerfile -------------------------------------------------------------------------------- /Detection/YOLOv5/utils/docker/Dockerfile-arm64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Liuchen1997/RFAConv/HEAD/Detection/YOLOv5/utils/docker/Dockerfile-arm64 -------------------------------------------------------------------------------- /Detection/YOLOv5/utils/docker/Dockerfile-cpu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Liuchen1997/RFAConv/HEAD/Detection/YOLOv5/utils/docker/Dockerfile-cpu -------------------------------------------------------------------------------- /Detection/YOLOv5/utils/downloads.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Liuchen1997/RFAConv/HEAD/Detection/YOLOv5/utils/downloads.py -------------------------------------------------------------------------------- /Detection/YOLOv5/utils/flask_rest_api/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Liuchen1997/RFAConv/HEAD/Detection/YOLOv5/utils/flask_rest_api/README.md -------------------------------------------------------------------------------- /Detection/YOLOv5/utils/flask_rest_api/example_request.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Liuchen1997/RFAConv/HEAD/Detection/YOLOv5/utils/flask_rest_api/example_request.py -------------------------------------------------------------------------------- /Detection/YOLOv5/utils/flask_rest_api/restapi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Liuchen1997/RFAConv/HEAD/Detection/YOLOv5/utils/flask_rest_api/restapi.py -------------------------------------------------------------------------------- /Detection/YOLOv5/utils/general.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Liuchen1997/RFAConv/HEAD/Detection/YOLOv5/utils/general.py -------------------------------------------------------------------------------- /Detection/YOLOv5/utils/google_app_engine/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Liuchen1997/RFAConv/HEAD/Detection/YOLOv5/utils/google_app_engine/Dockerfile -------------------------------------------------------------------------------- /Detection/YOLOv5/utils/google_app_engine/additional_requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Liuchen1997/RFAConv/HEAD/Detection/YOLOv5/utils/google_app_engine/additional_requirements.txt -------------------------------------------------------------------------------- /Detection/YOLOv5/utils/google_app_engine/app.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Liuchen1997/RFAConv/HEAD/Detection/YOLOv5/utils/google_app_engine/app.yaml -------------------------------------------------------------------------------- /Detection/YOLOv5/utils/loggers/clearml/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Liuchen1997/RFAConv/HEAD/Detection/YOLOv5/utils/loggers/clearml/README.md -------------------------------------------------------------------------------- /Detection/YOLOv5/utils/loggers/clearml/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Detection/YOLOv5/utils/loggers/clearml/clearml_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Liuchen1997/RFAConv/HEAD/Detection/YOLOv5/utils/loggers/clearml/clearml_utils.py -------------------------------------------------------------------------------- /Detection/YOLOv5/utils/loggers/clearml/hpo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Liuchen1997/RFAConv/HEAD/Detection/YOLOv5/utils/loggers/clearml/hpo.py -------------------------------------------------------------------------------- /Detection/YOLOv5/val.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Liuchen1997/RFAConv/HEAD/Detection/YOLOv5/val.py -------------------------------------------------------------------------------- /Detection/YOLOv5/wandb/run-20230307_215255-ynqj7ir8/files/conda-environment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Liuchen1997/RFAConv/HEAD/Detection/YOLOv5/wandb/run-20230307_215255-ynqj7ir8/files/conda-environment.yaml -------------------------------------------------------------------------------- /Detection/YOLOv5/wandb/run-20230307_215255-ynqj7ir8/files/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Liuchen1997/RFAConv/HEAD/Detection/YOLOv5/wandb/run-20230307_215255-ynqj7ir8/files/config.yaml -------------------------------------------------------------------------------- /Detection/YOLOv5/wandb/run-20230307_215255-ynqj7ir8/files/media/images/Labels_0_a09086ac7fbb3b332fc5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Liuchen1997/RFAConv/HEAD/Detection/YOLOv5/wandb/run-20230307_215255-ynqj7ir8/files/media/images/Labels_0_a09086ac7fbb3b332fc5.jpg -------------------------------------------------------------------------------- /Detection/YOLOv5/wandb/run-20230307_215255-ynqj7ir8/files/media/images/Labels_0_ddb4b29c59b20d5c56a4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Liuchen1997/RFAConv/HEAD/Detection/YOLOv5/wandb/run-20230307_215255-ynqj7ir8/files/media/images/Labels_0_ddb4b29c59b20d5c56a4.jpg -------------------------------------------------------------------------------- /Detection/YOLOv5/wandb/run-20230307_215255-ynqj7ir8/files/media/images/Mosaics_0_30d3bf9e21f9f1d09aa9.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Liuchen1997/RFAConv/HEAD/Detection/YOLOv5/wandb/run-20230307_215255-ynqj7ir8/files/media/images/Mosaics_0_30d3bf9e21f9f1d09aa9.jpg -------------------------------------------------------------------------------- /Detection/YOLOv5/wandb/run-20230307_215255-ynqj7ir8/files/media/images/Mosaics_0_89e164201c08ac4003fe.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Liuchen1997/RFAConv/HEAD/Detection/YOLOv5/wandb/run-20230307_215255-ynqj7ir8/files/media/images/Mosaics_0_89e164201c08ac4003fe.jpg -------------------------------------------------------------------------------- /Detection/YOLOv5/wandb/run-20230307_215255-ynqj7ir8/files/media/images/Mosaics_0_c2b39e1ae8e38500e36b.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Liuchen1997/RFAConv/HEAD/Detection/YOLOv5/wandb/run-20230307_215255-ynqj7ir8/files/media/images/Mosaics_0_c2b39e1ae8e38500e36b.jpg -------------------------------------------------------------------------------- /Detection/YOLOv5/wandb/run-20230307_215255-ynqj7ir8/files/output.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Liuchen1997/RFAConv/HEAD/Detection/YOLOv5/wandb/run-20230307_215255-ynqj7ir8/files/output.log -------------------------------------------------------------------------------- /Detection/YOLOv5/wandb/run-20230307_215255-ynqj7ir8/files/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Liuchen1997/RFAConv/HEAD/Detection/YOLOv5/wandb/run-20230307_215255-ynqj7ir8/files/requirements.txt -------------------------------------------------------------------------------- /Detection/YOLOv5/wandb/run-20230307_215255-ynqj7ir8/files/wandb-metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Liuchen1997/RFAConv/HEAD/Detection/YOLOv5/wandb/run-20230307_215255-ynqj7ir8/files/wandb-metadata.json -------------------------------------------------------------------------------- /Detection/YOLOv5/wandb/run-20230307_215255-ynqj7ir8/files/wandb-summary.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Liuchen1997/RFAConv/HEAD/Detection/YOLOv5/wandb/run-20230307_215255-ynqj7ir8/files/wandb-summary.json -------------------------------------------------------------------------------- /Detection/YOLOv5/wandb/run-20230307_215255-ynqj7ir8/logs/debug-internal.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Liuchen1997/RFAConv/HEAD/Detection/YOLOv5/wandb/run-20230307_215255-ynqj7ir8/logs/debug-internal.log -------------------------------------------------------------------------------- /Detection/YOLOv5/wandb/run-20230307_215255-ynqj7ir8/logs/debug.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Liuchen1997/RFAConv/HEAD/Detection/YOLOv5/wandb/run-20230307_215255-ynqj7ir8/logs/debug.log -------------------------------------------------------------------------------- /Detection/YOLOv5/wandb/run-20230307_215255-ynqj7ir8/run-ynqj7ir8.wandb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Liuchen1997/RFAConv/HEAD/Detection/YOLOv5/wandb/run-20230307_215255-ynqj7ir8/run-ynqj7ir8.wandb -------------------------------------------------------------------------------- /Detection/YOLOv7-tiny.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Liuchen1997/RFAConv/HEAD/Detection/YOLOv7-tiny.yaml -------------------------------------------------------------------------------- /Detection/YOLOv8n.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Liuchen1997/RFAConv/HEAD/Detection/YOLOv8n.yaml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Liuchen1997/RFAConv/HEAD/README.md -------------------------------------------------------------------------------- /classification/CAMresnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Liuchen1997/RFAConv/HEAD/classification/CAMresnet.py -------------------------------------------------------------------------------- /classification/CAMtrain.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Liuchen1997/RFAConv/HEAD/classification/CAMtrain.py -------------------------------------------------------------------------------- /classification/CAResnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Liuchen1997/RFAConv/HEAD/classification/CAResnet.py -------------------------------------------------------------------------------- /classification/CAtrain.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Liuchen1997/RFAConv/HEAD/classification/CAtrain.py -------------------------------------------------------------------------------- /classification/CBAMresnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Liuchen1997/RFAConv/HEAD/classification/CBAMresnet.py -------------------------------------------------------------------------------- /classification/CBAMtrain.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Liuchen1997/RFAConv/HEAD/classification/CBAMtrain.py -------------------------------------------------------------------------------- /classification/RFAresnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Liuchen1997/RFAConv/HEAD/classification/RFAresnet.py -------------------------------------------------------------------------------- /classification/RFAtrain.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Liuchen1997/RFAConv/HEAD/classification/RFAtrain.py -------------------------------------------------------------------------------- /classification/RFCAresnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Liuchen1997/RFAConv/HEAD/classification/RFCAresnet.py -------------------------------------------------------------------------------- /classification/RFCAtrain.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Liuchen1997/RFAConv/HEAD/classification/RFCAtrain.py -------------------------------------------------------------------------------- /classification/RFCBAMresnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Liuchen1997/RFAConv/HEAD/classification/RFCBAMresnet.py -------------------------------------------------------------------------------- /classification/RFCBAMtrain.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Liuchen1997/RFAConv/HEAD/classification/RFCBAMtrain.py -------------------------------------------------------------------------------- /classification/config/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /classification/config/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Liuchen1997/RFAConv/HEAD/classification/config/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /classification/config/__pycache__/__init__.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Liuchen1997/RFAConv/HEAD/classification/config/__pycache__/__init__.cpython-39.pyc -------------------------------------------------------------------------------- /classification/config/__pycache__/config.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Liuchen1997/RFAConv/HEAD/classification/config/__pycache__/config.cpython-38.pyc -------------------------------------------------------------------------------- /classification/config/__pycache__/config.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Liuchen1997/RFAConv/HEAD/classification/config/__pycache__/config.cpython-39.pyc -------------------------------------------------------------------------------- /classification/config/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Liuchen1997/RFAConv/HEAD/classification/config/config.py -------------------------------------------------------------------------------- /classification/log/CA/resnet18/__main__.error.log: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /classification/log/CA/resnet18/__main__.info.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Liuchen1997/RFAConv/HEAD/classification/log/CA/resnet18/__main__.info.log -------------------------------------------------------------------------------- /classification/log/CA/resnet34/__main__.error.log: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /classification/log/CA/resnet34/__main__.info.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Liuchen1997/RFAConv/HEAD/classification/log/CA/resnet34/__main__.info.log -------------------------------------------------------------------------------- /classification/log/CAM/resnet18/__main__.error.log: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /classification/log/CAM/resnet18/__main__.info.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Liuchen1997/RFAConv/HEAD/classification/log/CAM/resnet18/__main__.info.log -------------------------------------------------------------------------------- /classification/log/CAM/resnet34/__main__.error.log: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /classification/log/CAM/resnet34/__main__.info.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Liuchen1997/RFAConv/HEAD/classification/log/CAM/resnet34/__main__.info.log -------------------------------------------------------------------------------- /classification/log/CBAM/resnet18/__main__.error.log: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /classification/log/CBAM/resnet18/__main__.info.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Liuchen1997/RFAConv/HEAD/classification/log/CBAM/resnet18/__main__.info.log -------------------------------------------------------------------------------- /classification/log/CBAM/resnet34/__main__.error.log: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /classification/log/CBAM/resnet34/__main__.info.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Liuchen1997/RFAConv/HEAD/classification/log/CBAM/resnet34/__main__.info.log -------------------------------------------------------------------------------- /classification/log/RFA/resnet18/__main__.error.log: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /classification/log/RFA/resnet18/__main__.info.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Liuchen1997/RFAConv/HEAD/classification/log/RFA/resnet18/__main__.info.log -------------------------------------------------------------------------------- /classification/log/RFA/resnet34/__main__.error.log: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /classification/log/RFA/resnet34/__main__.info.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Liuchen1997/RFAConv/HEAD/classification/log/RFA/resnet34/__main__.info.log -------------------------------------------------------------------------------- /classification/log/RFCA/resnet18/__main__.error.log: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /classification/log/RFCA/resnet18/__main__.info.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Liuchen1997/RFAConv/HEAD/classification/log/RFCA/resnet18/__main__.info.log -------------------------------------------------------------------------------- /classification/log/RFCBAM/resnet18/__main__.error.log: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /classification/log/RFCBAM/resnet18/__main__.info.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Liuchen1997/RFAConv/HEAD/classification/log/RFCBAM/resnet18/__main__.info.log -------------------------------------------------------------------------------- /classification/log/original/resnet18/__main__.error.log: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /classification/log/original/resnet18/__main__.info.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Liuchen1997/RFAConv/HEAD/classification/log/original/resnet18/__main__.info.log -------------------------------------------------------------------------------- /classification/log/original/resnet34/__main__.error.log: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /classification/log/original/resnet34/__main__.info.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Liuchen1997/RFAConv/HEAD/classification/log/original/resnet34/__main__.info.log -------------------------------------------------------------------------------- /classification/resnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Liuchen1997/RFAConv/HEAD/classification/resnet.py -------------------------------------------------------------------------------- /classification/train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Liuchen1997/RFAConv/HEAD/classification/train.py -------------------------------------------------------------------------------- /classification/utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /classification/utils/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Liuchen1997/RFAConv/HEAD/classification/utils/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /classification/utils/__pycache__/__init__.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Liuchen1997/RFAConv/HEAD/classification/utils/__pycache__/__init__.cpython-39.pyc -------------------------------------------------------------------------------- /classification/utils/__pycache__/utils.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Liuchen1997/RFAConv/HEAD/classification/utils/__pycache__/utils.cpython-38.pyc -------------------------------------------------------------------------------- /classification/utils/__pycache__/utils.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Liuchen1997/RFAConv/HEAD/classification/utils/__pycache__/utils.cpython-39.pyc -------------------------------------------------------------------------------- /classification/utils/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Liuchen1997/RFAConv/HEAD/classification/utils/utils.py -------------------------------------------------------------------------------- /model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Liuchen1997/RFAConv/HEAD/model.py --------------------------------------------------------------------------------