Update README.md
Browse files
README.md
CHANGED
|
@@ -2,9 +2,9 @@
|
|
| 2 |
license: mit
|
| 3 |
---
|
| 4 |
|
| 5 |
-
# COIN collection dataset
|
| 6 |
|
| 7 |
-
This is the dataset for our paper "Predicting the Encoding Error of
|
| 8 |
|
| 9 |
We will publish a loading script for this dataset soon, but until then, see the following instructions:
|
| 10 |
|
|
@@ -31,8 +31,11 @@ This will download around 80Gb of images in `data/mscoco/mscoco`.
|
|
| 31 |
### SIREN run records
|
| 32 |
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:
|
| 33 |
|
| 34 |
-
- `config`: The starting configuration of the SIREN training run.
|
| 35 |
-
- `
|
|
|
|
|
|
|
|
|
|
| 36 |
- `best_psnr_history`: Similar to `psnr_history`, but stores the maximum value of `psnr history` seen up until this point during training.
|
| 37 |
- `iteration_history`: Parallel to the psnr_history and best_psnr_history; the training iteration at wich those PSNRs are recorded.
|
| 38 |
- `hp_bpp`: bits per pixel of the SIREN encoding of the image, with weights stored at half-precision (16-bit floats)
|
|
|
|
| 2 |
license: mit
|
| 3 |
---
|
| 4 |
|
| 5 |
+
# COIN collection dataset
|
| 6 |
|
| 7 |
+
This is the dataset for our paper ["Predicting the Encoding Error of SIRENs"](https://openreview.net/forum?id=iKPC7N85Pf). It consists of 300,000 small SIREN networks trained to encode images from the MSCOCO dataset.
|
| 8 |
|
| 9 |
We will publish a loading script for this dataset soon, but until then, see the following instructions:
|
| 10 |
|
|
|
|
| 31 |
### SIREN run records
|
| 32 |
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:
|
| 33 |
|
| 34 |
+
- `config`: The starting configuration of the SIREN training run. contains the following subfields:
|
| 35 |
+
- `image_id` corresponds to the filename of the corresponding MSCOCO image, as downloaded using `download_mscoco.sh`. e.g. `image_id=123` corresponds to the filename `000000123.png`.
|
| 36 |
+
- `image_size` indicates what size the image was downsampled to, using PIL's `resize()` function with `BOX` resampling.
|
| 37 |
+
- The other arguments in `config` specify the arguments to be used in the [COIN training script](https://github.com/EmilienDupont/coin) to reproduce this SIREN run.
|
| 38 |
+
- `psnr_history`: record of the PSNR curve during training time. PSNR is recorded once every 10 training iterations.
|
| 39 |
- `best_psnr_history`: Similar to `psnr_history`, but stores the maximum value of `psnr history` seen up until this point during training.
|
| 40 |
- `iteration_history`: Parallel to the psnr_history and best_psnr_history; the training iteration at wich those PSNRs are recorded.
|
| 41 |
- `hp_bpp`: bits per pixel of the SIREN encoding of the image, with weights stored at half-precision (16-bit floats)
|