├── GeleNet_saliencymap_PVT.zip ├── GeleNet_saliencymap_SwinT.zip ├── README.md ├── data.py ├── data_aug.m ├── images ├── GeleNet.png └── table.png ├── model ├── GeleNet_models.py ├── __init__.py └── pvtv2.py ├── pytorch_iou ├── __init__.py ├── __init__.pyc └── __pycache__ │ └── __init__.cpython-36.pyc ├── test_GeleNet.py ├── train_GeleNet.py └── utils.py /GeleNet_saliencymap_PVT.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MathLee/GeleNet/HEAD/GeleNet_saliencymap_PVT.zip -------------------------------------------------------------------------------- /GeleNet_saliencymap_SwinT.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MathLee/GeleNet/HEAD/GeleNet_saliencymap_SwinT.zip -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MathLee/GeleNet/HEAD/README.md -------------------------------------------------------------------------------- /data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MathLee/GeleNet/HEAD/data.py -------------------------------------------------------------------------------- /data_aug.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MathLee/GeleNet/HEAD/data_aug.m -------------------------------------------------------------------------------- /images/GeleNet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MathLee/GeleNet/HEAD/images/GeleNet.png -------------------------------------------------------------------------------- /images/table.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MathLee/GeleNet/HEAD/images/table.png -------------------------------------------------------------------------------- /model/GeleNet_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MathLee/GeleNet/HEAD/model/GeleNet_models.py -------------------------------------------------------------------------------- /model/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /model/pvtv2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MathLee/GeleNet/HEAD/model/pvtv2.py -------------------------------------------------------------------------------- /pytorch_iou/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MathLee/GeleNet/HEAD/pytorch_iou/__init__.py -------------------------------------------------------------------------------- /pytorch_iou/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MathLee/GeleNet/HEAD/pytorch_iou/__init__.pyc -------------------------------------------------------------------------------- /pytorch_iou/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MathLee/GeleNet/HEAD/pytorch_iou/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /test_GeleNet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MathLee/GeleNet/HEAD/test_GeleNet.py -------------------------------------------------------------------------------- /train_GeleNet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MathLee/GeleNet/HEAD/train_GeleNet.py -------------------------------------------------------------------------------- /utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MathLee/GeleNet/HEAD/utils.py --------------------------------------------------------------------------------