sgiordano commited on
Commit
3ecce40
1 Parent(s): 58c706b

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +16 -0
README.md CHANGED
@@ -167,6 +167,11 @@ Use the code below to get started with the model.
167
  ### Training Data
168
 
169
  <!-- This should link to a Dataset Card, perhaps with a short stub of information on what the training data is all about as well as documentation related to data pre-processing or additional filtering. -->
 
 
 
 
 
170
 
171
  {{ training_data | default("[More Information Needed]", true)}}
172
 
@@ -176,6 +181,17 @@ Use the code below to get started with the model.
176
 
177
  #### Preprocessing [optional]
178
 
 
 
 
 
 
 
 
 
 
 
 
179
  {{ preprocessing | default("[More Information Needed]", true)}}
180
 
181
 
 
167
  ### Training Data
168
 
169
  <!-- This should link to a Dataset Card, perhaps with a short stub of information on what the training data is all about as well as documentation related to data pre-processing or additional filtering. -->
170
+ 218 400 patchs of 512 x 512 pixels were used to train the model.
171
+ The train/validation split was performed patchwise to obtain a 80% / 20% distribution. Spatial independancy between patches is guaranted : neighbouring patches are assigned to the same partition :
172
+ * Train set : 174 700 patches
173
+ * Validation set : 43 700 patchs
174
+
175
 
176
  {{ training_data | default("[More Information Needed]", true)}}
177
 
 
181
 
182
  #### Preprocessing [optional]
183
 
184
+ For traning the model, input normalization was performed so as the input dataset has a mean of 0 and a standart deviation of 1. For this model here are the statistics of the TRAIN+VALIDATION partition. It is recommended that the user apply the same type of input normalization.
185
+ Input normalization was performed
186
+ | Modalities | Mean (Train + Validation) |Std (Train + Validation) |
187
+ | ----------------------- | ----------- |----------- |
188
+ | Red Channel (R) | 105.08 |52.17 |
189
+ | Green Channel (V) | 110.87 |45.38 |
190
+ | Blue Channel (B) | 101.82 |44.00 |
191
+ | Infrared Channel (I) | 106.38 |39.69 |
192
+ | Elevation Channel (E) | 53.26 |79.30 |
193
+
194
+
195
  {{ preprocessing | default("[More Information Needed]", true)}}
196
 
197