Update README.md
Browse files
README.md
CHANGED
@@ -31,10 +31,11 @@ We opted to use HDF5 to grant better portability and lower file size than GeoTIF
|
|
31 |
|
32 |
### Dataset opening
|
33 |
|
|
|
34 |
```python
|
35 |
from dataset import load_dataset
|
36 |
|
37 |
-
# There are two available configurations "post-fire" and "pre-post-fire"
|
38 |
dataset = load_dataset("DarthReca/california_burned_areas", name="post-fire")
|
39 |
```
|
40 |
|
|
|
31 |
|
32 |
### Dataset opening
|
33 |
|
34 |
+
Using the dataset library, you download only the pre-patched raw version for simplicity.
|
35 |
```python
|
36 |
from dataset import load_dataset
|
37 |
|
38 |
+
# There are two available configurations, "post-fire" and "pre-post-fire."
|
39 |
dataset = load_dataset("DarthReca/california_burned_areas", name="post-fire")
|
40 |
```
|
41 |
|