├── .gitignore ├── README.md ├── config.yml ├── images ├── cwicarc.png └── imp_map.png ├── models.py ├── notebooks ├── 00_imports_and_data.ipynb ├── 01_encoder.ipynb ├── 02_decoder.ipynb ├── 03_train_lightning.ipynb ├── 04_remake_mask.ipynb ├── exp │ ├── nb_00.py │ ├── nb_01.py │ └── nb_02.py ├── notebook2script.py └── run_notebook.py ├── requirements.txt └── train.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adityassrana/Content-Weighted-Image-Compression/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adityassrana/Content-Weighted-Image-Compression/HEAD/README.md -------------------------------------------------------------------------------- /config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adityassrana/Content-Weighted-Image-Compression/HEAD/config.yml -------------------------------------------------------------------------------- /images/cwicarc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adityassrana/Content-Weighted-Image-Compression/HEAD/images/cwicarc.png -------------------------------------------------------------------------------- /images/imp_map.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adityassrana/Content-Weighted-Image-Compression/HEAD/images/imp_map.png -------------------------------------------------------------------------------- /models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adityassrana/Content-Weighted-Image-Compression/HEAD/models.py -------------------------------------------------------------------------------- /notebooks/00_imports_and_data.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adityassrana/Content-Weighted-Image-Compression/HEAD/notebooks/00_imports_and_data.ipynb -------------------------------------------------------------------------------- /notebooks/01_encoder.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adityassrana/Content-Weighted-Image-Compression/HEAD/notebooks/01_encoder.ipynb -------------------------------------------------------------------------------- /notebooks/02_decoder.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adityassrana/Content-Weighted-Image-Compression/HEAD/notebooks/02_decoder.ipynb -------------------------------------------------------------------------------- /notebooks/03_train_lightning.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adityassrana/Content-Weighted-Image-Compression/HEAD/notebooks/03_train_lightning.ipynb -------------------------------------------------------------------------------- /notebooks/04_remake_mask.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adityassrana/Content-Weighted-Image-Compression/HEAD/notebooks/04_remake_mask.ipynb -------------------------------------------------------------------------------- /notebooks/exp/nb_00.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adityassrana/Content-Weighted-Image-Compression/HEAD/notebooks/exp/nb_00.py -------------------------------------------------------------------------------- /notebooks/exp/nb_01.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adityassrana/Content-Weighted-Image-Compression/HEAD/notebooks/exp/nb_01.py -------------------------------------------------------------------------------- /notebooks/exp/nb_02.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adityassrana/Content-Weighted-Image-Compression/HEAD/notebooks/exp/nb_02.py -------------------------------------------------------------------------------- /notebooks/notebook2script.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adityassrana/Content-Weighted-Image-Compression/HEAD/notebooks/notebook2script.py -------------------------------------------------------------------------------- /notebooks/run_notebook.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adityassrana/Content-Weighted-Image-Compression/HEAD/notebooks/run_notebook.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adityassrana/Content-Weighted-Image-Compression/HEAD/requirements.txt -------------------------------------------------------------------------------- /train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adityassrana/Content-Weighted-Image-Compression/HEAD/train.py --------------------------------------------------------------------------------