Add extraction instructions
Browse files- README.md +18 -1
- assets/sample.png +3 -0
README.md
CHANGED
|
@@ -25,6 +25,23 @@ The dataset is curated from various sources, including the Copernicus European M
|
|
| 25 |
---------
|
| 26 |

|
| 27 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 28 |
## Dataset Structure
|
| 29 |
|
| 30 |
The main dataset used in the paper comprises the following inputs:
|
|
@@ -93,4 +110,4 @@ CC-BY-4.0 [https://creativecommons.org/licenses/by/4.0/](https://creativecommons
|
|
| 93 |
|
| 94 |
### Contributions
|
| 95 |
- Luca Barco (luca.barco@linksfoundation.com)
|
| 96 |
-
- Edoardo Arnaudo (edoardo.arnaudo@polito.it | linksfoundation.com)
|
|
|
|
| 25 |
---------
|
| 26 |

|
| 27 |
|
| 28 |
+
## Dataset Preparation
|
| 29 |
+
|
| 30 |
+
The dataset has been compressed into segmentented tarballs for ease of use within Git LFS (that is, tar > gzip > split).
|
| 31 |
+
To revert the process into files and directories follow these steps:
|
| 32 |
+
|
| 33 |
+
```console
|
| 34 |
+
$ git clone https://huggingface.co/datasets/links-ads/wildfires-cems
|
| 35 |
+
$ cd wildfires-ems
|
| 36 |
+
# revert the multipart compression: merge first, then untar
|
| 37 |
+
$ cat data/train/train.tar.* | tar -xvf - -i
|
| 38 |
+
$ cat data/test/test.tar.* | tar -xvf - -i
|
| 39 |
+
$ cat data/val/val.tar.* | tar -xvf - -i
|
| 40 |
+
```
|
| 41 |
+
|
| 42 |
+
It is very likely that the extracted files will retain the internal directory structure, making the `train/val/test` directories useless.
|
| 43 |
+
Adapt the output structure as you see fit, the original structure is shown below.
|
| 44 |
+
|
| 45 |
## Dataset Structure
|
| 46 |
|
| 47 |
The main dataset used in the paper comprises the following inputs:
|
|
|
|
| 110 |
|
| 111 |
### Contributions
|
| 112 |
- Luca Barco (luca.barco@linksfoundation.com)
|
| 113 |
+
- Edoardo Arnaudo (edoardo.arnaudo@polito.it | linksfoundation.com)
|
assets/sample.png
ADDED
|
Git LFS Details
|