├── .gitmodules ├── LICENSE ├── LICENSE_HARDWARE ├── README.md ├── algoEvals ├── .gitignore ├── analysisTools.py ├── bpcUtils.py ├── conda-env.yaml ├── dataCollect.py ├── figs │ └── .gitignore ├── groupedBarPlot.py ├── histogram.ipynb ├── ilsvrc12 ├── referenceImpl.py ├── reporting.py ├── results │ └── .gitignore ├── sparsityBoxplot.ipynb ├── sparsityByEpoch.ipynb ├── totalComprRatio_generate.py └── totalComprRatio_plot.ipynb └── hardwareImpl └── .gitignore /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukasc-ch/ExtendedBitPlaneCompression/HEAD/.gitmodules -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukasc-ch/ExtendedBitPlaneCompression/HEAD/LICENSE -------------------------------------------------------------------------------- /LICENSE_HARDWARE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukasc-ch/ExtendedBitPlaneCompression/HEAD/LICENSE_HARDWARE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukasc-ch/ExtendedBitPlaneCompression/HEAD/README.md -------------------------------------------------------------------------------- /algoEvals/.gitignore: -------------------------------------------------------------------------------- 1 | __pycache__/ 2 | .ipynb_checkpoints/ 3 | -------------------------------------------------------------------------------- /algoEvals/analysisTools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukasc-ch/ExtendedBitPlaneCompression/HEAD/algoEvals/analysisTools.py -------------------------------------------------------------------------------- /algoEvals/bpcUtils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukasc-ch/ExtendedBitPlaneCompression/HEAD/algoEvals/bpcUtils.py -------------------------------------------------------------------------------- /algoEvals/conda-env.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukasc-ch/ExtendedBitPlaneCompression/HEAD/algoEvals/conda-env.yaml -------------------------------------------------------------------------------- /algoEvals/dataCollect.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukasc-ch/ExtendedBitPlaneCompression/HEAD/algoEvals/dataCollect.py -------------------------------------------------------------------------------- /algoEvals/figs/.gitignore: -------------------------------------------------------------------------------- 1 | * -------------------------------------------------------------------------------- /algoEvals/groupedBarPlot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukasc-ch/ExtendedBitPlaneCompression/HEAD/algoEvals/groupedBarPlot.py -------------------------------------------------------------------------------- /algoEvals/histogram.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukasc-ch/ExtendedBitPlaneCompression/HEAD/algoEvals/histogram.ipynb -------------------------------------------------------------------------------- /algoEvals/ilsvrc12: -------------------------------------------------------------------------------- 1 | /scratch/datasets/ilsvrc12 -------------------------------------------------------------------------------- /algoEvals/referenceImpl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukasc-ch/ExtendedBitPlaneCompression/HEAD/algoEvals/referenceImpl.py -------------------------------------------------------------------------------- /algoEvals/reporting.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukasc-ch/ExtendedBitPlaneCompression/HEAD/algoEvals/reporting.py -------------------------------------------------------------------------------- /algoEvals/results/.gitignore: -------------------------------------------------------------------------------- 1 | * -------------------------------------------------------------------------------- /algoEvals/sparsityBoxplot.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukasc-ch/ExtendedBitPlaneCompression/HEAD/algoEvals/sparsityBoxplot.ipynb -------------------------------------------------------------------------------- /algoEvals/sparsityByEpoch.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukasc-ch/ExtendedBitPlaneCompression/HEAD/algoEvals/sparsityByEpoch.ipynb -------------------------------------------------------------------------------- /algoEvals/totalComprRatio_generate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukasc-ch/ExtendedBitPlaneCompression/HEAD/algoEvals/totalComprRatio_generate.py -------------------------------------------------------------------------------- /algoEvals/totalComprRatio_plot.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukasc-ch/ExtendedBitPlaneCompression/HEAD/algoEvals/totalComprRatio_plot.ipynb -------------------------------------------------------------------------------- /hardwareImpl/.gitignore: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------