├── README.md ├── attention.jpg ├── block.jpg ├── environment.yaml ├── feature.jpg ├── model3.jpg ├── models ├── CSA.py ├── CSAFunction.py ├── CSA_model.py ├── InnerCos.py ├── InnerCos2.py ├── __init__.py ├── __pycache__ │ ├── CSA.cpython-37.pyc │ ├── CSAFunction.cpython-37.pyc │ ├── CSA_model.cpython-37.pyc │ ├── InnerCos.cpython-35.pyc │ ├── InnerCos.cpython-37.pyc │ ├── InnerCos2.cpython-35.pyc │ ├── InnerCos2.cpython-37.pyc │ ├── __init__.cpython-35.pyc │ ├── __init__.cpython-37.pyc │ ├── base_model.cpython-35.pyc │ ├── base_model.cpython-37.pyc │ ├── models.cpython-35.pyc │ ├── models.cpython-37.pyc │ ├── networks.cpython-35.pyc │ ├── networks.cpython-37.pyc │ ├── vgg16.cpython-35.pyc │ └── vgg16.cpython-37.pyc ├── base_model.py ├── models.py ├── networks.py ├── test_model.py └── vgg16.py ├── show.jpg ├── test.ipynb ├── train.ipynb └── util ├── MaxCoord.py ├── NonparametricShift.py ├── __init__.py ├── __pycache__ ├── MaxCoord.cpython-35.pyc ├── MaxCoord.cpython-37.pyc ├── NonparametricShift.cpython-35.pyc ├── NonparametricShift.cpython-37.pyc ├── __init__.cpython-35.pyc ├── __init__.cpython-37.pyc ├── data_load.cpython-37.pyc ├── util.cpython-35.pyc └── util.cpython-37.pyc ├── data_load.py └── util.py /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KumapowerLIU/CSA-inpainting/HEAD/README.md -------------------------------------------------------------------------------- /attention.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KumapowerLIU/CSA-inpainting/HEAD/attention.jpg -------------------------------------------------------------------------------- /block.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KumapowerLIU/CSA-inpainting/HEAD/block.jpg -------------------------------------------------------------------------------- /environment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KumapowerLIU/CSA-inpainting/HEAD/environment.yaml -------------------------------------------------------------------------------- /feature.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KumapowerLIU/CSA-inpainting/HEAD/feature.jpg -------------------------------------------------------------------------------- /model3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KumapowerLIU/CSA-inpainting/HEAD/model3.jpg -------------------------------------------------------------------------------- /models/CSA.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KumapowerLIU/CSA-inpainting/HEAD/models/CSA.py -------------------------------------------------------------------------------- /models/CSAFunction.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KumapowerLIU/CSA-inpainting/HEAD/models/CSAFunction.py -------------------------------------------------------------------------------- /models/CSA_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KumapowerLIU/CSA-inpainting/HEAD/models/CSA_model.py -------------------------------------------------------------------------------- /models/InnerCos.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KumapowerLIU/CSA-inpainting/HEAD/models/InnerCos.py -------------------------------------------------------------------------------- /models/InnerCos2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KumapowerLIU/CSA-inpainting/HEAD/models/InnerCos2.py -------------------------------------------------------------------------------- /models/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /models/__pycache__/CSA.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KumapowerLIU/CSA-inpainting/HEAD/models/__pycache__/CSA.cpython-37.pyc -------------------------------------------------------------------------------- /models/__pycache__/CSAFunction.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KumapowerLIU/CSA-inpainting/HEAD/models/__pycache__/CSAFunction.cpython-37.pyc -------------------------------------------------------------------------------- /models/__pycache__/CSA_model.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KumapowerLIU/CSA-inpainting/HEAD/models/__pycache__/CSA_model.cpython-37.pyc -------------------------------------------------------------------------------- /models/__pycache__/InnerCos.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KumapowerLIU/CSA-inpainting/HEAD/models/__pycache__/InnerCos.cpython-35.pyc -------------------------------------------------------------------------------- /models/__pycache__/InnerCos.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KumapowerLIU/CSA-inpainting/HEAD/models/__pycache__/InnerCos.cpython-37.pyc -------------------------------------------------------------------------------- /models/__pycache__/InnerCos2.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KumapowerLIU/CSA-inpainting/HEAD/models/__pycache__/InnerCos2.cpython-35.pyc -------------------------------------------------------------------------------- /models/__pycache__/InnerCos2.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KumapowerLIU/CSA-inpainting/HEAD/models/__pycache__/InnerCos2.cpython-37.pyc -------------------------------------------------------------------------------- /models/__pycache__/__init__.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KumapowerLIU/CSA-inpainting/HEAD/models/__pycache__/__init__.cpython-35.pyc -------------------------------------------------------------------------------- /models/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KumapowerLIU/CSA-inpainting/HEAD/models/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /models/__pycache__/base_model.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KumapowerLIU/CSA-inpainting/HEAD/models/__pycache__/base_model.cpython-35.pyc -------------------------------------------------------------------------------- /models/__pycache__/base_model.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KumapowerLIU/CSA-inpainting/HEAD/models/__pycache__/base_model.cpython-37.pyc -------------------------------------------------------------------------------- /models/__pycache__/models.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KumapowerLIU/CSA-inpainting/HEAD/models/__pycache__/models.cpython-35.pyc -------------------------------------------------------------------------------- /models/__pycache__/models.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KumapowerLIU/CSA-inpainting/HEAD/models/__pycache__/models.cpython-37.pyc -------------------------------------------------------------------------------- /models/__pycache__/networks.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KumapowerLIU/CSA-inpainting/HEAD/models/__pycache__/networks.cpython-35.pyc -------------------------------------------------------------------------------- /models/__pycache__/networks.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KumapowerLIU/CSA-inpainting/HEAD/models/__pycache__/networks.cpython-37.pyc -------------------------------------------------------------------------------- /models/__pycache__/vgg16.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KumapowerLIU/CSA-inpainting/HEAD/models/__pycache__/vgg16.cpython-35.pyc -------------------------------------------------------------------------------- /models/__pycache__/vgg16.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KumapowerLIU/CSA-inpainting/HEAD/models/__pycache__/vgg16.cpython-37.pyc -------------------------------------------------------------------------------- /models/base_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KumapowerLIU/CSA-inpainting/HEAD/models/base_model.py -------------------------------------------------------------------------------- /models/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KumapowerLIU/CSA-inpainting/HEAD/models/models.py -------------------------------------------------------------------------------- /models/networks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KumapowerLIU/CSA-inpainting/HEAD/models/networks.py -------------------------------------------------------------------------------- /models/test_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KumapowerLIU/CSA-inpainting/HEAD/models/test_model.py -------------------------------------------------------------------------------- /models/vgg16.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KumapowerLIU/CSA-inpainting/HEAD/models/vgg16.py -------------------------------------------------------------------------------- /show.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KumapowerLIU/CSA-inpainting/HEAD/show.jpg -------------------------------------------------------------------------------- /test.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KumapowerLIU/CSA-inpainting/HEAD/test.ipynb -------------------------------------------------------------------------------- /train.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KumapowerLIU/CSA-inpainting/HEAD/train.ipynb -------------------------------------------------------------------------------- /util/MaxCoord.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KumapowerLIU/CSA-inpainting/HEAD/util/MaxCoord.py -------------------------------------------------------------------------------- /util/NonparametricShift.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KumapowerLIU/CSA-inpainting/HEAD/util/NonparametricShift.py -------------------------------------------------------------------------------- /util/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /util/__pycache__/MaxCoord.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KumapowerLIU/CSA-inpainting/HEAD/util/__pycache__/MaxCoord.cpython-35.pyc -------------------------------------------------------------------------------- /util/__pycache__/MaxCoord.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KumapowerLIU/CSA-inpainting/HEAD/util/__pycache__/MaxCoord.cpython-37.pyc -------------------------------------------------------------------------------- /util/__pycache__/NonparametricShift.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KumapowerLIU/CSA-inpainting/HEAD/util/__pycache__/NonparametricShift.cpython-35.pyc -------------------------------------------------------------------------------- /util/__pycache__/NonparametricShift.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KumapowerLIU/CSA-inpainting/HEAD/util/__pycache__/NonparametricShift.cpython-37.pyc -------------------------------------------------------------------------------- /util/__pycache__/__init__.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KumapowerLIU/CSA-inpainting/HEAD/util/__pycache__/__init__.cpython-35.pyc -------------------------------------------------------------------------------- /util/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KumapowerLIU/CSA-inpainting/HEAD/util/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /util/__pycache__/data_load.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KumapowerLIU/CSA-inpainting/HEAD/util/__pycache__/data_load.cpython-37.pyc -------------------------------------------------------------------------------- /util/__pycache__/util.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KumapowerLIU/CSA-inpainting/HEAD/util/__pycache__/util.cpython-35.pyc -------------------------------------------------------------------------------- /util/__pycache__/util.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KumapowerLIU/CSA-inpainting/HEAD/util/__pycache__/util.cpython-37.pyc -------------------------------------------------------------------------------- /util/data_load.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KumapowerLIU/CSA-inpainting/HEAD/util/data_load.py -------------------------------------------------------------------------------- /util/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KumapowerLIU/CSA-inpainting/HEAD/util/util.py --------------------------------------------------------------------------------