├── README.md ├── data.py ├── data_aug.m ├── image ├── ACCoNet.png └── table.png ├── model ├── ACCoNet_Res_models.py ├── ACCoNet_VGG_models.py ├── ResNet50.py ├── __init__.py └── vgg.py ├── pytorch_iou ├── __init__.py ├── __init__.pyc └── __pycache__ │ └── __init__.cpython-36.pyc ├── test_ACCoNet.py ├── train_ACCoNet.py └── utils.py /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MathLee/ACCoNet/HEAD/README.md -------------------------------------------------------------------------------- /data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MathLee/ACCoNet/HEAD/data.py -------------------------------------------------------------------------------- /data_aug.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MathLee/ACCoNet/HEAD/data_aug.m -------------------------------------------------------------------------------- /image/ACCoNet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MathLee/ACCoNet/HEAD/image/ACCoNet.png -------------------------------------------------------------------------------- /image/table.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MathLee/ACCoNet/HEAD/image/table.png -------------------------------------------------------------------------------- /model/ACCoNet_Res_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MathLee/ACCoNet/HEAD/model/ACCoNet_Res_models.py -------------------------------------------------------------------------------- /model/ACCoNet_VGG_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MathLee/ACCoNet/HEAD/model/ACCoNet_VGG_models.py -------------------------------------------------------------------------------- /model/ResNet50.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MathLee/ACCoNet/HEAD/model/ResNet50.py -------------------------------------------------------------------------------- /model/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /model/vgg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MathLee/ACCoNet/HEAD/model/vgg.py -------------------------------------------------------------------------------- /pytorch_iou/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MathLee/ACCoNet/HEAD/pytorch_iou/__init__.py -------------------------------------------------------------------------------- /pytorch_iou/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MathLee/ACCoNet/HEAD/pytorch_iou/__init__.pyc -------------------------------------------------------------------------------- /pytorch_iou/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MathLee/ACCoNet/HEAD/pytorch_iou/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /test_ACCoNet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MathLee/ACCoNet/HEAD/test_ACCoNet.py -------------------------------------------------------------------------------- /train_ACCoNet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MathLee/ACCoNet/HEAD/train_ACCoNet.py -------------------------------------------------------------------------------- /utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MathLee/ACCoNet/HEAD/utils.py --------------------------------------------------------------------------------