g-astruc commited on
Commit
5b510f9
1 Parent(s): 7b97687

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +14 -11
README.md CHANGED
@@ -40,17 +40,20 @@ model = AnySat(size="base", pretrained=True) #Exists also "small" and "tiny"
40
  ```
41
 
42
  To get features from an observation of a batch of observations, you need to provide to the model a dictionnary where keys are from the list:
43
- - "aerial": Single date tensor (Bx4xHxW) with 4 channels (RGB NiR), 0.2m resolution
44
- - "aerial-flair": Single date tensor (Bx5xHxW) with 5 channels (RGB NiR Elevation), 0.2m resolution
45
- - "spot": Single date tensor (Bx3xHxW) with 3 channels (RGB), 1m resolution
46
- - "naip": Single date tensor (Bx4xHxW) with 3 channels (RGB), 1.25m resolution
47
- - "s2": Time series tensor (BxTx10xHxW) with 10 channels (B2 B3 B4 B5 B6 B7 B8 B8a B11 B12), 10m resolution
48
- - "s1-asc": Time series tensor (BxTx2xHxW) with 2 channels (VV VH), 10m resolution
49
- - "s1": Time series tensor (BxTx3xHxW) with 3 channels (VV VH Ratio), 10m resolution
50
- - "alos": Time series tensor (BxTx3xHxW) with 3 channels (HH HV Ratio), 30m resolution
51
- - "l7": Time series tensor (BxTx6xHxW) with 6 channels (B1 B2 B3 B4 B5 B7), 30m resolution
52
- - "l8": Time series tensor (BxTx11xHxW) with 11 channels (B8 B1 B2 B3 B4 B5 B6 B7 B9 B10 B11), rescaled to 10m resolution
53
- - "modis": Time series tensor (BxTx7xHxW) with 7 channels (B1 B2 B3 B4 B5 B6 B7), 250m resolution
 
 
 
54
 
55
  Time series keys require a "{key}_dates" (for example "s2_dates") tensor of size BxT that value an integer that represent the day of the year.
56
  Then you have to choose at which scale you want te produce features. Scale argument is in meters and represent the size of the desired patch size.
 
40
  ```
41
 
42
  To get features from an observation of a batch of observations, you need to provide to the model a dictionnary where keys are from the list:
43
+ | Dataset | Description | Tensor Size | Channels | Resolution |
44
+ |---------------|-----------------------------------|-----------------------------------------|-------------------------------------------|------------|
45
+ | aerial | Single date tensor |Bx4xHxW | RGB, NiR | 0.2m |
46
+ | aerial-flair | Single date tensor |Bx5xHxW | RGB, NiR, Elevation | 0.2m |
47
+ | spot | Single date tensor |Bx3xHxW | RGB | 1m |
48
+ | naip | Single date tensor |Bx4xHxW | RGB | 1.25m |
49
+ | s2 | Time series tensor |BxTx10xHxW | B2, B3, B4, B5, B6, B7, B8, B8a, B11, B12 | 10m |
50
+ | s1-asc | Time series tensor |BxTx2xHxW | VV, VH | 10m |
51
+ | s1 | Time series tensor |BxTx3xHxW | VV, VH, Ratio | 10m |
52
+ | alos | Time series tensor |BxTx3xHxW | HH, HV, Ratio | 30m |
53
+ | l7 | Time series tensor |BxTx6xHxW | B1, B2, B3, B4, B5, B7 | 30m |
54
+ | l8 | Time series tensor |BxTx11xHxW | B8, B1, B2, B3, B4, B5, B6, B7, B9, B10, B11 | 10m |
55
+ | modis | Time series tensor |BxTx7xHxW | B1, B2, B3, B4, B5, B6, B7 | 250m |
56
+
57
 
58
  Time series keys require a "{key}_dates" (for example "s2_dates") tensor of size BxT that value an integer that represent the day of the year.
59
  Then you have to choose at which scale you want te produce features. Scale argument is in meters and represent the size of the desired patch size.