├── .gitignore ├── README.md ├── cam ├── __init__.py └── group_act.py ├── figures └── sa.png ├── main.py ├── mmdetection └── sa_resnet.py ├── models ├── __init__.py ├── __pycache__ │ ├── __init__.cpython-38.pyc │ └── sa_resnet.cpython-38.pyc └── sa_resnet.py └── utils ├── __init__.py ├── __pycache__ ├── __init__.cpython-38.pyc └── misc.cpython-38.pyc └── misc.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wofmanaf/SA-Net/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wofmanaf/SA-Net/HEAD/README.md -------------------------------------------------------------------------------- /cam/__init__.py: -------------------------------------------------------------------------------- 1 | from .group_act import GroupAct -------------------------------------------------------------------------------- /cam/group_act.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wofmanaf/SA-Net/HEAD/cam/group_act.py -------------------------------------------------------------------------------- /figures/sa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wofmanaf/SA-Net/HEAD/figures/sa.png -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wofmanaf/SA-Net/HEAD/main.py -------------------------------------------------------------------------------- /mmdetection/sa_resnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wofmanaf/SA-Net/HEAD/mmdetection/sa_resnet.py -------------------------------------------------------------------------------- /models/__init__.py: -------------------------------------------------------------------------------- 1 | from .sa_resnet import * -------------------------------------------------------------------------------- /models/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wofmanaf/SA-Net/HEAD/models/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /models/__pycache__/sa_resnet.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wofmanaf/SA-Net/HEAD/models/__pycache__/sa_resnet.cpython-38.pyc -------------------------------------------------------------------------------- /models/sa_resnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wofmanaf/SA-Net/HEAD/models/sa_resnet.py -------------------------------------------------------------------------------- /utils/__init__.py: -------------------------------------------------------------------------------- 1 | from .misc import * 2 | -------------------------------------------------------------------------------- /utils/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wofmanaf/SA-Net/HEAD/utils/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /utils/__pycache__/misc.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wofmanaf/SA-Net/HEAD/utils/__pycache__/misc.cpython-38.pyc -------------------------------------------------------------------------------- /utils/misc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wofmanaf/SA-Net/HEAD/utils/misc.py --------------------------------------------------------------------------------