Introduction
QuantizedArrays is a package for array quantization and compression. The basic principle is that arrays can be represented through the concatenation of shorter vectors obtained by either sampling or clustering of subspaces in the original data. This effectively compresses the original array with a loss in quality.
Implemented features
- basic
AbstractArrayinterface for vectors, matrices - quantization types implemented:
Installation
Installation can be performed from either inside or outside Julia.
Git cloning
$ git clone https://github.com/zgornel/QuantizedArrays.jlJulia REPL
The package can be installed from inside Julia with:
using Pkg
Pkg.add("QuantizedArrays")or
Pkg.add(PackageSpec(url="https://github.com/zgornel/QuantizedArrays.jl", rev="master"))for the latest master branch.