Datasets:
Update README.md
Browse files
README.md
CHANGED
|
@@ -100,7 +100,7 @@ Each sample in the dataset is a dictionary containing pre-formatted, multi-dimen
|
|
| 100 |
* **`dem`**: `(1, 128, 128)` — Float32
|
| 101 |
* **`thermal_inertial`**: `(1, 128, 128)` — Float32
|
| 102 |
* **`grayscale`**: `(1, 128, 128)` — Float32
|
| 103 |
-
* **`label`**: `(
|
| 104 |
|
| 105 |
## Quickstart (PyTorch)
|
| 106 |
|
|
@@ -123,7 +123,7 @@ print("RGB shape:", sample["rgb"].shape) # Expected: torch.Size(
|
|
| 123 |
print("DEM shape:", sample["dem"].shape) # Expected: torch.Size([1, 128, 128])
|
| 124 |
print("Thermal shape:", sample["thermal_inertial"].shape)# Expected: torch.Size([1, 128, 128])
|
| 125 |
print("Grayscale shape:", sample["grayscale"].shape) # Expected: torch.Size([1, 128, 128])
|
| 126 |
-
print("Label shape:", sample["label"].shape) # Expected: torch.Size([
|
| 127 |
```
|
| 128 |
|
| 129 |
## References
|
|
|
|
| 100 |
* **`dem`**: `(1, 128, 128)` — Float32
|
| 101 |
* **`thermal_inertial`**: `(1, 128, 128)` — Float32
|
| 102 |
* **`grayscale`**: `(1, 128, 128)` — Float32
|
| 103 |
+
* **`label`**: `(128, 128)` — Float32 (Segmentation Mask)
|
| 104 |
|
| 105 |
## Quickstart (PyTorch)
|
| 106 |
|
|
|
|
| 123 |
print("DEM shape:", sample["dem"].shape) # Expected: torch.Size([1, 128, 128])
|
| 124 |
print("Thermal shape:", sample["thermal_inertial"].shape)# Expected: torch.Size([1, 128, 128])
|
| 125 |
print("Grayscale shape:", sample["grayscale"].shape) # Expected: torch.Size([1, 128, 128])
|
| 126 |
+
print("Label shape:", sample["label"].shape) # Expected: torch.Size([128, 128])
|
| 127 |
```
|
| 128 |
|
| 129 |
## References
|