dimzog commited on
Commit
e580698
1 Parent(s): e6eb7ee

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +11 -3
README.md CHANGED
@@ -17,11 +17,19 @@ pretty_name: >-
17
  for wildfire impact prediction
18
  size_categories:
19
  - 10K<n<100K
 
20
  ---
21
 
22
 
23
- ## How to use the dataset
24
 
25
- Please note that there are 3 files names "files_train.csv.gz", "files_test.csv.gz" and "files_val.csv.gz" that contain the corresponding file splits for the dataset.
26
- Please use these splits to train your models.
 
27
 
 
 
 
 
 
 
 
17
  for wildfire impact prediction
18
  size_categories:
19
  - 10K<n<100K
20
+ license: cc-by-sa-4.0
21
  ---
22
 
23
 
24
+ #### Setup libaries
25
 
26
+ ```
27
+ pip3 install --upgrade numpy pandas geopandas rasterio rioxarray xarray netCDF4 h5netcdf
28
+ ```
29
 
30
+ #### Load dataset
31
+ ```
32
+ from datasets import load_dataset
33
+
34
+ dataset = load_dataset('AUA-Informatics-Lab/eo4wildfires')
35
+ ```