├── LICENSE ├── README.md ├── adam.py ├── bb_no_sga.py ├── bb_plain.py ├── bb_sga.py ├── configs.py ├── danneal.py ├── learned_prior.py ├── map.py ├── math_ops.py ├── mbt2018.py ├── mbt2018_bb.py ├── nn_models.py ├── requirements.txt ├── results ├── kodak │ ├── bb_sga-psnr.csv │ ├── mbt2018-psnr.csv │ └── sga-psnr.csv ├── sga_landscape.png └── tecnick │ ├── bb_sga-psnr.csv │ ├── mbt2018-psnr.csv │ └── sga-psnr.csv ├── sga.py ├── ste.py ├── tf_boilerplate.py ├── unoise.py └── utils.py /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandt-lab/improving-inference-for-neural-image-compression/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandt-lab/improving-inference-for-neural-image-compression/HEAD/README.md -------------------------------------------------------------------------------- /adam.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandt-lab/improving-inference-for-neural-image-compression/HEAD/adam.py -------------------------------------------------------------------------------- /bb_no_sga.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandt-lab/improving-inference-for-neural-image-compression/HEAD/bb_no_sga.py -------------------------------------------------------------------------------- /bb_plain.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandt-lab/improving-inference-for-neural-image-compression/HEAD/bb_plain.py -------------------------------------------------------------------------------- /bb_sga.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandt-lab/improving-inference-for-neural-image-compression/HEAD/bb_sga.py -------------------------------------------------------------------------------- /configs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandt-lab/improving-inference-for-neural-image-compression/HEAD/configs.py -------------------------------------------------------------------------------- /danneal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandt-lab/improving-inference-for-neural-image-compression/HEAD/danneal.py -------------------------------------------------------------------------------- /learned_prior.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandt-lab/improving-inference-for-neural-image-compression/HEAD/learned_prior.py -------------------------------------------------------------------------------- /map.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandt-lab/improving-inference-for-neural-image-compression/HEAD/map.py -------------------------------------------------------------------------------- /math_ops.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandt-lab/improving-inference-for-neural-image-compression/HEAD/math_ops.py -------------------------------------------------------------------------------- /mbt2018.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandt-lab/improving-inference-for-neural-image-compression/HEAD/mbt2018.py -------------------------------------------------------------------------------- /mbt2018_bb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandt-lab/improving-inference-for-neural-image-compression/HEAD/mbt2018_bb.py -------------------------------------------------------------------------------- /nn_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandt-lab/improving-inference-for-neural-image-compression/HEAD/nn_models.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandt-lab/improving-inference-for-neural-image-compression/HEAD/requirements.txt -------------------------------------------------------------------------------- /results/kodak/bb_sga-psnr.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandt-lab/improving-inference-for-neural-image-compression/HEAD/results/kodak/bb_sga-psnr.csv -------------------------------------------------------------------------------- /results/kodak/mbt2018-psnr.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandt-lab/improving-inference-for-neural-image-compression/HEAD/results/kodak/mbt2018-psnr.csv -------------------------------------------------------------------------------- /results/kodak/sga-psnr.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandt-lab/improving-inference-for-neural-image-compression/HEAD/results/kodak/sga-psnr.csv -------------------------------------------------------------------------------- /results/sga_landscape.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandt-lab/improving-inference-for-neural-image-compression/HEAD/results/sga_landscape.png -------------------------------------------------------------------------------- /results/tecnick/bb_sga-psnr.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandt-lab/improving-inference-for-neural-image-compression/HEAD/results/tecnick/bb_sga-psnr.csv -------------------------------------------------------------------------------- /results/tecnick/mbt2018-psnr.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandt-lab/improving-inference-for-neural-image-compression/HEAD/results/tecnick/mbt2018-psnr.csv -------------------------------------------------------------------------------- /results/tecnick/sga-psnr.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandt-lab/improving-inference-for-neural-image-compression/HEAD/results/tecnick/sga-psnr.csv -------------------------------------------------------------------------------- /sga.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandt-lab/improving-inference-for-neural-image-compression/HEAD/sga.py -------------------------------------------------------------------------------- /ste.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandt-lab/improving-inference-for-neural-image-compression/HEAD/ste.py -------------------------------------------------------------------------------- /tf_boilerplate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandt-lab/improving-inference-for-neural-image-compression/HEAD/tf_boilerplate.py -------------------------------------------------------------------------------- /unoise.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandt-lab/improving-inference-for-neural-image-compression/HEAD/unoise.py -------------------------------------------------------------------------------- /utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandt-lab/improving-inference-for-neural-image-compression/HEAD/utils.py --------------------------------------------------------------------------------