├── .gitignore ├── .gitmodules ├── LICENSE ├── README.md ├── common ├── common_utils.py ├── custom_writers.py ├── data_lib.py ├── elic.py ├── eval_lib.py ├── hyper.py ├── image_utils.py ├── immutabledict │ └── __init__.py ├── itinf_lib.py ├── latent_rvs_lib.py ├── latent_rvs_utils.py ├── lpips_tensorflow.py ├── profile_utils.py ├── schedule.py ├── train_lib.py ├── transforms.py └── utils.py ├── configs.py ├── eval.py ├── factorized ├── configs │ └── bls2017.py ├── itinf.py ├── models.py └── train.py ├── launch.py ├── launch_eval.py ├── mshyper ├── configs │ ├── itinf.py │ ├── jpegl.py │ ├── mbt2018.py │ ├── two_layer_syn.py │ └── two_layer_syn2.py ├── itinf.py ├── models.py └── train.py ├── notebooks ├── get_flops.ipynb └── vis_syn_filters.ipynb ├── requirements.txt ├── results ├── all_fpp.csv ├── all_params.csv ├── clic_pval │ ├── 2-layer_syn+SGA-detailed.json │ ├── 2-layer_syn-detailed.json │ ├── JPEG-like_syn-detailed.json │ └── aggregate.json ├── flops_per_pixel.csv ├── kodak │ ├── 2-layer_syn+SGA-detailed.json │ ├── 2-layer_syn-detailed.json │ ├── JPEG-like_syn-detailed.json │ └── aggregate.json ├── readme.md └── tecnick │ ├── 2-layer_syn+SGA-detailed.json │ ├── 2-layer_syn-detailed.json │ ├── JPEG-like_syn-detailed.json │ └── aggregate.json ├── slurm_template.py └── summary.png /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandt-lab/shallow-ntc/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandt-lab/shallow-ntc/HEAD/.gitmodules -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandt-lab/shallow-ntc/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandt-lab/shallow-ntc/HEAD/README.md -------------------------------------------------------------------------------- /common/common_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandt-lab/shallow-ntc/HEAD/common/common_utils.py -------------------------------------------------------------------------------- /common/custom_writers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandt-lab/shallow-ntc/HEAD/common/custom_writers.py -------------------------------------------------------------------------------- /common/data_lib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandt-lab/shallow-ntc/HEAD/common/data_lib.py -------------------------------------------------------------------------------- /common/elic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandt-lab/shallow-ntc/HEAD/common/elic.py -------------------------------------------------------------------------------- /common/eval_lib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandt-lab/shallow-ntc/HEAD/common/eval_lib.py -------------------------------------------------------------------------------- /common/hyper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandt-lab/shallow-ntc/HEAD/common/hyper.py -------------------------------------------------------------------------------- /common/image_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandt-lab/shallow-ntc/HEAD/common/image_utils.py -------------------------------------------------------------------------------- /common/immutabledict/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandt-lab/shallow-ntc/HEAD/common/immutabledict/__init__.py -------------------------------------------------------------------------------- /common/itinf_lib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandt-lab/shallow-ntc/HEAD/common/itinf_lib.py -------------------------------------------------------------------------------- /common/latent_rvs_lib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandt-lab/shallow-ntc/HEAD/common/latent_rvs_lib.py -------------------------------------------------------------------------------- /common/latent_rvs_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandt-lab/shallow-ntc/HEAD/common/latent_rvs_utils.py -------------------------------------------------------------------------------- /common/lpips_tensorflow.py: -------------------------------------------------------------------------------- 1 | ../lpips_tf2/lpips_tensorflow.py -------------------------------------------------------------------------------- /common/profile_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandt-lab/shallow-ntc/HEAD/common/profile_utils.py -------------------------------------------------------------------------------- /common/schedule.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandt-lab/shallow-ntc/HEAD/common/schedule.py -------------------------------------------------------------------------------- /common/train_lib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandt-lab/shallow-ntc/HEAD/common/train_lib.py -------------------------------------------------------------------------------- /common/transforms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandt-lab/shallow-ntc/HEAD/common/transforms.py -------------------------------------------------------------------------------- /common/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandt-lab/shallow-ntc/HEAD/common/utils.py -------------------------------------------------------------------------------- /configs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandt-lab/shallow-ntc/HEAD/configs.py -------------------------------------------------------------------------------- /eval.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandt-lab/shallow-ntc/HEAD/eval.py -------------------------------------------------------------------------------- /factorized/configs/bls2017.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandt-lab/shallow-ntc/HEAD/factorized/configs/bls2017.py -------------------------------------------------------------------------------- /factorized/itinf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandt-lab/shallow-ntc/HEAD/factorized/itinf.py -------------------------------------------------------------------------------- /factorized/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandt-lab/shallow-ntc/HEAD/factorized/models.py -------------------------------------------------------------------------------- /factorized/train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandt-lab/shallow-ntc/HEAD/factorized/train.py -------------------------------------------------------------------------------- /launch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandt-lab/shallow-ntc/HEAD/launch.py -------------------------------------------------------------------------------- /launch_eval.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandt-lab/shallow-ntc/HEAD/launch_eval.py -------------------------------------------------------------------------------- /mshyper/configs/itinf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandt-lab/shallow-ntc/HEAD/mshyper/configs/itinf.py -------------------------------------------------------------------------------- /mshyper/configs/jpegl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandt-lab/shallow-ntc/HEAD/mshyper/configs/jpegl.py -------------------------------------------------------------------------------- /mshyper/configs/mbt2018.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandt-lab/shallow-ntc/HEAD/mshyper/configs/mbt2018.py -------------------------------------------------------------------------------- /mshyper/configs/two_layer_syn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandt-lab/shallow-ntc/HEAD/mshyper/configs/two_layer_syn.py -------------------------------------------------------------------------------- /mshyper/configs/two_layer_syn2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandt-lab/shallow-ntc/HEAD/mshyper/configs/two_layer_syn2.py -------------------------------------------------------------------------------- /mshyper/itinf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandt-lab/shallow-ntc/HEAD/mshyper/itinf.py -------------------------------------------------------------------------------- /mshyper/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandt-lab/shallow-ntc/HEAD/mshyper/models.py -------------------------------------------------------------------------------- /mshyper/train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandt-lab/shallow-ntc/HEAD/mshyper/train.py -------------------------------------------------------------------------------- /notebooks/get_flops.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandt-lab/shallow-ntc/HEAD/notebooks/get_flops.ipynb -------------------------------------------------------------------------------- /notebooks/vis_syn_filters.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandt-lab/shallow-ntc/HEAD/notebooks/vis_syn_filters.ipynb -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandt-lab/shallow-ntc/HEAD/requirements.txt -------------------------------------------------------------------------------- /results/all_fpp.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandt-lab/shallow-ntc/HEAD/results/all_fpp.csv -------------------------------------------------------------------------------- /results/all_params.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandt-lab/shallow-ntc/HEAD/results/all_params.csv -------------------------------------------------------------------------------- /results/clic_pval/2-layer_syn+SGA-detailed.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandt-lab/shallow-ntc/HEAD/results/clic_pval/2-layer_syn+SGA-detailed.json -------------------------------------------------------------------------------- /results/clic_pval/2-layer_syn-detailed.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandt-lab/shallow-ntc/HEAD/results/clic_pval/2-layer_syn-detailed.json -------------------------------------------------------------------------------- /results/clic_pval/JPEG-like_syn-detailed.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandt-lab/shallow-ntc/HEAD/results/clic_pval/JPEG-like_syn-detailed.json -------------------------------------------------------------------------------- /results/clic_pval/aggregate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandt-lab/shallow-ntc/HEAD/results/clic_pval/aggregate.json -------------------------------------------------------------------------------- /results/flops_per_pixel.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandt-lab/shallow-ntc/HEAD/results/flops_per_pixel.csv -------------------------------------------------------------------------------- /results/kodak/2-layer_syn+SGA-detailed.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandt-lab/shallow-ntc/HEAD/results/kodak/2-layer_syn+SGA-detailed.json -------------------------------------------------------------------------------- /results/kodak/2-layer_syn-detailed.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandt-lab/shallow-ntc/HEAD/results/kodak/2-layer_syn-detailed.json -------------------------------------------------------------------------------- /results/kodak/JPEG-like_syn-detailed.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandt-lab/shallow-ntc/HEAD/results/kodak/JPEG-like_syn-detailed.json -------------------------------------------------------------------------------- /results/kodak/aggregate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandt-lab/shallow-ntc/HEAD/results/kodak/aggregate.json -------------------------------------------------------------------------------- /results/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandt-lab/shallow-ntc/HEAD/results/readme.md -------------------------------------------------------------------------------- /results/tecnick/2-layer_syn+SGA-detailed.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandt-lab/shallow-ntc/HEAD/results/tecnick/2-layer_syn+SGA-detailed.json -------------------------------------------------------------------------------- /results/tecnick/2-layer_syn-detailed.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandt-lab/shallow-ntc/HEAD/results/tecnick/2-layer_syn-detailed.json -------------------------------------------------------------------------------- /results/tecnick/JPEG-like_syn-detailed.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandt-lab/shallow-ntc/HEAD/results/tecnick/JPEG-like_syn-detailed.json -------------------------------------------------------------------------------- /results/tecnick/aggregate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandt-lab/shallow-ntc/HEAD/results/tecnick/aggregate.json -------------------------------------------------------------------------------- /slurm_template.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandt-lab/shallow-ntc/HEAD/slurm_template.py -------------------------------------------------------------------------------- /summary.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mandt-lab/shallow-ntc/HEAD/summary.png --------------------------------------------------------------------------------