alkzar90 commited on
Commit
5108e4b
1 Parent(s): 0b2b7c4

update readme

Browse files
Files changed (1) hide show
  1. README.md +35 -10
README.md CHANGED
@@ -46,24 +46,49 @@ task_ids:
46
  - **Paper:** N/A
47
  - **Leaderboard:** N/A
48
  - **Point of Contact:** N/A
 
49
  ### Dataset Summary
50
 
51
  ![](https://huggingface.co/datasets/alkzar90/rock-glacier-dataset/resolve/main/assets/rock-glacier-portrait.png)
52
 
53
  Rock Glacier Detection dataset with satelital images of rock glaciers in the Chilean Andes.
 
54
  ### Supported Tasks and Leaderboards
55
  - `image-classification`: Based on a satelitel images (from sentinel2), the goal of this task is to predict a rock glacier in the geographic area, if there any.
 
 
56
  ### Languages
57
- English
 
58
  ## Dataset Structure
 
59
  ### Data Instances
60
- A sample from the training set is provided below:
 
 
61
  ```
62
- {
63
- 'image': <PIL.PngImagePlugin.PngImageFile image mode=RGBA size=128x128 at 0x7FE652BE2FD0>,
64
- 'labels': 0
 
 
 
 
65
  }
66
  ```
 
 
 
 
 
 
 
 
 
 
 
 
 
67
  ### Data Fields
68
 
69
  The data instances have the following fields:
@@ -75,17 +100,17 @@ Class Label Mappings:
75
 
76
  ```json
77
  {
78
- "glaciar": 0,
79
- "cordillera": 1
80
  }
81
  ```
82
 
83
  ### Data Splits
84
 
85
 
86
- | |train|validation|test|
87
- |-------------|----:|---------:|---:|
88
- |# of examples|1456 |364 |NA |
89
 
90
  ## Dataset Creation
91
 
 
46
  - **Paper:** N/A
47
  - **Leaderboard:** N/A
48
  - **Point of Contact:** N/A
49
+
50
  ### Dataset Summary
51
 
52
  ![](https://huggingface.co/datasets/alkzar90/rock-glacier-dataset/resolve/main/assets/rock-glacier-portrait.png)
53
 
54
  Rock Glacier Detection dataset with satelital images of rock glaciers in the Chilean Andes.
55
+
56
  ### Supported Tasks and Leaderboards
57
  - `image-classification`: Based on a satelitel images (from sentinel2), the goal of this task is to predict a rock glacier in the geographic area, if there any.
58
+ - `image-segmentation`: ...
59
+
60
  ### Languages
61
+ Spanish
62
+
63
  ## Dataset Structure
64
+
65
  ### Data Instances
66
+
67
+ A sample from the image-classification training set is provided below:
68
+
69
  ```
70
+ df = load_dataset("alkzar90/rock-glacier-dataset", name="image-classification")
71
+
72
+ df["train"][666]
73
+
74
+ > {'image': <PIL.PngImagePlugin.PngImageFile image mode=RGBA size=128x128 at 0x7FB2EC58C6D0>,
75
+ 'labels': 0,
76
+ 'path': 'train/cordillera/1512.png'
77
  }
78
  ```
79
+
80
+ A sample from the image-segmentation training set is provided below:
81
+
82
+ ```
83
+ df = load_dataset("alkzar90/rock-glacier-dataset", name="image-segmentation")
84
+
85
+ df["train"][666]
86
+
87
+ > {'image': <PIL.PngImagePlugin.PngImageFile image mode=RGBA size=128x128 at 0x7FB2EB7C1160>,
88
+ 'masks': <PIL.PngImagePlugin.PngImageFile image mode=RGBA size=128x128 at 0x7FB2EC5A08E0>,
89
+ 'path': 'train/cordillera/1512.png'}
90
+ ```
91
+
92
  ### Data Fields
93
 
94
  The data instances have the following fields:
 
100
 
101
  ```json
102
  {
103
+ "cordillera": 0
104
+ "glaciar": 1,
105
  }
106
  ```
107
 
108
  ### Data Splits
109
 
110
 
111
+ | |train|validation| test|
112
+ |-------------|----:|---------:|-----:|
113
+ |# of examples|7875 |1125 |2700 |
114
 
115
  ## Dataset Creation
116