The dataset viewer is not available for this dataset.
Need help to make the dataset viewer work? Make sure to review how to configure the dataset viewer, and open a discussion for direct support.
COIN collection dataset
This is the dataset for our paper "Predicting the Encoding Error of SIRENs". It consists of 300,000 small SIREN networks trained to encode images from the MSCOCO dataset.
We will publish a loading script for this dataset soon, but until then, see the following instructions:
How to Use
First, download this repository using:
huggingface-cli repo download predict-SIREN-PSNR/COIN-collection --repo_type datasets
There are two types of files in this dataset:
.json.gzfiles containing data about the SIRENs we have trained,- the images from the MSCOCO dataset that those SIRENs are trained on.
MSCOCO images
To download the MSCOCO images:
pip install img2datasetcd data/mscocobash download_mscoco.sh
This will download around 80Gb of images in data/mscoco/mscoco.
SIREN run records
The sirens are organized into two sub-datasets, single-architecture and many-architecture. Each .json.gz file contains one SIREN per line, which can be loaded as a JSON object. Each SIREN record contains the following fields:
config: The starting configuration of the SIREN training run. contains the following subfields:image_idcorresponds to the filename of the corresponding MSCOCO image, as downloaded usingdownload_mscoco.sh. e.g.image_id=123corresponds to the filename000000123.png.image_sizeindicates what size the image was downsampled to, using PIL'sresize()function withBOXresampling.- The other arguments in
configspecify the arguments to be used in the COIN training script to reproduce this SIREN run.
psnr_history: record of the PSNR curve during training time. PSNR is recorded once every 10 training iterations.best_psnr_history: Similar topsnr_history, but stores the maximum value ofpsnr historyseen up until this point during training.iteration_history: Parallel to the psnr_history and best_psnr_history; the training iteration at wich those PSNRs are recorded.hp_bpp: bits per pixel of the SIREN encoding of the image, with weights stored at half-precision (16-bit floats)fp_bpp: bits per pixel of the SIREN encoding of the image, with weights stored at full-precision (32-bit floats)fp_psnr: PSNR of the SIREN-based image reconstruction.best_model: Binary blob of the SIREN'sstate_dict.
- Downloads last month
- 25