├── Eval_MACNet.py ├── ICVL_test_gauss.txt ├── ICVL_train.txt ├── README.md ├── dataloaders.py ├── dataloaders_hsi.py ├── dataloaders_hsi_test.py ├── model ├── MACNet.py ├── __pycache__ │ ├── CBAM.cpython-37.pyc │ ├── MACNet.cpython-37.pyc │ ├── SubCNN.cpython-37.pyc │ ├── SubCNN_NL.cpython-37.pyc │ ├── SubCNN_NLM.cpython-37.pyc │ ├── SubCNN_NL_TIP.cpython-37.pyc │ ├── SubCNN_QRNN.cpython-37.pyc │ ├── SubSCNN_BNRED.cpython-37.pyc │ ├── SubSCNN_BNREDCBAM.cpython-37.pyc │ ├── SubSCNN_BNREDRES.cpython-37.pyc │ ├── combinations.cpython-37.pyc │ ├── non_local.cpython-37.pyc │ └── pyramidpooling.cpython-37.pyc ├── combinations.py ├── non_local.py └── sync_batchnorm │ ├── __init__.py │ ├── __pycache__ │ ├── __init__.cpython-37.pyc │ ├── batchnorm.cpython-37.pyc │ ├── comm.cpython-37.pyc │ └── replicate.cpython-37.pyc │ ├── batchnorm.py │ ├── comm.py │ ├── replicate.py │ └── unittest.py ├── model_loader.py ├── ops ├── __pycache__ │ ├── gauss.cpython-37.pyc │ ├── im2col.cpython-37.pyc │ ├── im2col.py │ ├── utils.cpython-37.pyc │ └── utils_blocks.cpython-37.pyc ├── gauss.py ├── im2col.py ├── utils.py ├── utils_blocks.py └── utils_plot.py ├── test.py ├── train.py └── trained_model ├── ckpt_15 ├── ckpt_55 └── ckpt_95 /Eval_MACNet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearshng/mac-net/HEAD/Eval_MACNet.py -------------------------------------------------------------------------------- /ICVL_test_gauss.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearshng/mac-net/HEAD/ICVL_test_gauss.txt -------------------------------------------------------------------------------- /ICVL_train.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearshng/mac-net/HEAD/ICVL_train.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearshng/mac-net/HEAD/README.md -------------------------------------------------------------------------------- /dataloaders.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearshng/mac-net/HEAD/dataloaders.py -------------------------------------------------------------------------------- /dataloaders_hsi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearshng/mac-net/HEAD/dataloaders_hsi.py -------------------------------------------------------------------------------- /dataloaders_hsi_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearshng/mac-net/HEAD/dataloaders_hsi_test.py -------------------------------------------------------------------------------- /model/MACNet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearshng/mac-net/HEAD/model/MACNet.py -------------------------------------------------------------------------------- /model/__pycache__/CBAM.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearshng/mac-net/HEAD/model/__pycache__/CBAM.cpython-37.pyc -------------------------------------------------------------------------------- /model/__pycache__/MACNet.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearshng/mac-net/HEAD/model/__pycache__/MACNet.cpython-37.pyc -------------------------------------------------------------------------------- /model/__pycache__/SubCNN.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearshng/mac-net/HEAD/model/__pycache__/SubCNN.cpython-37.pyc -------------------------------------------------------------------------------- /model/__pycache__/SubCNN_NL.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearshng/mac-net/HEAD/model/__pycache__/SubCNN_NL.cpython-37.pyc -------------------------------------------------------------------------------- /model/__pycache__/SubCNN_NLM.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearshng/mac-net/HEAD/model/__pycache__/SubCNN_NLM.cpython-37.pyc -------------------------------------------------------------------------------- /model/__pycache__/SubCNN_NL_TIP.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearshng/mac-net/HEAD/model/__pycache__/SubCNN_NL_TIP.cpython-37.pyc -------------------------------------------------------------------------------- /model/__pycache__/SubCNN_QRNN.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearshng/mac-net/HEAD/model/__pycache__/SubCNN_QRNN.cpython-37.pyc -------------------------------------------------------------------------------- /model/__pycache__/SubSCNN_BNRED.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearshng/mac-net/HEAD/model/__pycache__/SubSCNN_BNRED.cpython-37.pyc -------------------------------------------------------------------------------- /model/__pycache__/SubSCNN_BNREDCBAM.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearshng/mac-net/HEAD/model/__pycache__/SubSCNN_BNREDCBAM.cpython-37.pyc -------------------------------------------------------------------------------- /model/__pycache__/SubSCNN_BNREDRES.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearshng/mac-net/HEAD/model/__pycache__/SubSCNN_BNREDRES.cpython-37.pyc -------------------------------------------------------------------------------- /model/__pycache__/combinations.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearshng/mac-net/HEAD/model/__pycache__/combinations.cpython-37.pyc -------------------------------------------------------------------------------- /model/__pycache__/non_local.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearshng/mac-net/HEAD/model/__pycache__/non_local.cpython-37.pyc -------------------------------------------------------------------------------- /model/__pycache__/pyramidpooling.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearshng/mac-net/HEAD/model/__pycache__/pyramidpooling.cpython-37.pyc -------------------------------------------------------------------------------- /model/combinations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearshng/mac-net/HEAD/model/combinations.py -------------------------------------------------------------------------------- /model/non_local.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearshng/mac-net/HEAD/model/non_local.py -------------------------------------------------------------------------------- /model/sync_batchnorm/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearshng/mac-net/HEAD/model/sync_batchnorm/__init__.py -------------------------------------------------------------------------------- /model/sync_batchnorm/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearshng/mac-net/HEAD/model/sync_batchnorm/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /model/sync_batchnorm/__pycache__/batchnorm.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearshng/mac-net/HEAD/model/sync_batchnorm/__pycache__/batchnorm.cpython-37.pyc -------------------------------------------------------------------------------- /model/sync_batchnorm/__pycache__/comm.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearshng/mac-net/HEAD/model/sync_batchnorm/__pycache__/comm.cpython-37.pyc -------------------------------------------------------------------------------- /model/sync_batchnorm/__pycache__/replicate.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearshng/mac-net/HEAD/model/sync_batchnorm/__pycache__/replicate.cpython-37.pyc -------------------------------------------------------------------------------- /model/sync_batchnorm/batchnorm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearshng/mac-net/HEAD/model/sync_batchnorm/batchnorm.py -------------------------------------------------------------------------------- /model/sync_batchnorm/comm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearshng/mac-net/HEAD/model/sync_batchnorm/comm.py -------------------------------------------------------------------------------- /model/sync_batchnorm/replicate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearshng/mac-net/HEAD/model/sync_batchnorm/replicate.py -------------------------------------------------------------------------------- /model/sync_batchnorm/unittest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearshng/mac-net/HEAD/model/sync_batchnorm/unittest.py -------------------------------------------------------------------------------- /model_loader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearshng/mac-net/HEAD/model_loader.py -------------------------------------------------------------------------------- /ops/__pycache__/gauss.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearshng/mac-net/HEAD/ops/__pycache__/gauss.cpython-37.pyc -------------------------------------------------------------------------------- /ops/__pycache__/im2col.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearshng/mac-net/HEAD/ops/__pycache__/im2col.cpython-37.pyc -------------------------------------------------------------------------------- /ops/__pycache__/im2col.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearshng/mac-net/HEAD/ops/__pycache__/im2col.py -------------------------------------------------------------------------------- /ops/__pycache__/utils.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearshng/mac-net/HEAD/ops/__pycache__/utils.cpython-37.pyc -------------------------------------------------------------------------------- /ops/__pycache__/utils_blocks.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearshng/mac-net/HEAD/ops/__pycache__/utils_blocks.cpython-37.pyc -------------------------------------------------------------------------------- /ops/gauss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearshng/mac-net/HEAD/ops/gauss.py -------------------------------------------------------------------------------- /ops/im2col.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearshng/mac-net/HEAD/ops/im2col.py -------------------------------------------------------------------------------- /ops/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearshng/mac-net/HEAD/ops/utils.py -------------------------------------------------------------------------------- /ops/utils_blocks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearshng/mac-net/HEAD/ops/utils_blocks.py -------------------------------------------------------------------------------- /ops/utils_plot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearshng/mac-net/HEAD/ops/utils_plot.py -------------------------------------------------------------------------------- /test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearshng/mac-net/HEAD/test.py -------------------------------------------------------------------------------- /train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearshng/mac-net/HEAD/train.py -------------------------------------------------------------------------------- /trained_model/ckpt_15: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearshng/mac-net/HEAD/trained_model/ckpt_15 -------------------------------------------------------------------------------- /trained_model/ckpt_55: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearshng/mac-net/HEAD/trained_model/ckpt_55 -------------------------------------------------------------------------------- /trained_model/ckpt_95: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bearshng/mac-net/HEAD/trained_model/ckpt_95 --------------------------------------------------------------------------------