egrace479 commited on
Commit
dd374d3
·
verified ·
1 Parent(s): 7291e0d

clarify dataset structure, adding in parquet files

Browse files
Files changed (1) hide show
  1. README.md +15 -5
README.md CHANGED
@@ -130,11 +130,6 @@ Leaderboard is available on the [Codabench Challenge page](https://www.codabench
130
 
131
  ```
132
  /dataset/
133
- flatten_images/
134
- <img_id 1>.png
135
- <img_id 2>.png
136
- ...
137
- <img_id n>.png
138
  color_and_scale_images/
139
  colorpicker_<colorpicker_id 1>.png
140
  colorpicker_<colorpicker_id 2>.png
@@ -144,6 +139,19 @@ Leaderboard is available on the [Codabench Challenge page](https://www.codabench
144
  scalebar_<scalebarid 2>.png
145
  ...
146
  scalebar_<scalebarid k>.png
 
 
 
 
 
 
 
 
 
 
 
 
 
147
  train.csv
148
  val.csv
149
  ```
@@ -156,6 +164,8 @@ Metadata include an identifier for a collection event (`eventID`), the date of t
156
 
157
  The `train.csv` and `val.csv` files are to be used for training models for submission and reflect the information that will be given during testing sans `siteID`, `collectDate`, and the target variables `SPEI_30d`, `SPEI_1y`, and `SPEI_2y`. Please see the [challenge sample repository](https://github.com/Imageomics/HDR-SMood-Challenge-sample) for an example of how these were used in training the baseline submission.
158
 
 
 
159
  ### Data Fields
160
 
161
  Both `train.csv` and `val.csv` have the following columns.
 
130
 
131
  ```
132
  /dataset/
 
 
 
 
 
133
  color_and_scale_images/
134
  colorpicker_<colorpicker_id 1>.png
135
  colorpicker_<colorpicker_id 2>.png
 
139
  scalebar_<scalebarid 2>.png
140
  ...
141
  scalebar_<scalebarid k>.png
142
+ data/
143
+ train-00000-of-00029.parquet
144
+ train-00001-of-00029.parquet
145
+ ...
146
+ train-00028-of-00029.parquet
147
+ validation-00000-of-00004.parquet
148
+ ...
149
+ validation-00003-of-00004.parquet
150
+ flattened_images/
151
+ <img_id 1>.png
152
+ <img_id 2>.png
153
+ ...
154
+ <img_id n>.png
155
  train.csv
156
  val.csv
157
  ```
 
164
 
165
  The `train.csv` and `val.csv` files are to be used for training models for submission and reflect the information that will be given during testing sans `siteID`, `collectDate`, and the target variables `SPEI_30d`, `SPEI_1y`, and `SPEI_2y`. Please see the [challenge sample repository](https://github.com/Imageomics/HDR-SMood-Challenge-sample) for an example of how these were used in training the baseline submission.
166
 
167
+ The `data/` folder contains the dataset in parquet format, where `train` prefix indicates it corresponds to the images and metadata in `train.csv`, while `validation` corresponds to `val.csv`. These are rendered by the dataset viewer.
168
+
169
  ### Data Fields
170
 
171
  Both `train.csv` and `val.csv` have the following columns.