Paolo-Fraccaro commited on
Commit
1ecae73
1 Parent(s): 6fb79c5

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +11 -7
README.md CHANGED
@@ -18,15 +18,19 @@ other works around remote sensing modeling. Being able to handle a time series o
18
  ### Pre-training
19
  The model was pre-trained with NASA's HLS2 L30 product (30m granularity) from Continental United States. The bands that were used are the following:
20
 
21
- * Blue
22
- * Green
23
- * Red
24
- * Narrow NIR
25
- * SWIR 1
26
- * SWIR 2
27
 
28
  ### Code
29
  The model follows the [original mae repo](https://github.com/facebookresearch/mae) with some modifications including:
 
30
  1. replace 2D patch embed with 3D patch embed;
31
  2. replace 2D positional embed with 3D positional embed;
32
- 3. replace 2D patchify and unpatchify with 3D.
 
 
 
 
18
  ### Pre-training
19
  The model was pre-trained with NASA's HLS2 L30 product (30m granularity) from Continental United States. The bands that were used are the following:
20
 
21
+ 1. Blue
22
+ 2. Green
23
+ 3. Red
24
+ 4. Narrow NIR
25
+ 5. SWIR 1
26
+ 6. SWIR 2
27
 
28
  ### Code
29
  The model follows the [original mae repo](https://github.com/facebookresearch/mae) with some modifications including:
30
+
31
  1. replace 2D patch embed with 3D patch embed;
32
  2. replace 2D positional embed with 3D positional embed;
33
+ 3. replace 2D patchify and unpatchify with 3D.
34
+
35
+ ### Finetuning examples
36
+ Two examples of finetuning the model for image segmentation (i.e. flood detection and burn scars detection) using the mmsegmentation library are available through [github](https://github.com/NASA-IMPACT/hls-foundation-os/tree/main/fine-tuning-examples).