├── ELICUtilis ├── datasets │ ├── __init__.py │ └── utils.py ├── layers │ ├── __init__.py │ ├── gdn.py │ └── layers.py └── utilis │ ├── __init__.py │ └── utilis.py ├── Inference.py ├── Kodak.png ├── Network.py ├── README.md ├── requirements.txt ├── train.py └── updata.py /ELICUtilis/datasets/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /ELICUtilis/datasets/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentChandelier/ELiC-ReImplemetation/HEAD/ELICUtilis/datasets/utils.py -------------------------------------------------------------------------------- /ELICUtilis/layers/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentChandelier/ELiC-ReImplemetation/HEAD/ELICUtilis/layers/__init__.py -------------------------------------------------------------------------------- /ELICUtilis/layers/gdn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentChandelier/ELiC-ReImplemetation/HEAD/ELICUtilis/layers/gdn.py -------------------------------------------------------------------------------- /ELICUtilis/layers/layers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentChandelier/ELiC-ReImplemetation/HEAD/ELICUtilis/layers/layers.py -------------------------------------------------------------------------------- /ELICUtilis/utilis/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /ELICUtilis/utilis/utilis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentChandelier/ELiC-ReImplemetation/HEAD/ELICUtilis/utilis/utilis.py -------------------------------------------------------------------------------- /Inference.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentChandelier/ELiC-ReImplemetation/HEAD/Inference.py -------------------------------------------------------------------------------- /Kodak.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentChandelier/ELiC-ReImplemetation/HEAD/Kodak.png -------------------------------------------------------------------------------- /Network.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentChandelier/ELiC-ReImplemetation/HEAD/Network.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentChandelier/ELiC-ReImplemetation/HEAD/README.md -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentChandelier/ELiC-ReImplemetation/HEAD/requirements.txt -------------------------------------------------------------------------------- /train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentChandelier/ELiC-ReImplemetation/HEAD/train.py -------------------------------------------------------------------------------- /updata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VincentChandelier/ELiC-ReImplemetation/HEAD/updata.py --------------------------------------------------------------------------------