Update README.md
Browse files
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 |
-
|
44 |
-
|
45 |
-
|
46 |
-
|
47 |
-
|
48 |
-
|
49 |
-
|
50 |
-
|
51 |
-
|
52 |
-
|
53 |
-
|
|
|
|
|
|
|
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.
|