utils/dataset_utils.py:15,
delta = np.zeros_like(ref_img, dtype=np.float32)
Currently the deltas are stored in np.float32 which is why the size of the compressed data is very large.
This task is to find a way to express the deltas with np.int8 to reduce size.
Task description
utils/dataset_utils.py:15, delta = np.zeros_like(ref_img, dtype=np.float32) Currently the deltas are stored in np.float32 which is why the size of the compressed data is very large.
This task is to find a way to express the deltas with np.int8 to reduce size.
Todos
deliverables