Datasets:
Update README.md
Browse files
README.md
CHANGED
@@ -26,6 +26,18 @@ MusselSeg is a large-scale dataset for semantic segmentation of mussel habitat u
|
|
26 |
|
27 |
The dataset is designed for semantic segmentation of mussel habitat in aerial imagery. The task involves assigning each pixel in the image to either the "mussel" class or "other"/"background" class.
|
28 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
29 |
## Data characteristics
|
30 |
|
31 |
- **Image Format:** GeoTiff
|
|
|
26 |
|
27 |
The dataset is designed for semantic segmentation of mussel habitat in aerial imagery. The task involves assigning each pixel in the image to either the "mussel" class or "other"/"background" class.
|
28 |
|
29 |
+
## Usage
|
30 |
+
|
31 |
+
Install the HuggingFace datasets library: [instructions](https://huggingface.co/docs/datasets/en/installation)
|
32 |
+
|
33 |
+
```python
|
34 |
+
from datasets import load_dataset
|
35 |
+
|
36 |
+
train_dataset = load_dataset("HakaiInstitute/rgb-mussel-presence-1024-1024", split="train")
|
37 |
+
val_dataset = load_dataset("HakaiInstitute/rgb-mussel-presence-1024-1024", split="validation")
|
38 |
+
test_dataset = load_dataset("HakaiInstitute/rgb-mussel-presence-1024-1024", split="test")
|
39 |
+
```
|
40 |
+
|
41 |
## Data characteristics
|
42 |
|
43 |
- **Image Format:** GeoTiff
|